:root {
  --overlap: clamp(48px, 6vw, 64px);
  --overlap2: clamp(52px, 8vw, 104px);
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  font-style: normal;
  color: #534641;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

#body_wrap {
  margin: 0 auto;
  background: radial-gradient(
    circle at 50% 40%,
    /* 光源を中央寄りに */ rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 244, 220, 0.5) 50%,
    rgba(255, 241, 234, 0.9) 100%
  );

  background-repeat: no-repeat;
  background-attachment: fixed; /* ←ふわっと全体にかかる雰囲気 */

  position: relative;
  z-index: 0;
  border-style: none;
  overflow: hidden;
}

.content > *,
.subscription-plan > *,
.subscription-plan .price-box > *,
.reason-content > * {
  min-width: 0;
}

/* スクリーンリーダー向け非表示 */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1em;
}

h1,
h2,
h3 {
  font-family:
   "Shippori Mincho", "Times New Roman", Times, serif;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  font-weight: 400;
  font-style: normal;
}

h2,
h3 {
  margin-bottom: 1em;
}

p {
  font-size: clamp(1rem, 0.519rem + 1.98vw, 2rem);
  margin-bottom: 2rem;
}

p:last-of-type {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

a:hover {
  color: #333;
  opacity: 0.8;
}

a:visited {
  color: #333;
}

.en-heading {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.marker {
  background: linear-gradient(transparent 60%, rgba(251, 249, 138, 0.6) 60%);
}

.narrow {
  letter-spacing: -0.2em;
}

.txt-center {
  text-align: center;
}

.txt-link {
  text-decoration: underline;
}

.txt-red {
  color: #ff5f57;
}

.txt-s {
  font-size: 0.8em;
}

.txt-xs {
  font-size: 0.7em;
}

.txt-l {
  font-size: 1.4em;
}

.txt-xl {
  font-size: 1.6em;
}

.txt-shadow-w {
  text-shadow:
    3px 3px 2px #fff,
    -3px 3px 2px #fff;
}

.txt-medium-b {
  font-weight: 500;
}

.txt-bold {
  font-weight: 600;
}

.font-s-30 {
  font-size: clamp(0.938rem, 0.24rem + 3.49vw, 1.875rem);
}

/*16-32*/
.font-s-32 {
  font-size: clamp(1rem, 4.27vw, 2rem);
}

/*20-40*/
.txt-m {
  font-size: clamp(1.25rem, 5.33vw, 2.5rem);
}
/*24-48*/
.font-s-48 {
  font-size: clamp(1.5rem, 6.4vw, 3rem);
}

.txt-sans {
  font-family: "Noto sans-serif", sans-serif;
}

.bg_red_txt {
  display: inline-block;
  margin: clamp(1.25rem, 0.648rem + 2.47vw, 2.5rem) auto;
  padding: 0.35em 1em;
  color: #fff;
  background-color: #ff5f57;
}

.txt-underline {
  text-decoration: underline;
  text-underline-offset: 0.5em;
  text-decoration-thickness: 1px;
}

.beauty .y-underline {
  position: relative;
}

.beauty .y-underline::after {
  content: "";
  position: absolute;
  background-image: url(img/yellow-line@1.5x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  width: 100%;
  height: 100%;
  left: 0;
}

ul.list-notice {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
  font-size: clamp(0.75rem, 0.389rem + 1.48vw, 1.5rem);
}

.list-notice li {
  position: relative;
  padding-left: 1em;
}

.list-notice li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/*購入ボタン*/
.btn_wrap {
  display: flex;
  justify-content: center;
  margin: 1rem auto;
  width: 100%;
  max-width: 600px;
}
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  width: 100%;
  padding: 3rem 2rem;
  background: linear-gradient(to bottom, #b9d859, #63af31, #167a3c);
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  font-variant-east-asian: proportional-width;
  font-feature-settings: "palt", "pkna";
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}

.btn-icon {
  width: 1.2em;
  height: 1.2em;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon svg {
  width: 0.6em;
  height: 0.6em;
  fill: #60ad31;
}

a.btn:hover {
  background: linear-gradient(to bottom, #b9d859, #63af31, #167a3c);
}

a.glossy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 1.5rem;
  width: 100%;
  background: linear-gradient(to bottom, #b9d859, #63af31, #167a3c);
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  font-variant-east-asian: proportional-width;
  font-feature-settings: "palt", "pkna";
  border: solid 1px #b9d859;
  border-radius: 0.75rem;
  text-decoration: none;
  box-shadow:
    inset 0 0 0 1px #fff,
    0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

a.glossy-btn::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  height: 1.5rem;
  width: 96%;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 16px 16px 0 0;
  filter: blur(8px);
  pointer-events: none;
}

a.glossy-btn:hover {
  background: linear-gradient(to bottom, #b9d859, #63af31, #167a3c);
}

.l-container {
  width: 100%;
  max-width: 750px;
  padding: 0;
  margin: 0 auto;
  border: 1px solid #eee;
  background-color: #fff;
}

/*header*/
.fv {
  position: relative;
  margin-inline: auto;
  overflow: hidden;
}

.fv__art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 0;
}

.copy {
  position: absolute;
  width: calc(100% - 2rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20px);
}

.fv-follow {
  position: relative;
  padding: 2.5rem 0 0;
  margin-top: -1px;
  z-index: 0;
}

.fv-follow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 750 / 1256;
  background: url(img/fv_wave@2x.webp) no-repeat top center;
  background-size: 100% auto;
  z-index: -1;
}

.collagen_copy {
  position: relative;
  padding: clamp(2.344rem, -7.244rem + 40.91vw, 3.75rem) 0;
}

.fv-follow .arrow-img {
  width: clamp(3.5rem, 1.815rem + 6.91vw, 7rem);
  height: auto;
  margin: 1rem auto;
}

.fv-follow .txtimg {
  width: clamp(19.25rem, -1.604rem + 85.56vw, 38.5rem);
  height: auto;
  margin: 0 auto;
}

.fv-follow .productimg {
  margin: 0 auto;
  width: clamp(22.063rem, -1.839rem + 98.06vw, 44.125rem);
  height: auto;
}

.fv-comment {
  position: absolute;
  top: -6.5rem;
  left: -0.5rem;
  width: clamp(12.5rem, -0.5rem + 53.33vw, 24.5rem);
  height: auto;
}

.fv-follow__mid {
  display: block;
  width: clamp(18.75rem, -1.563rem + 83.33vw, 37.5rem);
  height: auto;
  margin: 1rem auto 0;
}

@media (min-width: 600px) {
  .fv-follow {
    position: relative;
    padding: 6rem 0 0;
  }
  .fv-comment {
    top: -12rem;
    left: -1.5rem;
    height: auto;
  }

  .collagen_copy {
    position: relative;
    padding: 100px 0 4.5rem;
  }
}

@media (max-width: 360px) {
  .fv-follow {
    position: relative;
    padding: 3rem 0 1rem;
    margin-top: -1px;
  }

  .fv-comment {
    top: -4.5rem;
    width: 180px;
    height: auto;
  }

  .fv-follow .arrow-img {
    width: 3rem;
  }

  .fv-follow .txtimg {
    width: 100%;
    max-width: 260px;
  }

  .fv-follow__mid {
    display: block;
    width: 260px;
    height: auto;
    margin: 1rem auto 0;
  }

  .collagen_copy {
    position: relative;
    padding: clamp(0.8rem, -7.2rem + 40vw, 1.8rem) 0;
  }
}

section {
  position: relative;
  width: 100%;
  max-width: 750px;
}

.content {
  width: 100%;
  padding: clamp(2.5rem, 0.64rem + 9.3vw, 5rem) 1.5em;
}

@media (max-width: 320px) {
  a.glossy-btn {
    font-size: 1.25rem;
  }

  .content {
    width: 100%;
    padding: 1.75rem 0.75rem;
  }

  .fv-follow .txtimg {
    width: 100%;
    max-width: 240px;
  }

  .fv-follow .productimg {
    width: 300px;
  }
}

/*campaing*/
.campaigntxtimg {
  width: clamp(12.25rem, -1.021rem + 54.44vw, 24.5rem);
  height: auto;
  margin-top: -0.25em;
  margin-inline: auto;
}

.presentmsg {
  position: relative;
}

.presenttxt {
  margin-inline: auto;
  width: clamp(18.75rem, 80vw, 37.5rem);
  height: auto;
}

.present-deco {
  position: absolute;
  right: 0;
  top: 1.5em;
  width: clamp(5rem, -0.581rem + 27.91vw, 12.5rem);
  height: auto;
}

.campaign_wrap h2 {
  font-size: clamp(1.5rem, -0.25rem + 7.47vw, 3.25rem);
  line-height: 1.5;
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

@media (max-width: 349px){
  .campaign_wrap h2 {
  font-size: 1.25rem;
}
}

.campaign_wrap {
  position: relative;
  background-color: #fff;
  padding: clamp(2.5rem, 0.64rem + 9.3vw, 5rem) 0 2.5rem;
}

.campaign_wrap::before {
  content: "";
  position: absolute;
  top: clamp(6.75rem, -0.134rem + 34.42vw, 16rem);
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  height: 100%;
  background: #fdfae7;
  clip-path: ellipse(150% 100% at 50% 100%);
  z-index: 0;
}

.present-wrap {
  position: relative;
  padding: 2rem 1rem 0;
  border: 2px solid #ffa171;
  border-radius: 5px;
  margin: 1rem auto;
  width: 88%;
  max-width: 630px;
}

.present-wrap img {
  margin-bottom: 1.5rem;
  margin: 0 auto 1.875rem;
}

.present-badge {
  position: absolute;
  width: clamp(4.125rem, 17.6vw, 8.25rem);
  height: auto;
  top: -1.5rem;
  left: -1rem;
}

@media (min-width: 600px) {
  .present-deco {
    top: 2em;
  }
  .present-badge {
    top: -4em;
    left: -2.5em;
  }
}

@media (max-width: 374px) {
  .campaign_wrap {
    padding-top: 1rem;
  }
}

.subtxt {
  width: 70px;
  aspect-ratio: 1/1;
  margin-inline: auto;
}

.subheadcare01 {
  max-width: 200px;
  margin: 0 auto 1.25rem;
}

.subheadcare02 {
  max-width: 300px;
  margin: 1.5em auto;
}

.sec-notes {
  padding: 0;
  background-color: #fdf8f5;
  position: relative;
  padding-top: 34rem;
  --offset-y: 38rem;
  background: #fff7f2 url(img/now-bg@2x.webp) no-repeat no-repeat center
    var(--offset-y) / contain;
  position: relative;
  z-index: 1;
}

.sec-notes .note-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(450px, 100vw, 913px);
  max-width: none;
  height: auto;
  z-index: 2;
}

.subtxt-img01 {
  width: 148px;
  margin: 0 auto;
}

.sec-now {
  position: relative;
  padding-top: clamp(8rem, -22.157rem + 62.75vw, 18rem);
  margin-bottom: -2rem;
  z-index: 1;
}

.sec-now .kv {
  margin-bottom: 0;
}

.now-ttl {
  padding: 0 1.5rem;
  margin-bottom: 0.5rem;
}

.sec-now h2 {
  margin-bottom: 0;
}

.sec-now p {
  font-family: "Shippori Mincho", serif;
  font-size: 2.1rem;
  color: #534641;
  position: absolute;
  bottom: 1.5em;
  left: 1rem;
  line-height: 1.5;
  z-index: 2;
}

.sec-now .copybg {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-15vw, 20vw);
 /*background-image: url(img/blur@2x.webp);*/
  background-repeat: no-repeat;
  background-size: 374px 380px;
  z-index: 1;
  overflow: hidden;
}

/* SP（600px以下） */
@media (max-width: 600px) {
  .sec-notes {
    overflow: hidden;
    padding-top: clamp(18rem, 8rem + 42.67vw, 24rem);
    --offset-y: clamp(18rem, 8rem + 42.67vw, 24rem);
    background: #fff7f2 url(img/now-bg@2x.webp) no-repeat center
      var(--offset-y) / contain;
  }

  .sec-now {
    padding-top: 8rem;
  }
}

/* SP（320px以下） */
@media (max-width: 320px) {
  .sec-notes {
    overflow: hidden;
    padding-top: 13rem;
    --offset-y: 13rem;
  }

  .sec-now {
    padding-top: 7rem;
  }

  .sec-notes .note-img {
    position: absolute;
    top: 0rem;
    left: -0.5rem;
    min-width: 350px;
    width: 100%;
  }
}

/*Feature*/
.feature .arrow-img {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(3.5rem, 1.815rem + 6.91vw, 7rem);
  height: auto;
  margin: 0 auto;
  z-index: 1;
}

.feature .waterdrop-secnow {
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  width: 146px;
  height: auto;
  margin: 0 auto;
  z-index: 1;
}

.reason-sec {
  background-color: #fffdee;
  padding: clamp(1.875rem, 0.48rem + 6.98vw, 3.75rem)
    clamp(0.938rem, -0.469rem + 6.25vw, 1.875rem) 1em;
  position: relative;
  overflow: visible;
}

.reason-sec h2 img {
  margin: 0 auto;
}

.reason-sec .sorewa {
  position: relative;
  left: 2.75em;
  bottom: -2rem;
  width: clamp(4.063rem, 17.33vw, 8.125rem);
  z-index: 3;
}

.reason-content {
  position: relative;
  background-color: #fff;
  padding: 2rem 1.5rem;
  border: 1px solid #c1aba2;
  border-radius: 5px;
  box-shadow: 0px 10px 10px rgba(90, 87, 60, 0.24);
}

.reason-content:last-child {
  margin: 4rem auto 1rem;
}

.reason-pic img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.reason-subtll-nmbr {
  position: absolute;
  top: -2.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(6.625rem, -3.406rem + 44.58vw, 13.313rem);
}

.reason-subtll-nmbr:before {
  content: "";
  display: block;
  width: clamp(6.25rem, -3.125rem + 41.67vw, 12.5rem);
  height: 4px;
  background-color: #fff;
  z-index: 1;
}

.reason-subttl {
  font-size: clamp(1.5rem, -2.813rem + 19.17vw, 4.375rem);
  line-height: 1.2;
}

.reason-content h3 {
  margin: clamp(1.25rem, -0.625rem + 8.33vw, 2.5rem) auto;
}

.reason-subttl::before {
  content: "";
  display: block;
  position: absolute;
  width: clamp(6.25rem, -3.125rem + 41.67vw, 12.5rem);
  height: 8px;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  top: -0.06rem;
}

.reason-sec figure {
  margin: 1em auto;
}

@media (min-width: 600px) {
  .feature {
    margin-top: -2.5rem;
  }

  .feature .arrow-img {
    position: absolute;
    top: -1.5rem;
  }
  .feature .waterdrop-secnow {
    position: absolute;
    top: -3rem;
    left: -1.5rem;
    width: 292px;
    height: auto;
    margin: 0 auto;
    z-index: 1;
  }

  .reason-content:last-child {
    margin: 6rem auto 1rem;
  }

  .reason-sec .sorewa {
    position: relative;
    left: 7em;
    bottom: -2rem;
    z-index: 3;
  }
}

/*お手軽セクション*/
.idea-content {
  background-color: #fffdee;
  padding-bottom: 3rem;
}

@media (max-width: 750px) {
  .idea-content .btn_wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.idea-block {
  margin-bottom: 3em;
  position: relative;
}

.idea-block img {
  margin: 0 auto;
}

.idea-block h3 {
  margin: 0;
}

.curve-top {
  position: relative;
  background: #fff;
  overflow: visible;
}

.curve-top::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0; /* カーブの深さ */
  width: 100%; /* 横幅はセクションより大きめ */
  height: 4vw; /* カーブの高さ */
  transform: translateX(-50%);
  background: #fffdee; /* ←次のセクションの背景色に合わせる */
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
  z-index: 1;
}

.otegaru-subtxt {
  max-width: 275px;
  margin: 1rem auto;
}

/*お客様の声*/
.voice-sub {
  width: clamp(8.375rem, 4.343rem + 16.54vw, 16.75rem);
  margin-bottom: 0;
}
.voice-content {
  padding: clamp(2rem, 0.512rem + 7.44vw, 4rem)
    clamp(1.25rem, 0.32rem + 4.65vw, 2.5rem);
  background-image: url(img/voice-bg@2x.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.voice-content .voice-ttl {
  width: clamp(14.625rem, 7.583rem + 28.89vw, 29.25rem);
  margin: 0 auto;
}

.voice-content h2 {
  margin: 0 auto 4rem;
}

.voice {
  background-color: #fffdee;
  padding: 1.5rem clamp(1.25rem, -0.625rem + 8.33vw, 2.5rem);
  border-radius: 1px;
  margin-bottom: clamp(2.75rem, 0.25rem + 10.67vw, 5.25rem);
  position: relative;
}

.voice:last-of-type {
  margin-bottom: 1rem;
}

.voice h3 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
  letter-spacing: 0;
}

.voice p {
  font-size: clamp(0.875rem, -0.25rem + 5vw, 1.625rem);
  text-align: justify;
}

/*section voice*/
.voice-icon {
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  width: clamp(5rem, -2.442rem + 37.21vw, 15rem);
  height: auto;
}

.voice-icon-r {
  position: absolute;
  top: -1rem;
  right: -0.5rem;
  width: clamp(5rem, -2.442rem + 37.21vw, 15rem);
  height: auto;
}

.voice-age-r {
  position: absolute;
  top: -1.25rem;
  right: 0;
  width: clamp(3.75rem, 0.959rem + 13.95vw, 7.5rem);
  height: auto;
}

.voice-age-l {
  position: absolute;
  top: -1.25rem;
  left: 0;
  width: clamp(3.75rem, 0.959rem + 13.95vw, 7.5rem);
  height: auto;
}

.voice-head-right {
  margin-left: auto;
  width: fit-content;
}

.voice-head-center {
  margin-inline: auto;
  width: fit-content;
}

.voice-head-left {
  margin-right: auto;
  width: fit-content;
  padding-left: 4rem;
}

.voice-notice {
  font-size: clamp(0.625rem, -0.313rem + 4.17vw, 1.25rem);
}

@media (min-width: 600px) {
  .voice h3 {
    font-size: 3rem;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: 0;
  }
  .voice-icon {
    position: absolute;
    top: -2.5rem;
    left: -1.25rem;
    width: clamp(5rem, -1.047rem + 30.23vw, 13.125rem);
    height: auto;
  }

  .voice-icon-r {
    position: absolute;
    top: -2.5rem;
    right: -1.25rem;
    width: clamp(5rem, -1.047rem + 30.23vw, 13.125rem);
    height: auto;
  }
  .voice-age-r {
    position: absolute;
    top: -2rem;
    right: -1rem;
    width: clamp(3.75rem, 0.959rem + 13.95vw, 7.5rem);
    height: auto;
  }

  .voice-age-l {
    position: absolute;
    top: -2rem;
    left: -1rem;
    width: clamp(3.75rem, 0.959rem + 13.95vw, 7.5rem);
    height: auto;
  }
}

/* 点線 */
.voice-rule {
  border-bottom: 3px dotted #6b5b54;
  width: 100%;
  margin-bottom: clamp(1.5rem, 0.384rem + 5.58vw, 3rem);
  padding: clamp(0.25rem, 0.064rem + 0.93vw, 0.5rem) 0;
}

/*こだわり*/
.ribbon img {
  margin: clamp(0rem, -2.977rem + 14.88vw, 4rem) auto 0;
  width: clamp(12.5rem, 3.198rem + 46.51vw, 25rem);
}

.content.reason-lead {
  position: relative;
  background-image: url(img/bg-gr@1.5x.webp);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center -0.25em;
  background-color: #fffdee;
  padding-top: clamp(3.75rem, 1.25rem + 10.67vw, 6.25rem);
  padding-bottom: 0;
  overflow: visible;
}

.content.reason-lead::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 150px;
  background: url(img/waterdrop-wide@1.5x.png) no-repeat left top;
  background-size: contain;
  bottom: -4rem;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
}

.reason-sec h2 {
  position: relative;
}

.reason-sec h2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 150px;
  background: url(img/waterdrop-wide02@1.5x.png) no-repeat center top;
  background-size: contain;
  top: 170px;
  right: -0.5rem;
  pointer-events: none;
  z-index: 1;
}

.reason-content:nth-of-type(2) {
  position: relative;
}

.reason-content:nth-of-type(2)::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 150px;
  background: url(img/waterdrop-wide03@1.5x.png) no-repeat center top;
  background-size: contain;
  top: -4.5rem;
  right: 0;
  pointer-events: none;
  z-index: 1;
}

.reason-content:nth-of-type(2)::after {
  content: "";
  position: absolute;
  width: 110%;
  height: 272px;
  background: url(img/waterdrop-wide04@1.5x.png) no-repeat center top;
  background-size: contain;
  bottom: -3rem;
  left: -1rem;
  pointer-events: none;
  z-index: 1;
}

.reason-lead-ttl {
  width: clamp(21.625rem, -10.906rem + 144.58vw, 43.313rem);
}

.kodawari-sec {
  position: relative;
  background: linear-gradient(to bottom, #fff 50%, #fede9f 100%);
}

.kodawari {
  position: relative;
}

.kodawari-contents {
  position: relative;
  z-index: 2;
  padding: clamp(6rem, 3.023rem + 14.88vw, 10rem)
    clamp(1.5rem, 0.384rem + 5.58vw, 3rem) clamp(2rem, 1.256rem + 3.72vw, 3rem);
}

.kodawari-water01 {
  position: absolute;
  top: 0.5rem;
  left: -1rem;
  width: 57px;
  height: auto;
}

.kodawari-water02 {
  position: absolute;
  top: -2rem;
  right: 0;
  width: 125px;
  height: auto;
}

.kodawari-water03 {
  position: absolute;
  top: 0.5rem;
  left: -4rem;
  width: 125px;
  height: auto;
}

.kodawari-water04 {
  position: absolute;
  top: -5rem;
  right: 0;
  width: 141px;
  height: auto;
}

.kodawari-water05 {
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 115px;
  height: auto;
}

@media (min-width: 600px) {
  .kodawari-water01 {
    position: absolute;
    top: 0.5rem;
    left: -4rem;
    width: 115px;
    height: auto;
  }

  .kodawari-water02 {
    position: absolute;
    top: -4rem;
    right: 0;
    width: 250px;
    height: auto;
  }

  .kodawari-water03 {
    position: absolute;
    top: 0;
    left: -5rem;
    width: 250px;
    height: auto;
  }

  .kodawari-water04 {
    position: absolute;
    top: -5rem;
    right: -4rem;
    width: 282px;
    height: auto;
  }

  .kodawari-water05 {
    position: absolute;
    top: -5rem;
    left: -4rem;
    width: 294px;
    height: auto;
  }
}

.kodawariimg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(6.25rem, 1.599rem + 23.26vw, 12.5rem);
  height: auto;
  margin-bottom: 0;
}

.kodawariimg-even {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(6.25rem, 1.599rem + 23.26vw, 12.5rem);
  height: auto;
  margin-bottom: 0;
}

.kv {
  position: relative;
  margin: 0;
  width: 100%;
  z-index: 1;
}
.kv img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0;
}
.kv-text {
  position: absolute;
  width: 100%;
  top: clamp(2.5rem, 0.64rem + 9.3vw, 5rem);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #544641;
}

.kantanimg {
  margin-bottom: 0;
  width: clamp(5rem, -0.581rem + 27.91vw, 12.5rem);
}

.kodawari-sec-btn {
  padding-left: clamp(1.5rem, 0.384rem + 5.58vw, 3rem);
  padding-right: clamp(1.5rem, 0.384rem + 5.58vw, 3rem);
  padding-top: clamp(1.5rem, 0.384rem + 5.58vw, 3rem);
  padding-bottom: clamp(1.875rem, 0.48rem + 6.98vw, 3.75rem);
}

.kodawari-wrap {
  position: relative;
  background: #fdf2da;
}

.kodawari-wrap .kodawari:nth-child(odd) {
  background: linear-gradient(
    to top,
    /*transparent 0%,*/ #fdf2da 0%,
    #fede9f 100%
  );
  margin-top: -3rem;
  position: relative;
}

.kodawari-wrap .kodawari:nth-child(even) {
  position: relative;
  z-index: 1;
}

.kodawari-wrap .kodawari:nth-child(even)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("img/kodawari_pinkbg@1.5x.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  /*min-height: 600px;*/
  z-index: -1;
}

.kodawari p {
  font-size: clamp(1rem, -0.5rem + 6.67vw, 2rem);
  text-align: justify;
}

.kodawari h3 {
  font-family: "Noto sans-serif JP", sans-serif;
  font-size: clamp(1.25rem, -0.238rem + 7.44vw, 3.25rem);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin-bottom: clamp(1.25rem, 0.32rem + 4.65vw, 2.5rem);
}

.kodawari .subttl {
  font-size: 0.8em;
  color: #534641;
  padding: 0 0.5em;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
}

.about {
  z-index: 2;
}

.about-collagen {
  position: relative;
  margin-bottom: 3.5rem;
}

.tokuchoimg {
  position: absolute;
  bottom: -5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.about-discription {
  position: relative;
  padding: 0 clamp(0.938rem, 0.24rem + 3.49vw, 1.875rem)
    clamp(3rem, 0.767rem + 11.16vw, 6rem);
  background-image: url(img/setumei_bg@2x.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

.about-discription p {
  font-size: clamp(1.125rem, 0.66rem + 2.33vw, 1.75rem);
}

.about-discription .arrow-thin {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(0.438rem, -0.037rem + 2.03vw, 0.912rem);
  height: clamp(3.438rem, 0.063rem + 14.4vw, 6.813rem);
  margin-bottom: 0;
}

.spoon-hand {
  position: relative;
  top: -3em;
  right: -2em;
  float: right;
  max-width: 200px;
  shape-outside: inset(0 2.5em);
  clip-path: inset(8px);
  margin-bottom: -5em;
}

.howto {
  position: relative;
  z-index: 0;
  margin-top: calc(-1 * var(--overlap));
  padding-top: var(--overlap);
}

.howto img {
  margin: 1.5rem auto 0;
}

.howto::before {
  content: "";
  position: absolute;
  background-image: url(img/pink_bg@1.5x.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: calc(-1 * var(--overlap));
  z-index: -1;
}

.sarani-txt {
  position: absolute;
  top: clamp(-4rem, -4.5rem + 2.13vw, -3.5rem);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(4.688rem, 1.25rem + 14.67vw, 8.125rem);
}

.life {
  padding-left: clamp(0.938rem, 4vw, 1.875rem);
  padding-right: clamp(0.938rem, 4vw, 1.875rem);
  padding-top: clamp(0.5rem, -2.105rem + 13.02vw, 4rem);
  padding-bottom: clamp(3.75rem, 2.188rem + 6.67vw, 5.313rem);
  position: relative;
}
.lifeimg {
  margin: 0 auto;
  margin-top: clamp(2.5rem, 0.64rem + 9.3vw, 5rem);
}

.howtonotice {
  font-size: clamp(0.688rem, 0.176rem + 2.56vw, 1.375rem);
  margin-top: 1rem;
  padding-bottom: 1rem;
}

.content.beauty {
  position: relative;
  background-image: url(img/beautybg@1.5x.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 2.5rem 0.9375rem 12rem;
  z-index: 0;
}

.content.beauty .fullwidth {
  margin: 0 -1.875rem;
}

.beauty_voice {
  position: relative;
  margin-top: calc(-1 * var(--overlap2));
  padding-top: calc(2 * var(--overlap2));
  padding-inline: clamp(1rem, 0.256rem + 3.72vw, 2rem);
  padding-bottom: clamp(2.5rem, 0.64rem + 9.3vw, 5rem);
  overflow: visible;
}

.beauty_voice::before {
  position: absolute;
  content: "";
  background-image: url(img/marble_bg@1.5x.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  left: 0;
  right: 0;
  bottom: 0;
  top: calc(-1 * var(--overlap2));
  z-index: -1;
}

.beauty h3 {
  font-size: clamp(1.938rem, 8.27vw, 3.875rem);
  padding-top: clamp(1.25rem, 5.33vw, 2.5rem);
}

.beauty .bg_red_txt {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
  font-size: clamp(2.188rem, 9.33vw, 4.375rem);
  padding: 0;
}

.beauty .bg_red_txt.kana,
.beauty .txt-red.kana,
.beauty .kana {
  letter-spacing: -0.2em;
}

.beauty h3 span {
  vertical-align: middle;
}

img.beautyimg {
  margin-top: clamp(1rem, 0.256rem + 3.72vw, 2rem);
}

.voice-ttl-2 {
  position: absolute;
  width: 319px;
  top: -3em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

@media (min-width: 600px) {
  .content.reason-lead::after {
    content: "";
    position: absolute;
    width: calc(100% + 144px);
    height: 300px;
    background: url(img/waterdrop-wide@1.5x.png) no-repeat left top;
    background-size: contain;
    bottom: -7.5rem;
    right: -0.5rem;
    left: auto;
    pointer-events: none;
    z-index: 1;
  }

  .reason-sec h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 300px;
    background: url(img/waterdrop-wide02@1.5x.png) no-repeat center top;
    background-size: contain;
    top: 340px;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 1;
  }

  .reason-content:nth-of-type(2)::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 300px;
    background: url(img/waterdrop-wide03@1.5x.png) no-repeat center top;
    background-size: contain;
    top: -7.25rem;
    right: 0;
    pointer-events: none;
    z-index: 1;
  }

  .reason-content:nth-of-type(2)::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 534px;
    background: url(img/waterdrop-wide04@1.5x.png) no-repeat center top;
    background-size: contain;
    bottom: -6rem;
    left: -4rem;
    pointer-events: none;
    z-index: 1;
  }

  .kodawariimg {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(6.25rem, 1.599rem + 23.26vw, 12.5rem);
    height: auto;
  }

  .spoon-hand {
    top: -5em;
    max-width: 400px;
    shape-outside: inset(0 4em);
  }
  .about-collagen {
    position: relative;
    margin-bottom: 6rem;
  }
  .tokuchoimg {
    transform: translateX(-50%);
    bottom: -8.5rem;
  }

  .content.beauty {
    padding: 5rem 1.875rem 15rem;
  }

  .voice-ttl-2 {
    width: 637px;
    height: auto;
    top: -3em;
  }

  .about-discription .arrow-thin {
    position: absolute;
    bottom: -4rem;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(0.438rem, -0.037rem + 2.03vw, 0.912rem);
    height: clamp(3.438rem, 0.063rem + 14.4vw, 6.813rem);
    margin-bottom: 0;
  }
}

/*Q&A*/
.qa {
  padding: clamp(2.5rem, 0.64rem + 9.3vw, 5rem)
    clamp(1.188rem, 0.304rem + 4.42vw, 2.375rem);
  background: linear-gradient(125deg, #fffbdb, #fefced, #fff8ea);
  position: relative;
}

.qa::before {
  content: "";
  position: absolute;
  top: -1rem;
  bottom: 0;
  left: -1rem;
  right: 0;
  background:
    url(img/leaf01.png) no-repeat left top,
    url(img/leaf02.png) no-repeat right top 120px;
  background-size:
    clamp(5.313rem, 22.67vw, 10.625rem) auto,
    clamp(4.438rem, 18.93vw, 8.875rem) auto;
  z-index: 0;
}

.qa-section {
  position: relative;
  z-index: 1;
}

.qa-section .qattl {
  margin: 0 auto clamp(1.875rem, 0.48rem + 6.98vw, 3.75rem);
  width: clamp(11.188rem, 1.606rem + 47.91vw, 24.063rem);
}

/* 右側の“＋”ボタン風（クリック範囲はsummary全体） */
.toggle {
  width: 2rem;
  height: 2rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}
.toggle::before,
.toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #ff5f57;
  transform: translate(-50%, -50%);
}
.toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
} /* 縦棒で“＋”に */

.faq-item[open] .toggle::after {
  opacity: 0;
} /* 開いたら“−”に見せる */

/* 本文（開閉アニメ用にラッパをtransition） */
.a {
  line-height: 1.8;
  display: flex;
  transition: grid-template-rows 0.24s ease;
  border: 1px solid #d5e3d6;
  padding: 1rem 0.5rem;
}
.faq-item[open] .a {
  display: flex;
}

.a > * {
  overflow: hidden;
}

.faq-item {
  background-color: #fff;
  margin-bottom: clamp(1.25rem, 0.32rem + 4.65vw, 2.5rem);
  font-size: clamp(1rem, 0.256rem + 3.72vw, 2rem);
}

.faq-item summary {
  background: linear-gradient(90deg, #fcf1eb, #fdd5bf, #ffeee4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 0.75rem 0.5rem;
  flex-shrink: 0;
}

.faq-item summary > .q {
  display: flex;
  align-items: center;
  font-family: "Shippori Mincho", serif;
  padding: 0 clamp(1.25rem, 1.064rem + 0.93vw, 1.5rem);
}

.faq-item summary > .q::before,
.faq-item .a::before {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.875rem, 0.48rem + 6.98vw, 3.75rem);
}

.faq-item summary > .q::before {
  content: "Q";
  color: #ff5f57;
  font-weight: bold;
  margin-right: 0.25em;
}

.faq-item .a {
  padding: clamp(1.25rem, 1.064rem + 0.93vw, 1.5rem);
}

.faq-item .a::before {
  content: "A";
  color: #534641;
  font-weight: bold;
  margin-right: 0.25em;
  position: relative;
  top: -0.25em;
}

.faq-item p {
  font-size: clamp(0.938rem, 0.426rem + 2.56vw, 1.625rem);
}

/*cta-sec*/
.cta-sec {
  padding: clamp(1.75rem, 0.448rem + 6.51vw, 3.5rem) 0 0;
  background-color: #fff;
}

.cta-woman img {
  margin: 5rem auto 0;
  z-index: 0;
}

.cta-sec .text {
  position: absolute;
  width: 100%;
  height: auto;
  top: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1; /* テキストを前に */
}

.cta-sec h2 {
  margin-top: 0;
}

/*開発者の声*/
.owner-section {
  position: relative;
  padding: clamp(2.5rem, 0.64rem + 9.3vw, 5rem)
    clamp(1rem, 0.256rem + 3.72vw, 2rem) clamp(4rem, 1.023rem + 14.88vw, 8rem);
  background-image: url(img/message-bg@2x.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

.owner-section::after {
  content: "";
  position: absolute;
  background-image: url(img/dot@2x.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 5px;
  height: 50px;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.owner-section p {
  font-size: clamp(0.938rem, 0.24rem + 3.49vw, 1.875rem);
  line-height: 1.8;
  text-align: justify;
}

.owner-message {
  position: absolute;
  max-height: 211px;
  top: -2rem;
  left: -1rem;
}

.owner-section h3 {
  font-size: clamp(1.5rem, 0.972rem + 2.25vw, 3rem);
  padding-top: clamp(1.5rem, 0.384rem + 5.58vw, 3rem);
  margin: clamp(1.25rem, 0.32rem + 4.65vw, 2.5rem) auto;
  position: relative;
  letter-spacing: 0;
}

.owner-section h3::before {
  content: "「";
  position: absolute;
  top: 0.5em;
  left: -1em;
  width: 1em;
  height: auto;
  text-shadow: none;
  font-weight: 300;
}

.owner-section h3::after {
  content: "」";
  position: absolute;
  bottom: -0.5em;
  right: -1em;
  width: 1em;
  height: auto;
  text-shadow: none;
  font-weight: 300;
}

.owner-section .profile {
  margin-left: auto;
  margin-right: auto;
}

.mirai-message {
  text-align: center;
}

@media (min-width: 600px) {
  .owner-section::after {
    width: 11px;
    height: 100px;
  }
}

/*order*/
#howtoorder {
  padding: clamp(1.5rem, 0.778rem + 2.96vw, 3rem);
}

.order_wrap {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(88, 75, 57, 0.2);
}

.order_wrap h2 {
  font-family: "Noto sans JP", sans-serif;
  font-size: clamp(1.188rem, 0.304rem + 4.42vw, 2.375rem);
  font-weight: 600;
  color: #fff;
  background-color: #635643;
  padding: 0.75rem;
  border-radius: 5px 5px 0 0;
  margin-top: 0;
  margin-bottom: clamp(1.188rem, 0.304rem + 4.42vw, 2.375rem);
  letter-spacing: 0.1em;
}

.order_wrap > p {
  font-weight: 600;
  font-size: clamp(0.938rem, 0.24rem + 3.49vw, 1.875rem);
  padding: 0 clamp(0.938rem, 0.24rem + 3.49vw, 1.875rem)
    clamp(0.938rem, 0.24rem + 3.49vw, 1.875rem);
}

/*定期コース*/

.content.course {
  position: relative;
  background: linear-gradient(to bottom, #fdb591, #fccdb5, #ffc3a4);
  padding-top: clamp(1.563rem, 0.4rem + 5.81vw, 3.125rem);
  padding-bottom: clamp(1.563rem, 0.4rem + 5.81vw, 3.125rem);
  z-index: 1;
}

.course-ttl {
  font-family: "Noto sans-serif JP", sans-serif;
  font-weight: 600;
  color: #fd3a31;
  font-size: clamp(1.5rem, 0.105rem + 6.98vw, 3.375rem);
  letter-spacing: 0.01em;
}

.subscription-plan,
.regular-plan {
  background: #fff;
  border: 1px solid #eee;
  position: relative;
  text-align: center;
  padding-bottom: 1.5em;
  margin: 3rem auto 2rem;
  box-shadow: 0px 8px 8px rgba(90, 87, 60, 0.1);
}

.subscription-plan .timing,
.regular-plan .timing {
  font-size: clamp(1.25rem, 5.33vw, 2.5rem);
}

.subscription-plan .badge,
.regular-plan .badge {
  position: absolute;
  left: -2px;
  top: -1.5em;
  background-color: #ff5f57;
  color: white;
  font-weight: 600;
  padding: 1.25em 2em;
  border-radius: 0 2.5rem 2.5rem 0;
  display: inline-block;
  margin-bottom: 1rem;
  z-index: 1;
  line-height: 1;
}

.subscription-plan p.badge,
.subscription-plan p.right-badge,
.regular-plan p.badge,
.regular-plan p.right-badge {
  font-size: clamp(1.375rem, 0.352rem + 5.12vw, 2.75rem);
}

.subscription-plan .badge,
.subscription-plan .right-badge {
  background-color: #ff5f57;
  color: white;
}

.regular-plan .badge,
.regular-plan .right-badge {
  background-color: #fff;
  color: #635643;
}

.subscription-plan .right-badge,
.regular-plan .right-badge {
  position: absolute;
  right: -2px;
  top: -1.75rem;
  font-weight: bold;
  padding: 1.25em 2em;
  border-radius: 2.5rem 0 0 2.5rem;
  display: inline-block;
  margin-bottom: 1rem;
  z-index: 1;
  line-height: 1;
}

.subscription-plan .product {
  position: relative;
}

.subscription-plan .product img {
  margin-inline: auto;
}

.discount-badge {
  position: absolute;
  top: 1.5rem;
  right: -1rem;
  width: 95px;
  height: 95px;
}

.discount-badge-l {
  position: absolute;
  top: 1.5rem;
  left: -1rem;
  width: 95px;
  height: 95px;
}

.subscription-plan .daily-price {
  position: relative;
  font-size: clamp(1rem, 0.519rem + 1.98vw, 2rem);
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 0.5em;
  margin-top: clamp(-3rem, -0.778rem - 2.96vw, -1.5rem);
  margin-bottom: clamp(1rem, 0.519rem + 1.98vw, 2rem);
  z-index: 1;
}

@media (min-width: 600px) {
  .discount-badge {
    right: -2rem;
  }
  .discount-badge-l {
    left: -2rem;
  }
  .discount-badge,
  .discount-badge-l {
    width: 180px;
    height: 180px;
  }
}

/*定期価格*/
.price-row-img {
  margin: 0 auto 1rem;
}

.bonus-img {
  margin: clamp(1.5rem, 1.259rem + 0.99vw, 2rem) auto;
}

.price-row-img img,
.bonus-img img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 1rem;
}

.no-contract {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: #fd3a31;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
}

/*通常購入*/
.regular {
  position: relative;
  background: linear-gradient(to bottom, #bca79f 0%, #f2d8ce 100%);
}

.regular h2 {
  font-family: "Noto sans-serif JP", sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: clamp(1.625rem, 0.782rem + 3.46vw, 3.375rem);
  letter-spacing: 0.01em;
}

.price-item {
  position: relative;
  display: inline-block;
  padding: 0 1.5rem;
}

.price-item .label {
  position: absolute;
  top: -1rem;
  left: -0.75em;
  width: 4.5rem;
  height: auto;
}

@media (min-width: 600px) {
  .price-item .label {
    position: absolute;
    top: -1rem;
    left: -2rem;
    width: 6.5rem;
    height: auto;
  }
}

/* 斜線コンテナ（左右） */
.slash {
  position: relative;
  width: 1.25em;
  height: 1em;
}

/* 共通：2本の線 */
.slash::before,
.slash::after {
  content: "";
  position: absolute;
  height: 2px;
  background: currentColor;
  transform-origin: left center;
}

/* ─ 左側 ─ */
.left::before {
  /* 1本目（長め） */
  width: 1.4em;
  top: -0.1em;
  left: 0.35em;
  transform: rotate(45deg);
}
.left::after {
  /* 2本目（短め＆少し後ろにずらす） */
  width: 1.2em;
  top: 0.3em;
  left: 0.3em;
  transform: rotate(45deg);
}

/* ─ 右側 ─（ミラー） */
.right::before {
  width: 1.4em;
  top: -0.1em;
  right: 0.35em;
  left: auto;
  transform-origin: right center;
  transform: rotate(-45deg);
}
.right::after {
  width: 1.2em;
  top: 0.3em;
  right: 0.3em;
  left: auto;
  transform-origin: right center;
  transform: rotate(-42deg);
}

.subscription-plan .btn_wrap,
.regular-plan .btn_wrap {
  padding: 0 0.75rem;
  margin-top: 0.5em;
}

/*howto*/
.howtodrink {
  margin: 1rem auto;
  padding: clamp(1rem, 0.5rem + 2.13vw, 1.5rem) 1.5rem;
  background-color: #fff;
  box-shadow: 0px 8px 8px rgba(90, 87, 60, 0.1);
  line-height: 1.8;
}

.howtodrink h3 {
  font-size: clamp(0.875rem, 3.73vw, 1.75rem);
  letter-spacing: 0.05em;
}

.content .howtodrink p {
  font-size: clamp(0.875rem, 0.5rem + 1.6vw, 1.25rem);
}

.shopping-notice {
  margin-top: 1em;
  line-height: 1.8;
  font-size: clamp(0.875rem, 0.5rem + 1.6vw, 1.25rem);
}

.shopping-notice dt {
  font-size: clamp(1rem, 0.5rem + 2.13vw, 1.5rem);
}

.howtodrink img {
  margin: 1rem auto;
}

.shopping-notice dd {
  padding-bottom: 1em;
}

/*product*/
.product-section {
  background-color: #fefcf0;
}

.product-section .collagen,
.cta-sec .collagen,
.kodawari-sec .kv .kv-text .collagen,
.reason-sec .collagen {
  font-size: clamp(2.25rem, 1.167rem + 4.44vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
}

.product-section .collagen-kana,
.cta-sec .collagen-kana,
.kodawari-sec .kv .kv-text .collagen-kana {
  font-size: clamp(0.938rem, 0.486rem + 1.85vw, 1.875rem);
  line-height: 2;
}

/*nayami-section*/
.nayami-section {
  position: relative;
  overflow: visible;
  z-index: 0;
}

.nayami-aging .arrow-img {
  width: 113px;
  height: auto;
  margin: 0 auto;
}

.nayami-aging img,
.nayami_check img {
  margin: 0 auto;
}

.content.nayami_check {
  position: relative;
  background-image: url(img/nayami-bg@1.5x.webp);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1126/2879;
  padding-top: 5rem;
  z-index: -1;
  margin-top: -3rem;
}

.nayami-lead {
  position: relative;
  background-image: url(img/bg-suppliment.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3rem 1.5rem;
  z-index: 0;
}

.nayami-img {
  position: relative;
  width: 100%;
  min-height: 360px;
}

.nayami-img .kv-face {
  position: absolute;
  width: 100%;
  max-width: 296px;
  height: auto;
  top: 0;
  right: -2.5rem;
  z-index: 1;
}

.nayami-img .kv-product {
  position: absolute;
  width: 100%;
  max-width: 288px;
  height: auto;
  top: 2.5em;
  left: -6.5em;
  z-index: 0;
}

.nayami-img .kv-merit {
  position: absolute;
  width: 100%;
  max-width: 263px;
  height: auto;
  bottom: -6rem;
  right: -3rem;
  z-index: 3;
}

.nayami-img .kv-logo {
  position: absolute;
  width: 130px;
  height: auto;
  bottom: -1rem;
  left: -0.5rem;
  z-index: 2;
}

.content.nayami-aging {
  position: relative;
  background-image: url(img/bg-white@1.5x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 0;
  padding-bottom: 8em;
  z-index: -1;
}

.content.care_wrap {
  position: relative;
  background: #fdfae7;
  padding-top: 0;
  padding-bottom: 1rem;
}

.content.care_wrap .subtxt {
  position: absolute;
  top: -7em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.content.care_wrap::before {
  content: "";
  position: absolute;
  top: clamp(-5rem, -5.722rem + 2.96vw, -3.5rem);
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  height: 100%;
  background: #fdfae7;
  clip-path: ellipse(100% 100% at 50% 100%);
  z-index: -1;
}

.cause {
  position: relative;
  background-image: url(img/reason-pic@1.5x.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  margin-top: clamp(7rem, 3.87rem + 12.84vw, 13.5rem);
  width: 100%;
  aspect-ratio: 964 / 1075;
  z-index: 2;
}

.cause .nayami-bubble {
  position: absolute;
  top: 7rem;
  left: -1rem;
  width: clamp(9.125rem, 4.671rem + 18.27vw, 18.375rem);
}

.content .cause p {
  position: absolute;
  left: 50%;
  bottom: 1.5em;
  transform: translateX(-50%); /* 中央寄せ */
  width: 88%;
  min-width: 240px;
  margin: 0;
  font-size: clamp(0.875rem, 3.73vw, 1.75rem);
  color: #fff;
  z-index: 3;
  font-weight: 500;
}

.checklist ul {
  list-style-type: none;
  background-color: rgba(83, 70, 65, 0.6);
  padding: clamp(1.25rem, 0.588rem + 2.72vw, 2.625rem) 1.5rem;
  margin: clamp(1.25rem, 0.588rem + 2.72vw, 2.625rem) auto;
  color: #fff;
  font-weight: 500;
}

.checklist ul li {
  position: relative;
  padding-left: 1.5em;
  font-size: clamp(1rem, 4.27vw, 2rem);
  line-height: 2;
}

.checklist ul li::before {
  content: "";
  position: absolute;
  background-image: url(img/check@1.5x.png);
  background-size: contain;
  top: 0.5em;
  left: 0;
  width: 1em;
  height: 1em;
}

.nayami {
  color: #fbbfa9;
  text-decoration: underline;
  text-decoration-color: #fff;
  font-weight: 600;
}

.nayami-aging .zukai {
  margin: clamp(1.25rem, 0.648rem + 2.47vw, 2.5rem) auto;
}

@media (min-width: 600px) {
  .content.nayami_check {
    padding-top: 9rem;
    z-index: -1;
    margin-top: -5rem;
  }
  .nayami-lead {
    padding: 6rem 3rem 3rem;
  }
  .nayami-img {
    position: relative;
    width: 100%;
    min-height: 720px;
  }
  .nayami-img .kv-face {
    width: 100%;
    max-width: 578px;
    height: auto;
    top: 0;
    right: -6.5em;
    z-index: 1;
  }

  .nayami-img .kv-product {
    position: absolute;
    width: 100%;
    max-width: 575px;
    height: auto;
    top: 3.5rem;
    left: -12rem;
    z-index: 0;
  }

  .nayami-img .kv-merit {
    position: absolute;
    width: 100%;
    max-width: 526px;
    height: auto;
    bottom: -8rem;
    right: -5rem;
    z-index: 3;
  }

  .nayami-img .kv-logo {
    position: absolute;
    width: 260px;
    height: auto;
    bottom: 0;
    left: -1rem;
    z-index: 2;
  }
  .cause .nayami-bubble {
    top: 12rem;
    left: -2rem;
  }

  .content.care_wrap {
    padding-top: 3rem;
  }
}

/*footer*/
footer {
  width: 100%;
}
.company {
  background: linear-gradient(180deg, #ffc3a4 0%, #ffba97 70%, #ff9d6b 100%);
  color: #fff;
  padding: 1.5rem;
}
.company-list {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.5;
}

.company-list a,
.company-list a:visited {
  color: #fff;
}

.company-list dt {
  font-weight: 700;
  margin: 1.25rem 0 0.375rem;
  display: inline-block;
  position: relative;
}

.company-list dt:first-child {
  font-weight: 700;
  margin: 0 0 0.375rem;
  display: inline-block;
  position: relative;
}

.company-list dt::before {
  content: "【";
  margin-right: 0.25em;
}
.company-list dt::after {
  content: "】";
  margin-left: 0.25em;
}

.company-address {
  font-style: normal;
} /* addressの斜体を打消し */
.tel-link {
  color: inherit;
  text-decoration: underline;
}
.tel-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.company span {
  display: inline;
}

.tokutei {
  padding-top: 1em;
  margin-bottom: 0;
}

.tokutei a {
  color: #fff;
  font-size: clamp(0.75rem, 0.486rem + 1.13vw, 1.5rem);
}

@media screen and (min-width: 600px) {
  .l-container {
    max-width: 750px;
  }
  .content {
    padding: clamp(2.5rem, 0.64rem + 9.3vw, 5rem) 3rem;
  }
  .content p {
    font-size: 2rem;
  }

  a.glossy-btn {
    padding: 3rem 2rem;
    font-size: 3rem;
  }

  .fv__bg {
    position: absolute;
    inset: 0;
    background: url("img/fv_bg@2x.jpg") top/cover no-repeat;
    z-index: 0;
    filter: none;
  }

  .copyright {
    width: 100%;
    max-width: 710px;
  }

  .fv-follow__wave {
    height: 282px;
  }

  /*campaing*/
  .subtxt {
    width: 140px;
  }

  .subheadcare01 {
    max-width: 420px;
    margin-top: 0;
  }

  .subheadcare02 {
    max-width: 600px;
    margin: 3.15em auto 2em;
  }

  .subtxt-img01 {
    width: 296px;
    margin: 0 auto;
  }

  .now-ttl {
    padding: 0 1.5rem;
    margin: 1rem auto;
  }

  h2.now-ttl {
    padding: 0 2.5rem;
    margin: 0 auto;
  }

  .sec-now p {
    font-size: 4rem;
    position: absolute;
    bottom: 1em;
    left: 1.5rem;
    z-index: 2;
  }

  .sec-now .copybg {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(-10vw, 15vw);
    background-size: 748px 759px;
    z-index: 1;
    overflow: hidden;
  }

  /*Feature*/
  .reason-sec {
    background-color: #fffdee;
  }

  .reason-content {
    position: relative;
    background-color: #fff;
    padding: 1.5rem;
    border: 1px solid #c1aba2;
    border-radius: 5px;
    box-shadow: 0px 10px 10px rgba(90, 87, 60, 0.24);
  }

  .reason-sec figure {
    margin: 1em auto;
  }

  .reason-subtll-nmbr {
    top: -3.5rem;
  }

  /*お手軽セクション*/
  .otegaru-subtxt {
    max-width: 530px;
    margin: 1rem auto;
  }

  /*会社概要*/
  .company {
    font-size: 1.625rem;
  }
  .content .tokutei {
    font-size: 1.5rem;
    padding-top: 1em;
    margin-bottom: 0;
  }

  p.copyright {
    font-size: clamp(0.625rem, 0.405rem + 0.94vw, 1.25rem);
  }
}

@media (min-width: 768px) {
  .fv {
    height: 1040px;
  }
}
