.pc{display: block;}
.sp{display: none;}
/* フェードアップ（画像のみ適用） */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.5s ease-out;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
    opacity: 0;
    transition: opacity 1.5s ease-out;
}
.fade-in.show {
    opacity: 1;
}
/* 下からマスクアップアニメーション */
.js-observer {
  overflow: hidden; /* マスクを適用 */
  display: block;
}

.js-observer .is-digout .row {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  /* transition: transform 0.5s cubic-bezier(0.83, 0, 0.17, 1), opacity 0.8s ease-out; */
  transition: transform 1s ease, opacity 0.8s ease-out;
}

.js-observer.is-cue .is-digout .row {
  opacity: 1;
  transform: translateY(0);
}

/* data-delay を適用 */
.js-observer .is-digout .row[data-delay="100"] { transition-delay: 0.1s; }
.js-observer .is-digout .row[data-delay="200"] { transition-delay: 0.2s; }
.js-observer .is-digout .row[data-delay="300"] { transition-delay: 0.3s; }

.fade-up[data-delay="100"] { transition-delay: 0.1s; }
.fade-up[data-delay="200"] { transition-delay: 0.2s; }
.fade-up[data-delay="300"] { transition-delay: 0.3s; }
.fade-up[data-delay="400"] { transition-delay: 0.4s; }
.fade-up[data-delay="500"] { transition-delay: 0.5s; }
.fade-up[data-delay="600"] { transition-delay: 0.6s; }
.fade-up[data-delay="700"] { transition-delay: 0.7s; }
.fade-up[data-delay="800"] { transition-delay: 0.8s; }

.fade-in[data-delay="100"] { transition-delay: 0.1s; }
.fade-in[data-delay="200"] { transition-delay: 0.2s; }
.fade-in[data-delay="300"] { transition-delay: 0.3s; }
.fade-in[data-delay="400"] { transition-delay: 0.4s; }
.fade-in[data-delay="500"] { transition-delay: 0.5s; }
.fade-in[data-delay="600"] { transition-delay: 0.6s; }
.fade-in[data-delay="700"] { transition-delay: 0.7s; }
.fade-in[data-delay="800"] { transition-delay: 0.8s; }

.fade-up[deta-deley-duration="100"] {transition-duration: 0.8s;}
.fade-up[deta-deley-duration="200"] {transition-duration: 1s;}
/*--------------------*/
html{
    scroll-behavior: smooth;
    font-size: 90%;
}
body {
  font-family: "Libre Baskerville", serif;
  overflow-x: hidden;
}
img{
    width: 100%;
}
a{
  transition: filter 0.8s ease-out;
}
a:hover{
  filter: brightness(0.8);
}
header{
    position: fixed;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 5;
      background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
header.scrolled {
  background: #ffd7d7c4;
}
header .wrap {
    max-width: 1400px;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header h1{
    max-width: 300px;
    width: 100%;
}
#g-nav ul{
    display:flex;
    gap: 3vw;
    font-size: 1.2rem;
    letter-spacing: 2px;
    align-items: center;
}
#g-nav li{
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
}
#g-nav li a{
    color: #906b73;
}
#g-nav > div > ul > li > a {
  position: relative;
}

/* 下線アニメーション */
#g-nav > div > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #7a5555;
  transition: 0.3s ease;
  transform: translateX(-50%);
}

#g-nav > div > ul > li > a:hover::after {
  width: 100%;
}
#g-nav li:last-child > a:hover::after {
  width: 0;
}

/* ドロップダウンメニュー */
.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  display: block!important;
  top: 100%;
  left: -20px;
  padding: 0 0;
  min-width: 130px;
  z-index: 999;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  font-size: 1rem;
  background-color: #ffffffc4;
}

.has-submenu:hover .submenu {
  max-height: 500px; /* 十分大きければOK */
  opacity: 1;
  padding: 10px 10px;
  margin-top: 10px;
}
.submenu span{
    font-family: sans-serif;
    font-weight: 100;
}
.submenu li a {
  display: block!important;
  padding: 8px 16px;
  padding-left: 0;
  font-size: 1rem;
  text-decoration: none;
  font-weight: normal;
  transition: background 0.3s;
}

.submenu li a:hover {
}

#g-nav .store_btn{
    max-width: 150px;
}

.flex-wrap{
    display: flex
}
.wrap{
    max-width: 1200px;
    margin: auto;
    padding: 100px 0;
    position: relative;
}

.mv-wrap{
    position: relative;
}
.mv-wrap a:nth-child(2){
    position: absolute;
    left: 13.5vw;
    bottom: 20vw;
    max-width: 350px;
    width: 21vw;
}
.mv-wrap a:last-child{
    position: absolute;
    left: 13.5vw;
    bottom: 9vw;
    max-width: 350px;
    width: 21vw;
}
.mv-wrap img{
    vertical-align: bottom;
}
.swiper-pagination.mv-pg{
  bottom: 50px!important;
}

#product{
    position: relative;
    background-image: url(../img/product_bg.jpg);
    background-size: cover;
}
#product:before{
    content: "";
    background-image: url(../img/product_set.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#product h2{
    font-size: 3rem;
    font-family: "Libre Baskerville", serif;
    font-weight: bold;
    font-style: normal;
    color: #906b73;
    text-align: center;
}
#product .text-wrap{
    font-family: "Libre Baskerville", serif;
    color: #5b4706;
    margin: 100px auto 150px;
}
#product .text-wrap .title{
    font-size: 3.5rem;
    line-height: 75px;
    font-weight: bold;
    padding-bottom: 60px;
    display: inline-block;
}
#product .text-wrap p{
    font-size: 1.5rem;
    line-height: 45px;
    max-width: 600px;
}
.movie video{
    width: 100%;
    margin: 30px auto 60px;
    cursor: pointer;
}
.size2 h3{
    font-size: 2rem;
    font-family: serif;
    color: #5b4706;
    text-align: center;
}
.size2 h3 b{
    font-size: 5rem;
    font-style: italic;
    font-family: "Lusitana", serif;
    font-weight: 400;
    font-style: normal;
}
.size2 p{
    font-size: 1.5rem;
    line-height: 45px;
    text-align: center;
    color: #5b4706;
    padding-bottom: 60px;
}
.size2 .flex-wrap{
    gap: 50px;
    margin: 60px auto;
    justify-content: center;
}
.size2 .sizeimg{
    border-radius: 30px 30px 0px 0px;
}
.size2 .flex-wrap .content{
    flex: 1;
    border-radius: 30px;
    background-color: #fff;
    position: relative;
}
.size2 .content .flag{
    background-color: #fff;
    color: #5b4706;
    position: absolute;
    font-size: 1.2rem;
    line-height: 22px;
    border-radius: 100px;
    font-weight: 600;
    top: -20px;
    right: 20px;
    text-align: center;
    width: 100px;
    height: 100px;
    align-content: center;
}
.size2 .flex-wrap .content .title{
    font-size: 1.8rem;
}
.size2 .flex-wrap .content p{
    font-size: 1.2rem;
    line-height: 40px;
    text-align: center;
    color: #5b4706;
    padding: 30px;
}
.size2 .buy_btn{
    max-width: 400px;
    width: 23vw;
    margin: auto;
    display: block;
    padding-top: 0px;
}

#way h3{
    font-size: 2rem;
    font-family: serif;
    color: #5b4706;
    text-align: center;
}
#way img{
    width: 80%;
    margin: 60px auto 0;
    display: block;
}

#features{
    background-image: url(../img/features_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
#features .illust{
    padding: 30px 0 50px;
}
#features p{
    font-size: 1.8rem;
    line-height: 45px;
    text-align: center;
    color: #5b4706;
    font-weight: bold;
}
#features h3{
  position: relative;
  text-align: center;
  margin: auto;
  margin-bottom: 30px;
}
#features h3:after {
  content: "";
  background: url(../img/features.png);
  background-size: contain;
  background-position: center;
  width: 100%;
  max-width: 1200px;
  height: 170px;
  position: absolute;
  z-index: 0;
  background-repeat: no-repeat;
  filter: opacity(0.8);
  left: 0;
  right: 0;
  margin: auto;
  mix-blend-mode: color-burn;
}
#features h3 img{
    max-width: 500px;
    margin: auto;
    position: relative;
    z-index: 1;
}

#detox {
    background-image: url(../img/detox_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#detox>.wrap{
  width: 90%;
}
#detox .flex-wrap{
    gap: 5vw;
}
#detox .detox-box .flex-wrap{
  gap:0;
}
#detox .detox-box .flex-wrap>div{
  width: 90%;
}
#detox .vertical_text{
    writing-mode: vertical-rl;
    position: absolute;
    font-size: 1.8rem;
    line-height: 45px;
    font-weight: bold;
    color: #5b4706;
    left: 40%;
    margin-top: -50px;
    /* right: 0;
    margin: auto; */
    width: fit-content;
}
#detox .content{
    flex: 1;
}
.detox-box{
  background-image: url(../img/product_bg.jpg);
  background-size: cover;
  background-color: #fff;
  border-radius: 30px;
    text-align: center;
    padding: 30px 30px 30px 0px;
}
.detox-box .detox-img{
    width: 80%;
    margin: -70px auto 30px;
    display: inline-block;
}
#detox .buy_btn{
  max-width: 350px;
  margin: auto;
  padding-bottom: 20px;
  display: block;
}
#detox .line{
  padding-left: 30px;
  box-sizing: border-box;
}
#voice{
    background-color: #c4bad3;
    padding: 100px 0;
}
#voice h2{
    font-size: 3rem;
    font-family: "Libre Baskerville", serif;
    font-weight: bold;
    font-style: normal;
    color: #906b73;
    text-align: center;
    padding-bottom: 100px;
}
#voice p{
    font-size: 1.8rem;
    line-height: 45px;
    text-align: center;
    color: #5b4706;
    font-weight: bold;
}
.voice_slide{
    max-width: 1200px;
    margin: 50px auto 100px;
    position: relative;
}
.voice_slide .voice_over{
    width: 100%;
	width: calc(100% + (100vw - 1200px) / 2);
	overflow: hidden;
	z-index: 2;
}
.swiper-pagination{
    bottom: -100px!important;
}
.swiper-pagination-bullet{
    border: solid 2px #906b73;
    background: unset;
    opacity: 1;
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 25px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 25px));
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 10px)!important;
}
.swiper-pagination-bullet-active{
    background: #906b73;
}
.swiper-button-next{
    width: 60px;
}
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}
.swiper-button-next::after {
  background-image: url(../img/arrow.svg);
  height: 60px;
}
.voice_content img{
    border-radius: 100px;
    width: 100px;
    height: 100px;
      border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px;
  display: block;
}
.voice_content {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-family: serif;
  color: #000;
  text-align: center;
  margin: 0 auto;
  box-sizing: border-box;
  min-height: 370px;
}


.voice_content span {
  display: block;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 20px;
  border-bottom: solid 1px;
  padding-bottom: 20px;
}

#voice .voice_content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
  white-space: pre-wrap;
  color: #000;
  text-align: justify;
}

.voice_content .meta {
  font-size: 12px;
  line-height: 1.4;
  color: #000;
  text-align: left;
  padding-left: 10px;
  border-left: 2px solid #906b73;
  position: absolute;
  bottom: 20px;
}

#news{
    background-image:url(../img/news_bg.jpg);
    background-size: cover;
    padding: 100px 0 200px;
}
#news h2{
    font-size: 3rem;
    font-family: "Libre Baskerville", serif;
    font-weight: bold;
    font-style: normal;
    color: #906b73;
    text-align: center;
    padding-bottom: 100px;
}
#news p{
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: justify;
    color: #000;
    font-weight: bold;
}
#news .news_content span{
    font-family: sans-serif;
    font-weight: 800;
    background: #e2dcdf;
    padding: 10px 30px;
    border-radius: 30px;
    margin: 50px 0 30px;
    display: inline-block;
    letter-spacing: 1px;
}
#news .text-wrap{
    width: 80%;
    margin: auto;
}
.news_slide{
    position: relative;
}
.news_slide img {
    aspect-ratio: 19 / 11;
    max-height: 360px;
    object-fit: cover;
}
@media screen and (max-width:767px) {
.news_slide img {
    max-height: 180px;
    object-fit: cover;
}
}

#faq h2{
    font-size: 3rem;
    font-family: "Libre Baskerville", serif;
    font-weight: bold;
    font-style: normal;
    color: #906b73;
    text-align: center;
    padding-bottom: 100px;
}
#faq p{
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: justify;
    color: #000;
    font-weight: bold;
}

#faq .wrap{
    width: 80%;
}
.qa-item {
  border-top: 1px solid #906b73;
}
.qa-item:last-child{
    border-bottom: solid 1px #906b73;
}
.qa-question {
  width: 100%;
  background: none;
  border: none;
  padding: 30px 50px;
  font-size: 1.2rem;
  text-align: left;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Libre Baskerville", serif;
  font-weight: bold;
  color: #000;
}

.qa-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #7a5555; /* ← 円背景の色 */
  display: inline-block;
  margin-left: 10px;
  flex-shrink: 0;
}
.qa-toggle::before,
.qa-toggle::after {
  content: "";
  position: absolute;
  background-color: #fff; /* ← 十字の線を白に */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
  border-radius: 1px;
}
.qa-toggle::before {
  width: 12px;
  height: 2px; /* 横棒 */
}

.qa-toggle::after {
  width: 2px;
  height: 12px; /* 縦棒 */
}

.qa-item.open .qa-toggle::after {
  transform: translate(-50%, -50%) scaleY(0); /* 縦線を非表示にして「−」に */
}

.qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0px 50px;
  background-color: #f9e6df;
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 1px;
  font-weight: bold;
  box-sizing: border-box;
}

.qa-item.open .qa-answer {
    padding: 30px 50px;
    max-height: 500px;
}

#online{
    background-image: url(../img/online_bg.jpg);
    background-size: cover;
}
#online h2{
    font-size: 3rem;
    font-family: "Libre Baskerville", serif;
    font-weight: bold;
    font-style: normal;
    color: #906b73;
    text-align: center;
    padding-bottom: 100px;
}
#online .left-wrap{
  width: 40%;
  display: flex;
  align-items: center;
  gap: 20px;
}
#online .left-wrap p{
  writing-mode: vertical-rl;
  font-size: 1.8rem;
  line-height: 45px;
  font-weight: bold;
  color: #5b4706;
}
#online .right-wrap{
  width: 60%;
  align-content: center;
}
#online .right-wrap > img{
    width: 100%;
    padding-top: 30px;
}
#online .right-wrap .flex-wrap{
  gap: 30px;
}

footer{
    background-image: url(../img/footer_bg.jpg);
    background-size: cover;
    background-position: left;
    color:#fff;
}
footer .flex-wrap{
    max-width: 1400px;
    margin: auto;
    padding: 60px 0;
    justify-content: space-between;
}
footer .logo img{
    max-width: 300px;
    width: 100%;
}
footer ul{
    margin-top: 30px;
}
footer li{
    line-height: 25px;
    font-size: 1rem;
}
footer .right-wrap{
    align-content: end;
    text-align: right;
}
footer .right-wrap img{
    width: 80px;
    height: 80px;
    padding-bottom: 20px;
}
footer .copy{
  font-size: 0.7rem;
}
span.sp_navi {
  display: none;
}
.sp_insta{
  display: none;
}

.post-thumbnail img{
  max-height: 700px;
    width: 100%;
    object-fit: cover;
}
.post-cat{
    font-family: sans-serif;
    font-weight: 800;
    background: #e2dcdf;
    padding: 10px 30px;
    border-radius: 30px;
    margin: 50px 0 30px;
    display: inline-block;
    letter-spacing: 1px;
}
.post-head-bg{
  background-color: #e0d1d3;
}
.post-head-bg h1{
    font-size: 1.8rem;
    line-height: 45px;
    padding-bottom: 20px;
    font-weight: bold;
}
.post-head-bg .wrap{
  padding-bottom: 30px;
}
.post-content-bg{
  background-color: #f3f1ec;
}
.post-content-bg p{
  font-size: 1.5rem;
  line-height: 40px;
}

@media screen and (max-width:1400px) {
  header .wrap,
  footer .flex-wrap{
      width: 95%;
  }
}
@media screen and (max-width:1210px) {
    html{
        font-size: 80%;
    }
    .wrap{
        width: 75%;
    }
    #product .text-wrap{
        margin: 50px auto 100px;
    }
    #product .text-wrap p{
      max-width: 550px;
    }
}

@media screen and (max-width:767px) {
  .pc{display: none;}
  .sp{display: block;}
  /*========= ハンバーガーメニュー ===============*/
  #g-nav {
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    transition: all 0.3s;
    height: 0;
  }

  #g-nav.panelactive {
    opacity: 1;
    z-index: 997;
    height: 100%;
  }

  #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #g-nav ul {
    display: none;
    position: absolute;
    z-index: 9999;
    top: 10%;
    transition: all 0.3s;
  }

  #g-nav.panelactive ul {
    display: block;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    padding-bottom: 80px;
  }


  #g-nav li {
    position: relative;
    list-style: none;
    text-align: left;
    color: #58595b;
    line-height: 18px;
  }

  #g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 20px 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 1rem;
  }
  .insta-link{
    /* position: fixed; */
    z-index: 2;
    right: 15vw;
    width: 30px;
    height: 30px;
    display: block;
    line-height: 100px;
    margin: 0 50px;
    /* top: 3%; */
  }

  .openbtn1 {
    position: relative;
    z-index: 998;
    top: 18%;
    right: 0;
    cursor: pointer;
    width: 80px;
    height: 50px;
    margin-left: auto;
  }

  .openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 5px;
    height: 2px;
    border-radius: 2px;
    background-color: #7a5555;
    width: 80%;
  }

  .openbtn1 span:nth-of-type(1) {
    top: 18px;
  }

  .openbtn1 span:nth-of-type(2) {
    display: none;
    /* top: 23px; */
    /* width: 60%; */
  }

  .openbtn1 span:nth-of-type(3) {
    top: 28px;
  }

  .openbtn1.active span:nth-of-type(1) {
    top: 18px;
    right: 6px;
    transform: translateY(6px) rotate(-25deg);
    width: 70%;
  }

  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn1.active span:nth-of-type(3) {
    top: 30px;
    right: 6px;
    transform: translateY(-6px) rotate(25deg);
    width: 70%;
  }


  #g-nav li:before{
    left: -6vw;
  }
  html{
    font-size: 70%;
  }
  header .wrap {
    width: 90%;
    padding: 0;
  }
  .openbtn1{
    top: 22%;
  }
  .wrap{
    padding: 60px 0;
  }
  /*========= ハンバーガーメニュー ===============*/

  header{
    background-color: #fff;
    z-index: 9998;
  }
  header h1{
    position: relative;
    z-index: 9999;
  }
  header h1 img{
    max-width: 150px;
    padding: 10px 0;
  }
  .has-submenu .submenu {
    position: unset!important;
    opacity: 1;
    overflow: visible;
    height: auto;
    transition: unset;
    padding: 0!important;
    max-height: 500px;
    padding-bottom: 15px !important;
    margin-left: 10%!important;
  }
  .submenu li a{
    font-size: 130%!important;
  }
  #g-nav-list li a{
    color: #906b73;
    font-size: 160%;
    letter-spacing: 0;
    text-align: left;
  }
  #g-nav-list > ul li:last-child a {
    text-align: center;
  }
  #g-nav-list .submenu li a {
    padding: 20px 10px;
    text-align: left!important;
  }
  
  #g-nav > div > ul > li > a:hover::after {
    width: 0;
  }
  #g-nav-list > ul li:last-child{
    text-align: center;
  }
  .sp_insta{
    display: block;
  }
  .sp_insta img{
    filter: invert(51%) sepia(3%) saturate(3888%) hue-rotate(297deg) brightness(85%) contrast(79%);
    width: 50px;
    height: 50px;
  }
  .sp_insta .flex-wrap{
      justify-content: space-around;
      align-items: center;
      color: #906b73;
      border-bottom: solid 1px;
      padding-top: 30px;
  }
  #mv{
    padding-top: 50px;
  }
  .mv-wrap a:nth-child(2){
    position: absolute;
    left: 10px;
    right: unset;
    margin: auto;
    bottom: 20vw;
    max-width: 170px;
    width: 55vw;
  }
  .mv-wrap a:last-child{
      position: absolute;
      left: unset;
      right: 10px;
      margin: auto;
      bottom: 20vw;
      max-width: 170px;
      width: 55vw;
  }
  .swiper-pagination.mv-pg {
      bottom: 30px !important;
  }
  span.sp_navi {
      font-size: 50%;
      display: inline-block;
  }
  #product:before {
      background-image: url(../img/product_set_sp.webp);
  }
  #product h2{
    font-size: 2rem;
  }
    #product .text-wrap {
        margin: 50px auto 50px;
    }
  #product .text-wrap .title {
      font-size: 2.4rem;
      line-height: 35px;
      padding-bottom: 50vw;
      display: block;
      margin: auto;
      width: fit-content;
  }
  #product .text-wrap p {
      font-size: 1.38rem;
      line-height: 30px;
      width: 100%;
      text-align: justify;
      margin: auto;
      font-weight: bold;
  }
  .size2 h3 {
      text-align: justify;
      line-height: 30px;
      width: fit-content;
      margin: auto;
  }
  .size2 .flex-wrap {
      flex-wrap: wrap;
      margin: 50px auto;
  }
  .size2 .flex-wrap .content {
      flex: unset;
      width: 100%;
  }
  .size2 .flex-wrap .content p {
      font-size: 1rem;
      line-height: 25px;
      text-align: center;
      color: #5b4706;
      padding: 15px;
  }
  .size2 p {
      font-size: 1.1rem;
      line-height: 30px;
      text-align: center;
      color: #5b4706;
      font-weight: 600;
      padding-bottom: 30px;
  }
  .size2 .buy_btn {
      width: 80%;
      /* padding-top: 30px; */
  }
  #way img {
      width: 90%;
  }  
  #features h3{
    width: 100%;
    margin: auto;
  }
  #features h3 img{
    width: 80%;
  }
  #features h3:after{
    height: 60px;
        bottom: 0;
  }
  #features p {
      font-size: 1.3rem;
      line-height: 20px;
  }
  #features .illust {
      width: 80%;
      margin: auto;
      display: block;
  }
  #detox {
      background-image: url(../img/detox_bg_sp.jpg);
      background-size: 100%;
      background-position: top;
      background-color: #f9e6df;
  }
  #detox .vertical_text{
    position: relative;
  }
  #detox .flex-wrap {
      gap: 5vw;
      flex-wrap: wrap;
      width: 80%;
      margin: auto;
      line-height: 30px;
      justify-content: center;
  }
  #detox .content {
    flex: unset;
  }
  #detox .vertical_text {
      left: unset;
      right: 30px;
      top: -30px;
      margin: auto;
      margin-right: 0;
      width: fit-content;
  }
  #detox .line {
    padding-left: 10px;
    padding-right: 10px;
  }
  .detox-box{
    padding: 30px 0 30px 0;
  }
  #voice {
    background-color: #c4bad3;
    padding: 60px 0;
  }
  #voice h2{
    padding-bottom: 50px;
  }
  #voice p{
      font-size: 1.2rem;
      line-height: 30px;
  }
  .voice_slide{
    margin: 30px auto 60px;
  }
  .voice_slide .voice_over {
      width: calc(100% + (100vw - 500px) / 2);
      margin-right: 0;
  }
  .swiper-pagination-bullet {
      width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 20px));
      height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 20px));
  }
  .swiper-pagination {
      bottom: -80px !important;
  }
  #news{
    padding: 60px 0 150px;
  }
  #news h2{
    padding-bottom: 50px;
  }
  #news .text-wrap {
    width: 90%;
    margin: auto;
  }
  #online h2{
    font-size: 2rem;
    padding-bottom: 50px;
  }
  #online .left-wrap,
  #online .right-wrap{
    width: 100%;
    text-align: center;
  }
  #online .flex-wrap{
    flex-wrap: wrap;
  }
  #online .right-wrap .flex-wrap{
    width: 60%;
    margin: auto;
    gap: 20px;
  }
  footer > .flex-wrap{
    flex-wrap: wrap;
    width: 80%;
    padding: 30px 0;
  }
  footer .left-wrap > .flex-wrap{
    justify-content: space-between;
    align-items: center;
    padding: 0;
    width: 100%;
  }
  footer .logo img {
      max-width: 150px;
      width: 100%;
  }
  footer .left-wrap .insta{
    width: 50px;
  }
  footer ul {
    margin-top: 10px;
  }
  footer li {
    line-height: 15px;
  }
  footer .right-wrap{
    display: block;
    margin: 50px auto 0;
    font-size: 0.8rem;
  }

  .post-head-bg h1{
    font-size: 1.2rem;
    line-height: 30px;
  }
  .post-content-bg p{
    font-size: 1.1rem;
    line-height: 30px;
  }
}