/* ============================================================
   ETERNAL.d.c.t — ColorSing 提携ライバー事務所 LP
   Design tokens + base + components
   ============================================================ */

:root {
  /* --- Pink palette --- */
  --pink-700: #d6418a;
  --pink-600: #e84d92;
  --pink-500: #f15c99;
  --pink-400: #f481b6;
  --pink-300: #f7a8cd;
  --pink-200: #f7bed9;
  --pink-100: #fcdcea;
  --pink-50:  #fdf1f7;
  --pink-bg:  #fdf4f9;

  /* --- Cool accent (ColorSing section) --- */
  --mint-700: #4fa39e;
  --mint-500: #aee8e4;
  --mint-100: #e6f5f4;
  --mint-50:  #eef9f8;

  /* --- Ink / neutrals --- */
  --ink:      #494546;
  --ink-soft: #726c6e;
  --ink-faint:#9b9598;
  --line-gray:#ececec;
  --paper:    #ffffff;

  /* --- Brand --- */
  --line-green: #06c755;

  /* --- Type --- */
  --font-mincho: "Shippori Mincho", serif;
  --font-gothic: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-script: "Yomogi", cursive;

  /* --- Layout --- */
  --maxw: 1000px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 50px -22px rgba(214, 61, 131, .35);
  --shadow-card: 0 14px 34px -20px rgba(80, 60, 70, .35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-gothic);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt" 1;
  overflow-x: hidden;
}

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* page frame so the LP sits on a soft backdrop on wide screens */
.page {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 0 80px -30px rgba(120, 90, 110, .35);
  overflow: hidden;
}

/* ---- generic section heading ---- */
.sec-head { text-align: center; }
.sec-title {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: clamp(26px, 4.4vw, 40px);
  letter-spacing: .04em;
  line-height: 1.45;
  margin: 0;
  color: var(--ink);
}
.sec-title .mark { color: var(--pink-500); }
.script { font-family: var(--font-script); color: var(--pink-500); font-weight: 400; }

/* ---- Scroll reveal — 方向バリアント ---- */
/* 共通トランジション */
.reveal-ready .reveal,
.reveal-ready .reveal-left,
.reveal-ready .reveal-right,
.reveal-ready .reveal-zoom {
  opacity: 0;
  transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1);
}
/* 下から（デフォルト） */
.reveal-ready .reveal        { transform: translateY(30px); }
/* 左から */
.reveal-ready .reveal-left   { transform: translateX(-44px); }
/* 右から */
.reveal-ready .reveal-right  { transform: translateX(44px); }
/* ズームイン */
.reveal-ready .reveal-zoom   { transform: scale(.88); }

/* 発火後：全種共通 */
.reveal-ready .reveal.in,
.reveal-ready .reveal-left.in,
.reveal-ready .reveal-right.in,
.reveal-ready .reveal-zoom.in { opacity: 1; transform: none; }

/* 遅延クラス（全種に効く） */
.reveal.d1,.reveal-left.d1,.reveal-right.d1,.reveal-zoom.d1 { transition-delay: .08s; }
.reveal.d2,.reveal-left.d2,.reveal-right.d2,.reveal-zoom.d2 { transition-delay: .18s; }
.reveal.d3,.reveal-left.d3,.reveal-right.d3,.reveal-zoom.d3 { transition-delay: .28s; }
.reveal.d4,.reveal-left.d4,.reveal-right.d4,.reveal-zoom.d4 { transition-delay: .38s; }
.reveal.d5,.reveal-left.d5,.reveal-right.d5,.reveal-zoom.d5 { transition-delay: .48s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}
/* 全画面背景写真 */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% 60%;
  display: block;
}
/* 左〜中央グラデーション */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(253,244,249,0.97) 0%,
    rgba(253,244,249,0.90) 30%,
    rgba(253,244,249,0.55) 52%,
    rgba(253,244,249,0.08) 70%,
    transparent 85%
  );
}
/* テキスト左カラム：幅52%固定 */
.hero__left {
  position: relative;
  z-index: 2;
  width: 52%;
  min-width: 320px;
  padding: 38px clamp(24px, 4vw, 56px) 56px;
  display: flex;
  flex-direction: column;
}
/* オーバーレイ：hero全体を基準に右側へ */
.live-badge {
  position: absolute; top: 26px; right: 26px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
}
.comments { position: absolute; right: 18px; top: 96px; z-index: 3; width: min(38%, 320px); display: flex; flex-direction: column; gap: 12px; }
.gift { position: absolute; right: 22px; bottom: 30px; z-index: 3; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand__logo { width: 58px; height: 58px; flex: none; }
.brand__name {
  display: block;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: .12em;
  line-height: 1.1;
  color: var(--ink);
}
.brand__sub { display: block; font-size: 12.5px; letter-spacing: .14em; color: var(--ink-soft); line-height: 1.4; margin-top: 2px; }

.hero__copy { margin-top: clamp(26px, 5vw, 56px); }
.hero__h1 {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: clamp(38px, 5.6vw, 60px);
  line-height: 1.34;
  letter-spacing: .01em;
  margin: 0;
  color: var(--ink);
  white-space: nowrap;
}
.hero__h1 .accent {
  font-family: var(--font-script);
  color: var(--pink-500);
  font-size: 1.12em;
  position: relative;
  padding: 0 .04em;
}
.hero__h1 .qt { color: var(--pink-300); font-weight: 700; }
.hero__lead {
  margin: 28px 0 0;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 2.1;
  color: var(--ink-soft);
  letter-spacing: .02em;
}

.badges { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.badge {
  display: flex; flex-direction: row; align-items: center; justify-content: flex-start;
  gap: 11px;
  padding: 11px 18px 11px 13px;
  border: 1.5px solid var(--pink-100);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 20px -14px rgba(120,90,110,.4);
  text-align: left;
  font-size: 13.5px; font-weight: 800; line-height: 1.28;
}
.badge__ic {
  flex: none; width: 38px; height: 38px; border-radius: 11px;
  border: 1.5px solid var(--mint-500); background: var(--mint-50);
  display: grid; place-items: center; color: var(--mint-700);
}
.badge__ic svg { width: 22px; height: 22px; }
.badge__t { letter-spacing: .02em; white-space: nowrap; }

.cta { margin-top: auto; padding-top: 34px; }
.btn-line {
  display: inline-flex; align-items: center; gap: 16px;
  width: fit-content; max-width: 100%;
  padding: 18px 26px;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  color: #fff; text-decoration: none;
  border-radius: 999px;
  font-size: clamp(16px, 1.9vw, 20px); font-weight: 700; letter-spacing: .02em;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-line:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -18px rgba(214,61,131,.55); }
.btn-line .ico-line {
  width: 40px; height: 40px; border-radius: 11px; background: #fff;
  display: grid; place-items: center; flex: none;
}
.btn-line .ico-line svg { width: 26px; height: 26px; }
.btn-line .arrow { margin-left: auto; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.25); display: grid; place-items: center; flex: none; }
.btn-line .arrow svg { width: 16px; height: 16px; }
.cta__note { margin: 14px 4px 0; font-size: 13px; color: var(--ink-faint); letter-spacing: .03em; }

/* hero photo + live overlays */
.hero__photo { position: absolute; inset: 0; }
.hero__photo image-slot { width: 100%; height: 100%; }
.live-badge .pill {
  background: var(--pink-500); color: #fff; font-weight: 700; font-size: 13px;
  padding: 7px 16px; border-radius: 999px; letter-spacing: .14em;
  display: inline-flex; align-items: center; gap: 7px;
}
.live-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: blink 1.4s infinite; }
.live-badge .viewers {
  background: rgba(0,0,0,.42); color: #fff; font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px; display: inline-flex; align-items: center; gap: 7px;
  backdrop-filter: blur(3px);
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

/* .comments position は HERO セクションで定義済み */
.cmt {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.92); border-radius: 999px;
  padding: 9px 16px 9px 10px; box-shadow: 0 8px 22px -12px rgba(0,0,0,.4);
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  opacity: 0; transform: translateX(24px);
}
.cmt .av { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg,var(--pink-200),var(--pink-400)); flex: none; }
.cmt.show { animation: cmtIn .6s forwards; }
@keyframes cmtIn { to { opacity: 1; transform: none; } }

.gift {
  /* position/right/bottom/z-index は HERO セクションで定義済み */
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.95); border-radius: 18px; padding: 12px 18px 12px 14px;
  box-shadow: 0 12px 30px -14px rgba(0,0,0,.45);
}
.gift .box { width: 46px; height: 46px; }
.gift .txt { line-height: 1.1; }
.gift .happy { font-size: 12px; color: var(--pink-500); font-weight: 700; }
.gift .count { font-size: 22px; font-weight: 800; color: var(--ink); }
.gift .count small { font-size: 13px; color: var(--ink-soft); }

/* ============================================================
   SECTION: 共感（こんな気持ち）
   ============================================================ */
.empathy { position: relative; padding: 80px 0; }
.empathy__grid { display: grid; grid-template-columns: 1.4fr .9fr; gap: 30px; align-items: start; }
.empathy h2 { font-family: var(--font-mincho); font-weight: 700; font-size: clamp(24px,3.6vw,34px); margin: 0 0 32px; letter-spacing: .03em; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 34px; }
.check {
  display: flex; gap: 13px; align-items: flex-start;
  font-size: clamp(15px,1.7vw,17.5px); font-weight: 600; color: var(--ink);
  line-height: 1.6;
}
.check .ck {
  flex: none; width: 26px; height: 26px; border-radius: 7px;
  background: var(--pink-100); display: grid; place-items: center; margin-top: 2px;
}
.check .ck svg { width: 15px; height: 15px; color: var(--pink-600); }
.empathy__photo { position: relative; }
.empathy__photo image-slot { width: 100%; height: 320px; }
.empathy__note {
  width: 36px; height: 36px; position: absolute; left: -10px; top: -26px; color: var(--pink-300);
}
.empathy__close {
  text-align: center; margin: 54px 0 0;
  font-family: var(--font-mincho); font-weight: 700;
  font-size: clamp(22px,3.6vw,34px); letter-spacing: .04em; line-height: 1.6;
}
.empathy__close .script { font-size: 1.25em; }
.empathy__close .box {
  color: var(--pink-600);
  position: relative; padding: 0 .15em;
}
.empathy__close .box::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .08em; height: .42em;
  background: var(--pink-100); z-index: -1; border-radius: 3px;
}

/* ============================================================
   SECTION: ColorSingとは
   ============================================================ */
.about { background: linear-gradient(180deg, var(--mint-50), #fff); padding: 80px 0; }
.about__inner { display: grid; grid-template-columns: .92fr 2.3fr; gap: 36px; align-items: center; }
.about__lead h2 { font-family: var(--font-mincho); font-weight:700; font-size: clamp(26px,3.8vw,36px); color: var(--mint-700); margin: 0 0 18px; letter-spacing: .03em; }
.about__lead p { font-size: 15px; color: var(--ink-soft); line-height: 2; margin: 0; }
.about__lead .em { color: var(--mint-700); font-weight: 700; }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feat {
  background: #fff; border-radius: var(--radius-md); padding: 26px 18px 24px;
  text-align: center; box-shadow: var(--shadow-card); border: 1px solid #f0eef0;
  display: flex; flex-direction: column; align-items: center;
}
.feat .ic { width: 58px; height: 58px; border-radius: 16px; background: var(--mint-100); display: grid; place-items: center; margin-bottom: 14px; }
.feat .ic svg { width: 30px; height: 30px; color: var(--mint-700); }
.feat h3 { font-size: 16.5px; font-weight: 800; margin: 0 0 10px; line-height: 1.45; color: var(--ink); }
.feat p { font-size: 13px; color: var(--ink-soft); line-height: 1.8; margin: 0; }

/* ============================================================
   SECTION: 所属するだけ / 比較表
   ============================================================ */
.diff { padding: 80px 0; }
.diff__top { display: grid; grid-template-columns: 1fr .85fr; gap: 30px; align-items: center; margin-bottom: 48px; }
.diff__lead h2 { font-family: var(--font-mincho); font-weight: 700; font-size: clamp(24px,3.6vw,34px); margin: 0 0 20px; line-height: 1.45; letter-spacing: .03em; }
.diff__lead h2 .mark { color: var(--pink-500); }
.diff__lead p { font-size: 15px; color: var(--ink-soft); line-height: 2; margin: 0; }
.collage { border-radius: 14px; overflow: hidden; }
.collage image-slot { width: 100%; height: 300px; background: #fff; }
/* 3枚グリッド */
.collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
}
.collage-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
/* 1枚目は2列にまたがる */
.collage-img:first-child {
  grid-column: 1 / -1;
  height: 220px;
}

.compare h3 { text-align: center; font-family: var(--font-mincho); font-weight: 700; font-size: clamp(22px,3.2vw,30px); margin: 0 0 26px; letter-spacing: .04em; }
.ctable { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 760px; margin: 0 auto; }
.col { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.col__head { padding: 14px; text-align: center; font-weight: 800; font-size: 17px; color: #fff; }
.col.other .col__head { background: var(--ink-faint); }
.col.ours .col__head { background: linear-gradient(135deg, var(--pink-400), var(--pink-600)); }
.col__body { background: #fff; padding: 8px 6px; }
.col.ours .col__body { background: var(--pink-50); }
.crow { display: flex; align-items: center; gap: 12px; padding: 15px 18px; font-size: 14.5px; font-weight: 600; border-bottom: 1px dashed #eadfe5; line-height: 1.5; }
.crow:last-child { border-bottom: 0; }
.crow .ic { flex: none; width: 22px; height: 22px; }
.col.other .crow { color: var(--ink-soft); }
.col.other .crow .ic { color: var(--ink-faint); }
.col.ours .crow { color: var(--pink-700); }
.col.ours .crow .ic { color: var(--pink-500); }

/* ============================================================
   SECTION: CASE before/after
   ============================================================ */
.cases { padding: 80px 0; }
.cases__inner { display: flex; flex-direction: column; gap: 26px; }
.cases__title { font-family: var(--font-mincho); font-weight: 700; font-size: clamp(22px,3.4vw,32px); color: var(--pink-600); line-height: 1.5; letter-spacing: .03em; position: relative; }
.cases__title svg { width: 40px; height: 40px; color: var(--pink-300); display: block; margin-top: 8px; }
.case-list { display: grid; gap: 18px; }
.case {
  background: #fff; border: 1.5px solid var(--pink-100); border-radius: var(--radius-md);
  padding: 22px 24px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 22px; align-items: center;
  box-shadow: var(--shadow-card);
}
.case__tag { grid-column: 1 / -1; display: inline-flex; }
.case__tag span { background: var(--pink-500); color: #fff; font-weight: 800; font-size: 13px; letter-spacing: .1em; padding: 5px 16px; border-radius: 999px; }
.ba__label { font-weight: 800; font-size: 14px; margin-bottom: 6px; }
.ba.before .ba__label { color: var(--ink-faint); }
.ba.after .ba__label { color: var(--pink-600); }
.ba p { margin: 0; font-size: 14px; line-height: 1.75; color: var(--ink-soft); }
.ba.after p { color: var(--ink); font-weight: 600; }
.ba.after p .u { border-bottom: 2px solid var(--pink-300); }
.case__arrow { color: var(--pink-400); display: grid; place-items: center; }
.case__photo image-slot { width: 96px; height: 96px; }
.case > .ba.before { position: relative; }
.case > .ba.before::after {
  content: ""; position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0; border-left: 12px solid var(--pink-300); border-top: 8px solid transparent; border-bottom: 8px solid transparent;
}

/* ============================================================
   SECTION: 声 + 特典 (pink band)
   ============================================================ */
.band { background: linear-gradient(180deg, var(--pink-bg), #fff); padding: 80px 0; }
.band__grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 30px; align-items: start; }
.panel { background: #fff; border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-card); }
.panel__title { text-align: center; font-family: var(--font-mincho); font-weight: 700; font-size: clamp(20px,2.8vw,26px); color: var(--pink-600); margin: 0 0 22px; letter-spacing: .03em; }
.voice { display: flex; gap: 14px; padding: 16px 4px; border-bottom: 1px dashed #f0dce7; }
.voice:last-child { border-bottom: 0; }
.voice__av image-slot { width: 56px; height: 56px; }
.voice__t b { display: block; font-size: 14.5px; color: var(--pink-700); margin-bottom: 5px; line-height: 1.5; }
.voice__t p { margin: 0; font-size: 12.5px; color: var(--ink-soft); line-height: 1.7; }
.perk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.perk { background: var(--pink-50); border-radius: var(--radius-md); padding: 22px 18px; text-align: center; }
.perk .ic { width: 56px; height: 56px; border-radius: 50%; background: #fff; display: grid; place-items: center; margin: 0 auto 12px; box-shadow: 0 8px 18px -12px rgba(214,61,131,.5); }
.perk .ic svg { width: 30px; height: 30px; color: var(--pink-500); }
.perk h4 { font-size: 15.5px; font-weight: 800; margin: 0 0 8px; color: var(--ink); line-height: 1.4; }
.perk p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.75; margin: 0; }
.band__perktitle { text-align: center; font-family: var(--font-mincho); font-weight: 700; font-size: clamp(22px,3.4vw,32px); color: var(--pink-600); margin: 0 0 24px; letter-spacing: .04em; }

/* ============================================================
   SECTION: FAQ
   ============================================================ */
.faq { padding: 80px 0; }
.faq__title { text-align: center; font-family: var(--font-mincho); font-weight: 700; font-size: clamp(24px,3.6vw,34px); margin: 0 0 36px; letter-spacing: .04em; }
.faq__list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.qitem { border: 1px solid var(--line-gray); border-radius: var(--radius-sm); padding: 18px 16px; background: #fff; }
.qitem .q { display: flex; gap: 9px; font-weight: 800; font-size: 14px; color: var(--ink); line-height: 1.5; margin-bottom: 10px; }
.qitem .q .badge-q { color: var(--pink-500); font-family: var(--font-mincho); font-weight: 700; }
.qitem .a { font-size: 12.5px; color: var(--ink-soft); line-height: 1.8; }

/* ============================================================
   CLOSING CTA
   ============================================================ */
.closing { position: relative; color: var(--ink); background: var(--pink-bg); overflow: hidden; }
/* photo pinned to the LEFT, fading to transparent on its right edge */
.closing__bg { position: absolute; top: 0; bottom: 0; left: 0; width: 38%; z-index: 0; }
.closing__bg image-slot { width: 100%; height: 100%; }
.closing__bg::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(253,244,249,0) 42%, var(--pink-bg) 92%);
}
.closing__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(110px, 0.45fr) max-content minmax(330px, 1fr); gap: 26px; align-items: center; padding: 84px 0; }
/* copy sits in the middle, clear of the photo on the left */
.closing__copy { grid-column: 2 / 3; font-family: var(--font-mincho); font-weight: 700; font-size: clamp(24px,3vw,38px); line-height: 1.55; letter-spacing: .02em; white-space: nowrap; }
.closing__copy .script { color: var(--pink-500); font-size: 1.12em; }
.closing__copy .pk { color: var(--pink-500); }
.closing__right { grid-column: 3 / 4; }
.closing__right .lead { font-size: 15px; line-height: 1.9; margin: 0 0 22px; color: var(--ink-soft); }
.closing__right .cta__note { color: var(--ink-faint) !important; white-space: nowrap; }
.closing .btn-line { max-width: 100%; font-size: clamp(15px,1.7vw,18px); padding: 16px 22px; }
/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: #fff; padding: 40px 0; border-top: 1px solid var(--line-gray); }
.foot__inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.foot .brand__name { font-size: 20px; }
.foot__tag { margin-left: auto; text-align: right; }
.foot__tag p { margin: 0; font-size: 13.5px; color: var(--ink-soft); }
.foot__tag small { font-size: 11.5px; color: var(--ink-faint); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  /* --- セクション共通スペース --- */
  .empathy, .about, .diff, .cases, .band, .faq { padding: 56px 0; }

  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__right { height: 440px; order: -1; }
  .hero__left { width: 100%; padding: 36px 0 44px; }
  .cta { padding-top: 30px; }

  .empathy__grid, .about__inner, .diff__top, .cases__inner, .band__grid, .closing__inner { grid-template-columns: 1fr; }

  /* closingセクション */
  .closing { background: #2b2228; color: #fff; }
  .closing__bg { position: absolute; inset: 0; width: 100%; }
  .closing__bg::after { background: linear-gradient(180deg, rgba(43,34,40,.35) 0%, rgba(43,34,40,.78) 100%); }
  .closing__inner { padding: 56px 0; }
  .closing__copy, .closing__right { grid-column: 1 / -1; }
  .closing__copy { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.4); }
  .closing__copy .script, .closing__copy .pk { color: var(--pink-300); }
  .closing__right .lead { color: rgba(255,255,255,.92); text-shadow: 0 2px 12px rgba(0,0,0,.4); }
  .closing__right .cta__note { color: rgba(255,255,255,.8) !important; }

  /* グリッド調整 */
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .faq__list { grid-template-columns: 1fr 1fr; }
  .cases__title { text-align: center; }
  .cases__title svg { margin: 8px auto 0; }

  /* about__inner縦積み時の間隔 */
  .about__lead { margin-bottom: 8px; }
}

@media (max-width: 560px) {
  /* --- セクション共通スペース（小画面） --- */
  .empathy, .about, .diff, .cases, .band, .faq { padding: 44px 0; }
  .closing__inner { padding: 44px 0; }

  /* hero */
  .hero__h1 { white-space: normal; font-size: clamp(32px, 9vw, 46px); }
  .hero__left { padding: 28px 24px 36px; }
  .hero__lead { font-size: 15px; }
  .badges { justify-content: center; gap: 10px; }
  .badge { font-size: 12px; padding: 10px 14px 10px 10px; }
  .badge__ic { width: 32px; height: 32px; }
  .brand__name { font-size: 20px; }
  /* スマホではコメントとギフトを非表示 */
  .comments { display: none; }
  .gift { display: none; }
  /* LIVEバッジは小さく右上に */
  .live-badge { top: 12px; right: 12px; gap: 6px; }
  .live-badge .pill { font-size: 11px; padding: 5px 10px; }
  .live-badge .viewers { font-size: 11px; padding: 5px 10px; }

  /* ボタン */
  .btn-line { white-space: normal; width: 100%; justify-content: center; text-align: center; }

  /* チェックリスト */
  .checklist { grid-template-columns: 1fr; gap: 12px; }

  /* グリッド 1列化 */
  .feat-grid, .perk-grid, .ctable, .faq__list { grid-template-columns: 1fr; }

  /* caseカード */
  .case { grid-template-columns: 1fr; text-align: left; }
  .case__photo { justify-self: center; }
  .case > .ba.before::after { display: none; }

  /* diff比較表 */
  .ctable { max-width: 100%; }

  /* FAQ */
  .faq__list { gap: 10px; }

  /* closing */
  .closing__copy { font-size: clamp(22px, 7vw, 32px); white-space: normal; }

  /* footer */
  .foot { padding: 32px 0; }
  .foot__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .foot__tag { margin-left: 0; text-align: left; }
}

/* ============================================================
   2026 conversion / SEO rebuild
   ============================================================ */
.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 9999;
  padding: 10px 16px; color: #fff; background: var(--pink-700);
  border-radius: 8px; transform: translateY(-140%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
.brand { color: inherit; text-decoration: none; }
.brand > span { display: block; }
.section-kicker, .eyebrow {
  margin: 0 0 10px; color: var(--pink-600); font-size: 12px;
  font-weight: 900; letter-spacing: .18em;
}
.sec-lead { max-width: 680px; margin: 18px auto 0; text-align: center; color: var(--ink-soft); }
.source-note, .results-note { margin: 22px 0 0; font-size: 12px; line-height: 1.8; color: var(--ink-faint); }

/* hero */
.hero { min-height: 790px; display: flex; align-items: stretch; }
.hero__left { min-height: 790px; justify-content: flex-start; }
.hero__copy { margin-top: 56px; }
.hero__h1 { white-space: normal; font-size: clamp(44px, 6vw, 68px); }
.hero__h1 .accent { font-size: .9em; }
.hero-points {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 0; padding: 0; list-style: none;
}
.hero-points li {
  padding: 8px 13px; border: 1px solid rgba(232,77,146,.23); border-radius: 999px;
  background: rgba(255,255,255,.9); font-size: 13px; font-weight: 800;
}
.hero-proof {
  position: absolute; z-index: 4; right: 24px; bottom: 24px; width: min(42%, 380px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  padding: 16px; border: 1px solid rgba(255,255,255,.65); border-radius: 18px;
  background: rgba(34,27,32,.72); color: #fff; backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px -25px rgba(0,0,0,.6);
}
.hero-proof span { text-align: center; font-size: 11px; line-height: 1.45; }
.hero-proof b { display: block; font-size: 30px; line-height: 1; color: #fff; }
.hero-proof small { grid-column: 1 / -1; text-align: right; color: rgba(255,255,255,.7); font-size: 10px; }
.btn-line .arrow { color: #fff; font-size: 22px; }

/* trust bar */
.trust-strip { border-top: 1px solid var(--pink-100); border-bottom: 1px solid var(--pink-100); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); padding-top: 22px; padding-bottom: 22px; }
.trust-grid > div { text-align: center; padding: 3px 16px; border-right: 1px solid var(--pink-100); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid b { display: block; color: var(--pink-600); font-size: 12px; letter-spacing: .12em; }
.trust-grid span { display: block; margin-top: 2px; font-weight: 800; font-size: 14px; }

/* audience / device */
.empathy__photo { margin: 0; }
.empathy__photo img { width: 100%; height: 330px; object-fit: cover; border-radius: 18px; }
.empathy__photo figcaption { margin-top: 8px; color: var(--ink-faint); font-size: 12px; text-align: center; }
.device-alert {
  margin-top: 44px; padding: 20px 24px; border: 1px solid #f0c36a; border-radius: 14px;
  background: #fff9e9; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.device-alert strong { color: #7a5200; }
.device-alert span { color: #806b3d; font-size: 13px; }

/* ColorSing feature cards */
.feat-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 14px; border-radius: 16px; background: var(--mint-100); font-size: 28px; }

/* support */
.support-section { padding: 88px 0; background: #fff; }
.support-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 42px; }
.support-card {
  position: relative; padding: 28px 24px; border: 1px solid var(--pink-100); border-radius: 18px;
  background: linear-gradient(145deg,#fff,var(--pink-50)); box-shadow: var(--shadow-card);
}
.support-card > span { font-family: var(--font-mincho); color: var(--pink-300); font-size: 28px; font-weight: 800; }
.support-card h3 { margin: 8px 0 10px; font-size: 18px; }
.support-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.8; }
.guide-section { background: linear-gradient(180deg, #fff, var(--pink-50)); }
.guide-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.guide-card:hover {
  transform: translateY(-5px);
  border-color: var(--pink-300);
  box-shadow: 0 24px 48px -30px rgba(214,61,131,.55);
}
.guide-card b {
  margin-top: auto;
  padding-top: 20px;
  color: var(--pink-600);
  font-size: 13px;
}

/* proof / cases */
.proof-section { padding: 88px 0; background: linear-gradient(180deg,var(--pink-bg),#fff); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin: 38px 0; }
.stats-grid > div { padding: 24px 12px; text-align: center; border-radius: 16px; background: #fff; border: 1px solid var(--pink-100); box-shadow: var(--shadow-card); }
.stats-grid b { display: block; color: var(--pink-600); font-family: var(--font-mincho); font-size: clamp(30px,4vw,46px); line-height: 1; }
.stats-grid b span { font-size: .42em; }
.stats-grid p { margin: 9px 0 0; font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.case-study-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.case-study { overflow: hidden; border: 1px solid var(--pink-100); border-radius: 20px; background: #fff; box-shadow: var(--shadow-card); }
.case-study__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; background: var(--pink-50); }
.case-study__head span { font-size: 12px; font-weight: 900; color: var(--pink-700); }
.case-study__head b { color: var(--pink-300); letter-spacing: .12em; }
.case-study > img { width: 100%; height: 230px; object-fit: cover; }
.case-study__body { padding: 22px; }
.case-study__body h3 { margin: 0 0 18px; font-family: var(--font-mincho); font-size: 22px; }
.case-study dl { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 0; }
.case-study dl > div { padding: 12px 8px; text-align: center; background: var(--pink-50); border-radius: 10px; }
.case-study dt { font-size: 10px; color: var(--ink-faint); }
.case-study dd { margin: 3px 0 0; color: var(--pink-700); font-size: 16px; font-weight: 900; }

/* conditions */
.conditions { padding: 88px 0; }
.condition-table { max-width: 820px; margin: 38px auto 0; overflow: hidden; border: 1px solid var(--line-gray); border-radius: 18px; }
.condition-table > div { display: grid; grid-template-columns: 210px 1fr; border-bottom: 1px solid var(--line-gray); }
.condition-table > div:last-child { border-bottom: 0; }
.condition-table strong, .condition-table span { padding: 16px 20px; font-size: 14px; }
.condition-table strong { background: var(--pink-50); color: var(--pink-700); }
.condition-table span { background: #fff; }
.conditions .source-note { max-width: 820px; margin-left: auto; margin-right: auto; }

/* flow */
.flow-section { padding: 88px 0; background: var(--mint-50); }
.flow-list { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin: 40px 0 0; padding: 0; list-style: none; counter-reset: step; }
.flow-list li { position: relative; padding: 20px 16px; border-radius: 16px; background: #fff; box-shadow: var(--shadow-card); }
.flow-list li:not(:last-child)::after { content: "→"; position: absolute; right: -12px; top: 50%; z-index: 2; transform: translateY(-50%); color: var(--mint-700); font-weight: 900; }
.flow-list li > span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: #fff; background: var(--mint-700); font-weight: 900; }
.flow-list h3 { margin: 12px 0 8px; font-size: 15px; }
.flow-list p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.7; }

/* diagnosis */
.diagnosis { padding: 96px 0; background: linear-gradient(150deg,#3b2933,#241c21); color: #fff; }
.diagnosis-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px; align-items: start; }
.diagnosis-copy { position: sticky; top: 24px; }
.diagnosis-copy h2 { margin: 0 0 16px; font-family: var(--font-mincho); font-size: clamp(30px,4vw,44px); line-height: 1.4; }
.diagnosis-copy > p:not(.section-kicker) { color: rgba(255,255,255,.76); }
.diagnosis-copy ul { margin: 24px 0 0; padding: 0; list-style: none; }
.diagnosis-copy li { margin: 8px 0; color: rgba(255,255,255,.84); }
.diagnosis-copy li::before { content: "✓"; margin-right: 9px; color: var(--pink-300); font-weight: 900; }
.diagnosis-form, .result-card { padding: 30px; color: var(--ink); background: #fff; border-radius: 22px; box-shadow: 0 22px 55px -28px rgba(0,0,0,.7); }
.diagnosis-wizard { min-height: 530px; overflow: hidden; }
.wizard-head { margin: -4px 0 30px; }
.wizard-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 10px; color: var(--ink-soft); font-size: 12px; }
.wizard-meta span { font-weight: 800; letter-spacing: .05em; }
.wizard-meta b { color: var(--pink-600); font-size: 13px; }
.wizard-mini-back { padding: 0; border: 0; color: var(--ink-soft); background: transparent; cursor: pointer; font: inherit; font-weight: 800; }
.wizard-mini-back[hidden] { display: none; }
.wizard-progress { height: 7px; overflow: hidden; border-radius: 999px; background: var(--pink-50); }
.wizard-progress span { display: block; width: 14.285%; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--pink-300),var(--pink-600)); transition: width .35s ease; }
.wizard-step { min-width: 0; margin: 0; padding: 0; border: 0; animation: wizard-in .28s ease both; }
.wizard-step[hidden] { display: none; }
.wizard-step legend { display: block; width: 100%; margin: 0; padding: 0; color: var(--ink); font-family: var(--font-mincho); font-size: clamp(23px,3vw,30px); font-weight: 800; line-height: 1.45; }
.wizard-step legend small { display: block; margin-bottom: 6px; color: var(--pink-500); font-family: var(--font-sans); font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.wizard-hint { margin: 9px 0 22px; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.answer-grid { display: grid; gap: 11px; margin-top: 22px; }
.answer-grid.two-columns { grid-template-columns: repeat(2,minmax(0,1fr)); }
.answer-card { position: relative; display: block; cursor: pointer; }
.answer-card input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.answer-card span { position: relative; display: flex; flex-direction: column; min-height: 70px; justify-content: center; padding: 14px 48px 14px 17px; border: 1px solid #ddd5d9; border-radius: 14px; color: var(--ink); background: #fff; transition: transform .18s ease,border-color .18s ease,background .18s ease,box-shadow .18s ease; }
.answer-card span::after { content: ""; position: absolute; right: 17px; top: 50%; width: 19px; height: 19px; border: 2px solid #cfc5ca; border-radius: 50%; transform: translateY(-50%); }
.answer-card span::before { content: "✓"; position: absolute; z-index: 1; right: 20px; top: 50%; color: #fff; font-size: 12px; font-weight: 900; opacity: 0; transform: translateY(-50%); }
.answer-card b { font-size: 14px; line-height: 1.4; }
.answer-card small { margin-top: 3px; color: var(--ink-soft); font-size: 11px; line-height: 1.5; }
.answer-card:hover span { transform: translateY(-1px); border-color: var(--pink-300); box-shadow: 0 10px 24px -20px rgba(82,35,59,.65); }
.answer-card input:checked + span { border-color: var(--pink-500); background: var(--pink-50); box-shadow: inset 0 0 0 1px var(--pink-500); }
.answer-card input:checked + span::after { border-color: var(--pink-500); background: var(--pink-500); }
.answer-card input:checked + span::before { opacity: 1; }
.answer-card input:focus-visible + span { outline: 3px solid var(--pink-200); outline-offset: 2px; }
.multi-answer .answer-card span::after { border-radius: 6px; }
.condition-checks { display: grid; gap: 9px; margin: 22px 0 18px; }
.condition-checks p { display: grid; grid-template-columns: 130px 1fr; gap: 12px; margin: 0; padding: 13px 15px; border-radius: 12px; background: #f8f5f7; font-size: 12px; line-height: 1.55; }
.condition-checks b { color: var(--pink-700); }
.condition-checks span { color: var(--ink-soft); }
.wizard-actions { display: flex; align-items: center; gap: 10px; margin-top: 25px; }
.wizard-actions .submit-button,.wizard-next { flex: 1; width: auto; margin: 0; padding: 15px 18px; border: 0; border-radius: 999px; cursor: pointer; color: #fff; background: linear-gradient(135deg,var(--pink-400),var(--pink-600)); font: inherit; font-size: 14px; font-weight: 900; box-shadow: var(--shadow-soft); }
.wizard-back { flex: 0 0 auto; padding: 13px 16px; border: 1px solid #d8d2d5; border-radius: 999px; cursor: pointer; color: var(--ink-soft); background: #fff; font: inherit; font-size: 13px; font-weight: 800; }
.wizard-step-error { margin: 14px 0 -8px; color: #9d1b3d; font-size: 12px; font-weight: 800; }
.wizard-next:hover,.wizard-actions .submit-button:hover { transform: translateY(-2px); }
@keyframes wizard-in { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }
.form-field { margin: 0 0 24px; padding: 0; border: 0; }
.form-field > label:not(.choice), .form-field legend { display: block; margin-bottom: 10px; font-size: 14px; font-weight: 900; }
.form-field label > span, .form-field legend > span { color: var(--pink-600); font-size: 11px; }
.form-field input[type="text"], .form-field select {
  width: 100%; min-height: 50px; padding: 11px 13px; border: 1px solid #d8d2d5; border-radius: 10px;
  color: var(--ink); background: #fff; font: inherit;
}
.form-field input[type="text"]:focus, .form-field select:focus { outline: 3px solid var(--pink-100); border-color: var(--pink-500); }
.choice { display: inline-flex; margin: 0 7px 8px 0; cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: block; padding: 10px 14px; border: 1px solid #d8d2d5; border-radius: 999px; color: var(--ink-soft); font-size: 13px; font-weight: 700; }
.choice input:checked + span { color: var(--pink-700); border-color: var(--pink-500); background: var(--pink-50); box-shadow: inset 0 0 0 1px var(--pink-500); }
.choice input:focus-visible + span { outline: 3px solid var(--pink-200); }
.agree { display: flex; align-items: flex-start; gap: 10px; padding: 14px; border-radius: 10px; background: #f7f5f6; font-size: 12px; line-height: 1.7; }
.agree input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--pink-600); }
.submit-button {
  width: 100%; margin-top: 24px; padding: 17px 20px; border: 0; border-radius: 999px; cursor: pointer;
  color: #fff; background: linear-gradient(135deg,var(--pink-400),var(--pink-600));
  font: inherit; font-weight: 900; box-shadow: var(--shadow-soft);
}
.submit-button:hover { transform: translateY(-2px); }
.form-error { padding: 11px 13px; border-radius: 8px; color: #9d1b3d; background: #fff0f3; font-size: 13px; }
.result-card { align-self: start; }
.result-card[hidden], .diagnosis-form[hidden] { display: none; }
.result-label { margin: 0; color: var(--pink-600); font-weight: 900; letter-spacing: .12em; font-size: 12px; }
.result-card h3 { margin: 10px 0 12px; font-family: var(--font-mincho); font-size: 28px; }
.result-card > p:not(.result-label) { color: var(--ink-soft); }
.result-actions { display: grid; gap: 10px; margin-top: 22px; }
.result-line, .result-booking { display: block; padding: 15px 18px; border-radius: 999px; text-align: center; text-decoration: none; font-weight: 900; }
.result-line { color: #fff; background: #06c755; }
.result-line.secondary { color: #176d38; background: #e9fff1; border: 1px solid #74d99a; }
.result-booking { color: #fff; background: var(--pink-600); }
.booking-note { margin: 4px 0 0; text-align: center; color: var(--ink-faint); font-size: 12px; }
.text-button { display: block; margin: 20px auto 0; padding: 6px; border: 0; color: var(--ink-soft); background: transparent; text-decoration: underline; cursor: pointer; }

/* FAQ */
.faq__list { grid-template-columns: 1fr 1fr; max-width: 900px; margin: 0 auto; }
.qitem { padding: 0; }
.qitem summary { position: relative; padding: 18px 48px 18px 18px; cursor: pointer; font-size: 14px; font-weight: 900; list-style: none; }
.qitem summary::-webkit-details-marker { display: none; }
.qitem summary::after { content: "+"; position: absolute; right: 18px; top: 14px; color: var(--pink-500); font-size: 24px; }
.qitem[open] summary::after { content: "−"; }
.qitem p { margin: 0; padding: 0 18px 18px; color: var(--ink-soft); font-size: 13px; line-height: 1.8; }

/* sticky CTA */
.sticky-cta {
  position: fixed; z-index: 100; left: 50%; bottom: 14px; transform: translateX(-50%);
  width: min(720px,calc(100% - 24px)); display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 12px 10px 20px; border: 1px solid rgba(255,255,255,.8); border-radius: 999px;
  color: #fff; background: rgba(43,34,40,.92); backdrop-filter: blur(12px); box-shadow: 0 18px 50px -20px rgba(0,0,0,.7);
  transition: opacity .2s, transform .2s;
}
.sticky-cta.is-hidden { opacity: 0; pointer-events: none; transform: translate(-50%,20px); }
.sticky-cta span { font-size: 13px; }
.sticky-cta a { padding: 11px 18px; border-radius: 999px; color: #fff; background: var(--pink-600); text-decoration: none; font-weight: 900; white-space: nowrap; }

/* footer */
.foot__inner { display: grid; grid-template-columns: auto 1fr; }
.foot-links { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 12px 20px; }
.foot-links a { color: var(--ink-soft); font-size: 12px; }
.foot__tag { grid-column: 1 / -1; margin-left: 0; padding-top: 12px; border-top: 1px solid var(--line-gray); }

@media (max-width: 880px) {
  .support-section,.proof-section,.conditions,.flow-section,.diagnosis { padding: 64px 0; }
  .hero { min-height: 760px; }
  .hero__left { min-height: 760px; width: 64%; padding-left: 30px; padding-right: 30px; }
  .hero-proof { width: 48%; }
  .support-grid { grid-template-columns: 1fr 1fr; }
  .flow-list { grid-template-columns: 1fr; }
  .flow-list li { display: flex; gap: 16px; align-items: flex-start; }
  .flow-list li:not(:last-child)::after { content: "↓"; right: 50%; top: auto; bottom: -18px; }
  .flow-list h3 { margin-top: 3px; }
  .diagnosis-wrap { grid-template-columns: 1fr; }
  .diagnosis-copy { position: static; }
}

@media (max-width: 640px) {
  .wrap { padding-left: 18px; padding-right: 18px; }
  .hero { min-height: 760px; background: var(--pink-bg); }
  .hero__bg-img { object-position: 58% 50%; }
  .hero::after { background: linear-gradient(180deg,rgba(253,244,249,.98) 0%,rgba(253,244,249,.91) 55%,rgba(253,244,249,.28) 100%); }
  .hero__left { width: 100%; min-height: 700px; padding: 24px 20px 180px; }
  .hero__copy { margin-top: 38px; }
  .hero__h1 { font-size: clamp(38px,12vw,54px); }
  .hero__lead br { display: none; }
  .hero-proof { left: 14px; right: 14px; bottom: 14px; width: auto; }
  .hero-proof b { font-size: 25px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .trust-grid > div { border-bottom: 1px solid var(--pink-100); }
  .trust-grid > div:nth-child(2n) { border-right: 0; }
  .empathy__photo img { height: 260px; }
  .about__inner { display: block; }
  .support-grid,.stats-grid,.case-study-grid,.faq__list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .case-study dl { grid-template-columns: 1fr; }
  .condition-table > div { grid-template-columns: 1fr; }
  .condition-table strong { padding-bottom: 6px; }
  .condition-table span { padding-top: 6px; }
  .diagnosis-form,.result-card { padding: 22px 18px; }
  .diagnosis-wizard { min-height: 520px; }
  .wizard-head { margin-bottom: 24px; }
  .answer-grid.two-columns { grid-template-columns: 1fr; }
  .answer-card span { min-height: 66px; padding: 12px 45px 12px 14px; }
  .condition-checks p { grid-template-columns: 1fr; gap: 3px; }
  .wizard-actions { align-items: stretch; }
  .wizard-back { padding-left: 14px; padding-right: 14px; }
  .sticky-cta { bottom: 8px; padding-left: 12px; }
  .sticky-cta span { display: none; }
  .sticky-cta a { width: 100%; text-align: center; }
  .foot__inner { display: flex; }
  .foot-links { justify-content: flex-start; }
  .foot__tag { width: 100%; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal-ready .reveal,.reveal-ready .reveal-left,.reveal-ready .reveal-right,.reveal-ready .reveal-zoom { opacity: 1; transform: none; }
}
