@charset "UTF-8";
:root {
  --blue:#00a3c9;
  --blue-deep:#007ea3;
  --blue-light:#4cc6e3;
  --blue-pale:#eaf7fb;
  --navy:#0b2433;
  --navy-2:#123a4f;
  --text:#22313f;
  --gray:#64707c;
  --line:#e2eaf0;
  --white:#ffffff;
  --radius:18px;
  --en:"Montserrat","Noto Sans JP",sans-serif;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.inner:not(footer .inner) {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== reveal ===== */
.reveal {
  opacity: 0;
  -webkit-transform: translateY(28px);
      -ms-transform: translateY(28px);
          transform: translateY(28px);
  -webkit-transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.on {
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.d1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.d2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.d3 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

/* ===== header（公式サイト準拠） ===== */
/* .menu-status{display:none;}
header{width:100%;position:fixed;top:0;left:0;z-index:100;white-space:nowrap;line-height:1.6;}
header a,header a:link,header a:visited{display:block;color:#fff;text-decoration:none;transition:.2s ease;}
header .wrap{padding:15px 20px;position:relative;display:flex;align-items:center;justify-content:space-between;background-color:rgba(0,0,0,.5);}
header .brand{margin:0 10px;flex-shrink:0;}
header .brand img{height:38px;width:auto;display:block;}
header .nav{display:flex;align-items:center;font-weight:700;font-size:18px;}
header .nav .navul{display:flex;align-items:center;cursor:pointer;list-style:none;margin:0;padding:0;}
header .nav .navul>li{position:relative;}
header .nav .navul>li>a{padding:5px clamp(7px,-6.3333px + 1.1111vw,15px);}
header .nav .navul>li>a:hover{color:#4cb5c3;}
header .nav li.has_child .subnav{position:absolute;top:100%;left:0;padding-top:14px;opacity:0;visibility:hidden;transition:.3s;min-width:230px;}
header .nav li.has_child:hover .subnav{opacity:1;visibility:visible;}
header .subnav .navinner{background:rgba(0,0,0,.45);color:#fff;padding:14px 22px;font-size:14px;}
header .subnav .navinner a{padding:6px 0;white-space:nowrap;}
header .subnav .navinner a:hover{color:#4cb5c3;}
header .tel{position:relative;margin:0 40px;line-height:1.2;color:#fff;text-align:center;}
header .tel{margin:0 22px 0 30px;}
header .tel .t1{display:block;font-size:12px;font-weight:700;}
header .tel .t2{display:block;font-size:19px;font-weight:800;letter-spacing:.02em;}
header .tel .t2::before{content:"☎ ";font-size:16px;}
header .tel .t3{display:block;font-size:10.5px;font-weight:700;}
header .cart a{padding:10px 18px;background-color:#ee3d3d;border-radius:30px;display:flex;align-items:center;gap:7px;font-size:15px;font-weight:700;transition:.2s ease;}
header .cart svg{width:17px;height:17px;}
header .cart a:hover{opacity:.85;}
header .bars{position:relative;width:30px;height:30px;margin-right:15px;display:none;cursor:pointer;z-index:101;}
header .bars .bar{position:absolute;width:100%;height:2px;background-color:#fff;left:0;top:50%;transform:translateY(-50%);transition:.3s ease;}
header .bars .bar:nth-child(1){top:calc(50% - 9px);}
header .bars .bar:nth-child(3){top:calc(50% + 9px);}
.menu-status:checked~header #hamburger .bar:nth-child(1){left:50%;top:50%;transform:translate(-50%,-50%) rotate(-45deg);}
.menu-status:checked~header #hamburger .bar:nth-child(2){transform:translate(50px,0);opacity:0;}
.menu-status:checked~header #hamburger .bar:nth-child(3){left:50%;top:50%;transform:translate(-50%,-50%) rotate(45deg);}
.drop-down-menu{transition:all .4s cubic-bezier(.19,1,.22,1);position:fixed;right:0;top:0;display:none;z-index:90;width:100%;height:100%;opacity:0;font-weight:700;background-color:rgba(0,0,0,.88);backdrop-filter:blur(5px);padding:80px 30px 30px;overflow-y:auto;}
.menu-status:checked~.drop-down-menu{display:block;opacity:1;}
.drop-down-menu a{display:block;color:#fff;font-size:17px;padding:12px 0;border-bottom:1px solid rgba(255,255,255,.15);text-decoration:none;}
.drop-down-menu a.dd-sub{font-size:14px;font-weight:500;padding-left:1.2em;}
.drop-down-menu .dd-cart{margin-top:22px;background:#ee3d3d;border-radius:30px;text-align:center;border:none;padding:13px;}
.drop-down-menu .dd-tel{margin-top:14px;border:none;text-align:center;font-size:14px;}
@media(max-width:1200px){
  header .nav{display:none;}
  header .bars{display:block;}
}
@media(max-width:600px){
  header .wrap{padding:5px 0;}
} */
/* ===== hero ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  color: var(--navy);
  background: linear-gradient(160deg, #f4fafc 0%, #e6f3f8 100%);
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 88% center;
     object-position: 88% center;
  z-index: 0;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(250, 253, 255, 0.96) 0%, rgba(250, 253, 255, 0.88) 30%, rgba(250, 253, 255, 0.55) 48%, rgba(250, 253, 255, 0) 68%);
}

.bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.bubbles span {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.06) 62%);
  -webkit-animation: rise linear infinite;
          animation: rise linear infinite;
}

.bubbles span:nth-child(1) {
  left: 8%;
  width: 14px;
  height: 14px;
  -webkit-animation-duration: 11s;
          animation-duration: 11s;
}

.bubbles span:nth-child(2) {
  left: 22%;
  width: 7px;
  height: 7px;
  -webkit-animation-duration: 14s;
          animation-duration: 14s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.bubbles span:nth-child(3) {
  left: 38%;
  width: 10px;
  height: 10px;
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.bubbles span:nth-child(4) {
  left: 58%;
  width: 6px;
  height: 6px;
  -webkit-animation-duration: 16s;
          animation-duration: 16s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.bubbles span:nth-child(5) {
  left: 72%;
  width: 16px;
  height: 16px;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.bubbles span:nth-child(6) {
  left: 86%;
  width: 9px;
  height: 9px;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

@-webkit-keyframes rise {
  0% {
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-110vh) translateX(24px);
            transform: translateY(-110vh) translateX(24px);
    opacity: 0;
  }
}

@keyframes rise {
  0% {
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-110vh) translateX(24px);
            transform: translateY(-110vh) translateX(24px);
    opacity: 0;
  }
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 24px 90px;
  width: 100%;
}

.hero-inner > * {
  max-width: 620px;
}

.hero-official {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 163, 201, 0.4);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  color: var(--blue-deep);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 8px 22px;
  margin-bottom: 26px;
}

.hero-official::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  -webkit-box-shadow: 0 0 10px var(--blue-light);
          box-shadow: 0 0 10px var(--blue-light);
}

.hero h1 {
  font-size: clamp(30px, 4.8vw, 54px);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  color: var(--navy);
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.6);
}

.hero h1 .accent {
  background: linear-gradient(120deg, #00b7e2, #007ea3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 500;
  color: #3d5464;
  margin-bottom: 30px;
  letter-spacing: 0.06em;
}

.hero-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 163, 201, 0.45);
  backdrop-filter: blur(6px);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.hero-pricebox {
  display: inline-block;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 163, 201, 0.25);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 24px 34px 20px;
  margin-bottom: 34px;
  -webkit-box-shadow: 0 10px 32px rgba(10, 60, 85, 0.1);
          box-shadow: 0 10px 32px rgba(10, 60, 85, 0.1);
}

.hero-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hero-price .label {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.hero-price .num {
  font-family: var(--en);
  font-size: clamp(52px, 6.4vw, 74px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.015em;
  background: -webkit-gradient(linear, left top, left bottom, from(#0e3a50), to(#0090b8));
  background: linear-gradient(180deg, #0e3a50, #0090b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-price .unit {
  font-size: 14px;
  color: var(--gray);
}

.hero-notes {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.8;
  margin-top: 10px;
}

.hero-cta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hero-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 18px 52px;
  border-radius: 999px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 163, 201, 0.5);
          box-shadow: 0 10px 30px rgba(0, 163, 201, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hero-cta::after {
  content: "→";
  font-family: var(--en);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hero-cta:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 14px 38px rgba(0, 183, 226, 0.65);
          box-shadow: 0 14px 38px rgba(0, 183, 226, 0.65);
}

.hero-cta:hover::after {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}

.hero-supported {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--gray);
}

.hero-supported b {
  font-family: var(--en);
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-left: 6px;
  color: var(--navy);
}

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.34em;
  color: var(--blue-deep);
  opacity: 0.85;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 44px;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--blue-deep)), to(transparent));
  background: linear-gradient(180deg, var(--blue-deep), transparent);
  -webkit-animation: drip 2s ease-in-out infinite;
          animation: drip 2s ease-in-out infinite;
}

@-webkit-keyframes drip {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  55% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  56% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@keyframes drip {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  55% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  56% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
/* ===== section common ===== */
section {
  padding: 96px 0;
}

.sec-head {
  text-align: center;
  margin-bottom: 56px;
}

.sec-head .en {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-family: var(--en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sec-head .en::before, .sec-head .en::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--blue);
  opacity: 0.5;
}

.sec-head h2 {
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.55;
  letter-spacing: 0.05em;
}

.sec-head .lead {
  font-size: 14px;
  color: var(--gray);
  margin-top: 14px;
}

/* ===== recommend ===== */
.recommend {
  padding-top: 84px;
  padding-bottom: 84px;
}

.check-box {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(135deg, #f2fbfe, #e2f4fa);
  border-radius: var(--radius);
  padding: 44px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  -webkit-box-shadow: 0 12px 40px rgba(10, 60, 85, 0.08);
          box-shadow: 0 12px 40px rgba(10, 60, 85, 0.08);
}

.check-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--blue-light), transparent 55%, var(--blue));
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.check-box li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
}

.check-box li::before {
  content: "✓";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 5px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 3px 8px rgba(0, 163, 201, 0.35);
          box-shadow: 0 3px 8px rgba(0, 163, 201, 0.35);
}

.persona-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px 22px;
  max-width: 1000px;
  margin: 48px auto 0;
}

.persona-card {
  width: 164px;
  text-align: center;
  position: relative;
}

.persona-card img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  -webkit-box-shadow: 0 12px 28px rgba(10, 60, 85, 0.16);
          box-shadow: 0 12px 28px rgba(10, 60, 85, 0.16);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.persona-card:hover img {
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
}

.persona-card p {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 12px;
  line-height: 1.5;
}

/* 製品の設置箇所を示す拡大インセット（美容室カード） */
.persona-zoom {
  position: absolute;
  right: -6px;
  top: 100px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  z-index: 2;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 6px 16px rgba(10, 60, 85, 0.3);
          box-shadow: 0 6px 16px rgba(10, 60, 85, 0.3);
}

.persona-zoom img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.persona-note {
  text-align: center;
  font-size: 11px;
  color: var(--gray);
  margin-top: 18px;
}

/* ===== plans ===== */
.plans {
  position: relative;
  background: radial-gradient(900px 400px at 85% 0%, rgba(0, 163, 201, 0.07), transparent), -webkit-gradient(linear, left top, left bottom, from(#f6fbfd), to(#ecf6fa));
  background: radial-gradient(900px 400px at 85% 0%, rgba(0, 163, 201, 0.07), transparent), linear-gradient(180deg, #f6fbfd 0%, #ecf6fa 100%);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}

.plan-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  -webkit-box-shadow: 0 14px 44px rgba(10, 50, 70, 0.1);
          box-shadow: 0 14px 44px rgba(10, 50, 70, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.35s, -webkit-box-shadow 0.35s;
  transition: -webkit-transform 0.35s, -webkit-box-shadow 0.35s;
  transition: transform 0.35s, box-shadow 0.35s;
  transition: transform 0.35s, box-shadow 0.35s, -webkit-transform 0.35s, -webkit-box-shadow 0.35s;
}

.plan-card:hover {
  -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 22px 56px rgba(10, 50, 70, 0.16);
          box-shadow: 0 22px 56px rgba(10, 50, 70, 0.16);
}

.plan-ribbon {
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 11px;
}

.plan-card.new .plan-ribbon {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
}

.plan-osusume {
  position: absolute;
  top: 26px;
  right: -46px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 176px;
  text-align: center;
  background: linear-gradient(135deg, #ffc35e, #ff9d2e);
  color: #5c3a00;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  padding: 7px 0;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.plan-body {
  padding: 30px 32px 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.plan-img {
  width: 100%;
  max-width: 250px;
  height: 200px;
  margin: 0 auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-filter: drop-shadow(0 12px 20px rgba(10, 50, 70, 0.12));
          filter: drop-shadow(0 12px 20px rgba(10, 50, 70, 0.12));
}

.plan-img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
}

.plan-img.zoomed {
  overflow: hidden;
  border-radius: 14px;
}

.plan-img.zoomed img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(2.5);
      -ms-transform: scale(2.5);
          transform: scale(2.5);
  -webkit-transform-origin: 38% 60%;
      -ms-transform-origin: 38% 60%;
          transform-origin: 38% 60%;
  border-radius: 0;
}

.plan-name {
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.plan-tags {
  min-height: 33px;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.plan-terms {
  min-height: 54px;
}

.plan-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.plan-name small {
  display: block;
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--blue);
  margin-bottom: 4px;
}

.plan-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.plan-tags span {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-deep);
  background: var(--blue-pale);
  border: 1px solid #c9e9f4;
  padding: 4px 12px;
  border-radius: 999px;
}

.plan-price {
  text-align: center;
  margin-bottom: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
}

.plan-price .num {
  font-family: var(--en);
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.plan-price .small {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

.plan-terms {
  font-size: 12.5px;
  color: var(--gray);
  text-align: center;
  line-height: 1.8;
  margin-bottom: 22px;
}

.plan-terms b {
  color: var(--blue-deep);
}

.plan-cta {
  margin-top: auto;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color: #fff;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 16px;
  border-radius: 999px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 8px 22px rgba(0, 163, 201, 0.38);
          box-shadow: 0 8px 22px rgba(0, 163, 201, 0.38);
}

.plan-cta:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 30px rgba(0, 183, 226, 0.55);
          box-shadow: 0 12px 30px rgba(0, 183, 226, 0.55);
}

.plan-cta::after {
  content: " →";
  font-family: var(--en);
}

.plan-common {
  max-width: 880px;
  margin: 32px auto 0;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 34px;
  font-size: 13.5px;
  color: var(--text);
  -webkit-box-shadow: 0 10px 30px rgba(10, 50, 70, 0.07);
          box-shadow: 0 10px 30px rgba(10, 50, 70, 0.07);
  border-left: 5px solid var(--blue);
}

.plan-common b {
  color: var(--blue-deep);
}

.plan-note {
  max-width: 880px;
  margin: 16px auto 0;
  font-size: 11px;
  color: var(--gray);
  line-height: 1.8;
}

/* ===== features ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  -webkit-box-shadow: 0 12px 36px rgba(10, 50, 70, 0.09);
          box-shadow: 0 12px 36px rgba(10, 50, 70, 0.09);
  -webkit-transition: -webkit-transform 0.35s, -webkit-box-shadow 0.35s;
  transition: -webkit-transform 0.35s, -webkit-box-shadow 0.35s;
  transition: transform 0.35s, box-shadow 0.35s;
  transition: transform 0.35s, box-shadow 0.35s, -webkit-transform 0.35s, -webkit-box-shadow 0.35s;
}

.feature-card:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 20px 48px rgba(10, 50, 70, 0.15);
          box-shadow: 0 20px 48px rgba(10, 50, 70, 0.15);
}

.fc-imgwrap {
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fc-imgwrap.fit img {
  -o-object-fit: contain;
     object-fit: contain;
}

.fc-imgwrap.fit {
  background: #fff;
}

.fc-imgwrap.fit-dark {
  background: #0c1c28;
}

.fc-imgwrap.fit-dark img {
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 16/10;
}

.fc-triple {
  background: radial-gradient(420px 200px at 80% 0%, rgba(76, 198, 227, 0.18), transparent), linear-gradient(160deg, #0c2f3f 0%, #155a74 100%);
  padding: 24px 18px 20px;
}

.fc-triple .ft-head {
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.ft-head .accent2 {
  color: #7fe3ff;
  font-size: 1.15em;
}

.ft-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.ft-card {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f2f8fb));
  background: linear-gradient(180deg, #ffffff, #f2f8fb);
  border-radius: 12px;
  padding: 12px 6px 12px;
  text-align: center;
  -webkit-box-shadow: 0 6px 16px rgba(0, 10, 20, 0.25);
          box-shadow: 0 6px 16px rgba(0, 10, 20, 0.25);
}

.ft-card img {
  width: 62%;
  margin: 0 auto 8px;
  display: block;
  aspect-ratio: 1/1;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.ft-card span {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  display: block;
}

.compare-video {
  background: #0a0e12;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 3px;
}

.cv-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #000;
}

.cv-item video {
  width: 100%;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -o-object-fit: contain;
     object-fit: contain;
  min-height: 0;
}

.cv-label {
  text-align: center;
  margin-top: auto;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  background: rgba(88, 94, 100, 0.95);
  padding: 6px 4px;
}

.cv-label.on {
  background: rgba(0, 163, 201, 0.95);
}

.feature-card:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.feature-card .fc-body {
  padding: 26px 30px 30px;
}

.fc-num {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--blue);
  display: block;
  margin-bottom: 8px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.feature-card h3 .accent {
  color: var(--blue);
}

.feature-card p {
  font-size: 13.5px;
  color: var(--gray);
}

/* 特長カードの画像エリア高さを統一 */
.fc-imgwrap, .fc-triple {
  height: 290px;
}

.fc-imgwrap img {
  height: 100%;
  aspect-ratio: auto;
}

.fc-imgwrap.fit-dark img {
  aspect-ratio: auto;
}

.cg-video {
  background: #c6cacd;
}

.ft-strip {
  background: #383838;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ft-strip img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.cg-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.fc-triple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.feature-note {
  font-size: 11px;
  color: var(--gray);
  margin-top: 26px;
  text-align: left;
  line-height: 1.9;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== points ===== */
.points {
  background: radial-gradient(800px 380px at 12% 100%, rgba(0, 163, 201, 0.08), transparent), -webkit-gradient(linear, left top, left bottom, from(#f6fbfd), to(#ecf6fa));
  background: radial-gradient(800px 380px at 12% 100%, rgba(0, 163, 201, 0.08), transparent), linear-gradient(180deg, #f6fbfd 0%, #ecf6fa 100%);
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.point-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 38px 30px 34px;
  -webkit-box-shadow: 0 12px 36px rgba(10, 50, 70, 0.08);
          box-shadow: 0 12px 36px rgba(10, 50, 70, 0.08);
  overflow: hidden;
  text-align: center;
  -webkit-transition: -webkit-transform 0.35s, -webkit-box-shadow 0.35s;
  transition: -webkit-transform 0.35s, -webkit-box-shadow 0.35s;
  transition: transform 0.35s, box-shadow 0.35s;
  transition: transform 0.35s, box-shadow 0.35s, -webkit-transform 0.35s, -webkit-box-shadow 0.35s;
}

.point-card:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 20px 46px rgba(10, 50, 70, 0.14);
          box-shadow: 0 20px 46px rgba(10, 50, 70, 0.14);
}

.point-card:hover .point-icon {
  -webkit-transform: translateY(-4px) scale(1.05);
      -ms-transform: translateY(-4px) scale(1.05);
          transform: translateY(-4px) scale(1.05);
}

.point-ghost {
  position: absolute;
  top: -14px;
  right: 6px;
  font-family: var(--en);
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 163, 201, 0.18);
  pointer-events: none;
}

.point-icon {
  position: relative;
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 12px 26px rgba(0, 163, 201, 0.35);
          box-shadow: 0 12px 26px rgba(0, 163, 201, 0.35);
  -webkit-transition: -webkit-transform 0.35s;
  transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  transition: transform 0.35s, -webkit-transform 0.35s;
}

.point-icon::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 32px;
  border: 1.5px dashed rgba(0, 163, 201, 0.35);
}

.point-icon svg {
  width: 44px;
  height: 44px;
}

.point-num {
  display: inline-block;
  font-family: var(--en);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 3px;
  margin-bottom: 14px;
}

.point-card h3 {
  font-size: 17.5px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.point-card p {
  font-size: 13px;
  color: var(--gray);
  text-align: left;
}

/* ===== flow ===== */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.flow-grid::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#bfe6f2), color-stop(var(--blue)), to(#bfe6f2));
  background: linear-gradient(90deg, #bfe6f2, var(--blue), #bfe6f2);
  z-index: 0;
}

.flow-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.flow-icon {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f0fafd));
  background: linear-gradient(180deg, #ffffff, #f0fafd);
  color: var(--blue);
  border: 2px solid #cdeaf4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 14px 30px rgba(0, 163, 201, 0.16), 0 0 0 10px #fff;
          box-shadow: 0 14px 30px rgba(0, 163, 201, 0.16), 0 0 0 10px #fff;
  -webkit-transition: -webkit-transform 0.35s;
  transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  transition: transform 0.35s, -webkit-transform 0.35s;
}

.flow-step:hover .flow-icon {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}

.flow-icon svg {
  width: 56px;
  height: 56px;
}

.flow-badge {
  position: absolute;
  top: -4px;
  left: -8px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--en);
  font-weight: 800;
  line-height: 1;
  -webkit-box-shadow: 0 5px 12px rgba(0, 163, 201, 0.45);
          box-shadow: 0 5px 12px rgba(0, 163, 201, 0.45);
}

.flow-badge small {
  font-size: 6.5px;
  letter-spacing: 0.16em;
  font-weight: 700;
  opacity: 0.9;
}

.flow-badge b {
  font-size: 16px;
}

.flow-step h3 {
  font-size: 16.5px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.flow-step p {
  font-size: 13px;
  color: var(--gray);
  text-align: left;
}

/* ===== voice ===== */
.voice {
  background: radial-gradient(900px 400px at 90% 100%, rgba(0, 163, 201, 0.07), transparent), -webkit-gradient(linear, left top, left bottom, from(#f6fbfd), to(#ecf6fa));
  background: radial-gradient(900px 400px at 90% 100%, rgba(0, 163, 201, 0.07), transparent), linear-gradient(180deg, #f6fbfd 0%, #ecf6fa 100%);
}

.voice-score {
  max-width: 420px;
  margin: 0 auto 44px;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
  -webkit-box-shadow: 0 12px 34px rgba(10, 50, 70, 0.09);
          box-shadow: 0 12px 34px rgba(10, 50, 70, 0.09);
}

.voice-score .score {
  font-family: var(--en);
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
}

.voice-score .stars {
  color: #f5a623;
  font-size: 19px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.voice-score .cnt {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.voice-card {
  background: #fff;
  border-radius: var(--radius);
  -webkit-box-shadow: 0 12px 34px rgba(10, 50, 70, 0.08);
          box-shadow: 0 12px 34px rgba(10, 50, 70, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.35s, -webkit-box-shadow 0.35s;
  transition: -webkit-transform 0.35s, -webkit-box-shadow 0.35s;
  transition: transform 0.35s, box-shadow 0.35s;
  transition: transform 0.35s, box-shadow 0.35s, -webkit-transform 0.35s, -webkit-box-shadow 0.35s;
}

.voice-card:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 20px 44px rgba(10, 50, 70, 0.14);
          box-shadow: 0 20px 44px rgba(10, 50, 70, 0.14);
}

.voice-body {
  padding: 30px 28px 26px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.voice-body::before {
  content: "“";
  position: absolute;
  top: 2px;
  left: 16px;
  font-family: Georgia, serif;
  font-size: 74px;
  line-height: 1;
  color: rgba(0, 163, 201, 0.16);
}

.voice-stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 4px;
  position: relative;
}

.voice-name {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 10px;
  position: relative;
}

.voice-body p {
  font-size: 13.5px;
  color: var(--text);
  position: relative;
}

.voice-cta {
  display: block;
  text-align: center;
  background: var(--blue-pale);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.voice-cta:hover {
  background: #d3eef7;
}

.voice-cta::after {
  content: " →";
  font-family: var(--en);
}

.voice-note {
  font-size: 11px;
  color: var(--gray);
  text-align: center;
  margin-top: 24px;
  line-height: 1.8;
}

/* ===== faq ===== */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.faq-list details[open] {
  -webkit-box-shadow: 0 10px 30px rgba(10, 50, 70, 0.08);
          box-shadow: 0 10px 30px rgba(10, 50, 70, 0.08);
  border-color: #c9e9f4;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "Q";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color: #fff;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--en);
  font-size: 15px;
  font-weight: 700;
}

.faq-list summary::after {
  content: "＋";
  margin-left: auto;
  color: var(--blue);
  font-size: 20px;
  font-weight: 400;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-a {
  padding: 0 24px 22px 72px;
  font-size: 13.5px;
  color: var(--gray);
}

/* ===== final cta ===== */
.final {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background: linear-gradient(160deg, #081f2c 0%, #0f4257 55%, #17708e 100%);
  padding: 110px 0;
}

.final .bubbles span {
  background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.04) 62%);
}

.final h2 {
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  letter-spacing: 0.05em;
}

.final p {
  font-size: 14.5px;
  opacity: 0.88;
  margin-bottom: 36px;
  position: relative;
}

.final-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  position: relative;
  background: #fff;
  color: var(--blue-deep);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 19px 58px;
  border-radius: 999px;
  -webkit-box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
          box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.final-cta::after {
  content: "→";
  font-family: var(--en);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.final-cta:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  background: var(--blue-pale);
}

.final-cta:hover::after {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}

.final-note {
  font-size: 11px;
  opacity: 0.7;
  margin-top: 20px;
  position: relative;
}

/* ===== footer（公式サイト準拠） ===== */
footer {
  color: #fff;
  background: #43464e;
}

footer .links a, footer .links a:link {
  white-space: nowrap;
  font-weight: bold;
  font-size: 16px;
  display: block;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

/* ===== sp fixed cta ===== */
.sp-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 -4px 20px rgba(10, 40, 60, 0.12);
          box-shadow: 0 -4px 20px rgba(10, 40, 60, 0.12);
  -webkit-transform: translateY(110%);
      -ms-transform: translateY(110%);
          transform: translateY(110%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.sp-cta.show {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.sp-cta a {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px;
  border-radius: 999px;
  -webkit-box-shadow: 0 6px 18px rgba(0, 163, 201, 0.4);
          box-shadow: 0 6px 18px rgba(0, 163, 201, 0.4);
}

/* ===== sp ===== */
@media (max-width: 860px) {
  section {
    padding: 68px 0;
  }
  .hero-inner {
    padding: 120px 24px 110px;
  }
  /* モバイル用：製品カード */
  .hero-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 163, 201, 0.35);
    border-radius: 16px;
    padding: 12px 16px 12px 12px;
    margin-bottom: 24px;
    -webkit-box-shadow: 0 8px 24px rgba(10, 60, 85, 0.12);
            box-shadow: 0 8px 24px rgba(10, 60, 85, 0.12);
    backdrop-filter: blur(6px);
  }
  .hero-product img {
    width: 104px;
    height: 80px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    background: #eef7fa;
  }
  .hero-product .hp-name {
    font-family: var(--en);
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.03em;
    line-height: 1.3;
  }
  .hero-product .hp-desc {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.65;
    margin-top: 4px;
  }
  /* モバイル用ヒーロー画像：製品が見えるよう位置調整＋上部を白くして文字を読みやすく */
  .hero .hero-bg {
    -o-object-position: 60% center;
       object-position: 60% center;
  }
  .hero .overlay {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 253, 255, 0.96)), color-stop(38%, rgba(250, 253, 255, 0.86)), color-stop(60%, rgba(250, 253, 255, 0.6)), color-stop(82%, rgba(250, 253, 255, 0.2)), to(rgba(250, 253, 255, 0)));
    background: linear-gradient(180deg, rgba(250, 253, 255, 0.96) 0%, rgba(250, 253, 255, 0.86) 38%, rgba(250, 253, 255, 0.6) 60%, rgba(250, 253, 255, 0.2) 82%, rgba(250, 253, 255, 0) 100%);
  }
  .hero-pricebox {
    padding: 20px 26px 16px;
  }
  .check-box {
    grid-template-columns: 1fr;
    padding: 32px 28px;
  }
  .plan-grid, .feature-grid, .point-grid, .voice-grid {
    grid-template-columns: 1fr;
  }
  /* こんな方におすすめ：全シーンを横長の大きな写真タイルで統一表示 */
  .persona-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
  }
  .persona-card {
    width: auto;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    -webkit-box-shadow: 0 8px 22px rgba(10, 60, 85, 0.16);
            box-shadow: 0 8px 22px rgba(10, 60, 85, 0.16);
  }
  .persona-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 2/1;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .persona-card:hover img {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  /* 美容室タイルは表示位置のみ下寄りに調整（サイズは他と同じ2:1） */
  .persona-salon img {
    -o-object-position: center 54%;
       object-position: center 54%;
  }
  .persona-zoom {
    width: 96px;
    height: 96px;
    right: 14px;
    top: auto;
    bottom: 60px;
  }
  .persona-card p {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 40px 10px 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 31, 44, 0)), color-stop(80%, rgba(8, 31, 44, 0.85)));
    background: linear-gradient(180deg, rgba(8, 31, 44, 0) 0%, rgba(8, 31, 44, 0.85) 80%);
  }
  /* 特長カードの画像エリア：SPでも高さ統一 */
  .fc-imgwrap, .fc-triple {
    height: 235px;
  }
  /* ご利用の流れ：シニア配慮（大きな文字・高コントラスト・カード型・縦積み） */
  .flow-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .flow-grid::before {
    display: none;
  }
  .flow-step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    -webkit-column-gap: 18px;
       -moz-column-gap: 18px;
            column-gap: 18px;
    row-gap: 12px;
    text-align: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff;
    border: 2px solid #bfdfeb;
    border-radius: 18px;
    padding: 24px 20px 26px;
    -webkit-box-shadow: 0 6px 18px rgba(10, 60, 85, 0.08);
            box-shadow: 0 6px 18px rgba(10, 60, 85, 0.08);
  }
  .flow-step::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -23px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    border: 12px solid transparent;
    border-top: 14px solid var(--blue);
  }
  .flow-step:last-child::after {
    display: none;
  }
  .flow-icon {
    width: 92px;
    height: 92px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0;
    grid-row: 1/span 2;
    -webkit-box-shadow: 0 8px 18px rgba(0, 163, 201, 0.16), 0 0 0 5px #fff;
            box-shadow: 0 8px 18px rgba(0, 163, 201, 0.16), 0 0 0 5px #fff;
  }
  .flow-icon svg {
    width: 46px;
    height: 46px;
  }
  .flow-badge {
    width: 40px;
    height: 40px;
    top: -6px;
    left: -9px;
  }
  .flow-badge b {
    font-size: 18px;
  }
  .flow-badge small {
    font-size: 7.5px;
  }
  .flow-step h3 {
    font-size: 21px;
    line-height: 1.5;
    margin: 0;
    text-align: left;
    color: var(--navy);
  }
  .flow-step p {
    grid-column: 1/-1;
    font-size: 17px;
    line-height: 2;
    color: #2b3a47;
  }
  .header-tag {
    display: none;
  }
  .sp-cta {
    display: block;
  }
  footer {
    padding-bottom: 60px;
  }
}
/* ----------------------------------------------------------------------- */
@media (max-width: 600px) {
  body {
    padding-bottom: 10vw;
  }
}

.head-btns-store {
  display: none;
  grid-template-columns: repeat(2, 1fr);
}

.btn-manual-store:nth-child(2) {
  display: none;
}