/* ============================================================
   カブミルAI トップページ（LP）スタイル v3
   ※ legal.css の :root 変数（--navy 等）を継承して使用
   初心者向け・信頼感重視 / Apple風の余白とアニメーション
   ============================================================ */

.lp { display: block; overflow-x: hidden; }
.pc-only { display: inline; }
.sp-only { display: none; }

/* ─── スクロール演出（共通） ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── 共通：セクション ─────────────────────────────────────── */
.section {
  background: #ffffff;
  padding: 96px 0;
}
.section--light { background: var(--bg-soft); }
.section--navy {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #1b2080 0%, #2a1c6e 55%, #0c1040 100%);
}
.section--navy::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: #00a3b4;
  filter: blur(120px);
  opacity: 0.28;
  top: -150px;
  right: -90px;
  pointer-events: none;
}
.section__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.section__inner--narrow { max-width: 760px; }

.section__head { text-align: center; margin-bottom: 56px; }
.section__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--teal);
  margin: 0 0 12px;
}
.section__eyebrow--light { color: #5fe0e8; }
.section__title {
  font-size: clamp(23px, 4vw, 33px);
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.section__title--light { color: #ffffff; }
.section__desc {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.9;
}
.section__desc--light { color: rgba(255, 255, 255, 0.78); }

/* ─── A. ヒーロー ─────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1b2080 0%, #2a1c6e 52%, #0c1040 100%);
  color: #ffffff;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 72% 32%, #000 0%, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 60% at 72% 32%, #000 0%, transparent 78%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.hero__glow--teal {
  width: 380px; height: 380px;
  background: #00a3b4;
  top: -120px; right: -60px;
}
.hero__glow--purple {
  width: 420px; height: 420px;
  background: #6a3bd6;
  bottom: -200px; left: -140px;
}

/* 背景チャート（描画アニメーション） */
.hero__chart {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%; height: 260px;
}
.hero__chart-line {
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: chartDraw 2.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.hero__chart-area { opacity: 0; animation: chartFill 1.4s ease 1.6s forwards; }
@keyframes chartDraw { to { stroke-dashoffset: 0; } }
@keyframes chartFill { to { opacity: 1; } }

/* 浮遊データチップ */
.hero__chips { position: absolute; inset: 0; }
.data-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(6, 10, 40, 0.32);
  animation: floaty 6s ease-in-out infinite;
}
.data-chip b { font-weight: 800; color: #fff; }
.data-chip i { font-style: normal; font-weight: 700; }
.data-chip .up { color: #4ee6a8; }
.data-chip .dn { color: #ff8c8c; }
.data-chip--1 { top: 16%; right: 6%;  animation-delay: 0s; }
.data-chip--2 { top: 30%; right: 30%; animation-delay: 0.8s; }
.data-chip--3 { top: 54%; right: 8%;  animation-delay: 1.6s; }
.data-chip--4 { top: 70%; right: 26%; animation-delay: 2.4s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 76px 24px 92px;
  display: flex;
  align-items: center;
  gap: 44px;
}
.hero__text { flex: 1; min-width: 0; }
.hero__visual { flex-shrink: 0; width: 380px; max-width: 100%; }

.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 999px;
  margin: 0 0 24px;
}
.hero__title {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.01em;
  margin: 0 0 22px;
}
.hero__title-em {
  background: linear-gradient(100deg, #5fe0e8 0%, #b3a6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: 15.5px;
  line-height: 2.05;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 28px;
  max-width: 33em;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero__store {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}
.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 0 0 22px;
}
.hero__trust li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}
.hero__trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #5fe0e8;
  font-weight: 800;
}
.hero__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* ─── 近日公開バッジ ──────────────────────────────────────── */
.badge-soon {
  display: inline-block;
  background: linear-gradient(135deg, #00bcc9 0%, #6f5ae6 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 13px 28px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(10, 120, 160, 0.42);
}
.badge-soon--lg { font-size: 15px; padding: 15px 34px; }

/* ─── App Store ダウンロードボタン ─────────────────────────── */
.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #000;
  color: #fff;
  border-radius: 13px;
  padding: 10px 22px 10px 18px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-appstore:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
}
.btn-appstore__logo { width: 26px; height: 26px; flex-shrink: 0; }
.btn-appstore__txt {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.01em;
}
.btn-appstore__txt small {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.92;
}
.btn-appstore--lg { padding: 13px 28px 13px 22px; }
.btn-appstore--lg .btn-appstore__logo { width: 30px; height: 30px; }
.btn-appstore--lg .btn-appstore__txt { font-size: 21px; }

/* ─── CTA：ダウンロード用QRコード ──────────────────────────── */
.cta-qr {
  margin: 30px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 14px 20px 14px 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cta-qr__img {
  width: 104px;
  height: 104px;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  display: block;
  flex-shrink: 0;
}
.cta-qr__label {
  margin: 0;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

/* ─── スマホ・モックアップ（実画面） ─────────────────────────
   ※ スクショに iOS ステータスバー／ノッチが含まれるため
     フレーム側ではノッチを描画しない（二重表示の防止）
   ──────────────────────────────────────────────────────────── */
.phone {
  position: relative;
  padding: 8px;
  background: linear-gradient(150deg, #20242f 0%, #0c0e17 100%);
  border-radius: 38px;
  box-shadow: 0 26px 56px rgba(8, 11, 40, 0.5),
              inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.phone__screen {
  aspect-ratio: 9 / 19.46;
  border-radius: 30px;
  overflow: hidden;
  background-color: #e9edf6;          /* 画像未配置時のフォールバック */
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* 重ねモック（ヒーロー） */
.phone-stack {
  position: relative;
  width: 420px;
  max-width: 100%;
  aspect-ratio: 42 / 47;
  margin: 0 auto;
}
.phone-stack .phone {
  position: absolute;
  width: 52%;
}
.phone-stack .phone--c {
  left: 24%; top: 0; z-index: 3;
  animation: phoneFloat 7s ease-in-out infinite;
}
.phone-stack .phone--l {
  left: 0; top: 13%;
  transform: rotate(-10deg) scale(0.82);
  z-index: 1;
  animation: phoneFloat 7s ease-in-out 0.6s infinite;
}
.phone-stack .phone--r {
  right: 0; top: 13%;
  transform: rotate(10deg) scale(0.82);
  z-index: 2;
  animation: phoneFloat 7s ease-in-out 1.2s infinite;
}
@keyframes phoneFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
@media (prefers-reduced-motion: reduce) {
  .phone-stack .phone { animation: none; }
}

/* 単体モック */
.phone--solo { width: 218px; }

/* ─── B. 実績 ─────────────────────────────────────────────── */
.stats {
  background: linear-gradient(140deg, #11164f 0%, #1a2270 100%);
  padding: 44px 0 40px;
}
.stats__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}
.stat__num {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
  background: linear-gradient(100deg, #5fe0e8 0%, #b3a6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}
.stats__note {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin: 26px 0 0;
}

/* ─── C. 初心者の悩み ─────────────────────────────────────── */
.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.worry-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.worry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(17, 22, 79, 0.09);
}
.worry-card__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fdeceb;
  color: #d9544a;
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 16px;
}
.worry-card__title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.worry-card__text {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin: 0;
}

.bridge {
  margin: 48px auto 0;
  max-width: 780px;
  text-align: center;
}
.bridge__problem {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  background: #ffffff;
  border: 1px dashed #c4cbdc;
  border-radius: 12px;
  padding: 16px 22px;
  margin: 0;
}
.bridge__arrow {
  display: block;
  color: var(--teal);
  font-size: 18px;
  margin: 10px 0;
}
.bridge__solution {
  font-size: 16px;
  line-height: 1.9;
  color: var(--navy);
  font-weight: 700;
  background: linear-gradient(135deg, #eef5ff 0%, #e9f7f7 100%);
  border: 1px solid #d4e6f3;
  border-radius: 16px;
  padding: 24px 26px;
  margin: 0;
}
.bridge__solution strong { color: var(--teal); }

/* ─── D. ベネフィット（交互レイアウト） ─────────────────────── */
.benefit {
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 0;
}
.benefit + .benefit { margin-top: 24px; }
.benefit--reverse { flex-direction: row-reverse; }
.benefit__media {
  flex-shrink: 0;
  width: 240px;
  display: flex;
  justify-content: center;
}
.benefit__body { flex: 1; min-width: 0; }
.benefit__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--teal);
  background: #e6f5f6;
  padding: 5px 12px;
  border-radius: 999px;
  margin: 0 0 14px;
}
.benefit__title {
  font-size: clamp(20px, 3.4vw, 27px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
  margin: 0 0 14px;
}
.benefit__text {
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink-soft);
  margin: 0;
}

/* ─── E. アプリ画面紹介 ───────────────────────────────────── */
.shot-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 26px;
}
.shot {
  margin: 0;
  transition: transform 0.25s ease;
}
.shot:hover { transform: translateY(-6px); }
.shot .phone--solo { width: 188px; }
.shot__cap {
  text-align: center;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13.5px;
  font-weight: 600;
}

/* ─── F. 使い方ステップ ───────────────────────────────────── */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step { text-align: center; padding: 4px; }
.step__num {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, #4836b8 100%);
  color: #ffffff;
  font-size: 23px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(26, 35, 126, 0.28);
}
.step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}
.step__text {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 0;
}

/* ─── G. ユーザーの声 ─────────────────────────────────────── */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.voice-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px;
  margin: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(17, 22, 79, 0.05);
}
.voice-card__stars {
  color: #ffb400;
  font-size: 16px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.voice-card__text {
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--ink);
  margin: 0 0 20px;
  flex: 1;
}
.voice-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.voice-card__avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, #4836b8 100%);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.voice-card__meta { display: flex; flex-direction: column; line-height: 1.5; }
.voice-card__meta b { font-size: 13px; font-weight: 700; color: var(--navy); }
.voice-card__meta i { font-style: normal; font-size: 11.5px; color: var(--ink-soft); }
.voice-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-soft);
  margin: 26px 0 0;
}

/* ─── H. プレミアム価値訴求 ───────────────────────────────── */
.premium {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #1b2080 0%, #2a1c6e 55%, #0c1040 100%);
  color: #fff;
  padding: 96px 0;
}
.premium__bg { position: absolute; inset: 0; pointer-events: none; }
.premium__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.premium__head { text-align: center; margin-bottom: 48px; }
.premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.premium-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.18s ease, background 0.18s ease;
}
.premium-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}
.premium-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00bcc9 0%, #6f5ae6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(10, 120, 160, 0.4);
}
.premium-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.premium-card__text {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}

/* ─── I. 料金プラン ───────────────────────────────────────── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 700px;
  margin: 0 auto;
}
.plan {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 30px;
  text-align: center;
  position: relative;
}
.plan--featured {
  border: 2px solid var(--navy);
  box-shadow: 0 20px 48px rgba(17, 22, 79, 0.16);
}
.plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00bcc9, #6f5ae6);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
  margin: 0;
}
.plan__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
}
.plan__price {
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 22px;
  line-height: 1;
}
.plan__yen { font-size: 23px; font-weight: 700; }
.plan__unit { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.plan__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.plan__list li {
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 11px 0 11px 26px;
  border-top: 1px solid var(--line);
  position: relative;
}
.plan__list li:first-child { border-top: none; }
.plan__list li::before {
  content: "✓";
  position: absolute;
  left: 3px;
  color: var(--teal);
  font-weight: 800;
}
.plan__list strong { color: var(--navy); }
.plan-note {
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  margin: 26px 0 0;
}

/* ─── J. 安心・信頼 ───────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.trust-item {
  text-align: center;
  padding: 24px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.trust-item__icon { font-size: 30px; display: block; margin-bottom: 10px; }
.trust-item__title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}
.trust-item__text {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 0;
}

.notice {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 16px;
  padding: 26px 28px;
}
.notice__title {
  margin: 0 0 12px;
  font-weight: 700;
  color: #6d4c00;
  font-size: 15px;
}
.notice__lead {
  font-size: 13.5px;
  color: #6d4c00;
  line-height: 1.85;
  margin: 0 0 14px;
}
.notice__lead strong { font-weight: 700; }
.notice__list { margin: 0; padding-left: 1.2em; }
.notice__list li {
  font-size: 13px;
  color: #6d4c00;
  margin-bottom: 6px;
  line-height: 1.75;
}

/* ─── K. CTA ──────────────────────────────────────────────── */
.cta-final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #1b2080 0%, #2a1c6e 55%, #0c1040 100%);
  color: #ffffff;
  text-align: center;
}
.cta-final__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-final__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 84px 24px;
}
.cta-final__title {
  font-size: clamp(24px, 4vw, 31px);
  font-weight: 800;
  margin: 0 0 18px;
}
.cta-final__text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  line-height: 1.95;
  margin: 0 0 30px;
}
.cta-final__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-final__store {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 600;
}

/* ─── レスポンシブ ─────────────────────────────────────────── */
@media (max-width: 920px) {
  .section { padding: 76px 0; }
  .premium { padding: 76px 0; }
  .hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 48px;
    padding: 56px 24px 72px;
  }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__cta, .hero__trust { justify-content: center; }
  .hero__visual { width: 380px; }
  .worry-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .step-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .voice-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
  .premium-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  /* ベネフィットは縦積み（画像→テキスト） */
  .benefit,
  .benefit--reverse {
    flex-direction: column;
    text-align: center;
    gap: 26px;
    max-width: 460px;
  }
  .benefit__eyebrow { margin-left: auto; margin-right: auto; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .premium { padding: 60px 0; }
  .section__head { margin-bottom: 38px; }
  .pc-only { display: none; }
  .sp-only { display: inline; }
  .plan-grid { grid-template-columns: 1fr; max-width: 340px; }
  .premium-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .hero__inner { padding: 46px 22px 62px; }
  /* スマホでも見出しを2行に収める（各<br>行を1行で表示） */
  .hero__title { font-size: clamp(20px, 5.9vw, 28px); line-height: 1.5; }
  .stats__inner { gap: 14px; }
  .stat__label { font-size: 11.5px; }
  .data-chip { display: none; }            /* 小画面ではチップ非表示でスッキリ */
  .shot .phone--solo { width: 150px; }
}
