@charset "UTF-8";
@import url("reset.css");
html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-family: -apple-system,  BlinkMacSystemFont, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN w3", "Hiragino Kaku Gothic ProN", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
}

a {
  transition: .2s;
  text-decoration: none;
  color: #333333;
}

p {
  line-height: 1.8;
  font-size: 16px;
  font-size: 1rem;
}

img {
  width: 100%;
  height: auto;
}

figcaption {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-size: 0.75rem;
}

.pc {
  display: block;
}

.pc-tb {
  display: block;
}

.tb-sp {
  display: none;
}

.sp, .tb {
  display: none;
}

.btn-a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100px;
  line-height: 100px;
  background-color: #1d2088;
  color: white;
  font-weight: bold;
  font-size: 24px;
  font-size: 1.5rem;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  z-index: 2;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.btn-a:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #df001d;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-a:after {
  position: absolute;
  content: "";
  display: inline-block;
  top: 8px;
  right: 11px;
  width: 16px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: 100%;
}
.btn-a:hover {
  color: white;
}
.btn-a:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.btn-a:hover:after {
  transition: .2s;
}

.ripple {
  position: relative;
  overflow: hidden;
}

.ripple .rp-effect {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  /*波紋の濃さ*/
  transform: scale(0);
  background: #ffffff;
  /*波紋色*/
  animation: ripple 700ms;
  pointer-events: none;
}

@-webkit-keyframes ripple {
  to {
    opacity: 0;
    transform: scale(2);
  }
}
@keyframes ripple {
  to {
    opacity: 0;
    transform: scale(2);
  }
}
body {
  position: relative;
  width: 100%;
  color: #333333;
  background-image: url(../images/bg_01.jpg);
}

main {
  position: relative;
  display: block;
}
main #intro {
  position: relative;
  width: 100%;
  padding-top: 40%;
  background-image: url(../images/bg_intro_01.png);
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}
main #intro #main-v {
  position: relative;
  width: 80%;
  margin-left: -40%;
  background-color: white;
  zoom: 1;
  -webkit-box-shadow: 4px 14px 32px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 4px 14px 32px rgba(0, 0, 0, 0.3);
  box-shadow: 4px 14px 32px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 130px;
  right: auto;
  bottom: auto;
  left: 50%;
}
main #intro #main-v:after {
  display: block;
  clear: both;
  content: "";
}
main #intro #main-v > span {
  display: inline-block;
  width: 18.75%;
  height: auto;
  position: absolute;
  top: -80px;
  right: -6.25%;
  bottom: auto;
  left: auto;
}
main #intro #main-v > span > img {
  width: 100%;
  height: auto;
}
main #intro #main-v > figure {
  width: 50%;
  height: auto;
  font-size: 0;
}
main #intro #main-v > figure > img {
  width: 100%;
  height: auto;
}
main #intro #main-v > div {
  width: 37.5%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 6.25%;
  bottom: auto;
  left: auto;
}
main #intro #main-v > div > h1 > span {
  display: inline-block;
  line-height: 4.0rem;
  font-weight: bold;
  font-size: 40px;
  font-size: 2.5rem;
}
main #intro #main-v > div > h1 > span.mtxt01 {
  color: #92c46d;
}
main #intro #main-v > div > h1 > span.mtxt02 {
  color: #297d7d;
}
main #intro #main-v > div > h1 > span.mtxt03 {
  color: #1c344e;
}
main #intro #main-v > div > mark {
  display: inline-block;
  margin: 30px 0 60px;
  background-color: white;
  letter-spacing: 0.05em;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 30px;
  font-size: 1.875rem;
}
main #intro #main-v > div > p {
  line-height: 2.0rem;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
}
main .artcl-ttl {
  position: relative;
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
main .artcl-ttl > span {
  display: inline-block;
  width: 19.642857%;
  height: auto;
  position: absolute;
  top: -35px;
  right: auto;
  bottom: auto;
  left: -12%;
}
main #recipe {
  width: 70%;
  margin: 250px auto 120px;
  zoom: 1;
}
main #recipe:after {
  display: block;
  clear: both;
  content: "";
}
main #recipe #material-area {
  position: relative;
  float: left;
  width: 50%;
  margin-top: 80px;
  padding: 0 3.5714286% 60px;
  background-color: white;
  border-top: 8px solid #f5f5f5;
  -webkit-box-shadow: 4px 14px 32px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 4px 14px 32px rgba(0, 0, 0, 0.3);
  box-shadow: 4px 14px 32px rgba(0, 0, 0, 0.3);
  zoom: 1;
}
main #recipe #material-area:after {
  display: block;
  clear: both;
  content: "";
}
main #recipe #material-area:before {
  display: block;
  content: "";
  width: 48px;
  height: 60px;
  background-image: url(../images/img_pin_01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-left: -24px;
  position: absolute;
  top: -12px;
  right: auto;
  bottom: auto;
  left: 50%;
}
main #recipe #material-area figure {
  width: 100%;
  margin: 70px 0 0;
}
main #recipe #material-area figure + h3 {
  width: 24%;
  height: auto;
  margin: 40px auto 0;
}
main #recipe #material-area figure + h3 > img {
  width: 100%;
  height: auto;
}
main #recipe #material-area .material-list-wrap {
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
  width: 100%;
}
main #recipe #material-area .material-list-wrap .material-list {
  flex-basis: 48%;
  margin: 50px 0 0 4%;
}
main #recipe #material-area .material-list-wrap .material-list:nth-of-type(odd) {
  margin: 50px 0 0 0;
}
main #recipe #material-area .material-list-wrap .material-list em {
  display: inline-block;
  margin-bottom: 0.75em;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
}
main #recipe #material-area .material-list-wrap .material-list em:before {
  content: "★";
  color: #297d7d;
}
main #recipe #material-area .material-list-wrap .material-list li {
  line-height: 1.8rem;
}
main #recipe #recipe-flow {
  float: right;
  width: 42.859143%;
  margin-top: 80px;
}
main #recipe #recipe-flow li + li {
  margin-top: 60px;
}
main #recipe #recipe-flow h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-size: 1.5rem;
}
main #recipe #recipe-flow h3 > span {
  display: inline-block;
  width: 16.6667%;
}
main #recipe #recipe-flow h3 > em {
  display: inline-block;
  font-weight: bold;
  padding-left: 1em;
}
main #complete {
  width: 70%;
  margin: 120px auto 0;
  text-align: center;
}
main #complete > figure {
  position: relative;
  display: block;
  width: 57.142857%;
  margin: 0 auto;
}
main #complete > figure:after {
  display: inline-block;
  content: "";
  width: 91.822095%;
  height: 91.822095%;
  background-color: rgba(97, 152, 54, 0.3);
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
  z-index: -1;
  position: absolute;
  top: 10px;
  right: 5%;
  bottom: auto;
  left: auto;
}
main #complete > figure > span {
  width: 95%;
  position: absolute;
  top: -20px;
  right: 100px;
  bottom: auto;
  left: auto;
}
main #complete > p {
  width: 100%;
  margin: 10px auto 40px;
  line-height: 2.4rem;
  font-size: 24px;
  font-size: 1.5rem;
}
main #complete > p > em {
  display: inline-block;
  color: #cf4d7e;
  font-weight: bold;
}
main #complete > h3 {
  position: relative;
  line-height: 4.0rem;
  color: #297d7d;
  text-align: center;
  font-size: 40px;
  font-size: 2.5rem;
}
main #complete > h3 > em {
  display: inline-block;
  color: #1c344e;
  font-weight: bold;
}
main #complete > h3 > span {
  display: inline-block;
  width: 10%;
  height: auto;
  margin-left: -11.5em;
  position: absolute;
  top: -50px;
  right: auto;
  bottom: auto;
  left: 50%;
}
main #article {
  width: 100%;
  margin: 120px auto 0;
  padding-top: 160px;
  background-image: url(../images/bg_dots_01.png);
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center top;
  zoom: 1;
}
main #article:after {
  display: block;
  clear: both;
  content: "";
}
main #article .artcl-ttl {
  width: 35%;
}
main #article .artcl-ttl > span {
  width: 60%;
  margin-left: -30%;
  position: absolute;
  top: -100px;
  right: auto;
  bottom: auto;
  left: 50%;
}
main #article .artcl-bg {
  position: relative;
  width: 100%;
  padding: 40px 0 200px;
  background-image: url(../images/bg_radial_01.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
main #article .artcl-wrap {
  position: relative;
  width: 70%;
  margin: 0 auto;
}
main #article .artcl-wrap .img-a {
  display: inline-block;
  width: 21.428571%;
  position: absolute;
  top: -120px;
  right: -80px;
  bottom: auto;
  left: auto;
}
main #article .artcl-wrap .img-b {
  display: inline-block;
  width: 28%;
  z-index: 11;
  position: absolute;
  top: 0;
  right: -4%;
  bottom: auto;
  left: auto;
}
main #article .artcl-wrap .area-a {
  position: relative;
  width: 64.464286%;
  z-index: 10;
  zoom: 1;
  position: absolute;
  top: 120px;
  right: 0;
  bottom: auto;
  left: auto;
}
main #article .artcl-wrap .area-a:after {
  display: block;
  clear: both;
  content: "";
}
main #article .artcl-wrap .area-a > figure {
  float: left;
  width: 44.598338%;
}
main #article .artcl-wrap .area-a > p {
  float: right;
  width: 52%;
  padding: 40px 40px;
  background-image: url(../images/bg_01.jpg);
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-box-shadow: 2px 8px 16px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 8px 16px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 8px 16px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 10;
}
main #article .artcl-wrap .area-b {
  position: relative;
  width: 50%;
}
main #article .artcl-wrap .area-b figcaption {
  line-height: 1.6rem;
  font-size: 16px;
  font-size: 1rem;
}
main #article .artcl-wrap .area-b figcaption > em {
  display: block;
  margin-bottom: 0.75em;
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
}
main #product-spec {
  position: relative;
  width: 70%;
  margin: 0 auto;
  background-color: white;
  border-top: 8px solid #f5f5f5;
  -webkit-box-shadow: 4px 14px 32px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 4px 14px 32px rgba(0, 0, 0, 0.3);
  box-shadow: 4px 14px 32px rgba(0, 0, 0, 0.3);
  zoom: 1;
}
main #product-spec:after {
  display: block;
  clear: both;
  content: "";
}
main #product-spec:before {
  display: block;
  content: "";
  width: 48px;
  height: 60px;
  background-image: url(../images/img_pin_01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-left: -24px;
  position: absolute;
  top: 30px;
  right: auto;
  bottom: auto;
  left: 50%;
}
main #product-spec .dia {
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 2.0rem;
  text-indent: -0.75em;
  padding-left: 0.75em;
  margin-left: 0.75em;
  font-size: 24px;
  font-size: 1.5rem;
}
main #product-spec .dia:before {
  content: "◆";
  display: inline-block;
  margin-right: 0.5em;
  color: #009fe8;
}
main #product-spec .bar {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  background-color: #dee898;
  font-size: 18px;
  font-size: 1.125rem;
}
main #product-spec .bar > em {
  display: inline-block;
  font-weight: bold;
}
main #product-spec .bar > sup {
  position: relative;
  top: 0.8em;
  padding-left: 0.5em;
  vertical-align: top;
  font-size: 11px;
  font-size: 0.6875rem;
}
main #product-spec .compare-image {
  width: 100%;
  margin-top: 20px;
  zoom: 1;
}
main #product-spec .compare-image:after {
  display: block;
  clear: both;
  content: "";
}
main #product-spec .compare-image > figure {
  float: left;
  width: 23.4375%;
  border: 1px solid #cdcdcd;
}
main #product-spec .compare-image > figure > img {
  width: 100%;
  height: auto;
}
main #product-spec .compare-image figure + figure {
  margin-left: 2.0833333%;
}
main #product-spec #description-area {
  width: 90%;
  margin: 0 auto;
}
main #product-spec .spec-wrap {
  position: relative;
  width: 100%;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e6e6e6;
  zoom: 1;
}
main #product-spec .spec-wrap:after {
  display: block;
  clear: both;
  content: "";
}
main #product-spec .spec-wrap .spec-txt {
  float: right;
  width: 58.333333%;
}
main #product-spec .spec-wrap .spec-txt .green-line {
  display: inline-block;
  color: #009fe8;
  margin-bottom: 40px;
  font-size: 32px;
  font-size: 2rem;
}
main #product-spec .spec-wrap .spec-txt .green-line > strong {
  display: inline-block;
  line-height: 2.8rem;
  background: linear-gradient(transparent 60%, #dee898 0%);
  font-weight: bold;
}
main #product-spec .spec-wrap .spec-txt p ~ p {
  margin-top: 30px;
}
main #product-spec .spec-wrap > figure {
  position: relative;
  float: left;
  width: 37.5%;
  height: auto;
  padding-top: 20px;
}
main #product-spec .spec-wrap > figure > img {
  width: 100%;
  height: auto;
}
main #product-spec .spec-wrap > figure > span {
  display: inline-block;
  width: 54.166667%;
  height: auto;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: -160px;
}
main #product-spec .spec-wrap > figure > span > img {
  width: 100%;
  height: auto;
}
main #product-spec .spec-wrap:first-of-type {
  margin-top: 120px;
  padding-top: 0;
  border-top: none;
}
main #product-spec .spec-wrap:first-of-type .spec-txt {
  float: left;
  width: 66.666667%;
}
main #product-spec .spec-wrap:first-of-type > figure {
  float: right;
  width: 30%;
  padding-top: 50px;
}
main #product-spec .spec-wrap:nth-of-type(3) {
  padding-top: 80px;
}
main #product-spec .spec-wrap:nth-of-type(3) .spec-txt {
  float: left;
  width: 50%;
}
main #product-spec .spec-wrap:nth-of-type(3) > figure {
  float: right;
  width: 45.833333%;
  padding-top: 0;
}
main #product-spec .spec-wrap:nth-of-type(3) > figure span {
  width: 62%;
  height: auto;
  position: absolute;
  top: auto;
  right: -180px;
  bottom: -50px;
  left: auto;
}
main #product-spec .spec-wrap:nth-of-type(3) > figure span + span {
  width: 38.636364%;
  height: auto;
  position: absolute;
  top: -50px;
  right: auto;
  bottom: auto;
  left: -80px;
}
main #product-spec .spec-wrap:nth-of-type(4) {
  margin-top: 40px;
  padding-top: 0;
  border-top: none;
}
main #product-spec .spec-wrap:nth-of-type(4) > figure {
  width: 18.75%;
  margin-top: 100px;
}
main #product-spec .spec-wrap:nth-of-type(4) > figure > span {
  width: 100%;
  position: absolute;
  top: -180px;
  right: auto;
  bottom: auto;
  left: -140px;
}
main #product-spec .spec-wrap:nth-of-type(4) > dl {
  float: right;
  width: 75%;
  margin-top: 30px;
  zoom: 1;
}
main #product-spec .spec-wrap:nth-of-type(4) > dl:after {
  display: block;
  clear: both;
  content: "";
}
main #product-spec .spec-wrap:nth-of-type(4) > dl > dt {
  float: left;
  width: 61.111111%;
}
main #product-spec .spec-wrap:nth-of-type(4) > dl > dt img {
  width: 100%;
  height: auto;
}
main #product-spec .spec-wrap:nth-of-type(4) > dl dd {
  float: right;
  width: 38.888889%;
}
main #product-spec .spec-wrap:nth-of-type(5) {
  margin-top: 40px;
  padding-top: 0;
  border-top: none;
}
main #product-spec .spec-wrap:nth-of-type(5) .bar {
  padding: 0 0 0 20px;
}
main #product-spec .spec-wrap:nth-of-type(5) .bar > em {
  width: 12.5%;
}
main #product-spec .spec-wrap:nth-of-type(5) .bar > span {
  display: inline-block;
  width: 87.5%;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  border: 1px solid #cdcdcd;
  border-left: none;
  background-color: #f5f5f5;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
}
main #product-spec #cv-area {
  position: relative;
  width: 100%;
  margin-top: 80px;
  padding-bottom: 50px;
  background-image: url(../images/bg_02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
}
main #product-spec #cv-area > h3 {
  line-height: 3.0rem;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  font-size: 1.5rem;
}
main #product-spec #cv-area > h3 > em {
  display: block;
  font-weight: bold;
  font-size: 36px;
  font-size: 2.25rem;
}
main #product-spec #cv-area > dl {
  margin-top: 50px;
  zoom: 1;
}
main #product-spec #cv-area > dl:after {
  display: block;
  clear: both;
  content: "";
}
main #product-spec #cv-area > dl > dt {
  float: left;
  width: 35.714286%;
  margin: 80px 0 0 7.1428571%;
}
main #product-spec #cv-area > dl > dt > a {
  width: 80%;
  height: 60px;
  line-height: 60px;
  margin-top: 50px;
  text-align: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
main #product-spec #cv-area > dl > dd {
  float: right;
  width: 50%;
  margin-right: 3.5714286%;
}
main #product-spec #cv-area > dl > dd img {
  width: 100%;
  height: auto;
}
main #sns-area {
  position: relative;
  width: 45%;
  margin: 120px auto 0;
  padding: 80px 0;
  background-color: white;
  -webkit-box-shadow: 4px 14px 32px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 4px 14px 32px rgba(0, 0, 0, 0.3);
  box-shadow: 4px 14px 32px rgba(0, 0, 0, 0.3);
}
main #sns-area:before {
  display: block;
  content: "";
  width: 284px;
  height: 157.5px;
  background-image: url(../images/img_sns_01.png);
  background-size: 100%;
  position: absolute;
  top: -70px;
  right: auto;
  bottom: auto;
  left: -80px;
}
main #sns-area > div {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 40%;
  margin: 0 auto;
}
main #sns-area > div > a {
  flex-basis: 30%;
  text-align: center;
}
main #sns-area > div > a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
main #sns-area > div > a img {
  width: 100%;
  height: auto;
}
main #sns-area > div > a span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-size: 0.75rem;
}
main #contact-area {
  background-color: white;
  width: 100%;
  margin-top: 120px;
  padding: 80px 0;
  text-align: center;
}
main #contact-area .contact {
  width: 480px;
  margin: 0 auto;
}
main #contact-area .contact > p {
  font-weight: bold;
  font-size: 24px;
  font-size: 1.5rem;
}
main #contact-area .contact .tel {
  display: block;
  margin: 20px auto;
  color: #1d2088;
  font-weight: bold;
  font-size: 64px;
  font-size: 4rem;
}
main #contact-area .contact .tel:hover {
  color: #df001d;
}
main #contact-area .contact > span {
  display: block;
  margin-bottom: 40px;
  line-height: 2.5rem;
  font-size: 12px;
  font-size: 0.75rem;
}
main #contact-area .contact > span > span {
  display: block;
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
}

footer {
  width: 100%;
  padding: 50px 0;
  text-align: center;
  background-color: #f1f3fa;
}
footer > a {
  display: inline-block;
  width: 160px;
  height: auto;
}
footer > a > img {
  width: 100%;
  height: auto;
}
footer address {
  margin-top: 40px;
  font-size: 11px;
  font-size: 0.6875rem;
}

@media screen and (min-width: 1379px) and (max-width: 1599px) {
  main #intro #main-v > span {
    display: inline-block;
    width: 18.75%;
    height: auto;
    position: absolute;
    top: -80px;
    right: -6.25%;
    bottom: auto;
    left: auto;
  }
  main #intro #main-v > span > img {
    width: 100%;
    height: auto;
  }
  main #intro #main-v > div {
    width: 40%;
    -webkit-transform: translateY(-50%);
    /* Safari用 */
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 4.5%;
    bottom: auto;
    left: auto;
  }
  main #intro #main-v > div > h1 > span {
    line-height: 1.6;
    font-size: 36px;
    font-size: 2.25rem;
  }
  main #intro #main-v > div > mark {
    font-size: 28px;
    font-size: 1.75rem;
  }
  main #intro #main-v > div > p {
    line-height: 1.8;
    font-size: 16px;
    font-size: 1rem;
  }
  main #product-spec #cv-area > dl {
    margin-top: 50px;
    zoom: 1;
  }
  main #product-spec #cv-area > dl:after {
    display: block;
    clear: both;
    content: "";
  }
  main #product-spec #cv-area > dl > dt {
    float: left;
    width: 38%;
    margin: 0 0 0 7.1428571%;
  }
  main #product-spec #cv-area > dl > dt > a {
    width: 80%;
    height: 60px;
    line-height: 60px;
    margin-top: 50px;
    text-align: center;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
  }
  main #product-spec #cv-area > dl > dd {
    float: right;
    width: 45%;
    margin-right: 3.5714286%;
  }
  main #product-spec #cv-area > dl > dd img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1378px) {
  main #intro #main-v > div {
    width: 40%;
    -webkit-transform: translateY(-50%);
    /* Safari用 */
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 5%;
    bottom: auto;
    left: auto;
  }
  main #intro #main-v > div > h1 > span {
    line-height: 1.6;
    font-size: 32px;
    font-size: 2rem;
  }
  main #intro #main-v > div > mark {
    font-size: 26px;
    font-size: 1.625rem;
  }
  main #intro #main-v > div > p {
    line-height: 1.8;
    font-size: 16px;
    font-size: 1rem;
  }
  main #article .artcl-wrap .img-b {
    position: absolute;
    top: -2vh;
    right: -4%;
    bottom: auto;
    left: auto;
  }
  main #article .artcl-wrap .area-a {
    position: absolute;
    top: 100px;
    right: 0;
    bottom: auto;
    left: auto;
  }
  main #article .artcl-wrap .area-a > p {
    width: 54%;
    padding: 30px 30px;
  }
  main #product-spec #cv-area > dl > dt {
    float: left;
    width: 40%;
    margin: 0 0 0 7.1428571%;
  }
  main #product-spec #cv-area > dl > dd {
    float: right;
    width: 48%;
    margin-right: 2%;
  }
  main #product-spec #cv-area > dl > dd img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .pc {
    display: none;
  }

  .pc-tb {
    display: block;
  }

  .tb-sp {
    display: block;
  }

  .sp, .tb {
    display: none;
  }

  main #intro #main-v {
    position: relative;
    width: 90%;
    margin-left: -45%;
    position: absolute;
    top: 100px;
    right: auto;
    bottom: auto;
    left: 50%;
  }
  main #intro #main-v > span {
    display: inline-block;
    width: 18%;
    height: auto;
    position: absolute;
    top: -60px;
    right: 0;
    bottom: auto;
    left: auto;
  }
  main #intro #main-v > span > img {
    width: 100%;
    height: auto;
  }
  main #intro #main-v > div {
    width: 40%;
    -webkit-transform: translateY(-50%);
    /* Safari用 */
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 5%;
    bottom: auto;
    left: auto;
  }
  main #intro #main-v > div > h1 > span {
    line-height: 1.6;
    font-size: 40px;
    font-size: 2.66667vw;
  }
  main #intro #main-v > div > mark {
    margin: 20px 0 40px;
    font-size: 30px;
    font-size: 2vw;
  }
  main #intro #main-v > div > p {
    line-height: 2.4;
    font-size: 16px;
    font-size: 1.06667vw;
  }
  main #recipe {
    width: 90%;
  }
  main #recipe #material-area {
    padding: 0 3% 60px;
  }
  main #recipe #recipe-flow {
    float: right;
    width: 44%;
    margin-top: 80px;
  }
  main #recipe #recipe-flow li + li {
    margin-top: 60px;
  }
  main #recipe #recipe-flow h3 {
    margin-bottom: 20px;
    font-size: 24px;
    font-size: 1.5rem;
  }
  main #recipe #recipe-flow h3 > span {
    display: inline-block;
    width: 16.6667%;
  }
  main #recipe #recipe-flow h3 > em {
    display: inline-block;
    font-weight: bold;
    padding-left: 1em;
  }
  main #complete {
    width: 90%;
    margin: 80px auto 0;
    text-align: center;
  }
  main #complete > figure {
    width: 70%;
  }
  main #complete > h3 > span {
    display: inline-block;
    width: 10%;
    height: auto;
    margin-left: -10em;
    position: absolute;
    top: -1.4em;
    right: auto;
    bottom: auto;
    left: 50%;
  }
  main #article {
    background-size: 90%;
  }
  main #article .artcl-ttl {
    width: 50%;
  }
  main #article .artcl-ttl > span {
    width: 50%;
    margin-left: -25%;
    position: absolute;
    top: -100px;
    right: auto;
    bottom: auto;
    left: 50%;
  }
  main #article .artcl-bg {
    position: relative;
    width: 100%;
    padding: 40px 0 120px;
    background-image: url(../images/bg_radial_01.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  main #article .artcl-wrap {
    width: 90%;
  }
  main #article .artcl-wrap .img-a {
    display: inline-block;
    width: 20%;
    position: absolute;
    top: -160px;
    right: 0;
    bottom: auto;
    left: auto;
  }
  main #article .artcl-wrap .img-b {
    display: inline-block;
    width: 28%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
  }
  main #article .artcl-wrap .area-a {
    position: absolute;
    top: 120px;
    right: 0;
    bottom: auto;
    left: auto;
  }
  main #article .artcl-wrap .area-a > p {
    width: 54%;
    padding: 30px 30px;
  }
  main #product-spec {
    width: 90%;
  }
  main #product-spec .spec-wrap .spec-txt {
    float: right;
    width: 60%;
  }
  main #product-spec .spec-wrap .spec-txt .green-line {
    display: inline-block;
    color: #009fe8;
    margin-bottom: 40px;
    font-size: 30px;
    font-size: 1.875rem;
  }
  main #product-spec .spec-wrap .spec-txt .green-line > strong {
    display: inline-block;
    line-height: 2.8rem;
    background: linear-gradient(transparent 60%, #dee898 0%);
    font-weight: bold;
  }
  main #product-spec .spec-wrap .spec-txt p ~ p {
    margin-top: 30px;
  }
  main #product-spec .spec-wrap > figure {
    position: relative;
    float: left;
    width: 36%;
    height: auto;
    padding-top: 0;
  }
  main #product-spec .spec-wrap > figure > img {
    width: 100%;
    height: auto;
  }
  main #product-spec .spec-wrap > figure > span {
    display: inline-block;
    width: 45%;
    height: auto;
    position: absolute;
    top: 20px;
    right: auto;
    bottom: auto;
    left: -90px;
  }
  main #product-spec .spec-wrap > figure > span > img {
    width: 100%;
    height: auto;
  }
  main #product-spec .spec-wrap:first-of-type {
    margin-top: 120px;
  }
  main #product-spec .spec-wrap:first-of-type .spec-txt {
    float: left;
    width: 60%;
  }
  main #product-spec .spec-wrap:first-of-type > figure {
    float: right;
    width: 36%;
  }
  main #product-spec .spec-wrap:nth-of-type(3) .spec-txt {
    float: left;
    width: 45%;
  }
  main #product-spec .spec-wrap:nth-of-type(3) > figure {
    float: right;
    width: 50%;
    padding-top: 0;
  }
  main #product-spec .spec-wrap:nth-of-type(3) > figure span {
    width: 45%;
    height: auto;
    position: absolute;
    top: 60px;
    right: -80px;
    bottom: auto;
    left: auto;
  }
  main #product-spec .spec-wrap:nth-of-type(3) > figure span + span {
    width: 40%;
    height: auto;
    position: absolute;
    top: -50px;
    right: auto;
    bottom: auto;
    left: -80px;
  }
  main #product-spec .spec-wrap:nth-of-type(4) {
    margin-top: 40px;
  }
  main #product-spec .spec-wrap:nth-of-type(4) > figure {
    width: 14%;
    margin-top: 130px;
  }
  main #product-spec .spec-wrap:nth-of-type(4) > figure > span {
    width: 100%;
    position: absolute;
    top: -160px;
    right: auto;
    bottom: auto;
    left: -80px;
  }
  main #product-spec .spec-wrap:nth-of-type(4) > dl {
    float: right;
    width: 80%;
    margin-top: 30px;
    zoom: 1;
  }
  main #product-spec .spec-wrap:nth-of-type(4) > dl:after {
    display: block;
    clear: both;
    content: "";
  }
  main #product-spec .spec-wrap:nth-of-type(4) > dl > dt {
    float: left;
    width: 60%;
  }
  main #product-spec .spec-wrap:nth-of-type(4) > dl dd {
    float: right;
    width: 38%;
  }
  main #product-spec .spec-wrap:nth-of-type(5) {
    margin-top: 20px;
  }
  main #product-spec .spec-wrap:nth-of-type(5) .bar {
    height: auto;
    padding: 0 0 0 0;
  }
  main #product-spec .spec-wrap:nth-of-type(5) .bar > em {
    width: 100%;
    padding-left: 4%;
    font-size: 16px;
    font-size: 1rem;
  }
  main #product-spec .spec-wrap:nth-of-type(5) .bar > span {
    display: inline-block;
    width: 100%;
    height: auto;
    line-height: 1.6rem;
    padding: 10px 4%;
    border: none;
    border-left: none;
    border-top: none;
    background-color: #f5f5f5;
    font-size: 14px;
    font-size: 0.875rem;
  }
  main #product-spec #cv-area {
    margin-top: 40px;
    padding-bottom: 30px;
  }
  main #product-spec #cv-area > h3 {
    width: 90%;
    margin: 0 auto;
    line-height: 3.0rem;
    font-size: 24px;
    font-size: 1.5rem;
  }
  main #product-spec #cv-area > h3 > em {
    margin-top: 0.25em;
    line-height: 4.0rem;
    font-size: 40px;
    font-size: 2.5rem;
  }
  main #product-spec #cv-area > dl {
    margin-top: 20px;
  }
  main #product-spec #cv-area > dl > dt {
    float: none;
    width: 90%;
    margin: 40px auto 0;
    text-align: center;
  }
  main #product-spec #cv-area > dl > dt > a {
    width: 50%;
    height: 60px;
    line-height: 60px;
    margin-top: 40px;
    font-size: 24px;
    font-size: 1.5rem;
  }
  main #product-spec #cv-area > dl > dd {
    float: none;
    width: 50%;
    margin: 60px auto 0;
  }
  main #sns-area {
    width: 60%;
    margin: 120px auto 0;
    padding: 80px 0;
  }
  main #sns-area:before {
    display: block;
    content: "";
    width: 284px;
    height: 157.5px;
    background-image: url(../images/img_sns_01.png);
    background-size: 100%;
    position: absolute;
    top: -80px;
    right: auto;
    bottom: auto;
    left: -90px;
  }
  main #sns-area > div {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 50%;
  }
  main #sns-area > div > a {
    flex-basis: 30%;
    width: auto;
  }
  main #contact-area {
    padding: 40px 0;
  }
  main #contact-area .contact {
    width: 60%;
    margin: 0 auto;
  }
  main #contact-area .contact > p {
    font-size: 30px;
    font-size: 2vw;
  }
  main #contact-area .contact .tel {
    margin: 10px auto;
    font-size: 80px;
    font-size: 5.33333vw;
  }
  main #contact-area .contact .tel:hover {
    color: #df001d;
  }
  main #contact-area .contact > span {
    margin-bottom: 20px;
    line-height: 2.5rem;
    font-size: 14px;
    font-size: 0.93333vw;
  }
  main #contact-area .contact > span > span {
    font-size: 24px;
    font-size: 1.6vw;
  }

  footer {
    padding: 30px 0 20px;
  }
  footer address {
    font-size: 11px;
    font-size: 0.73333vw;
  }
}
@media screen and (min-width: 1023px) and (max-width: 1279px) {
  main #article .artcl-wrap .img-b {
    position: absolute;
    top: 10px;
    right: 0;
    bottom: auto;
    left: auto;
  }
  main #article .artcl-wrap .area-a > p {
    width: 53%;
    padding: 30px 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1024px) {
  main #article .artcl-wrap .img-b {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
  }
  main #article .artcl-wrap .area-a > p {
    width: 54%;
    padding: 30px 40px;
  }
}
@media screen and (min-width: 769px) and (max-width: 979px) {
  main #article .artcl-bg {
    margin-bottom: 100px;
  }
  main #article .artcl-wrap .img-b {
    position: absolute;
    top: -80px;
    right: 0;
    bottom: auto;
    left: auto;
  }
}
@media screen and (min-width: 641px) and (max-width: 768px) {
  .pc {
    display: none;
  }

  .pc-tb {
    display: none;
  }

  .tb-sp {
    display: block;
  }

  .sp, .tb {
    display: block;
  }

  p {
    line-height: 2.4;
    font-size: 16px;
    font-size: 1rem;
  }

  main #intro {
    padding-top: 0;
    background-image: none;
  }
  main #intro #main-v {
    width: 100%;
    margin-left: 0;
    position: static;
    -webkit-box-shadow: 0 0 0 transparent;
    -moz-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
  }
  main #intro #main-v > span {
    width: 40%;
    z-index: 10;
    margin: -20% 0 0 0;
    position: absolute;
    top: 50%;
    right: 2%;
    bottom: auto;
    left: auto;
  }
  main #intro #main-v > figure {
    width: 100%;
  }
  main #intro #main-v > div {
    width: 90%;
    padding: 40px 0;
    margin: 0 auto;
    background-color: white;
    -webkit-transform: translateY(0);
    /* Safari用 */
    transform: translateY(0);
    position: static;
  }
  main #intro #main-v > div > h1 > span {
    line-height: 1.6;
    font-size: 48px;
    font-size: 3rem;
  }
  main #intro #main-v > div > mark {
    margin: 20px 0 30px;
    font-size: 30px;
    font-size: 1.875rem;
  }
  main #intro #main-v > div > p {
    line-height: 2.4;
    font-size: 24px;
    font-size: 1.5rem;
  }
  main .artcl-ttl {
    width: 90%;
  }
  main .artcl-ttl > span {
    display: inline-block;
    width: 30%;
    height: auto;
    position: absolute;
    top: -100px;
    right: auto;
    bottom: auto;
    left: -8%;
  }
  main #recipe {
    width: 90%;
    margin: 120px auto 0;
  }
  main #recipe #material-area {
    float: none;
    width: 100%;
    margin-top: 40px;
    padding: 0 4% 60px;
  }
  main #recipe #material-area:before {
    width: 48px;
    height: 60px;
    margin-left: -24px;
    position: absolute;
    top: -12px;
    right: auto;
    bottom: auto;
    left: 50%;
  }
  main #recipe #material-area figure {
    margin: 30px 0 0;
  }
  main #recipe #material-area figure + h3 {
    margin: 30px auto 0;
  }
  main #recipe #material-area .material-list-wrap {
    width: 100%;
    margin: 0 auto;
  }
  main #recipe #material-area .material-list-wrap .material-list {
    margin: 50px 0 0 2%;
  }
  main #recipe #material-area .material-list-wrap .material-list:nth-of-type(odd) {
    margin: 50px 0 0 0;
  }
  main #recipe #material-area .material-list-wrap .material-list em {
    font-size: 24px;
    font-size: 1.5rem;
  }
  main #recipe #material-area .material-list-wrap .material-list li {
    line-height: 3.0rem;
    font-size: 24px;
    font-size: 1.5rem;
  }
  main #recipe #recipe-flow {
    float: none;
    width: 100%;
    margin-top: 40px;
  }
  main #recipe #recipe-flow li + li {
    margin-top: 30px;
  }
  main #recipe #recipe-flow h3 {
    font-size: 36px;
    font-size: 2.25rem;
  }
  main #recipe #recipe-flow h3 > span {
    width: 14%;
  }
  main #complete {
    width: 90%;
    margin: 40px auto 0;
    text-align: center;
  }
  main #complete > figure {
    width: 80%;
  }
  main #complete > p {
    margin: 10px auto 100px;
  }
  main #complete > h3 > span {
    display: inline-block;
    width: 20%;
    height: auto;
    margin-left: -6em;
    position: absolute;
    top: -2.2em;
    right: auto;
    bottom: auto;
    left: 50%;
  }
  main #article {
    width: 100%;
    margin: 80px auto 0;
    padding-top: 160px;
    background-image: none;
    border-top: 1px dotted #333333;
  }
  main #article .artcl-ttl {
    width: 80%;
  }
  main #article .artcl-ttl > span {
    width: 50%;
    margin-left: -25%;
    position: absolute;
    top: -100px;
    right: auto;
    bottom: auto;
    left: 50%;
  }
  main #article .artcl-bg {
    padding: 0 0 40px;
    background-image: none;
  }
  main #article .artcl-wrap {
    position: relative;
    width: 100%;
  }
  main #article .artcl-wrap .img-a {
    display: inline-block;
    width: 20%;
    position: absolute;
    top: -240px;
    right: 2%;
    bottom: auto;
    left: auto;
  }
  main #article .artcl-wrap .img-b {
    display: inline-block;
    width: 60%;
    position: absolute;
    top: auto;
    right: 2%;
    bottom: 0;
    left: auto;
  }
  main #article .artcl-wrap .area-a {
    width: 100%;
    position: static;
    padding: 0 0 10px 0;
    background-image: url(../images/bg_radial_01.png);
    background-size: 140%;
    background-repeat: no-repeat;
    background-position: center bottom;
  }
  main #article .artcl-wrap .area-a > figure {
    float: none;
    width: 30%;
    margin: 40px auto 0;
  }
  main #article .artcl-wrap .area-a > p {
    position: relative;
    float: none;
    width: 90%;
    margin: 30px auto 0;
    padding: 30px 5%;
    line-height: 2.4rem;
    font-size: 18px;
    font-size: 1.125rem;
    -webkit-transform: translateY(0);
    /* Safari用 */
    transform: translateY(0);
    position: static;
  }
  main #article .artcl-wrap .area-a > p > span {
    float: right;
    display: inline-block;
    width: 30%;
    margin: 0 0 0 0.5em;
  }
  main #article .artcl-wrap .area-b {
    width: 90%;
    margin: 0 auto;
  }
  main #article .artcl-wrap .area-b figcaption {
    line-height: 1.6rem;
    font-size: 16px;
    font-size: 1rem;
  }
  main #article .artcl-wrap .area-b figcaption > em {
    margin-bottom: 0.75em;
    font-size: 24px;
    font-size: 1.5rem;
  }
  main #product-spec {
    width: 90%;
    margin: 80px auto 0;
  }
  main #product-spec:before {
    width: 48px;
    height: 60px;
    margin-left: -24px;
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 50%;
  }
  main #product-spec .dia {
    margin-bottom: 20px;
    line-height: 2.0rem;
    font-size: 24px;
    font-size: 1.5rem;
  }
  main #product-spec .bar {
    width: 100%;
    height: auto;
    line-height: 40px;
    padding: 10px 4%;
    font-size: 24px;
    font-size: 1.5rem;
  }
  main #product-spec .bar > em {
    display: inline-block;
    font-weight: bold;
    line-height: 2.0rem;
  }
  main #product-spec .bar > sup {
    position: static;
    top: 0.8em;
    padding-left: 0.5em;
    vertical-align: middle;
    font-size: 24px;
    font-size: 1.6vw;
  }
  main #product-spec .compare-image {
    margin-top: 20px;
  }
  main #product-spec .compare-image > figure {
    float: left;
    width: 48%;
  }
  main #product-spec .compare-image > figure:nth-of-type(n+3) {
    margin-top: 20px;
  }
  main #product-spec .compare-image > figure:nth-of-type(even) {
    margin-left: 4%;
  }
  main #product-spec .compare-image figure + figure {
    margin-left: 0;
  }
  main #product-spec #description-area {
    padding: 0 2%;
  }
  main #product-spec .spec-wrap {
    margin-top: 80px;
    padding-top: 80px;
  }
  main #product-spec .spec-wrap .spec-txt {
    float: none;
    width: 100%;
  }
  main #product-spec .spec-wrap .spec-txt .green-line {
    margin-bottom: 30px;
    font-size: 36px;
    font-size: 2.25rem;
  }
  main #product-spec .spec-wrap .spec-txt .green-line > strong {
    display: inline-block;
    line-height: 3.0rem;
    background: linear-gradient(transparent 60%, #dee898 0%);
  }
  main #product-spec .spec-wrap .spec-txt p ~ p {
    margin-top: 1em;
  }
  main #product-spec .spec-wrap > figure {
    float: none;
    width: 50%;
    margin: 40px auto 0;
    padding-top: 0;
  }
  main #product-spec .spec-wrap > figure > span {
    width: 60%;
    height: auto;
    position: absolute;
    top: -20px;
    right: auto;
    bottom: auto;
    left: -55%;
  }
  main #product-spec .spec-wrap:first-of-type {
    margin-top: 120px;
  }
  main #product-spec .spec-wrap:first-of-type .spec-txt {
    float: none;
    width: 100%;
  }
  main #product-spec .spec-wrap:first-of-type > figure {
    float: none;
    width: 50%;
    padding-top: 0;
  }
  main #product-spec .spec-wrap:nth-of-type(3) .spec-txt {
    float: none;
    width: 100%;
  }
  main #product-spec .spec-wrap:nth-of-type(3) > figure {
    float: none;
    width: 80%;
    padding-top: 0;
    margin: 80px auto 0;
  }
  main #product-spec .spec-wrap:nth-of-type(3) > figure span {
    width: 50%;
    height: auto;
    position: absolute;
    top: auto;
    right: -25%;
    bottom: -40px;
    left: auto;
  }
  main #product-spec .spec-wrap:nth-of-type(3) > figure span + span {
    width: 36%;
    height: auto;
    position: absolute;
    top: -50px;
    right: auto;
    bottom: auto;
    left: -12%;
  }
  main #product-spec .spec-wrap:nth-of-type(4) > figure {
    width: 30%;
    margin-top: 30px;
  }
  main #product-spec .spec-wrap:nth-of-type(4) > figure > span {
    width: 80%;
    position: absolute;
    top: -20px;
    right: auto;
    bottom: auto;
    left: -80%;
  }
  main #product-spec .spec-wrap:nth-of-type(4) > dl {
    float: none;
    width: 100%;
    margin-top: 30px;
    zoom: 1;
  }
  main #product-spec .spec-wrap:nth-of-type(4) > dl:after {
    display: block;
    clear: both;
    content: "";
  }
  main #product-spec .spec-wrap:nth-of-type(4) > dl > dt {
    float: none;
    width: 100%;
  }
  main #product-spec .spec-wrap:nth-of-type(4) > dl dd {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
  main #product-spec .spec-wrap:nth-of-type(5) {
    margin-top: 20px;
  }
  main #product-spec .spec-wrap:nth-of-type(5) .bar {
    height: auto;
    padding: 0 0 0 0;
  }
  main #product-spec .spec-wrap:nth-of-type(5) .bar > em {
    width: 100%;
    padding-left: 4%;
    font-size: 24px;
    font-size: 1.5rem;
  }
  main #product-spec .spec-wrap:nth-of-type(5) .bar > span {
    display: inline-block;
    width: 100%;
    height: auto;
    line-height: 1.6rem;
    padding: 10px 4%;
    border: none;
    border-left: none;
    border-top: none;
    background-color: #f5f5f5;
    font-size: 18px;
    font-size: 1.125rem;
  }
  main #product-spec #cv-area {
    margin-top: 40px;
    padding-bottom: 10px;
  }
  main #product-spec #cv-area > h3 {
    width: 90%;
    margin: 0 auto;
    line-height: 3.0rem;
    font-size: 24px;
    font-size: 1.5rem;
  }
  main #product-spec #cv-area > h3 > em {
    margin-top: 0.5em;
    line-height: 4.0rem;
    font-size: 40px;
    font-size: 2.5rem;
  }
  main #product-spec #cv-area > dl {
    margin-top: 20px;
  }
  main #product-spec #cv-area > dl > dt {
    float: none;
    width: 90%;
    margin: 40px auto 0;
    text-align: center;
  }
  main #product-spec #cv-area > dl > dt > a {
    width: 90%;
    height: 60px;
    line-height: 60px;
    margin-top: 40px;
    font-size: 24px;
    font-size: 1.5rem;
  }
  main #product-spec #cv-area > dl > dd {
    float: none;
    width: 90%;
    margin: 60px auto 0;
  }
  main #sns-area {
    width: 90%;
    margin: 120px auto 0;
    padding: 80px 0 40px;
  }
  main #sns-area:before {
    display: block;
    content: "";
    width: 300px;
    height: 166px;
    position: absolute;
    top: -80px;
    right: auto;
    bottom: auto;
    left: 30%;
    margin-left: -150px;
  }
}
@media screen and (max-width: 640px) {
  .pc {
    display: none;
  }

  .pc-tb {
    display: none;
  }

  .tb-sp {
    display: block;
  }

  .sp, .tb {
    display: block;
  }

  p {
    line-height: 2.4;
    font-size: 56px;
    font-size: 3.73333vw;
  }

  figcaption {
    font-size: 36px;
    font-size: 2.4vw;
  }

  main #intro {
    padding-top: 0;
    background-image: none;
  }
  main #intro #main-v {
    width: 100%;
    margin-left: 0;
    position: static;
    -webkit-box-shadow: 0 0 0 transparent;
    -moz-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
  }
  main #intro #main-v > span {
    width: 30%;
    z-index: 10;
    margin: -15% 0 0 0;
    position: absolute;
    top: 50%;
    right: 2%;
    bottom: auto;
    left: auto;
  }
  main #intro #main-v > figure {
    width: 100%;
  }
  main #intro #main-v > div {
    width: 90%;
    padding: 20px 0;
    margin: 0 auto;
    background-color: white;
    -webkit-transform: translateY(0);
    /* Safari用 */
    transform: translateY(0);
    position: static;
  }
  main #intro #main-v > div > h1 > span {
    line-height: 2.0;
    font-size: 100px;
    font-size: 6.66667vw;
  }
  main #intro #main-v > div > mark {
    margin: 20px 0 30px;
    font-size: 80px;
    font-size: 5.33333vw;
  }
  main #intro #main-v > div > p {
    line-height: 2.4;
    font-size: 56px;
    font-size: 3.73333vw;
  }
  main .artcl-ttl {
    width: 90%;
  }
  main .artcl-ttl > span {
    display: inline-block;
    width: 30%;
    height: auto;
    position: absolute;
    top: -50px;
    right: auto;
    bottom: auto;
    left: -8%;
  }
  main #recipe {
    width: 90%;
    margin: 80px auto 0;
  }
  main #recipe #material-area {
    float: none;
    width: 100%;
    margin-top: 40px;
    padding: 0 4% 60px;
  }
  main #recipe #material-area:before {
    width: 24px;
    height: 30px;
    margin-left: -12px;
    position: absolute;
    top: -12px;
    right: auto;
    bottom: auto;
    left: 50%;
  }
  main #recipe #material-area figure {
    margin: 30px 0 0;
  }
  main #recipe #material-area figure + h3 {
    margin: 30px auto 0;
  }
  main #recipe #material-area .material-list-wrap {
    width: 100%;
    margin: 0 auto;
  }
  main #recipe #material-area .material-list-wrap .material-list {
    margin: 30px 0 0 4%;
  }
  main #recipe #material-area .material-list-wrap .material-list:nth-of-type(odd) {
    margin: 30px 0 0 0;
  }
  main #recipe #material-area .material-list-wrap .material-list em {
    font-size: 48px;
    font-size: 3.2vw;
  }
  main #recipe #material-area .material-list-wrap .material-list li {
    line-height: 2.0;
    font-size: 48px;
    font-size: 3.2vw;
  }
  main #recipe #recipe-flow {
    float: none;
    width: 100%;
    margin-top: 40px;
  }
  main #recipe #recipe-flow li + li {
    margin-top: 30px;
  }
  main #recipe #recipe-flow h3 {
    font-size: 80px;
    font-size: 5.33333vw;
  }
  main #recipe #recipe-flow h3 > span {
    width: 14%;
  }
  main #recipe #recipe-flow p {
    line-height: 2.4;
  }
  main #complete {
    width: 90%;
    margin: 40px auto 0;
    text-align: left;
  }
  main #complete > figure {
    width: 95%;
  }
  main #complete > p {
    margin: 10px auto 80px;
    line-height: 2.0;
    font-size: 64px;
    font-size: 4.26667vw;
  }
  main #complete > p > em {
    line-height: 2.0;
  }
  main #complete > h3 {
    line-height: 1.6;
    font-size: 90px;
    font-size: 6vw;
  }
  main #complete > h3 > span {
    display: block;
    width: 24%;
    margin-left: -7em;
    position: absolute;
    top: -2.2em;
    right: auto;
    bottom: auto;
    left: 50%;
  }
  main #article {
    width: 100%;
    margin: 40px auto 0;
    padding-top: 120px;
    background-image: none;
    border-top: 1px dotted #333333;
  }
  main #article .artcl-ttl {
    width: 80%;
  }
  main #article .artcl-ttl > span {
    width: 70%;
    margin-left: -35%;
    position: absolute;
    top: -80px;
    right: auto;
    bottom: auto;
    left: 50%;
  }
  main #article .artcl-bg {
    padding: 0 0 40px;
    background-image: none;
  }
  main #article .artcl-wrap {
    width: 100%;
  }
  main #article .artcl-wrap .img-a {
    display: inline-block;
    width: 20%;
    position: absolute;
    top: -120px;
    right: 2%;
    bottom: auto;
    left: auto;
  }
  main #article .artcl-wrap .img-b {
    display: inline-block;
    width: 50%;
    position: absolute;
    top: auto;
    right: 2%;
    bottom: 0;
    left: auto;
  }
  main #article .artcl-wrap .area-a {
    width: 100%;
    position: static;
    padding: 0 0 20px 0;
    background-image: url(../images/bg_radial_01.png);
    background-size: 215%;
    background-repeat: no-repeat;
    background-position: center bottom;
  }
  main #article .artcl-wrap .area-a > figure {
    float: none;
    width: 50%;
    margin: 40px auto 20px;
  }
  main #article .artcl-wrap .area-a > p {
    float: none;
    width: 90%;
    margin: 20px auto;
    padding: 30px 5%;
    font-size: 56px;
    font-size: 3.73333vw;
    -webkit-transform: translateY(0);
    /* Safari用 */
    transform: translateY(0);
    position: static;
  }
  main #article .artcl-wrap .area-a > p > span {
    float: right;
    display: inline-block;
    width: 50%;
    margin: 0 0 0 0.5em;
  }
  main #article .artcl-wrap .area-b {
    width: 90%;
    margin: 0 auto;
  }
  main #article .artcl-wrap .area-b figcaption {
    line-height: 1.6rem;
    line-height: 1.4rem;
    font-size: 40px;
    font-size: 2.66667vw;
  }
  main #article .artcl-wrap .area-b figcaption > em {
    margin-bottom: 0.75em;
    font-size: 64px;
    font-size: 4.26667vw;
  }
  main #product-spec {
    width: 90%;
    margin: 0 auto 0;
  }
  main #product-spec:before {
    width: 24px;
    height: 30px;
    margin-left: -12px;
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 50%;
  }
  main #product-spec .dia {
    margin-bottom: 20px;
    line-height: 2.0rem;
    font-size: 72px;
    font-size: 4.8vw;
  }
  main #product-spec .bar {
    width: 100%;
    height: auto;
    padding: 10px 4%;
    font-size: 64px;
    font-size: 4.26667vw;
  }
  main #product-spec .bar > em {
    display: inline-block;
    font-weight: bold;
    line-height: 1.6rem;
    vertical-align: middle;
  }
  main #product-spec .bar > sup {
    position: static;
    top: 0.8em;
    padding-left: 0.5em;
    vertical-align: middle;
    font-size: 12px;
    font-size: 0.75rem;
  }
  main #product-spec .compare-image {
    margin-top: 20px;
  }
  main #product-spec .compare-image > figure {
    float: left;
    width: 48%;
  }
  main #product-spec .compare-image > figure:nth-of-type(n+3) {
    margin-top: 20px;
  }
  main #product-spec .compare-image > figure:nth-of-type(even) {
    margin-left: 4%;
  }
  main #product-spec .compare-image figure + figure {
    margin-left: 0;
  }
  main #product-spec #description-area {
    padding: 0 2%;
  }
  main #product-spec .spec-wrap {
    margin-top: 40px;
    padding-top: 40px;
  }
  main #product-spec .spec-wrap .spec-txt {
    float: none;
    width: 100%;
  }
  main #product-spec .spec-wrap .spec-txt .green-line {
    margin-bottom: 20px;
    font-size: 80px;
    font-size: 5.33333vw;
  }
  main #product-spec .spec-wrap .spec-txt .green-line > strong {
    display: inline-block;
    line-height: 2.4rem;
    background: linear-gradient(transparent 60%, #dee898 0%);
  }
  main #product-spec .spec-wrap > figure {
    float: none;
    width: 70%;
    margin: 20px auto 0;
    padding-top: 0;
  }
  main #product-spec .spec-wrap > figure > span {
    width: 50%;
    height: auto;
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: -38%;
  }
  main #product-spec .spec-wrap:first-of-type {
    margin-top: 60px;
  }
  main #product-spec .spec-wrap:first-of-type .spec-txt {
    float: none;
    width: 100%;
  }
  main #product-spec .spec-wrap:first-of-type > figure {
    float: none;
    width: 70%;
    margin: 20px auto 0;
    padding-top: 0;
  }
  main #product-spec .spec-wrap:nth-of-type(3) {
    padding-top: 40px;
  }
  main #product-spec .spec-wrap:nth-of-type(3) .spec-txt {
    float: none;
    width: 100%;
  }
  main #product-spec .spec-wrap:nth-of-type(3) > figure {
    float: none;
    width: 80%;
    padding-top: 0;
    margin: 50px auto 0;
  }
  main #product-spec .spec-wrap:nth-of-type(3) > figure span {
    width: 55%;
    height: auto;
    position: absolute;
    top: auto;
    right: -25%;
    bottom: -30px;
    left: auto;
  }
  main #product-spec .spec-wrap:nth-of-type(3) > figure span + span {
    width: 40%;
    height: auto;
    position: absolute;
    top: -30px;
    right: auto;
    bottom: auto;
    left: -15%;
  }
  main #product-spec .spec-wrap:nth-of-type(4) > figure {
    width: 30%;
    margin-top: 20px;
  }
  main #product-spec .spec-wrap:nth-of-type(4) > figure > span {
    width: 80%;
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: -80%;
  }
  main #product-spec .spec-wrap:nth-of-type(4) > dl {
    float: none;
    width: 100%;
    margin-top: 20px;
    zoom: 1;
  }
  main #product-spec .spec-wrap:nth-of-type(4) > dl:after {
    display: block;
    clear: both;
    content: "";
  }
  main #product-spec .spec-wrap:nth-of-type(4) > dl > dt {
    float: none;
    width: 100%;
  }
  main #product-spec .spec-wrap:nth-of-type(4) > dl dd {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
  main #product-spec .spec-wrap:nth-of-type(5) {
    margin-top: 20px;
  }
  main #product-spec .spec-wrap:nth-of-type(5) .bar {
    height: auto;
    padding: 0 0 0 0;
  }
  main #product-spec .spec-wrap:nth-of-type(5) .bar > em {
    width: 100%;
    padding-left: 4%;
    font-size: 64px;
    font-size: 4.26667vw;
  }
  main #product-spec .spec-wrap:nth-of-type(5) .bar > span {
    display: inline-block;
    width: 100%;
    height: auto;
    line-height: 1.2rem;
    padding: 10px 4%;
    border: none;
    border-left: none;
    border-top: none;
    background-color: #f5f5f5;
    font-size: 48px;
    font-size: 3.2vw;
  }
  main #product-spec #cv-area {
    margin-top: 40px;
    padding-bottom: 10px;
  }
  main #product-spec #cv-area > h3 {
    width: 90%;
    margin: 0 auto;
    line-height: 2.0rem;
    font-size: 72px;
    font-size: 4.8vw;
  }
  main #product-spec #cv-area > h3 > em {
    margin-top: 0.5em;
    line-height: 2.4rem;
    font-size: 104px;
    font-size: 6.93333vw;
  }
  main #product-spec #cv-area > dl {
    margin-top: 20px;
  }
  main #product-spec #cv-area > dl > dt {
    float: none;
    width: 90%;
    margin: 40px auto 0;
    text-align: center;
  }
  main #product-spec #cv-area > dl > dt > a {
    width: 90%;
    height: 60px;
    line-height: 60px;
    margin-top: 40px;
    font-size: 72px;
    font-size: 4.8vw;
  }
  main #product-spec #cv-area > dl > dd {
    float: none;
    width: 90%;
    margin: 60px auto 0;
  }
  main #sns-area {
    width: 90%;
    margin: 60px auto 0;
    padding: 80px 4% 40px;
  }
  main #sns-area:before {
    display: block;
    content: "";
    width: 200px;
    height: 111px;
    position: absolute;
    top: -40px;
    right: auto;
    bottom: auto;
    left: 50%;
    margin-left: -100px;
  }
  main #sns-area > div {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 70%;
  }
  main #sns-area > div > a {
    flex-basis: 30%;
    width: auto;
  }
  main #sns-area > div > a > span {
    font-size: 24px;
    font-size: 1.6vw;
  }
  main #contact-area {
    margin-top: 70px;
    padding: 40px 0;
  }
  main #contact-area .contact {
    width: 90%;
    margin: 0 auto;
  }
  main #contact-area .contact > p {
    font-size: 64px;
    font-size: 4.26667vw;
  }
  main #contact-area .contact .tel {
    margin: 10px auto;
    font-size: 160px;
    font-size: 10.66667vw;
  }
  main #contact-area .contact .tel:hover {
    color: #df001d;
  }
  main #contact-area .contact > span {
    margin-bottom: 20px;
    line-height: 2.5rem;
    font-size: 12px;
    font-size: 0.75rem;
  }
  main #contact-area .contact > span > span {
    font-size: 14px;
    font-size: 0.875rem;
  }
  main #contact-area .contact > a {
    font-size: 72px;
    font-size: 4.8vw;
  }

  footer > a {
    width: 40%;
  }
}
@media screen and (max-width: 320px) {
  main #intro #main-v > span {
    position: absolute;
    top: 45%;
    right: 2%;
    bottom: auto;
    left: auto;
  }
}
