@charset "UTF-8";
/* =========================================
   1. 基本設定・変数・Mixin
   ========================================= */
/* =========================================
   2. ベーススタイル
   ========================================= */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: #2F4858;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  background-color: #f0f0f0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%;
}

/* =========================================
   3. アニメーション Keyframes & ユーティリティ
   ========================================= */
/* Keyframes */
@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes scrollUp {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes shineRelaxed {
  0% {
    left: -100%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    left: 200%;
    opacity: 0;
  }
  100% {
    left: 200%;
    opacity: 0;
  }
}
@keyframes shine {
  0% {
    left: -100%;
    opacity: 0;
  }
  20% {
    left: 200%;
    opacity: 1;
  }
  100% {
    left: 200%;
    opacity: 0;
  }
}
@keyframes shineSlow {
  0% {
    left: -100%;
    opacity: 0;
  }
  50% {
    left: 200%;
    opacity: 1;
  }
  100% {
    left: 200%;
    opacity: 0;
  }
}
@keyframes shineTopDownRich {
  0% {
    top: -150%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  75% {
    top: 150%;
    opacity: 0;
  }
  100% {
    top: 150%;
    opacity: 0;
  }
}
@keyframes sparkleHighLightElegant {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}
@keyframes maskRevealOnce {
  0% {
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
  }
  100% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}
@keyframes maskWipeLoop {
  0% {
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
    opacity: 1;
  }
  35% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    opacity: 1;
  }
  80% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    opacity: 1;
  }
  100% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    opacity: 0;
  }
}
@keyframes maskWipeDown {
  0% {
    -webkit-mask-size: 100% 0%;
    mask-size: 100% 0%;
  }
  100% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}
@keyframes pulseLoop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5%);
  }
}
@keyframes wipeMarkerInOut {
  0% {
    width: 0%;
    left: 0;
    right: auto;
  }
  45% {
    width: 100%;
    left: 0;
    right: auto;
  }
  50% {
    width: 100%;
    left: auto;
    right: 0;
  }
  95% {
    width: 0%;
    left: auto;
    right: 0;
  }
  100% {
    width: 0%;
    left: 0;
    right: auto;
  }
}
@keyframes wipeMarkerDraw {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes popFloating {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes heartbeatBtn {
  0% {
    transform: scale(1);
  }
  4% {
    transform: scale(1.05);
  }
  8% {
    transform: scale(1);
  }
  12% {
    transform: scale(1.05);
  }
  16% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes floatingBtn {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.08);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.08);
  }
  60% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes heartbeatBig {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes popLoopBounce {
  0%, 100% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.06);
  }
  40% {
    transform: scale(0.96);
  }
  60% {
    transform: scale(1.03);
  }
  80% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rotateIn {
  from {
    transform: scale(0.5) rotate(-180deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
/* アニメーションクラス */
.fade-up {
  opacity: 0;
  transform: translateY(1.875rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pop-in {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pop-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}
.fade-in.is-visible {
  opacity: 1;
}

.fade-soft {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-soft.is-visible {
  animation: softBounceUp 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.wipe-right {
  -webkit-mask-image: linear-gradient(#000, #000);
  -webkit-mask-size: 0% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left top;
  mask-image: linear-gradient(#000, #000);
  mask-size: 0% 100%;
  mask-repeat: no-repeat;
  mask-position: left top;
  opacity: 1;
  will-change: mask-size, -webkit-mask-size;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.wipe-right.is-visible {
  animation: maskRevealOnce 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.wipe-down {
  -webkit-mask-image: linear-gradient(#000, #000);
  mask-image: linear-gradient(#000, #000);
  -webkit-mask-size: 100% 0%;
  mask-size: 100% 0%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  opacity: 1;
  will-change: mask-size, -webkit-mask-size;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.wipe-down.is-visible {
  animation: maskWipeDown 2.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.wipe-loop {
  -webkit-mask-image: linear-gradient(#000, #000);
  mask-image: linear-gradient(#000, #000);
  -webkit-mask-size: 0% 100%;
  mask-size: 0% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
  opacity: 1;
  will-change: mask-size, -webkit-mask-size;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.wipe-loop.is-visible {
  animation: maskWipeLoop 2.5s infinite cubic-bezier(0.22, 1, 0.36, 1);
}

.pulse-emphasis {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease;
}
.pulse-emphasis.is-visible {
  opacity: 1;
  animation: pulseLoop 2s infinite ease-in-out;
}

.floating {
  animation: floatUpDown 3s ease-in-out infinite;
}

.zoom-in-blur {
  opacity: 0;
  transform: scale(0.8);
  filter: blur(10px);
  transition: opacity 0.8s, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s;
  will-change: transform, opacity, filter;
  transform: translateZ(0);
}
.zoom-in-blur.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.pop-loop {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease;
}
.pop-loop.is-visible {
  opacity: 1;
  animation: popLoopBounce 1s infinite ease-in-out;
}

.rotate-in {
  opacity: 0;
  transform: scale(0.5) rotate(-180deg);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.rotate-in.is-visible {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* キラッと光る演出 */
.shine-wrapper, .shine-top-down-rich, .shine-wrapper-reverse {
  position: absolute;
  z-index: 10;
  -webkit-mask-image: var(--mask-bg);
  mask-image: var(--mask-bg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.fv-item.item-catch-1.shine-wrapper{
  --mask-bg: url(../dad_img/1-1-1.svg);
}
.shine-top-down-rich{
  --mask-bg: url(../dad_img/1-1-2.png);
}
.shine-wrapper img, .shine-top-down-rich img, .shine-wrapper-reverse img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.shine-wrapper::after, .shine-top-down-rich::after, .shine-wrapper-reverse::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  z-index: 2;
  pointer-events: none;
  animation: shineRelaxed 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
  will-change: left, transform;
}

.shine-wrapper-reverse::after {
  animation: shineRelaxed 4s infinite cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
}

.shine-top-down-rich {
  position: relative;
}
.shine-top-down-rich::after {
  top: -150%;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 250, 240, 0) 0%, rgba(255, 245, 200, 0.2) 25%, rgba(255, 255, 245, 0.7) 50%, rgba(245, 235, 180, 0.5) 55%, rgba(255, 245, 200, 0.2) 75%, rgba(255, 250, 240, 0) 100%);
  box-shadow: 0 0 15px rgba(255, 250, 220, 0.3);
  animation: shineTopDownRich 4s infinite cubic-bezier(0.45, 0, 0.15, 1);
  will-change: top;
}
.shine-top-down-rich::before {
  content: "";
  position: absolute;
  top: -5%;
  right: 15%;
  width: 35%;
  height: 35%;
  z-index: 11;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 250, 0.9) 0%, rgba(245, 235, 180, 0.5) 30%, rgba(245, 235, 180, 0) 60%);
  animation: sparkleHighLightElegant 3s infinite ease-in-out;
  will-change: transform, opacity;
}

/* マーカー */
.yellow-marker-wrap {
  position: relative;
  display: inline-block;
}
.yellow-marker-wrap::before {
  content: "";
  position: absolute;
  left: -3%;
  bottom: 5%;
  width: 106.3%;
  height: 35%;
  background-color: rgba(255, 241, 0, 0.7);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.yellow-marker-wrap.is-visible::before {
  transform: scaleX(1);
}
.yellow-marker-wrap > span, .yellow-marker-wrap > img, .yellow-marker-wrap > strong {
  position: relative;
  z-index: 2;
}

.marker-for-img {
  display: block;
}
.marker-for-img::before {
  height: 28%;
  bottom: -7%;
  background-color: rgb(255, 239, 92);
  transition-delay: 0.2s;
}

.marker-thick::before {
  height: 40%;
  bottom: -20%;
}

.marker-style-png::before {
  background-color: transparent !important;
  background-image: url(../dad_img/2-4-4.png);
  background-size: 70.6%;
  background-repeat: no-repeat;
  background-position: right;
  height: 100%;
  top: 67%;
  left: -4%;
  transform: none !important;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, #000 100%, transparent 100%);
  mask-image: linear-gradient(to right, #000 100%, transparent 100%);
  -webkit-mask-size: 0% 100%;
  mask-size: 0% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: mask-size 1s cubic-bezier(0.22, 1, 0.36, 1), -webkit-mask-size 1s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.marker-style-png.is-visible::before {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.marker-style-single-line::before {
  background-color: transparent !important;
  background-image: url(../dad_img/single-y-line.svg);
  background-size: 76%;
  background-repeat: no-repeat;
  background-position: center bottom;
  height: 45%;
  bottom: -18%;
  left: -3%;
}

.marker-style-line3::before {
  background-color: transparent !important;
  background-image: url(../dad_img/y-line3.svg);
  background-size: 91%;
  background-repeat: no-repeat;
  background-position: center;
  height: 60%;
  bottom: 2%;
  left: -3%;
}

.marker-style-mag1::before {
  background-color: transparent !important;
  background-image: url(../dad_img/3-4-1_line.svg);
  background-size: 25%;
  background-repeat: no-repeat;
  background-position: center bottom;
  height: 40%;
  bottom: -24%;
  left: 1%;
}

.marker-style-mag2::before {
  background-color: transparent !important;
  background-image: url(../dad_img/3-4-2_line.svg);
  background-size: 100% 85%;
  background-repeat: no-repeat;
  background-position: center bottom;
  height: 70%;
  bottom: -37%;
  left: -4%;
}

.marker-pos-adjust-335::before {
  bottom: -12%;
  height: 25%;
}

@keyframes softBounceUp {
  0% {
    opacity: 0;
    transform: translateY(1.875rem) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-0.3125rem) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* =========================================
   4. LPラッパー
   ========================================= */
.lp-wrapper {
  width: 100%;
  max-width: 46.875rem;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
}

/* =========================================
   5. FVセクション (fv-section)
   ========================================= */
.fv-section {
  width: 100%;
  position: relative;
  /* FVブロック1 */
  /* FVブロック2 */
  /* FVブロック3 */
  /* FVブロック4 */
}
.fv-section .fv-block {
  position: relative;
  width: 100%;
}
.fv-section .fv-block .fv-bg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.fv-section .fv-block .fv-item {
  position: absolute;
  z-index: 10;
  height: auto;
}
.fv-section .fv-block-1 .item-catch-1 {
  top: 0%;
  right: 11%;
  width: 47.12%;
}
.fv-section .fv-block-1 .item-product-main {
  top: 6.5%;
  right: 0%;
  width: 20.64%;
}
.fv-section .fv-block-1 .item-catch-2 {
  top: 82.2%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 84.7%;
}
.fv-section .fv-block-2 .fv-catch-h2 {
  position: absolute;
  top: 4%;
  left: 0;
  right: 0;
  margin: auto;
  width: 75.74%;
  text-align: center;
  z-index: 20;
}
.fv-section .fv-block-2 .fv-catch-h2 img {
  width: 100%;
  height: auto;
  display: block;
}
.fv-section .fv-block-2 .item-video-main {
  top: 12%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 74.5%;
}
.fv-section .fv-block-2 .item-video-sub-group {
  top: 35.5%;
  left: 0;
  right: 0;
  margin: auto;
  width: 87%;
  display: flex;
  justify-content: space-between;
}
.fv-section .fv-block-2 .item-video-sub-group .sub-video {
  width: 48.4%;
  height: auto;
  border-radius: 1rem;
}
.fv-section .fv-block-2 .item-new-svg {
  top: 54.5%;
  left: 10%;
  width: 26.01%;
  z-index: 10;
}
.fv-section .fv-block-2 .item-text-1 {
  top: 66%;
  left: 6%;
  width: 27.7%;
}
.fv-section .fv-block-2 .item-text-2 {
  top: 66%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 27.7%;
}
.fv-section .fv-block-2 .item-text-3 {
  top: 66%;
  left: 66%;
  width: 27.7%;
}
.fv-section .fv-block-2 .item-text-4 img, .fv-section .fv-block-2 .item-text-5 img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}
.fv-section .fv-block-2 .item-text-4::before, .fv-section .fv-block-2 .item-text-5::before {
  content: "";
  position: absolute;
  background-image: url(../dad_img/1-2-4_5-parts.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  top: 35%;
  left: 0;
  z-index: 1;
}
.fv-section .fv-block-2 .item-text-4 {
  top: 76%;
  left: 21%;
  width: 27.7%;
  margin: auto;
}
.fv-section .fv-block-2 .item-text-5 {
  top: 76%;
  left: 51%;
  width: 27.7%;
}
.fv-section .fv-block-3 .item-ranking-1 {
  top: 10%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 72.6%;
}
.fv-section .fv-block-3 .item-ranking-2 {
  top: 22%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 77.92%;
}
.fv-section .fv-block-3 .item-ranking-3 {
  top: 58.5%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 66.76%;
}
.fv-section .fv-block-4 .item-award-1 {
  top: 14.5%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 86.1%;
}
.fv-section .fv-block-4 .item-award-2 {
  top: 53.6%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 86.1%;
}

/* =========================================
   6. オファーセクション (共通設定)
   ========================================= */
.offer-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.offer-section .offer-bg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.offer-section .offer-item, .offer-section .cta-btn {
  position: absolute;
  z-index: 10;
  display: block;
}
.offer-section .offer-item img, .offer-section .cta-btn img {
  width: 100%;
  height: auto;
  display: block;
}
.offer-section .campaign-container {
  position: absolute;
  top: 7.7%;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 20;
}
.offer-section .campaign-container .campaign-main-wrapper {
  display: inline-block;
  position: relative;
}
.offer-section .campaign-container .campaign-marker {
  position: absolute;
  bottom: -20%;
  left: 0;
  height: 100%;
  width: 0%;
  z-index: 1;
  background-image: url(../dad_img/offer-1.webp);
  background-size: 100% 24.5%;
  background-repeat: no-repeat;
  background-position: left center;
  will-change: width;
  transform: translateZ(0);
}
.offer-section .campaign-container .campaign-marker.is-visible {
  animation: wipeMarkerDraw 1.5s ease-out forwards;
}
.offer-section .campaign-container .campaign-title {
  position: relative;
  z-index: 2;
  margin: 0;
  line-height: 1.75;
  letter-spacing: 0;
  font-size: min(9vw, 4.125rem);
  font-weight: 600;
  color: #1c5061;
  font-family: "PA1GothicStd", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.offer-section .item-2 {
  top: 40%;
  right: 7%;
  width: 18%;
  animation: popFloating 1.5s infinite ease-in-out;
  transform-origin: center center;
}
.offer-section .cta-1 {
  top: 66%;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  animation: heartbeatBtn 3s infinite ease-in-out;
  transform-origin: center center;
}
.offer-section .cta-2 {
  bottom: 7.5%;
  right: 14.5%;
  width: 34.33%;
  animation: floatingBtn 3s infinite ease-in-out;
}
.offer-section .cta-2 .shine {
  animation: shineSlow 3s infinite ease-in-out;
}
.offer-section .cta-btn {
  overflow: hidden;
}
.offer-section .cta-btn img {
  position: relative;
  z-index: 1;
}
.offer-section .cta-btn:active {
  transform: scale(0.95);
}
.offer-section .cta-btn .shine {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  z-index: 10;
  animation: shine 3s infinite;
  pointer-events: none;
}
.offer-section.offer1 .campaign-container {
  /* top: 7%; */
}
.offer-section.offer1 .item-2 {
  /* top: 32.2%; */
}
.offer-section.offer1 .cta-1 {
  /* top: 53%; */
}
.offer-section.offer1 .cta-2 {
  bottom: 7.1%;
}
.offer-section.offer2 .campaign-container {
  /* top: 5%; */
}
.offer-section.offer2 .item-2 {
  /* top: 31.2%; */
}
.offer-section.offer2 .cta-1 {
  /* top: 52.5%; */
}
.offer-section.offer2 .cta-2 {
  bottom: 7.3%;
}
.offer-section.offer3 .campaign-container {
  /* top: 6%; */
}
.offer-section.offer3 .item-2 {
  /* top: 32.2%; */
}
.offer-section.offer3 .cta-1 {
  /* top: 53%; */
}
.offer-section.offer3 .cta-2 {
  bottom: 7.1%;
}

/* =========================================
   7. イントロダクションセクション
   ========================================= */
.intro-section {
  width: 100%;
  position: relative;
  /* Intro 1 */
  /* Intro 2 */
  /* Intro 3 (Slider) */
  /* Intro 4 */
}
.intro-section .intro-block {
  position: relative;
  width: 100%;
}
.intro-section .intro-block .intro-bg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.intro-section .intro-block .intro-item {
  position: absolute;
  z-index: 10;
  height: auto;
  left: 0;
  right: 0;
  width: 81.3%;
}
.intro-section .intro-block-1 .item-model {
  top: 33.5%;
  left: 10%;
  width: 40.6%;
}
.intro-section .intro-block-1 .item-text-1 {
  top: 56.8%;
  left: 20.3%;
  width: 74.25%;
}
.intro-section .intro-block-1 .item-text-2 {
  top: 78.6%;
  left: 16%;
  width: 22.6%;
}
.intro-section .intro-block-2 .item-capsule {
  top: 1.1%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 21.2%;
}
.intro-section .intro-block-2 .item-text-1 {
  top: 19.8%;
  left: 19%;
  width: 8.14%;
}
.intro-section .intro-block-2 .item-text-2 {
  top: 25%;
  left: 9%;
  width: 8.14%;
}
.intro-section .intro-block-2 .item-text-3 {
  top: 59%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 66.8%;
}
.intro-section .intro-block-3 .item-product {
  top: 21%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 59.6%;
  z-index: 20;
}
.intro-section .intro-block-3 .item-text {
  top: 14%;
  left: 5%;
  right: 0%;
  margin: auto;
  width: 75.7%;
  z-index: 20;
}
.intro-section .intro-block-3 .intro-slider-wrapper {
  position: absolute;
  top: 27.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 122.1%;
  height: 58.4%;
  overflow: hidden;
  z-index: 5;
}
.intro-section .intro-block-3 .intro-slider-inner {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.intro-section .intro-block-3 .slider-col {
  height: 100%;
  position: relative;
  width: 28.37%;
  margin-left: 0.7%;
}
.intro-section .intro-block-3 .slider-col.col-center {
  width: 39.04%;
  margin-left: 0.5%;
}
.intro-section .intro-block-3 .slider-col.col-right {
  margin-left: 1%;
}
.intro-section .intro-block-3 .slider-track {
  display: flex;
  flex-direction: column;
}
.intro-section .intro-block-3 .slider-track.track-down {
  animation: scrollDown 20s linear infinite;
}
.intro-section .intro-block-3 .slider-track.track-up {
  animation: scrollUp 20s linear infinite;
  gap: 1.25rem;
}
.intro-section .intro-block-3 .slider-track.track-up .slide-item {
  border: 0.1875rem solid #1ac3b8;
  box-shadow: 0 0 0.4375rem #999999;
}
.intro-section .intro-block-3 .slide-item {
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  transform: translateZ(0);
  backface-visibility: hidden;
  outline: 1px solid transparent;
}
.intro-section .intro-block-3 .slide-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}
.intro-section .intro-block-4 .item-text-1 {
  top: -0.7%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 46.2%;
}
.intro-section .intro-block-4 .item-text-2 {
  top: 2.8%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 26.85%;
}
.intro-section .intro-block-4 .item-text-3 {
  top: 4.5%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 86.85%;
}
.intro-section .intro-block-4 .item-sarani {
  top: 54.3%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 17.4%;
}
.intro-section .intro-block-4 .item-mv-main {
  top: 84.7%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 75.5%;
  z-index: 1;
}
.intro-section .intro-block-4 .item-doctor {
  top: 92.5%;
  left: 14%;
  width: 32.85%;
}
.intro-section .intro-block-4 .item-bba {
  bottom: -2.8%;
  right: 0;
  left: inherit;
  width: 25.5%;
  z-index: 5;
}
.intro-section .intro-block-4 .item-bbb {
  bottom: 7.4%;
  left: 0;
  width: 30.1%;
  z-index: 5;
}

/* =========================================
   8. 悩み訴求セクション (worry-section)
   ========================================= */
.worry-section {
  width: 100%;
  position: relative;
  /* Worry 1 */
  /* Worry 2 */
  /* Worry 3 */
}
.worry-section .worry-block {
  position: relative;
  width: 100%;
}
.worry-section .worry-block .worry-bg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.worry-section .worry-block .w-item {
  position: absolute;
  z-index: 10;
  height: auto;
}
.worry-section .worry-block-1 .item-text-1 {
  top: 11.2%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 62.96%;
}
.worry-section .worry-block-1 .item-pore-1 {
  top: 40%;
  left: 0%;
  width: 29.33%;
}
.worry-section .worry-block-1 .item-pore-2 {
  top: 40%;
  left: 25.5%;
  width: 28.33%;
}
.worry-section .worry-block-1 .item-pore-3 {
  top: 40%;
  left: 50.3%;
  width: 28.5%;
}
.worry-section .worry-block-1 .item-pore-4 {
  top: 40%;
  right: -2%;
  width: 26.33%;
}
.worry-section .worry-block-1 .item-text-2-1 {
  bottom: 28%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 26.62%;
}
.worry-section .worry-block-1 .item-text-2-2 {
  bottom: 20%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 81.8%;
}
.worry-section .worry-block-2 .item-text-title {
  top: 0.7%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 77.68%;
}
.worry-section .worry-block-2 .item-diagram {
  top: 31.6%;
  left: 19%;
  width: 51.7%;
}
.worry-section .worry-block-2 .item-text-desc {
  top: 59.9%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 26.75%;
}
.worry-section .worry-block-2 .item-text-check {
  top: 64.2%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 71.38%;
}
.worry-section .worry-block-2 .item-soreha {
  bottom: -2.3%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 18.33%;
}
.worry-section .worry-block-2 .item-gif-1 {
  top: 69.2%;
  left: 0;
  right: 0;
  margin: auto;
  width: 75.92%;
  z-index: 10;
}
.worry-section .worry-block-3 .item-title {
  top: 5%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 74.69%;
}
.worry-section .worry-block-3 .item-lemon {
  top: 37.8%;
  left: 16.2%;
  width: 17.4%;
}
.worry-section .worry-block-3 .item-shikashi {
  top: 39%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 79.02%;
}
.worry-section .worry-block-3 .item-skin {
  top: 51%;
  left: 8.5%;
  width: 24.68%;
}
.worry-section .worry-block-3 .item-text-hard {
  top: 56.5%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 78.09%;
}
.worry-section .worry-block-3 .item-image {
  top: 65.2%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 69.9%;
}
.worry-section .worry-block-3 .item-dakara {
  top: 80%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 32.43%;
}
.worry-section .worry-block-3 .item-gif-2 {
  top: 12.25%;
  right: 11%;
  width: 36.57%;
  z-index: 5;
}
.worry-section .worry-block-3 .item-gif-3 {
  top: 24.85%;
  right: 11%;
  width: 36.57%;
  z-index: 5;
}

/* =========================================
   9. メディア掲載セクション
   ========================================= */
.media-section {
  width: 100%;
  position: relative;
}
.media-section .media-block {
  position: relative;
  width: 100%;
}
.media-section .media-block .media-bg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.media-section .media-block .m-item {
  position: absolute;
  z-index: 10;
  height: auto;
}
.media-section .item-title {
  top: 2%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 70.04%;
}
.media-section .item-circle-1 {
  top: 15.5%;
  left: 20%;
  width: 26.11%;
}
.media-section .item-circle-2 {
  top: 16.8%;
  left: 68%;
  width: 26.11%;
}
.media-section .item-mag-1 {
  top: 23.3%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 62.77%;
}
.media-section .item-mag-2 {
  top: 40%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 56.6%;
}
.media-section .item-sarani {
  top: 70.5%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 16.57%;
}
.media-section .item-tv {
  top: 80.5%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 67.79%;
}
.media-section .item-sdgs {
  top: 85.8%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 41.66%;
}

/* =========================================
   10. 特徴・メリットセクション (パララックス対応)
   ========================================= */
.features-section {
  width: 100%;
  /* パララックス用背景レイヤー */
  /* Block New 1 (Wビタミン) */
  /* Block New 2 (分割パララックス・比較) */
  /* Block New 3 (ホワイトCカプセル) */
  /* Block New 4 (浸透持続・パララックス) */
  /* Block 1 (ビタミンC島・パララックス) */
  /* Block 2 (浸透イメージ) */
}
.features-section .feature-block {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.features-section .feature-block .feature-bg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.features-section .feature-block .f-item {
  position: absolute;
  z-index: 10;
  height: auto;
}
.features-section .bg-layer {
  position: relative;
  width: 100%;
  z-index: 0;
}
.features-section .bg-layer .bg-top-part {
  position: relative;
  width: 100%;
  line-height: 0;
  font-size: 0;
  z-index: 3;
}
.features-section .bg-layer .bg-top-part .bg-img-responsive {
  display: block;
  width: 100%;
  height: auto;
}
.features-section .bg-layer .bg-bottom-part {
  position: relative;
  width: 100%;
  line-height: 0;
  font-size: 0;
  margin-top: -9%;
  z-index: 1;
}
.features-section .bg-layer .bg-bottom-part .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: cover;
}
.features-section .bg-layer .bg-bottom-part .bg-spacer {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  position: relative;
  z-index: 1;
}
.features-section .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .features-section .parallax-bg {
    background-attachment: fixed;
  }
}
@media (max-width: 767px) {
  .features-section .parallax-bg {
    background-attachment: scroll;
  }
}
.features-section .bg-spacer {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.features-section .content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}
.features-section .content-overlay .island-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.features-section .content-overlay .island-group .f-item {
  pointer-events: auto;
}
.features-section .island-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}
.features-section .island-group .f-item {
  pointer-events: auto;
}
.features-section .f-block-new-1 .item-4-2-1 {
  top: 6%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 70.55%;
}
.features-section .f-block-new-1 .item-4-2-2 {
  top: 27%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 83.5%;
}
.features-section .f-block-new-1 .item-4-2-3 {
  top: 38.3%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 83.5%;
}
.features-section .f-block-new-1 .item-4-2-4 {
  top: 49.7%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 83.5%;
}
.features-section .f-block-new-1 .item-4-2-5 {
  top: 61%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 83.5%;
}
.features-section .f-block-new-1 .item-4-2-6 {
  top: 72.5%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 83.5%;
}
.features-section .f-block-new-1 .item-4-2-7 {
  top: 84%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 83.5%;
}
.features-section .f-block-new-2 {
  position: relative;
  width: 100%;
  padding-top: 0 !important;
  background: none !important;
}
.features-section .f-block-new-2 .item-4-3-1 {
  top: 12%;
  left: 7.5%;
  width: 60.46%;
}
.features-section .f-block-new-2 .item-island1 {
  top: 17.8%;
  right: 0%;
  width: 95%;
}
.features-section .f-block-new-2 .item-4-3-1-1 {
  top: 18.7%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 57.87%;
}
.features-section .f-block-new-2 .item-4-3-1-2 {
  top: 32%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 77.77%;
}
.features-section .f-block-new-2 .item-island2 {
  top: 48.5%;
  left: 0%;
  width: 95%;
}
.features-section .f-block-new-2 .item-4-3-2-1 {
  top: 49.3%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 71.3%;
}
.features-section .f-block-new-2 .item-arrow {
  top: 58.7%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 19.53%;
}
.features-section .f-block-new-2 .item-island3 {
  top: 68.9%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 89.24%;
}
.features-section .f-block-new-2 .item-4-3-3-1 {
  top: 70%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 77.6%;
}
.features-section .f-block-new-2 .item-4-3-3-2 {
  top: 81.7%;
  left: 18%;
  width: 49%;
}
.features-section .f-block-new-2 .item-4-3-3-3 {
  top: 86.4%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 69.8%;
  z-index: 11;
}
.features-section .f-block-new-2 .item-y-line1-1 {
  top: 87.3%;
  left: 28%;
  width: 44.25%;
}
.features-section .f-block-new-2 .item-y-line1-2 {
  top: 88%;
  left: 14.5%;
  width: 41.94%;
}
.features-section .f-block-new-2 .item-4-3-3-4 {
  top: 93%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 69.5%;
  z-index: 11;
}
.features-section .f-block-new-2 .item-y-line2-1 {
  top: 95.3%;
  left: 50%;
  width: 35.02%;
}
.features-section .f-block-new-2 .item-y-line2-2 {
  top: 96%;
  left: -1%;
  right: 0%;
  margin: auto;
  width: 65.2%;
}
.features-section .f-block-new-3 .item-kurabete {
  top: 5%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 37.22%;
}
.features-section .f-block-new-3 .item-4-4-1 {
  top: 35%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 81.9%;
}
.features-section .f-block-new-4 .item-island4 {
  top: 1.5%;
  right: 0%;
  margin: auto;
  width: 95%;
}
.features-section .f-block-new-4 .item-4-5-1 {
  top: 11%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 75.3%;
}
.features-section .f-block-new-4 .item-gif-4 {
  display: block;
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  margin: auto;
  width: 68.7%;
  z-index: 15;
  border-radius: 0.9375rem;
}
.features-section .f-block-new-4 .item-4-5-2 {
  top: 85%;
  left: 19%;
  width: 59.44%;
}
.features-section .f-block-new-4 .item-4-5-3 {
  top: 88.5%;
  left: 23%;
  width: 66.2%;
}
.features-section .f-block-1 .item-island {
  top: 5%;
  left: 0;
  right: 0;
  margin: auto;
  width: 88.94%;
  position: absolute;
  z-index: 10;
}
.features-section .f-block-1 .item-island img {
  width: 100%;
  height: auto;
  display: block;
}
.features-section .f-block-1 .item-island::after {
  content: "";
  position: absolute;
  background-image: url(../dad_img/etc.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  width: 6.9%;
  height: 1%;
  right: 5%;
  bottom: 4%;
  z-index: 2;
  pointer-events: none;
}
.features-section .f-block-1 .item-text-1 {
  top: 8%;
  left: 0;
  right: 0;
  margin: auto;
  width: 74.62%;
}
.features-section .f-block-1 .item-fruit-1 {
  top: 49.5%;
  left: 0;
  right: 0;
  margin: auto;
  width: 84.9%;
}
.features-section .f-block-1 .item-fruit-2 {
  top: 63.2%;
  left: 0;
  right: 0;
  margin: auto;
  width: 84.9%;
}
.features-section .f-block-1 .item-fruit-3 {
  top: 76.5%;
  left: 0;
  right: 0;
  margin: auto;
  width: 84.9%;
}
.features-section .f-block-2 .item-capsule {
  top: 25%;
  left: 0;
  right: 0;
  margin: auto;
  width: 90.9%;
}
.features-section .f-block-2 .item-text-2-1 {
  top: 50%;
  left: 23%;
  width: 9.8%;
}
.features-section .f-block-2 .item-text-2-2 {
  top: 50%;
  left: 11%;
  width: 9.8%;
}
.features-section .f-block-3 .item-sarani {
  top: 40.8%;
  left: 0;
  right: 0;
  margin: auto;
  width: 16.56%;
}
.features-section .f-block-4 .item-free {
  top: 8.5%;
  left: 0;
  right: 0;
  margin: auto;
  width: 67.314%;
}

/* ユーティリティ: 水滴 (強制適用) */
.item-suiteki {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 20% !important;
  max-width: 9.375rem !important;
  z-index: 20 !important;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* =========================================
   11. お客様の声・モニター・使用方法・サイクル・FAQ
   ========================================= */
/* Voice */
.voice-section {
  width: 100%;
  position: relative;
}
.voice-section .voice-bg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.voice-section .kinou-item {
  position: absolute;
  z-index: 15;
  width: 95.27%;
  height: auto;
}
.voice-section .k-item-1 {
  top: 14%;
  left: 0;
  right: 0;
  margin: auto;
}
.voice-section .k-item-2 {
  width: 35.83%;
  top: 23.5%;
  right: 5%;
}
.voice-section .voice-item {
  position: absolute;
  z-index: 10;
  height: auto;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.voice-section .voice-item.is-visible {
  opacity: 1;
  transform: translate(0, 0) !important;
}
.voice-section .voice-item.is-visible .v-deco {
  opacity: 1;
  transform: scale(1);
}
.voice-section .voice-item .v-main {
  width: 100%;
  position: relative;
  z-index: 1;
}
.voice-section .voice-item .v-deco {
  position: absolute;
  width: 8.4%;
  height: auto;
  z-index: 2;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.voice-section .v-group-1 {
  bottom: 33%;
  left: 0;
  width: 83.33%;
  transform: translateX(-1.875rem);
}
.voice-section .v-group-1 .deco-1 {
  top: 16%;
  left: 13.2%;
  transition-delay: 0.6s;
}
.voice-section .v-group-1 .deco-2 {
  top: 25%;
  left: 4%;
  transition-delay: 0.8s;
}
.voice-section .v-group-2 {
  bottom: 5.73%;
  right: 0;
  width: 83.33%;
  transform: translateX(1.875rem);
}
.voice-section .v-group-2 .deco-3 {
  top: 17%;
  right: 4%;
  transition-delay: 0.7s;
}
.voice-section .v-group-2 .deco-4 {
  top: 31.5%;
  right: 13.2%;
  transition-delay: 0.9s;
}
.voice-section .v-item-3 {
  bottom: -1.9%;
  left: 0;
  right: 0;
  margin: auto;
  width: 16.57%;
  transform: translateY(1.875rem);
}

/* Monitor */
.monitor-section {
  width: 100%;
}
.monitor-section .monitor-block {
  position: relative;
  width: 100%;
}
.monitor-section .monitor-block .monitor-bg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.monitor-section .monitor-block .monitor-item {
  position: absolute;
  z-index: 10;
  height: auto;
}
.monitor-section .block-1 .m-item-1 {
  top: 27%;
  right: 0;
  left: 0;
  margin: auto;
  width: 92.59%;
  z-index: 11;
}
.monitor-section .block-1 .m-item-2 {
  bottom: 8.5%;
  left: 0;
  right: 0;
  margin: auto;
  width: 75.5%;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.monitor-section .block-1 .m-item-2.is-visible {
  opacity: 1;
  transform: scale(1);
}
.monitor-section .block-2 {
  position: relative;
}
.monitor-section .block-2 .monitor-text-area {
  position: absolute;
  top: -0.6%;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 20;
  color: #2F4858;
  font-family: "PA1GothicStd", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.monitor-section .block-2 .monitor-text-area .text-sub {
  font-size: min(5.64vw, 2.64375rem);
  font-weight: 500;
  margin-bottom: 0.3125rem;
  position: relative;
  z-index: 2;
}
.monitor-section .block-2 .monitor-text-area .text-main {
  font-size: min(9.08vw, 4.25rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}
.monitor-section .block-2 .monitor-text-area .monitor-underline {
  position: absolute;
  top: 93%;
  width: 47%;
  left: 0;
  right: 0;
  margin: auto;
  height: auto;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.3s;
}
.monitor-section .block-2 .monitor-text-area .monitor-underline.is-visible {
  transform: scaleX(1);
}
.monitor-section .block-2 .m-item-3, .monitor-section .block-2 .m-item-4, .monitor-section .block-2 .m-item-5 {
  width: 11.2%;
  right: 12.5%;
  animation: heartbeatBig 1.2s infinite ease-in-out;
}
.monitor-section .block-2 .m-item-3 {
  top: 18%;
}
.monitor-section .block-2 .m-item-4 {
  top: 42.4%;
}
.monitor-section .block-2 .m-item-5 {
  top: 66.9%;
}

/* Usage */
.usage-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.usage-section .usage-bg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.usage-section .usage-item {
  position: absolute;
  z-index: 10;
  width: 82.42%;
  height: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(1.875rem);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.usage-section .usage-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.usage-section .item-1 {
  top: 17%;
}
.usage-section .item-2 {
  top: 40%;
}
.usage-section .item-3 {
  top: 63.5%;
}

/* Cycle */
.cycle-section {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
}
.cycle-section .cycle-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cycle-section .cycle-bg {
  display: block;
  width: 100%;
  height: auto;
}
.cycle-section .cycle-items {
  position: absolute;
  top: 18.1%;
  left: 0;
  width: 100%;
  height: auto;
}
.cycle-section .cycle-items .item {
  position: absolute;
  width: 8.1%;
  height: auto;
  animation: heartbeat 1s infinite ease-in-out;
  transform-origin: center center;
}
.cycle-section .cycle-items .item:nth-child(1) {
  left: 23.5%;
}
.cycle-section .cycle-items .item:nth-child(2) {
  left: 54.5%;
}
.cycle-section .cycle-items .item:nth-child(3) {
  left: 85.5%;
}

/* FAQ */
.faq-section {
  width: 90.5%;
  margin: 0 auto;
  background: #fff;
  padding: 6% 0;
  /* =========================================
     質問テキスト画像 (q-text) の個別サイズ調整
     ========================================= */
}
.faq-section .section-title {
  text-align: center;
  color: #2F4858;
  margin-bottom: 2.5rem;
  font-size: min(7.6vw, 3.5625rem);
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.faq-section .section-title .amp {
  font-size: 0.7em;
  margin: 0 1%;
  vertical-align: baseline;
  display: inline-block;
}
.faq-section .section-title span {
  display: block;
  font-size: min(3.77vw, 1.75rem);
  line-height: 1.75;
  font-family: "PA1GothicStd", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}
.faq-section .ingredients-item .ing-toggle:checked ~ .ing-header, .faq-section .faq-item .ing-toggle:checked ~ .ing-header {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.faq-section .ingredients-item .ing-toggle:checked ~ .ing-body .ing-body-inner, .faq-section .faq-item .ing-toggle:checked ~ .ing-body .ing-body-inner {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  transform: translateY(0) !important;
}
.faq-section .ingredients-item .faq-toggle:checked ~ .faq-answer .faq-answer-inner, .faq-section .faq-item .faq-toggle:checked ~ .faq-answer .faq-answer-inner {
  transform: translateY(0) !important;
}
.faq-section .ingredients-item .ing-toggle {
  display: none;
}
.faq-section .ingredients-item .ing-toggle:checked ~ .ing-header .ing-arrow {
  transform: rotate(225deg);
}
.faq-section .ingredients-item .ing-toggle:checked ~ .ing-body {
  grid-template-rows: 1fr;
}
.faq-section .ingredients-item .ing-toggle:checked ~ .ing-body .ing-body-inner {
  opacity: 1;
}
.faq-section .ingredients-item .ing-header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #94c0b6;
  color: #fff;
  border-radius: 0.625rem;
  transition: border-radius 0.2s ease;
  cursor: pointer;
  position: relative;
  user-select: none;
}
.faq-section .ingredients-item .ing-header .ing-title {
  font-size: min(4.93vw, 2.3125rem);
  font-family: "PA1GothicStd", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2;
}
.faq-section .ingredients-item .ing-header .ing-arrow {
  position: absolute;
  right: 6%;
  width: 0.75rem;
  height: 0.75rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.4s ease;
  margin-top: -0.25rem;
}
.faq-section .ingredients-item .ing-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.faq-section .ingredients-item .ing-body .ing-body-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-0.625rem);
  transition: opacity 0.4s ease, transform 0.4s ease;
  margin-top: 0;
  border: 2px solid #94c0b6;
  border-top: none;
  border-radius: 0.625rem;
  padding: 1.25rem;
  background-color: #fff;
}
.faq-section .ingredients-item .ing-body .ing-body-inner .ing-text {
  font-size: min(2.32vw, 1.0875rem);
  line-height: 1.75;
  text-align: justify;
  margin: 0;
  font-family: "PA1GothicStd", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 300;
}
.faq-section .faq-item {
  background-color: #fff6e5;
  border-radius: min(8vw, 3.75rem);
  margin-bottom: 1.25rem;
  overflow: hidden;
  position: relative;
  padding: 2.8% 4.2%;
}
.faq-section .faq-item .faq-toggle {
  display: none;
}
.faq-section .faq-item .faq-toggle:checked ~ .faq-question .toggle-icon {
  transform: rotate(180deg);
}
.faq-section .faq-item .faq-toggle:checked ~ .faq-question .toggle-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-section .faq-item .faq-toggle:checked ~ .faq-answer {
  grid-template-rows: 1fr;
}
.faq-section .faq-item .faq-toggle:checked ~ .faq-answer .faq-answer-inner {
  opacity: 1;
  padding: 2% 1% 5% 4%;
}
.faq-section .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: min(8vw, 3.75rem);
  padding: 3.5% 3.61%;
  cursor: pointer;
  position: relative;
  z-index: 2;
  user-select: none;
  transition: border-radius 0.2s ease;
}
.faq-section .faq-question .q-icon {
  width: 3.87%;
  height: auto;
  margin-right: 0.9375rem;
  flex-shrink: 0;
  margin-top: 0;
}
.faq-section .faq-question .q-text {
  width: 57.59%;
  max-width: 80%;
  max-height: 85px;
  margin-right: 1.25rem;
}
.faq-section .faq-question .toggle-icon {
  width: min(4.8vw, 2.25rem);
  height: min(4.8vw, 2.25rem);
  background-color: #ff5a3d;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-section .faq-question .toggle-icon::before, .faq-section .faq-question .toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 0.125rem;
  transition: all 0.3s ease;
}
.faq-section .faq-question .toggle-icon::before {
  width: min(2.133vw, 1rem);
  height: 0.125rem;
}
.faq-section .faq-question .toggle-icon::after {
  width: 0.125rem;
  height: min(2.133vw, 1rem);
}
.faq-section .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  background-color: transparent;
  transition: grid-template-rows 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 0;
}
.faq-section .faq-answer .faq-answer-inner {
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 0 1.5625rem;
  opacity: 0;
  transform: translateY(0.9375rem);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), padding 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-section .faq-answer .faq-answer-inner .a-icon {
  width: 3.7%;
  height: auto;
  margin: 0 0.9375rem 0 0;
  flex-shrink: 0;
  margin-top: 2%;
}
.faq-section .faq-answer .faq-answer-inner .a-text {
  width: 91.2%;
  max-width: 100%;
  height: auto;
  margin: 2% 0;
}
.faq-section #faq-1 + .faq-question .q-text {
  width: 39.58%;
}
.faq-section #faq-2 + .faq-question .q-text {
  width: 57.59%;
}
.faq-section #faq-3 + .faq-question .q-text {
  width: 39.58%;
}
.faq-section #faq-4 + .faq-question .q-text {
  width: 42.87%;
}
.faq-section #faq-5 + .faq-question .q-text {
  width: 54.89%;
}
.faq-section #faq-6 + .faq-question .q-text {
  width: 39.62%;
}
.faq-section #faq-7 + .faq-question .q-text {
  width: 35.7%;
}/*# sourceMappingURL=style.css.map */



.floating_btn{
  opacity: 0;
  pointer-events: none;
  position: fixed;
  bottom: 10px;
  width: 100%;
  z-index: 999;
  max-width: 750px;
}
.floating_btn.active {
  opacity: 1;
  pointer-events: all;
}
.present_contents01{
  position: relative;
  z-index: 2;
  margin-top: -16%;
}
.cta-3 {
  margin: auto;
  width: 90%;
  animation: heartbeatBtn 3s infinite ease-in-out;
  transform-origin: center center;
  display: block;
  padding: 2% 0;
  margin-bottom: -8%;
  position: relative;
  z-index: 3;
}
.fv-section .fv-block-1 .item-product-sub{
  position: absolute;
  bottom: -7.9%;
  left: 0;
  width: 100%;
  z-index: 2;
}