/* =========================================================
   ハヤトクHP — 白基調コーポレート 1ページLP（縦スクロール）
   色味=参考LP(lp-hayatoku-swipe)継承 / レイアウト=mareclinic・nahato寄り
   ========================================================= */

:root {
  /* --- color tokens（白基調） --- */
  --paper:   #FAF7F0;   /* オフホワイト基調 */
  --white:   #FFFFFF;
  --ink:     #1B1D22;   /* チャコール文字 */
  --ink-2:   #4A4D55;
  --ink-3:   #8A8D95;
  --gold:    #C8941A;   /* 白地で可読なゴールド（リンク・強調） */
  --gold-br: #F4B942;   /* 面・ダーク帯用の明るいゴールド */
  --red:     #E63946;
  --rule:    rgba(27, 29, 34, 0.10);
  --rule-2:  rgba(27, 29, 34, 0.18);
  --shadow:  0 18px 50px -24px rgba(27, 29, 34, 0.28);
  --shadow-sm: 0 8px 24px -16px rgba(27, 29, 34, 0.30);

  /* ダーク帯（最終CTA等の差し色） */
  --dark:    #16171B;
  --dark-2:  #1F2127;

  /* --- type --- */
  --ff-disp: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Sans", sans-serif;
  --ff-jp:   "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", sans-serif;
  --ff-en:   "Inter", "Noto Sans JP", system-ui, sans-serif;

  /* --- layout --- */
  --wrap: 1120px;
  --pad-x: clamp(20px, 5vw, 40px);
  --section-y: clamp(72px, 11vw, 140px);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-jp);
  font-feature-settings: "palt";
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.02em;
  text-wrap: pretty;
}

em { font-style: normal; }
strong { font-weight: 700; }
::selection { background: rgba(200, 148, 26, 0.22); }

/* ---------- shared layout ---------- */
.wrap { width: min(var(--wrap), 100% - var(--pad-x) * 2); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(56px, 8vw, 96px); }

/* eyebrow（英語ラベルは濫用しない。使う所だけ） */
.eyebrow {
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
  display: inline-block;
}
/* 日本語キャプション（eyebrowの代替・濫用回避用） */
.cap-jp {
  font-family: var(--ff-disp);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  margin: 0 0 14px;
}

h2.title {
  font-family: var(--ff-disp);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2.15rem);
  line-height: 1.46;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
h2.title em { color: var(--gold); }
.lead {
  font-size: clamp(0.96rem, 2.3vw, 1.06rem);
  line-height: 1.95;
  color: var(--ink-2);
  margin: 22px 0 0;
  max-width: 40em;
}

/* 改行制御: PC だけで効かせる任意改行（モバイルはフレーズ折返しに任せる） */
.br-pc { display: none; }
@media (min-width: 760px) { .br-pc { display: inline; } }
/* 日本語見出しは文節単位で折り返す（変な位置での改行を防ぐ） */
h2.title, .hero__title, .hero__sub, .solution__statement, .final__title, .final__lead,
.problem__close, .compare-close, .feature__h, .faq__item summary { word-break: auto-phrase; }

/* ---------- CTA ---------- */
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px;
  padding: 16px 30px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--ff-disp);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: var(--shadow-sm);
}
.cta:hover { transform: translateY(-2px); background: #000; box-shadow: var(--shadow); }
.cta__arrow { font-family: var(--ff-en); font-weight: 500; transition: transform .2s ease; }
.cta:hover .cta__arrow { transform: translateX(4px); }
.cta--gold { background: var(--gold-br); color: #2a1f08; }
.cta--gold:hover { background: #ffca54; }
.cta--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--rule-2);
}
.cta--ghost:hover { background: rgba(27,29,34,0.04); box-shadow: inset 0 0 0 1.5px var(--ink); }
.cta--lg { padding: 18px 38px; font-size: 16px; }

/* live dot（受付中） */
.live { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-3); font-weight: 500; }
.live__dot { width: 8px; height: 8px; border-radius: 50%; background: #2fa84f; box-shadow: 0 0 0 0 rgba(47,168,79,.5); animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(47,168,79,.5)} 70%{box-shadow:0 0 0 11px rgba(47,168,79,0)} 100%{box-shadow:0 0 0 0 rgba(47,168,79,0)} }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); transition-delay: var(--d, 0ms); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================================
   Header（固定・スクロールで白くなる）
   ========================================================= */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad-x);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-head.is-stuck { background: rgba(250,247,240,0.86); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--rule); padding-block: 10px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { width: 38px; height: 38px; border-radius: 9px; }
.brand__name { font-family: var(--ff-disp); font-weight: 900; font-size: 17px; letter-spacing: 0.06em; color: var(--ink); }
.brand__sub { font-family: var(--ff-en); font-size: 9px; letter-spacing: 0.28em; color: var(--ink-3); text-transform: uppercase; display: block; line-height: 1; margin-top: 2px; }
.site-head__cta { display: none; }
@media (min-width: 720px) { .site-head__cta { display: inline-flex; padding: 11px 22px; font-size: 13.5px; } }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; padding-top: clamp(110px, 18vw, 160px); padding-bottom: clamp(60px, 9vw, 110px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (min-width: 920px) { .hero__grid { grid-template-columns: 1.14fr 0.86fr; } }

.hero__tagline { display: inline-flex; align-items: center; gap: 11px; margin: 0 0 22px; font-size: 13px; color: var(--ink-2); font-weight: 500; letter-spacing: 0.04em; }
.hero__tagline b { font-family: var(--ff-disp); font-weight: 700; font-size: 12.5px; letter-spacing: 0.14em; padding: 4px 10px; border: 1px solid var(--rule-2); border-radius: 4px; color: var(--ink); }

.hero__title {
  font-family: var(--ff-disp);
  font-weight: 900;
  font-size: clamp(1.85rem, 5vw, 2.55rem);
  line-height: 1.42;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.hero__title em { color: var(--gold); }
.hero__title .u { background: linear-gradient(transparent 64%, rgba(244,185,66,.42) 64%); }

.hero__sub { margin: 24px 0 0; font-size: clamp(0.95rem, 2.5vw, 1.1rem); line-height: 1.95; color: var(--ink-2); max-width: 30em; }

.hero__price { margin: 30px 0 0; display: flex; flex-wrap: wrap; align-items: flex-end; gap: 8px 22px; }
.hero__price-main { display: flex; align-items: baseline; gap: 4px; font-family: var(--ff-en); font-feature-settings: "tnum"; }
.hero__price-label { font-family: var(--ff-jp); font-size: 12px; color: var(--ink-3); letter-spacing: .08em; align-self: center; margin-right: 2px; }
.hero__price-yen { font-weight: 700; font-size: clamp(20px, 5vw, 26px); }
.hero__price-num { font-weight: 800; font-size: clamp(46px, 13vw, 72px); line-height: .9; letter-spacing: -0.03em; }
.hero__price-month { font-family: var(--ff-jp); font-size: 13px; color: var(--ink-2); align-self: flex-end; padding-bottom: 8px; letter-spacing: .02em; }
.hero__price-month b { font-family: var(--ff-en); font-weight: 800; font-size: 18px; color: var(--ink); }

.hero__cta { margin: 32px 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.hero__note { margin: 16px 0 0; font-size: 12.5px; color: var(--ink-3); letter-spacing: .02em; }

.hero__visual { position: relative; }
.hero__photo { margin: 0; width: 100%; max-width: 560px; margin-inline: auto; }
.hero__photo img { width: 100%; height: auto; border-radius: 18px; box-shadow: var(--shadow); display: block; }
.hero__visual img { width: 100%; height: auto; }
.hero__visual::before { /* やわらかいゴールドの背面グロー */
  content: ""; position: absolute; inset: -8% -4%; z-index: -1;
  background: radial-gradient(60% 55% at 60% 42%, rgba(244,185,66,.20), transparent 70%);
  filter: blur(8px);
}
.scroll-hint { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 7px; font-family: var(--ff-en); font-size: 9px; letter-spacing: .34em; color: var(--ink-3); }
.scroll-hint__line { width: 1px; height: 34px; background: linear-gradient(var(--ink-3), transparent); position: relative; overflow: hidden; }
.scroll-hint__line::after { content:""; position:absolute; top:-34px; left:0; width:1px; height:34px; background: var(--gold); animation: scroll-run 2s cubic-bezier(.4,0,.2,1) infinite; }
@keyframes scroll-run { to { transform: translateY(68px); } }

/* =========================================================
   Problem（左寄せリスト・破調）
   ========================================================= */
.problem { background: var(--white); border-block: 1px solid var(--rule); }
.problem__grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 64px); }
@media (min-width: 880px) { .problem__grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.problem__list { margin: 6px 0 0; }
.problem__list li { padding: 18px 0; border-top: 1px solid var(--rule); display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: baseline; }
.problem__list li:last-child { border-bottom: 1px solid var(--rule); }
.problem__list li i { font-family: var(--ff-en); font-style: normal; font-weight: 700; font-size: 12px; color: var(--ink-3); letter-spacing: .1em; }
.problem__list li span { font-family: var(--ff-disp); font-weight: 500; font-size: clamp(0.98rem, 2.6vw, 1.14rem); line-height: 1.6; color: var(--ink); }
.problem__close { margin-top: 30px; font-family: var(--ff-disp); font-weight: 700; font-size: clamp(1.05rem, 3vw, 1.3rem); line-height: 1.6; }
.problem__close em { color: var(--gold); }

/* =========================================================
   Solution（中央ステートメント＋モチーフ）
   ========================================================= */
.solution { text-align: center; overflow: hidden; }
.solution .lead { margin-inline: auto; }
.solution__statement { font-family: var(--ff-disp); font-weight: 900; font-size: clamp(1.8rem, 6vw, 3.1rem); line-height: 1.34; letter-spacing: -0.015em; margin: 0; }
.solution__statement em { color: var(--gold); }
.solution__motif { margin: clamp(32px,5vw,56px) auto 0; max-width: 640px; }
.solution__motif img, .solution__motif .lottie { width: 100%; }
.solution__hands { margin: 30px auto 0; display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.solution__hands span { font-size: 13px; color: var(--ink-2); border: 1px solid var(--rule-2); border-radius: 999px; padding: 8px 16px; background: var(--white); }
.solution__hands span b { color: var(--ink); font-weight: 700; }

/* =========================================================
   Features（3点・機械的に揃えない／02を大きく）
   ========================================================= */
.features { background: var(--white); border-block: 1px solid var(--rule); }
.feature { display: grid; grid-template-columns: 1fr; gap: 16px clamp(28px,5vw,60px); padding-block: clamp(40px, 6vw, 64px); border-bottom: 1px solid var(--rule); }
.feature:last-child { border-bottom: 0; }
@media (min-width: 820px) { .feature { grid-template-columns: 0.4fr 0.6fr; align-items: start; } }
.feature__num { font-family: var(--ff-en); font-weight: 800; font-size: clamp(2.6rem, 8vw, 3.6rem); line-height: .9; letter-spacing: -0.04em; color: var(--ink); opacity: .14; display: flex; align-items: center; gap: 14px; }
.feature__num::before { content:""; width: 32px; height: 1.5px; background: var(--gold); opacity: .9; }
.feature__h { font-family: var(--ff-disp); font-weight: 900; font-size: clamp(1.4rem, 4.4vw, 1.9rem); letter-spacing: -0.015em; margin: 0 0 14px; line-height: 1.3; }
.feature__b { font-size: clamp(0.92rem, 2.4vw, 1.02rem); line-height: 1.95; color: var(--ink-2); margin: 0; }
.feature__points { margin: 18px 0 0; }
.feature__points li { position: relative; padding-left: 24px; margin: 8px 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.7; }
.feature__points li::before { content:""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 2px; background: var(--gold); }
/* 02 を主役に（破調）— テキスト＋ビジュアルの2カラム */
.feature--hero { background: linear-gradient(180deg, rgba(244,185,66,.07), transparent); border-radius: 18px; padding: clamp(24px,4vw,40px); margin-block: 8px; border-bottom: 0; grid-template-columns: 1fr; align-items: center; gap: clamp(24px,4vw,44px); }
@media (min-width: 820px) { .feature.feature--hero { grid-template-columns: 1.08fr 0.92fr; } }
.feature--hero .feature__num { opacity: .22; margin-bottom: 12px; }
.feature--hero__fig { margin: 0; }
.feature--hero__fig img { width: 100%; height: auto; border: 1px solid var(--rule); border-radius: 14px; background: var(--white); box-shadow: var(--shadow-sm); }

/* scope 帯ビジュアル */
.scope__visual { margin: clamp(28px,4vw,44px) 0 0; border: 1px solid var(--rule); border-radius: 16px; overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); }
.scope__visual img { width: 100%; height: auto; display: block; }

/* =========================================================
   Scope（こんなHPが作れる・タググリッド）
   ========================================================= */
.scope__head { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: end; }
@media (min-width: 820px) { .scope__head { grid-template-columns: 1fr auto; } }
.scope__grid { margin-top: clamp(32px,5vw,52px); display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 16px; overflow: hidden; }
@media (min-width: 720px) { .scope__grid { grid-template-columns: repeat(3, 1fr); } }
.scope__cell { background: var(--white); padding: clamp(20px,3vw,30px); transition: background .25s ease; }
.scope__cell:hover { background: var(--paper); }
.scope__cell h3 { font-family: var(--ff-disp); font-weight: 700; font-size: 15.5px; margin: 0 0 6px; letter-spacing: .02em; }
.scope__cell p { font-size: 13px; color: var(--ink-2); margin: 0; line-height: 1.7; }
.scope__cell .scope__no { font-family: var(--ff-en); font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: .14em; display: block; margin-bottom: 10px; }
.scope__foot { margin-top: 22px; font-size: 13px; color: var(--ink-3); }

/* =========================================================
   Pricing
   ========================================================= */
.pricing { background: var(--white); border-block: 1px solid var(--rule); }
.pricing__inner { display: grid; grid-template-columns: 1fr; gap: clamp(30px,5vw,56px); align-items: center; }
@media (min-width: 900px) { .pricing__inner { grid-template-columns: 0.9fr 1.1fr; } }
.price-card { background: var(--paper); border: 1px solid var(--rule); border-radius: 22px; padding: clamp(26px,4vw,40px); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.price-card__wm { position: absolute; right: -20px; top: -30px; font-family: var(--ff-en); font-weight: 800; font-size: 260px; line-height: 1; color: var(--gold); opacity: .05; pointer-events: none; }
.price-row { display: grid; grid-template-columns: 64px 1fr; column-gap: 18px; align-items: baseline; padding: 18px 0; border-top: 1px solid var(--rule); position: relative; }
.price-row:first-of-type { border-top: 0; }
.price-row dt { font-family: var(--ff-en); font-weight: 600; font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-3); grid-row: 1 / span 2; align-self: center; }
.price-row--main dt { color: var(--gold); }
.price-amt { font-family: var(--ff-en); font-weight: 800; font-size: clamp(1.9rem, 7vw, 2.5rem); line-height: 1; letter-spacing: -0.03em; font-feature-settings: "tnum"; }
.price-row--main .price-amt { color: var(--gold); }
.price-note { font-family: var(--ff-jp); font-size: 12px; color: var(--ink-3); margin-top: 6px; line-height: 1.5; }
.price-term { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--rule); font-size: 13px; color: var(--ink-2); display: flex; gap: 8px; align-items: baseline; }
.price-term b { font-family: var(--ff-disp); font-weight: 700; color: var(--ink); }
.price-chips { margin: 20px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.price-chips li { font-size: 12px; color: var(--ink-2); padding: 6px 13px; border: 1px solid var(--rule-2); border-radius: 999px; background: var(--white); }

.pricing__compare h2 { margin-bottom: 8px; }
.compare-row { display: grid; grid-template-columns: 1fr auto; column-gap: 16px; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--rule); }
.compare-row:first-of-type { border-top: 1px solid var(--rule); margin-top: 24px; }
.compare-row dt { font-size: 14px; color: var(--ink-2); }
.compare-row dd { margin: 0; font-family: var(--ff-en); font-weight: 700; font-size: clamp(1rem,3.4vw,1.2rem); letter-spacing: -.01em; color: var(--ink-3); }
.compare-row dd s { text-decoration-color: rgba(230,57,70,.6); text-decoration-thickness: 1.4px; }
.compare-row--ours dt { color: var(--ink); font-weight: 600; }
.compare-row--ours dd { color: var(--gold); }
.compare-close { margin: 24px 0 0; font-size: 14.5px; line-height: 1.8; color: var(--ink-2); }
.compare-close em { color: var(--gold); font-weight: 700; }
.compare-basis { margin: 16px 0 0; font-size: 11.5px; line-height: 1.7; color: var(--ink-3); }
.pricing__cta { margin-top: 28px; }
.legal-todo { background: rgba(230,57,70,.1); border: 1px dashed var(--red); color: #b3242f; padding: 0 5px; border-radius: 4px; font-size: .92em; font-weight: 600; }

/* =========================================================
   Flow（横ステップ・2箇所点灯）
   ========================================================= */
.flow__steps { margin-top: clamp(32px,5vw,52px); display: grid; grid-template-columns: 1fr; gap: 14px; counter-reset: st; }
@media (min-width: 760px) { .flow__steps { grid-template-columns: repeat(6, 1fr); gap: 0; } }
.flow__step { counter-increment: st; position: relative; padding: 22px 18px; background: var(--white); border: 1px solid var(--rule); border-radius: 14px; }
@media (min-width: 760px) {
  .flow__step { border-radius: 0; border-right: 0; }
  .flow__step:first-child { border-radius: 14px 0 0 14px; }
  .flow__step:last-child { border-right: 1px solid var(--rule); border-radius: 0 14px 14px 0; }
}
.flow__step::before { content: counter(st, decimal-leading-zero); font-family: var(--ff-en); font-weight: 700; font-size: 12px; color: var(--ink-3); letter-spacing: .1em; }
.flow__step h3 { font-family: var(--ff-disp); font-weight: 700; font-size: 14.5px; margin: 6px 0 5px; }
.flow__step p { font-size: 12px; color: var(--ink-3); line-height: 1.65; margin: 0; }
.flow__step.is-key { background: linear-gradient(180deg, rgba(244,185,66,.14), rgba(244,185,66,.04)); }
.flow__step.is-key::before { color: var(--gold); }
.flow__step.is-key::after { content: "あなたの番"; position: absolute; top: -9px; left: 14px; font-family: var(--ff-disp); font-weight: 700; font-size: 10px; letter-spacing: .08em; color: #2a1f08; background: var(--gold-br); padding: 2px 9px; border-radius: 999px; }
.flow__sum { margin-top: 28px; font-family: var(--ff-disp); font-weight: 700; font-size: clamp(1.1rem,3.2vw,1.4rem); }
.flow__sum em { color: var(--gold); }
.flow__lottie { max-width: 360px; margin: 8px 0 0; }
@media (min-width: 760px) { .flow__steps--4 { grid-template-columns: repeat(4, 1fr); } }

/* ---- features bridge（お悩み→解消の橋渡し） ---- */
.features__bridge { font-family: var(--ff-disp); font-weight: 900; font-size: clamp(1.3rem, 3.6vw, 1.9rem); line-height: 1.45; letter-spacing: -0.01em; margin: 4px 0 clamp(28px, 4vw, 44px); word-break: auto-phrase; }
.features__bridge em { color: var(--gold); }

/* ---- pricing reassure（割高感の払拭） ---- */
.price-reassure { margin: 18px 0 0; font-size: 14px; line-height: 1.85; color: var(--ink-2); background: rgba(244,185,66,.08); border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0; padding: 14px 16px; }
.price-reassure b { color: var(--ink); }

/* ---- campaign（ダーク帯・初月0円） ---- */
.campaign { background: var(--dark); color: var(--paper); text-align: center; position: relative; overflow: hidden; }
.campaign::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 90% at 50% 0%, rgba(244,185,66,.16), transparent 60%); pointer-events: none; }
.campaign__inner { position: relative; }
.campaign__cap { display: inline-block; font-family: var(--ff-disp); font-weight: 700; font-size: 12px; letter-spacing: .14em; color: #2a1f08; background: var(--gold-br); padding: 6px 16px; border-radius: 999px; margin: 0 0 20px; }
.campaign__title { font-family: var(--ff-disp); font-weight: 900; font-size: clamp(1.65rem, 5.4vw, 2.6rem); line-height: 1.38; letter-spacing: -0.02em; margin: 0; word-break: auto-phrase; }
.campaign__title em { color: var(--gold-br); }
.campaign__lead { margin: 20px auto 0; max-width: 34em; color: rgba(250,247,240,.82); font-size: clamp(0.92rem, 2.4vw, 1.05rem); line-height: 1.9; }
.campaign__lead b { color: var(--gold-br); font-weight: 700; }
.campaign__cta { margin: 30px 0 0; }
.campaign__note { margin: 22px auto 0; max-width: 40em; font-size: 11.5px; line-height: 1.7; color: rgba(250,247,240,.5); }

/* ---- voice / 導入イメージ ---- */
.voice { background: var(--paper); }
.voice__grid { margin-top: clamp(28px, 4vw, 44px); display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 760px) { .voice__grid { grid-template-columns: repeat(3, 1fr); } }
.voice__card { background: var(--white); border: 1px solid var(--rule); border-radius: 16px; padding: clamp(20px, 3vw, 28px); box-shadow: var(--shadow-sm); }
.voice__biz { font-family: var(--ff-en); font-weight: 700; font-size: 12px; letter-spacing: .06em; color: var(--gold); margin: 0 0 12px; }
.voice__problem { font-family: var(--ff-disp); font-weight: 700; font-size: 14.5px; line-height: 1.65; color: var(--ink); margin: 0 0 12px; padding-bottom: 12px; border-bottom: 1px solid var(--rule); }
.voice__after { font-size: 13.5px; line-height: 1.8; color: var(--ink-2); margin: 0; }
.voice__after b { color: var(--gold); }
.voice__note { margin: 22px 0 0; font-size: 11.5px; line-height: 1.7; color: var(--ink-3); }

/* =========================================================
   FAQ（アコーディオン）
   ========================================================= */
.faq { background: var(--white); border-block: 1px solid var(--rule); }
.faq__list { margin-top: clamp(28px,4vw,44px); max-width: 820px; }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__item summary { list-style: none; cursor: pointer; padding: 22px 44px 22px 34px; position: relative; font-family: var(--ff-disp); font-weight: 700; font-size: clamp(0.98rem,2.6vw,1.1rem); line-height: 1.55; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before { content: "Q"; position: absolute; left: 0; top: 22px; font-family: var(--ff-en); font-weight: 800; color: var(--gold); font-size: 16px; }
.faq__item summary::after { content: ""; position: absolute; right: 8px; top: 30px; width: 11px; height: 11px; border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3); transform: rotate(45deg); transition: transform .25s ease; }
.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__a { padding: 0 34px 24px; font-size: 14.5px; line-height: 1.9; color: var(--ink-2); }
.faq__a::before { content: "A"; font-family: var(--ff-en); font-weight: 800; color: var(--ink-3); margin-right: 10px; }

/* =========================================================
   Final CTA（ダーク帯・差し色）
   ========================================================= */
.final { background: var(--dark); color: var(--paper); position: relative; overflow: hidden; }
.final::before { content:""; position:absolute; inset:0; background: radial-gradient(70% 90% at 75% 20%, rgba(244,185,66,.12), transparent 60%), radial-gradient(60% 80% at 10% 90%, rgba(230,57,70,.08), transparent 60%); pointer-events:none; }
.final__inner { position: relative; text-align: center; }
.final__cap { font-family: var(--ff-en); font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-br); margin: 0 0 18px; }
.final__title { font-family: var(--ff-disp); font-weight: 900; font-size: clamp(1.9rem,6.4vw,3rem); line-height: 1.3; letter-spacing: -0.02em; margin: 0; }
.final__title em { color: var(--gold-br); }
.final__lead { margin: 22px auto 0; max-width: 34em; color: rgba(250,247,240,.78); font-size: clamp(0.92rem,2.4vw,1.04rem); line-height: 1.9; }
.final__lead b { color: var(--gold-br); font-weight: 700; }
.final__cta { margin: 34px 0 0; display: inline-flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; }
.final__mail { margin: 28px 0 0; font-family: var(--ff-en); font-size: 14px; }
.final__mail a { color: var(--paper); border-bottom: 1px solid rgba(250,247,240,.3); padding-bottom: 2px; transition: border-color .2s; }
.final__mail a:hover { border-color: var(--gold-br); }

/* footer */
.foot { background: var(--dark-2); color: rgba(250,247,240,.6); }
.foot__inner { padding-block: 36px; display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; justify-content: space-between; }
.foot__brand { font-family: var(--ff-disp); font-weight: 700; letter-spacing: .06em; color: rgba(250,247,240,.85); font-size: 14px; }
.foot__brand small { display: block; font-family: var(--ff-en); font-size: 9.5px; letter-spacing: .2em; color: rgba(250,247,240,.45); margin-top: 3px; }
.foot__links { display: flex; flex-wrap: wrap; gap: 10px 20px; font-size: 12.5px; }
.foot__links a, .foot__links button { color: rgba(250,247,240,.6); text-decoration: underline; text-underline-offset: 2px; transition: color .2s; font: inherit; }
.foot__links a:hover, .foot__links button:hover { color: var(--paper); }
.foot__copy { width: 100%; border-top: 1px solid rgba(250,247,240,.1); padding-top: 18px; font-family: var(--ff-en); font-size: 11px; letter-spacing: .14em; color: rgba(250,247,240,.4); }

/* =========================================================
   Lottie containers（共通）
   ========================================================= */
.lottie { display: block; line-height: 0; position: relative; }
.lottie svg { display: block; }
.lottie__fallback { width: 100%; height: auto; display: block; }
.lottie.is-lottie .lottie__fallback { display: none; }
.flow__lottie { aspect-ratio: 600 / 140; }

/* =========================================================
   sticky mobile CTA（SPのみ・スクロール後出現）
   ========================================================= */
.mcta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 70; display: flex; gap: 10px; transform: translateY(140%); transition: transform .35s cubic-bezier(.2,.9,.2,1); }
.mcta.is-show { transform: none; }
.mcta .cta { flex: 1; box-shadow: 0 12px 30px -10px rgba(27,29,34,.45); }
@media (min-width: 720px) { .mcta { display: none; } }

/* =========================================================
   Consent banner（参考LP踏襲・ライト配色）
   ========================================================= */
.consent { position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 200; width: min(680px, calc(100vw - 24px)); background: var(--white); border: 1px solid var(--rule-2); border-radius: 16px; box-shadow: 0 18px 50px rgba(27,29,34,.22); padding: 18px; display: none; flex-direction: column; gap: 12px; }
.consent.is-shown { display: flex; }
.consent__text { font-size: 12.5px; line-height: 1.7; color: var(--ink-2); margin: 0; }
.consent__text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.consent__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent__btn { flex: 1 1 auto; min-width: 132px; padding: 11px 16px; border-radius: 10px; font-family: var(--ff-disp); font-size: 13px; font-weight: 700; border: 1px solid var(--rule-2); transition: transform .18s ease, background .18s ease; }
.consent__btn:hover { transform: translateY(-1px); }
.consent__btn--accept { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.consent__btn--accept:hover { background: #000; }
.consent__btn--reject { background: transparent; color: var(--ink); }
.consent__btn--reject:hover { background: rgba(27,29,34,.05); }

/* =========================================================
   Custom cursor（PC・fine pointerのみ／ライト用）
   ========================================================= */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .cursor { display: block; position: fixed; top: 0; left: 0; width: 26px; height: 26px; pointer-events: none; z-index: 999; will-change: transform; }
  .cursor__ring { width: 26px; height: 26px; border: 1.5px solid rgba(200,148,26,.8); border-radius: 50%; box-sizing: border-box; transition: transform .3s cubic-bezier(.2,.9,.2,1), border-color .2s, opacity .2s; }
  .cursor__dot { position: absolute; top: 12px; left: 12px; width: 3px; height: 3px; background: var(--gold); border-radius: 50%; transition: transform .14s ease; }
  .cursor.is-hover .cursor__ring { transform: scale(1.9); border-color: var(--gold); }
  .cursor.is-hover .cursor__dot { transform: scale(0); }
  .cursor.is-down .cursor__ring { transform: scale(.8); }
  .cursor.is-out { opacity: 0; }
  body, a, button, summary { cursor: none; }
}
@media (prefers-reduced-motion: reduce) { .scroll-hint__line::after, .live__dot { animation: none; } }

/* =========================================================
   法務文書ページ（特商法 / プライバシー）
   ========================================================= */
/* 法務ページは通常スクロール（HPは元々ロックなしだが念のため明示） */
html.legal-html, html:has(.legal-page) { overflow: auto; height: auto; position: static; inset: auto; }
body.legal-page { position: static; overflow: auto; height: auto; min-height: 100%; }
.legal-doc { max-width: 820px; margin: 0 auto; padding: clamp(96px,12vw,140px) var(--pad-x) 96px; }
.legal-doc__back { display: inline-block; margin: 0 0 24px; color: var(--gold); font-size: 13px; }
.legal-doc__back:hover { text-decoration: underline; }
.legal-doc h1 { font-family: var(--ff-disp); font-size: clamp(1.4rem,5vw,2rem); font-weight: 900; margin: 0 0 8px; }
.legal-doc__meta { color: var(--ink-3); font-size: 12px; margin: 0 0 32px; }
.legal-doc h2 { font-family: var(--ff-disp); font-size: clamp(1.02rem,3.4vw,1.22rem); font-weight: 700; margin: 36px 0 12px; padding-top: 18px; border-top: 1px solid var(--rule); }
.legal-doc h3 { font-size: 1rem; font-weight: 700; margin: 22px 0 8px; }
.legal-doc p, .legal-doc li { font-size: 14px; line-height: 1.95; color: var(--ink-2); }
.legal-doc ul, .legal-doc ol { padding-left: 1.3em; list-style: revert; }
.legal-doc li { margin: 4px 0; }
.legal-doc table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 13.5px; }
.legal-doc th, .legal-doc td { border: 1px solid var(--rule-2); padding: 10px 13px; text-align: left; vertical-align: top; line-height: 1.7; color: var(--ink-2); }
.legal-doc th { background: var(--paper); color: var(--ink); font-weight: 700; white-space: nowrap; }
.legal-doc__todo { background: rgba(230,57,70,.1); border: 1px dashed var(--red); color: #b3242f; padding: 1px 6px; border-radius: 5px; font-size: 12px; font-weight: 700; }
.legal-doc__note { background: var(--white); border: 1px solid var(--rule); border-left: 3px solid var(--gold); border-radius: 8px; padding: 12px 16px; margin: 18px 0 28px; font-size: 12.5px; color: var(--ink-2); }
