/* =========================================================================
   fiorai LP main.css (2026-06-08)
   ========================================================================= */

:root {
  /* 配色 (= ノワール: 深いプラム黒 + 発光ローズ/ラベンダー/シャンパン、 2026-06-13 刷新)
     Keigo デモ (walkthrough_demo/fiorai_lp_demo.html) のパレットを LP 全体に展開 */
  --c-bg:        #0c0712;        /* 主背景 = 深いプラム黒 (3D 背景と同値) */
  --c-bg-soft:   rgba(26, 15, 36, 0.55);   /* セクション差し = 半透明 (背景の線画を透かす) */
  --c-bg-deep:   rgba(32, 19, 44, 0.65);   /* 濃いめの余白 */
  --c-bg-dark:   #150b1d;        /* さらに深い面 */
  --c-fg:        #F6EEF4;        /* ソフトホワイト (ほんのりローズ) */
  --c-fg-dim:    rgba(246, 238, 244, 0.68);
  --c-fg-mute:   rgba(246, 238, 244, 0.45);
  --c-ink:       #1a0f22;        /* アクセント面上の文字 (= 暗) */
  --c-ink-dim:   rgba(26, 15, 34, 0.7);
  --c-accent:    #f0a8c8;        /* 発光ローズ (デモ準拠) */
  --c-accent-2:  #caa6f2;        /* ラベンダー */
  --c-accent-3:  rgba(240, 168, 200, 0.18); /* ローズの淡い面 (ハイライト下地) */
  --c-gold:      #e8c89a;        /* シャンパンゴールド */
  --c-data:      #8fb8f0;        /* データ強調 (ダーク地で読めるブルー) */
  --c-line:      rgba(240, 168, 200, 0.28);
  --c-line-ink:  rgba(246, 238, 244, 0.14);
  --c-surface:   rgba(24, 14, 33, 0.66);    /* カード面 = ダークガラス */

  /* タイポ */
  --f-display: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, sans-serif;
  --f-body:    "Noto Sans JP", system-ui, sans-serif;
  --f-num:     "Inter", system-ui, sans-serif;

  /* 寸法 */
  --maxw:        1240px;
  --gutter:      max(20px, 4vw);
  --sec-gap:     clamp(56px, 6vw, 96px);
  --rhythm:      8px;
  --hd-h:        64px;
  --r:           14px;
  --r-sm:        10px;
  --r-lg:        20px;

  /* モーション */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast:      180ms;
  --t-base:      320ms;
  --t-slow:      720ms;
}

/* =========================================================================
   Reset
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: clamp(15px, 1vw + 6px, 17px);
  line-height: 1.85;
  letter-spacing: 0.01em;
  color: var(--c-fg);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video, canvas { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0; font-family: var(--f-display); font-weight: 700; line-height: 1.28; letter-spacing: -0.01em; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--c-accent); color: var(--c-ink); }

/* =========================================================================
   Header
   ========================================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  height: var(--hd-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 var(--gutter);
  background: rgba(255, 252, 253, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--c-line);
}
.site-header.is-scrolled { background: rgba(255, 252, 253, 0.96); }
.brand { display: inline-flex; align-items: center; }
.brand__mark { display: none; }
.brand__name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.005em;
  color: #5C3A47;
  line-height: 1;
}
.brand__name::first-letter {
  font-size: 1.12em;
  background: linear-gradient(135deg, #5C3A47 0%, #C26A85 50%, #5C3A47 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.site-nav {
  display: flex; gap: 28px; justify-content: center;
  font-size: 14px; color: var(--c-fg-dim);
}
.site-nav a { transition: color var(--t-fast) var(--ease-out); }
.site-nav a:hover { color: var(--c-fg); }
@media (max-width: 880px) {
  .site-nav { display: none; }
}

/* =========================================================================
   CTA
   ========================================================================= */
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease-out),
              background-color var(--t-fast) var(--ease-out),
              color var(--t-fast) var(--ease-out);
}
.cta--primary {
  background: var(--c-accent);
  color: var(--c-ink);
  height: 56px;
  padding: 0 32px;
  font-size: 15px;
  font-weight: 600;
}
.cta--primary:hover { transform: translateY(-1px); background: #e3a8bd; }
.cta--ghost {
  border: 1px solid var(--c-line);
  color: var(--c-fg);
  background: rgba(244, 241, 235, 0.02);
}
.cta--ghost:hover { background: rgba(244, 241, 235, 0.06); }
.cta--link {
  height: auto;
  padding: 0;
  color: var(--c-fg-dim);
  border-bottom: 1px solid var(--c-line);
  border-radius: 0;
}
.cta--link:hover { color: var(--c-fg); border-bottom-color: var(--c-fg); }
.cta--inline {
  font-size: 14px;
  color: var(--c-accent);
  border-bottom: 1px solid rgba(216, 154, 175, 0.4);
  padding-bottom: 2px;
}

/* =========================================================================
   共通 Section / 見出し
   ========================================================================= */
.section {
  position: relative;
  padding: var(--sec-gap) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-head { max-width: 880px; margin-bottom: 36px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  font-family: var(--f-num);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 10px;
}
.section-head h2 {
  font-size: clamp(24px, 2.4vw + 6px, 38px);
  line-height: 1.35;
  font-weight: 700;
}
.section-lede {
  margin-top: 14px;
  color: var(--c-fg-dim);
  font-size: clamp(13px, 0.6vw + 7px, 15px);
  line-height: 1.75;
  max-width: 78ch;
}

/* =========================================================================
   S1 HERO
   ========================================================================= */
.section--hero {
  position: relative;
  min-height: 62vh; min-height: 62dvh;
  display: grid;
  align-items: end;
  padding-top: calc(var(--hd-h) + 56px);
  padding-bottom: 56px;
  max-width: none;
  overflow: hidden;
  background: var(--c-bg);
}
.hero__scene {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 18% 32%, rgba(214, 138, 163, 0.20) 0%, transparent 55%),
    radial-gradient(ellipse 70% 70% at 86% 75%, rgba(6, 199, 85, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 55% 50%, rgba(255, 255, 255, 0.6) 0%, transparent 70%),
    var(--c-bg);
}
/* 2026-06-11: HERO 実写化 = LINE/スマホを操作する女性 (Adobe Stock)。
   被写体が中央右にいるため右寄せ配置 + 左から白ウォッシュでコピーの可読性を確保 */
.hero__scene--photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 72% 30%;
}
.hero__scene--photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.88) 30%,
      rgba(255, 255, 255, 0.45) 55%,
      rgba(255, 255, 255, 0.05) 80%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.85) 0%, transparent 22%);
}
@media (max-width: 720px) {
  .hero__scene--photo img { object-position: 78% 20%; }
  .hero__scene--photo::after {
    background:
      linear-gradient(90deg,
        rgba(255, 255, 255, 0.94) 0%,
        rgba(255, 255, 255, 0.80) 45%,
        rgba(255, 255, 255, 0.30) 100%);
  }
}
.hero__scene::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26, 26, 30, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 30, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 60% 50%, black 0%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 80% at 60% 50%, black 0%, transparent 80%);
  opacity: 0.5;
}
.hero__scene > canvas { display: none; }
.hero__copy {
  /* 2026-06-12: 3D フライスルー canvas (z-index 2) より上 = 背景の上にコピーが乗る */
  position: relative; z-index: 3;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 2px;
}
.hero__brand-mark { display: none; }
.hero__brand-name {
  display: block;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(36px, 4.6vw, 64px);
  letter-spacing: 0.005em;
  line-height: 1;
  white-space: nowrap;
  color: #5C3A47;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5), 0 3px 14px rgba(92, 58, 71, 0.18);
  /* 最初の文字 (F) は ::first-letter で軽く強調 */
}
.hero__brand-name::first-letter {
  font-size: 1.12em;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #5C3A47 0%, #C26A85 50%, #5C3A47 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__brand-sub {
  font-family: var(--f-display);
  font-size: clamp(11px, 1vw + 2px, 14px);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-fg-dim);
  margin-left: 4px;
}
.display {
  font-size: clamp(28px, 3.8vw + 6px, 56px);
  line-height: 1.32;
  letter-spacing: -0.015em;
  margin: 8px 0 22px;
  color: var(--c-fg);
  display: block;
  max-width: 1040px;
}
.display__line { display: block; }
.display__line--sr {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
/* =========================================================================
   スロットマシン (= Matter of Fact 風、 縦に語句が流れて最後に着地)
     - height/line-height は 1.3em 確保 (= 日本語のディセンダがはみ出ない)
     - 各語句 1 秒滞在 → ease-in-out で 0.5 秒で次に切替 = 読める + 滑らか
     - 最後 (AI に任せる。) は 2 秒長くホールドして印象に残す
     - duration 10s 1 回再生 forwards
   ========================================================================= */
.slot {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  height: 1.32em;
  line-height: 1.32;
  overflow: hidden;
  max-width: 100%;
  margin-left: 0.06em;
}
.slot__reel {
  display: block;
  will-change: transform;
  animation: slot-spin 10s var(--ease-in-out) 0.3s 1 forwards;
}
.slot__word {
  display: block;
  height: 1.32em;
  line-height: 1.32;
  white-space: nowrap;
  color: var(--c-accent);
  font-style: italic;
  font-weight: 700;
}
.slot__word:last-child {
  color: var(--c-fg);
  font-style: normal;
}
/* 各 keyframe は「次の位置に移る区間」 + 「そこに留まる区間」 をペアで指定
   読みやすさのため、 留まる区間を 10% (= 1 秒)、 切替を 6% (= 0.6 秒) にしている */
@keyframes slot-spin {
  0%,  10%   { transform: translateY(0); }
  16%, 26%   { transform: translateY(-1.3em); }
  32%, 42%   { transform: translateY(-2.6em); }
  48%, 58%   { transform: translateY(-3.9em); }
  64%, 74%   { transform: translateY(-5.2em); }
  80%, 100%  { transform: translateY(-6.5em); }
}
@media (prefers-reduced-motion: reduce) {
  .slot__reel { animation: none; transform: translateY(-6.5em); }
}

/* =========================================================================
   fiorai 文字単位 reveal + ホバー揺れ
   = 「f」 を強調 (= 1.18em + ヘアライン下げ) + 全文字にゴールドグラデ (= background-clip: text)
   ========================================================================= */
[data-fiorai] {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.fiorai-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%);
  animation: fiorai-rise 0.6s var(--ease-out) forwards;
  /* 単色の深いゴールド (= 背景の明色グラデと衝突しない) */
  color: #5C3F12;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 2px 12px rgba(99, 64, 79, 0.18);
}
/* 「F」 だけクール強調: わずかに拡大 + 深いゴールド + 花弁モチーフを左肩に */
.fiorai-char--f {
  font-size: 1.18em;
  font-weight: 800;
  margin-right: 4px;
  letter-spacing: -0.04em;
  position: relative;
  color: #5C3A47;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6),
    0 3px 14px rgba(92, 58, 71, 0.22);
}
/* 「F」 の上の回転花モチーフは Keigo 指示で撤去 */
/* 「F」 の粒は不要 (= Keigo 指示) */
.fiorai-char:nth-child(1) { animation-delay: 0.10s; }
.fiorai-char:nth-child(2) { animation-delay: 0.18s; }
.fiorai-char:nth-child(3) { animation-delay: 0.26s; }
.fiorai-char:nth-child(4) { animation-delay: 0.34s; }
.fiorai-char:nth-child(5) { animation-delay: 0.42s; }
.fiorai-char:nth-child(6) { animation-delay: 0.50s; }
@keyframes fiorai-rise {
  0%   { opacity: 0; transform: translateY(40%) rotate(-4deg); }
  60%  { opacity: 1; transform: translateY(-6%) rotate(1deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0); }
}
.hero__brand:hover .fiorai-char,
.brand:hover .fiorai-char { animation: fiorai-wave 1.4s var(--ease-in-out) infinite; }
.hero__brand:hover .fiorai-char:nth-child(1),
.brand:hover .fiorai-char:nth-child(1) { animation-delay: 0.00s; }
.hero__brand:hover .fiorai-char:nth-child(2),
.brand:hover .fiorai-char:nth-child(2) { animation-delay: 0.07s; }
.hero__brand:hover .fiorai-char:nth-child(3),
.brand:hover .fiorai-char:nth-child(3) { animation-delay: 0.14s; }
.hero__brand:hover .fiorai-char:nth-child(4),
.brand:hover .fiorai-char:nth-child(4) { animation-delay: 0.21s; }
.hero__brand:hover .fiorai-char:nth-child(5),
.brand:hover .fiorai-char:nth-child(5) { animation-delay: 0.28s; }
.hero__brand:hover .fiorai-char:nth-child(6),
.brand:hover .fiorai-char:nth-child(6) { animation-delay: 0.35s; }
@keyframes fiorai-wave {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-22%); }
}

/* =========================================================================
   強調ワード (= .hi) のスキャナーライン reveal + アンダーライン
   ========================================================================= */
.hi {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  color: var(--c-fg);
  font-weight: 600;
  padding: 0 2px;
}
.hi::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(214, 138, 163, 0.18) 50%, transparent 100%);
  transform: translateX(-110%);
  pointer-events: none;
}
.hi::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s var(--ease-out);
}
.hi.is-on::before {
  animation: hi-scan 0.85s var(--ease-out) forwards;
}
.hi.is-on::after {
  transform: scaleX(1);
}
@keyframes hi-scan {
  0%   { transform: translateX(-110%); }
  100% { transform: translateX(110%); }
}
.lede {
  max-width: 68ch;
  font-size: clamp(14px, 0.9vw + 4px, 17px);
  line-height: 1.75;
  color: var(--c-fg-dim);
  margin: 0 0 28px;
}
.cta-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero__scroll-hint {
  position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%);
  z-index: 3;   /* 3D フライスルー canvas (z-index 2) より上 */
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--c-fg-mute);
  font-family: var(--f-num);
  font-size: 11px; letter-spacing: 0.3em;
  pointer-events: none;
}
.scroll-hint__line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--c-fg-mute) 50%, transparent);
  animation: scroll-pulse 2.2s var(--ease-in-out) infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.6); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* =========================================================================
   セクション間の薄いゴールド区切り (= メリハリ確保)
   ========================================================================= */
.section + .section,
.section-block + .section-block { position: relative; }
.section + .section::before,
.section-block + .section-block::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: min(180px, 30%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 154, 175, 0.55), transparent);
}

/* =========================================================================
   S2 CHALLENGE
   ========================================================================= */
.section--challenge { background: var(--c-bg); }
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .challenge-grid { grid-template-columns: 1fr; gap: 16px; } }
.challenge-card {
  position: relative;
  /* 2026-06-10: 260px → 190px。 文字 2-3 行 + 余白で十分 (= 「枠が大きすぎる」 指摘対応) */
  min-height: 190px;
  padding: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background-color: var(--c-bg-deep);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(26, 26, 30, 0.18);
}
.challenge-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(33, 26, 30, 0.05) 0%, rgba(33, 26, 30, 0.75) 60%, rgba(33, 26, 30, 0.95) 100%);
  z-index: 0;
}
.challenge-card__body {
  position: relative;
  z-index: 1;
  padding: 28px 26px 24px;
  color: #FBF7F8;
}
.challenge-card h3,
.challenge-card__body h3 {
  color: #FFFFFF;
  font-size: clamp(17px, 1.2vw + 4px, 20px);
  line-height: 1.45;
  margin: 0 0 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  font-weight: 700;
}
.challenge-card p,
.challenge-card__body p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}
.challenge-card > * { position: relative; z-index: 1; }
/* 2026-06-10: 旧 (画像なし時代) の残骸ルールを削除。
   `.challenge-card p { color: var(--c-fg-dim) }` が後勝ちで白文字指定を上書きし、
   暗い背景画像上で説明文が読めなくなっていた (= 視認性バグの真因)。 */

/* =========================================================================
   S3 CONCEPT
   ========================================================================= */
.section--concept {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(214, 138, 163, 0.08) 0%, transparent 50%),
    var(--c-bg-soft);
}

/* =========================================================================
   LINE トーク モック + マーケファネル
   S3 CONCEPT の核心、 「LINE 公式アカウントを AI が運用する」 を可視化
   ========================================================================= */
.line-stage {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 40px;
  margin: 32px 0 0;
  align-items: center;
}
@media (max-width: 880px) {
  .line-stage { grid-template-columns: 1fr; gap: 24px; justify-items: center; }
}

/* ----- LINE 風 フォン モック (= 縦長を圧縮) ----- */
.line-phone {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9 / 16;
  background: #ECEEF1;
  border-radius: 32px;
  border: 7px solid #1A1A1E;
  box-shadow: 0 18px 44px rgba(33, 26, 30, 0.16), 0 3px 10px rgba(33, 26, 30, 0.10);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.line-phone__notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 110px; height: 20px;
  background: #1A1A1E;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 2;
}
.line-phone__header {
  display: flex; align-items: center; gap: 10px;
  background: #06C755; /* LINE green */
  color: #FFFFFF;
  padding: 30px 16px 12px;
  font-family: var(--f-body);
  font-weight: 500;
}
.line-phone__avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B85F7C 0%, #EFB8C8 100%);
  flex-shrink: 0;
}
.line-phone__name { font-size: 14px; flex: 1; }
.line-phone__verified {
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 11px;
}
.line-phone__chat {
  flex: 1;
  padding: 14px 12px;
  display: flex; flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  animation: bubble-in 0.5s var(--ease-out) forwards;
}
.bubble p { margin: 0; }
.bubble em {
  font-style: normal;
  color: #B85F7C;
  font-weight: 600;
}
.bubble--from {
  background: var(--c-surface);
  color: #1A1A1E;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.bubble--to {
  background: #84C95F;
  color: #FFFFFF;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.bubble--card {
  background: transparent;
  padding: 0;
  width: 78%;
}
.line-card {
  background: var(--c-surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.line-card__body { padding: 12px 14px; }
.line-card__title {
  font-weight: 600;
  font-size: 13px;
  color: var(--c-accent);
  margin-bottom: 4px;
}
.line-card__desc {
  font-size: 12px;
  color: var(--c-fg-dim);
}
.line-card__cta {
  width: 100%;
  padding: 10px;
  border: 0;
  border-top: 1px solid #ECEEF1;
  background: var(--c-surface);
  color: #06C755;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
}
.bubble--typing { padding: 12px 14px; display: flex; gap: 4px; align-items: center; }
.bubble--typing .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(26, 26, 30, 0.4);
  animation: dot-bounce 1.2s ease-in-out infinite;
}
.bubble--typing .dot:nth-child(2) { animation-delay: 0.15s; }
.bubble--typing .dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes dot-bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40%           { transform: translateY(-4px); opacity: 1; }
}
.bubble:nth-child(1) { animation-delay: 0.4s; }
.bubble:nth-child(2) { animation-delay: 1.0s; }
.bubble:nth-child(3) { animation-delay: 1.7s; }
.bubble:nth-child(4) { animation-delay: 2.7s; }
.bubble:nth-child(5) { animation-delay: 3.4s; }
@keyframes bubble-in {
  to { opacity: 1; transform: translateY(0); }
}
/* 公式リッチメニュー (= グレースフィオーレ札幌店の実画像)
   2026-06-11: 実際の LINE と同じく 入力欄 → メニューバー → リッチメニュー (最下部) の順 */
.line-phone__richmenu-img {
  width: 100%;
  display: block;
}
.line-phone__rm-bar {
  background: var(--c-surface);
  color: #211A1E;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  padding: 6px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.line-phone__richmenu {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: #211A1E;
  padding: 4px;
  margin-top: auto;
}
.line-phone__rm-cell {
  background: linear-gradient(135deg, #F6D9E0 0%, #E59FB4 50%, #C26A85 100%);
  color: #211A1E;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 10px;
  text-align: center;
  padding: 12px 6px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.line-phone__rm-cell--lg {
  grid-row: span 2;
  font-size: 12px;
  background:
    linear-gradient(135deg, #FFFDFE 0%, #F6D9E0 35%, #E59FB4 65%, #C26A85 100%);
  border: 1px solid rgba(194, 106, 133, 0.45);
}
.line-phone__rm-cell::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  animation: rm-shine 4s ease-in-out infinite;
}
.line-phone__rm-cell:nth-child(2)::after { animation-delay: 0.5s; }
.line-phone__rm-cell:nth-child(3)::after { animation-delay: 1.0s; }
.line-phone__rm-cell:nth-child(4)::after { animation-delay: 1.5s; }
.line-phone__rm-cell:nth-child(5)::after { animation-delay: 2.0s; }
.line-phone__rm-cell:nth-child(6)::after { animation-delay: 2.5s; }
@keyframes rm-shine {
  0%, 80%, 100% { left: -100%; }
  85%, 95%      { left: 150%; }
}

.line-phone__input {
  display: flex; align-items: center;
  padding: 10px 14px 14px;
  background: #ECEEF1;
}
.line-phone__input-ph {
  flex: 1;
  background: var(--c-surface);
  border-radius: 18px;
  padding: 8px 14px;
  font-size: 12px;
  color: rgba(26, 26, 30, 0.4);
}

/* ----- マーケファネル ----- */
.funnel { padding: 0 8px; }
.funnel__steps {
  display: grid;
  gap: 16px;
  counter-reset: funnel-step;
}
.funnel__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 18px 22px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--r);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.funnel__step:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(26, 26, 30, 0.06);
}
.funnel__num {
  font-family: var(--f-num);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--c-accent);
  align-self: start;
  padding-top: 3px;
}
.funnel__step h4 {
  font-size: 17px;
  margin: 0 0 6px;
  line-height: 1.4;
}
.funnel__step p {
  font-size: 13px;
  color: var(--c-fg-dim);
  line-height: 1.7;
  margin: 0;
}

/* =========================================================================
   CAP illustrations (= S4 各サブセクションの可視化、 画像不要)
   ========================================================================= */
.cap-illust { width: 100%; max-width: 100%; }

/* 01 リッチメニュー モック */
.cap-illust--richmenu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  aspect-ratio: 3 / 2;
  background: #06C755;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.18);
}
.rich-cell {
  background: var(--c-surface);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(11px, 1vw + 2px, 14px);
  font-weight: 600;
  color: #1A1A1E;
  position: relative;
  overflow: hidden;
}
.rich-cell::before {
  content: '';
  position: absolute; top: 50%; left: 0; right: 0;
  height: 1px;
  background: rgba(214, 138, 163, 0.2);
  transform: scaleX(0);
  transform-origin: left;
  animation: rich-line 2.6s ease-in-out infinite;
}
.rich-cell:nth-child(1)::before { animation-delay: 0.0s; }
.rich-cell:nth-child(2)::before { animation-delay: 0.4s; }
.rich-cell:nth-child(3)::before { animation-delay: 0.8s; }
.rich-cell:nth-child(4)::before { animation-delay: 1.2s; }
.rich-cell:nth-child(5)::before { animation-delay: 1.6s; }
.rich-cell:nth-child(6)::before { animation-delay: 2.0s; }
@keyframes rich-line {
  0%   { transform: scaleX(0); transform-origin: left; }
  50%  { transform: scaleX(1); transform-origin: left; }
  51%  { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* 02 セグメント チップ */
.cap-illust--segment {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
  justify-content: center;
}
.seg-chip {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--f-display);
  letter-spacing: 0.04em;
  position: relative;
  animation: chip-pop 0.6s var(--ease-out) backwards;
}
.seg-chip--new      { background: #FCE2EA; color: #7A4D00; animation-delay: 0.10s; }
.seg-chip--repeat   { background: #C6E8C8; color: #1F5C30; animation-delay: 0.22s; }
.seg-chip--vip      { background: #1A1A1E; color: #EFB8C8; animation-delay: 0.34s; border: 1px solid #B85F7C; }
.seg-chip--sleep    { background: #E3E1DC; color: #5A554D; animation-delay: 0.46s; }
.seg-chip--sleep2   { background: #D5D2CB; color: #46423A; animation-delay: 0.58s; }
.seg-chip--churn    { background: #F0D2D2; color: #7A2727; animation-delay: 0.70s; }
@keyframes chip-pop {
  0%   { opacity: 0; transform: scale(0.7) translateY(8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* 03 ステップ配信 フロー */
.cap-illust--flow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.flow-node {
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  background: var(--c-surface);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  min-width: 80px;
  box-shadow: 0 2px 6px rgba(26, 26, 30, 0.04);
}
.flow-node--ai {
  background: linear-gradient(135deg, #1A1A1E 0%, #2A2A30 100%);
  color: #EFB8C8;
  border-color: #B85F7C;
}
.flow-arrow {
  color: var(--c-accent);
  font-weight: 700;
  font-size: 18px;
  animation: flow-pulse 1.4s ease-in-out infinite;
}
.flow-arrow:nth-of-type(2) { animation-delay: 0.2s; }
.flow-arrow:nth-of-type(3) { animation-delay: 0.4s; }
.flow-arrow:nth-of-type(4) { animation-delay: 0.6s; }
@keyframes flow-pulse {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50%      { transform: translateX(3px); opacity: 1; }
}

/* 04 月次レポート */
.cap-illust--report {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 420px;
}
.report-row {
  display: grid;
  grid-template-columns: 90px 1fr 56px;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}
.report-row > span:first-child {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--c-fg-dim);
}
.report-bar {
  height: 8px;
  background: linear-gradient(90deg, transparent 0%, transparent calc(var(--w) + 1%), rgba(26, 26, 30, 0.06) calc(var(--w) + 1%), rgba(26, 26, 30, 0.06) 100%),
              linear-gradient(90deg, var(--c-accent) 0%, #EFB8C8 100%);
  background-size: 100% 100%, var(--w) 100%;
  background-repeat: no-repeat;
  border-radius: 4px;
  animation: report-fill 1.6s var(--ease-out) backwards;
}
.report-row:nth-child(1) .report-bar { animation-delay: 0.2s; }
.report-row:nth-child(2) .report-bar { animation-delay: 0.4s; }
.report-row:nth-child(3) .report-bar { animation-delay: 0.6s; }
.report-row:nth-child(4) .report-bar { animation-delay: 0.8s; }
@keyframes report-fill {
  0%   { background-size: 100% 100%, 0 100%; }
  100% { background-size: 100% 100%, var(--w) 100%; }
}
.report-val {
  font-family: var(--f-num);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  color: var(--c-fg);
  text-align: right;
}
.report-next {
  margin-top: 6px;
  padding: 14px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1A1A1E 0%, #2A2A30 100%);
  color: #FBF7F8;
  display: grid;
  gap: 6px;
}
.report-next__label {
  font-family: var(--f-num);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.report-next__msg {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

/* =========================================================================
   口コミ ストリーム (= HPB 口コミが縦に流れて AI がキーワードを掴む)
   ========================================================================= */
.reviews-stream {
  position: relative;
  height: clamp(360px, 56vh, 560px);
  margin: 56px 0 56px;
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  background: linear-gradient(180deg, var(--c-bg-soft) 0%, var(--c-bg) 100%);
  overflow: hidden;
}
.reviews-stream::before,
.reviews-stream::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 3;
}
.reviews-stream::before {
  top: 0;
  background: linear-gradient(180deg, var(--c-bg-soft) 0%, transparent 100%);
}
.reviews-stream::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--c-bg) 0%, transparent 100%);
}
.reviews-stream__inner {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 0 36px;
}
@media (max-width: 720px) {
  .reviews-stream__inner { grid-template-columns: 1fr; gap: 0; padding: 0 20px; }
  .reviews-stream__col--reverse { display: none; }
}
.reviews-stream__col {
  display: flex; flex-direction: column;
  gap: 18px;
  animation: stream-up 38s linear infinite;
  will-change: transform;
}
.reviews-stream__col--reverse {
  animation-name: stream-down;
  animation-duration: 46s;
}
.reviews-stream__col p {
  margin: 0;
  font-size: clamp(14px, 1vw + 4px, 16px);
  line-height: 1.7;
  color: var(--c-fg-dim);
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(214, 138, 163, 0.08);
  border-radius: var(--r);
}
.reviews-stream__col em {
  display: inline-block;
  font-style: normal;
  margin-left: 6px;
  padding: 2px 8px;
  color: var(--c-accent);
  border: 1px solid rgba(214, 138, 163, 0.45);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.06em;
  background: rgba(214, 138, 163, 0.08);
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.reviews-stream__col em.is-grabbed {
  background: var(--c-accent);
  color: #FFFFFF;
  transform: scale(1.06);
  box-shadow: 0 0 0 4px rgba(214, 138, 163, 0.18);
}
@keyframes stream-up {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes stream-down {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}
/* AI レンズ (= 中央の細い水平線、 ここを通過したキーワードを「掴む」) */
.reviews-stream__lens {
  position: absolute; left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  height: 48px;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(90deg, transparent, rgba(214, 138, 163, 0.08), transparent);
  border-top: 1px solid rgba(214, 138, 163, 0.45);
  border-bottom: 1px solid rgba(214, 138, 163, 0.45);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.reviews-stream__lens-label {
  font-family: var(--f-num);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  padding-right: 20px;
  font-weight: 600;
}
@media (prefers-reduced-motion: reduce) {
  .reviews-stream__col,
  .reviews-stream__col--reverse { animation: none; }
}
.cycle-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: center;
  margin: 32px 0 56px;
}
@media (max-width: 880px) {
  .cycle-stage { grid-template-columns: 1fr; gap: 32px; }
}
.cycle__scene {
  position: relative;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 50%, rgba(214, 138, 163, 0.14) 0%, rgba(214, 138, 163, 0.04) 60%, transparent 100%),
              var(--c-bg-deep);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  overflow: hidden;
}
.cycle__scene > canvas { width: 100%; height: 100%; display: block; }
.cycle-legend { display: grid; gap: 16px; }
.cycle-legend li {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-left: 1px solid var(--c-line);
  transition: border-color var(--t-base) var(--ease-out), background var(--t-base) var(--ease-out);
}
.cycle-legend li.active {
  border-left-color: var(--c-accent);
  background: linear-gradient(90deg, rgba(216, 154, 175, 0.06), transparent);
}
.cycle-legend__num {
  font-family: var(--f-num);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-accent);
  letter-spacing: 0.12em;
}
.cycle-legend__label {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 16px;
}
.emphasis {
  text-align: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw + 6px, 28px);
  letter-spacing: -0.01em;
  color: var(--c-fg);
  margin: 32px 0 0;
}

/* =========================================================================
   S4 CAPABILITY
   ========================================================================= */
.section--capability { background: var(--c-bg); }
.cap-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--c-line);
}
.cap-block:last-of-type { border-bottom: 1px solid var(--c-line); }
.cap-block--reverse { direction: rtl; }
.cap-block--reverse > * { direction: ltr; }
@media (max-width: 880px) {
  .cap-block, .cap-block--reverse { grid-template-columns: 1fr; gap: 28px; direction: ltr; padding: 48px 0; }
}
.cap-block__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--c-surface);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
}
.cap-block__index {
  font-family: var(--f-num);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-accent);
  letter-spacing: 0.18em;
  margin: 0 0 12px;
}
.cap-block__copy h3 {
  font-size: clamp(24px, 2.6vw + 4px, 36px);
  margin: 0 0 20px;
}
.cap-block__copy p {
  color: var(--c-fg-dim);
  max-width: 48ch;
}

/* =========================================================================
   S5 TECHNOLOGY (ヤマ場)
   ========================================================================= */
.section--technology {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(214, 138, 163, 0.18) 0%, transparent 60%),
    var(--c-bg-dark);
  color: #FBF7F8;
  max-width: none;
  padding-left: 0; padding-right: 0;
}
.section--technology .section-head h2,
.section--technology .section-lede { color: #FBF7F8; }
.section--technology .section-lede { color: rgba(255, 252, 253, 0.78); }
.section--technology .eyebrow { color: var(--c-accent); }
.section--technology .face-metrics li {
  background: rgba(255, 252, 253, 0.06);
  border-color: rgba(255, 252, 253, 0.18);
}
.section--technology .face-metrics__label { color: rgba(255, 252, 253, 0.7); }
.section--technology .face-note { color: rgba(255, 252, 253, 0.55); }
.section--technology > .section-head { max-width: 720px; margin-left: auto; margin-right: auto; padding: 0 var(--gutter); }
.face-stage {
  position: relative;
  margin: 56px auto 0;
  padding: 0 var(--gutter);
  max-width: var(--maxw);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .face-stage { grid-template-columns: 1fr; }
}
.face__scene {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 252, 253, 0.18);
  border-radius: var(--r);
  overflow: hidden;
  background: radial-gradient(circle at 50% 45%, rgba(214, 138, 163, 0.18) 0%, transparent 70%), var(--c-bg-dark);
  cursor: grab;
}
.face__scene:active { cursor: grabbing; }
.face__scene > canvas { width: 100%; height: 100%; display: block; }
.face__controls {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(26, 26, 30, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 252, 253, 0.18);
  z-index: 2;
}
.face__controls .seg {
  font-family: var(--f-num);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--c-fg-dim);
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.face__controls .seg.active { background: var(--c-accent); color: var(--c-ink); }
.face-metrics {
  display: grid;
  grid-template-rows: repeat(5, auto);
  gap: 14px;
  align-content: center;
}
.face-metrics li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  background: rgba(244, 241, 235, 0.02);
  transition: border-color var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out);
}
.face-metrics li:hover { border-color: rgba(216, 154, 175, 0.35); transform: translateY(-2px); }
.face-metrics__label {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--c-fg-dim);
}
.face-metrics__val {
  font-family: var(--f-num);
  font-weight: 600;
  font-size: clamp(20px, 1.6vw + 4px, 26px);
  font-variant-numeric: tabular-nums;
  color: var(--c-data);
  letter-spacing: -0.01em;
  transition: color var(--t-base) var(--ease-out);
}
.face-metrics__val[data-trend="up"]   { color: #92D8B8; }
.face-metrics__val[data-trend="down"] { color: var(--c-data); }
.face-note {
  grid-column: 1 / -1;
  margin-top: 28px;
  font-size: 12px;
  color: var(--c-fg-mute);
  text-align: center;
}

/* =========================================================================
   S4 INSIGHT (= 月次解析 超強調セクション)
   ========================================================================= */
.section--insight {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(214, 138, 163, 0.10) 0%, transparent 50%),
    var(--c-bg);
}

/* ヒーロー画像 (= 経営者がタブレットで月次レポートを見るシーン) */
.insight-hero {
  margin: 32px 0 48px;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 32px rgba(92, 58, 71, 0.08);
}
.insight-hero img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  background: var(--c-bg-deep);
}
.insight-hero figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px clamp(20px, 4vw, 48px);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(14px, 1vw + 6px, 18px);
  color: #FBF7F8;
  background: linear-gradient(180deg, transparent 0%, rgba(33, 26, 30, 0.72) 100%);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

/* 4 段階フロー (= 横並びカード、 矢印で繋ぐ) */
.insight-flow {
  margin: 0 0 56px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
@media (max-width: 880px) {
  .insight-flow { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 560px) {
  .insight-flow { grid-template-columns: 1fr; }
}
.insight-flow__step {
  position: relative;
  padding: 24px 22px 22px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  display: grid;
  gap: 8px;
}
.insight-flow__step::after {
  content: "→";
  position: absolute;
  left: 100%; top: 50%;
  transform: translate(-50%, -50%);
  color: var(--c-accent);
  font-weight: 700;
  font-size: 22px;
  z-index: 1;
  pointer-events: none;
}
.insight-flow__step:last-child::after { display: none; }
@media (max-width: 880px) {
  .insight-flow__step:nth-child(2)::after { display: none; }
}
@media (max-width: 560px) {
  .insight-flow__step::after { display: none; }
}
.insight-flow__icon {
  width: 48px; height: 48px;
  color: var(--c-accent);
  margin-bottom: 4px;
}
.insight-flow__icon svg {
  width: 100%; height: 100%;
  display: block;
}
.insight-flow__step-no {
  font-family: var(--f-num);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0;
}
.insight-flow__step h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}
.insight-flow__step p {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--c-fg-dim);
  margin: 0;
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin: 32px 0;
}
@media (max-width: 980px) { .insight-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (max-width: 640px)  { .insight-grid { grid-template-columns: 1fr; } }

.insight-card {
  grid-column: span 6;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 28px 28px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 980px) { .insight-card { grid-column: span 1 !important; } }
.insight-card--word    { grid-column: span 6; }
.insight-card--guide   { grid-column: span 6; }
.insight-card--sns     { grid-column: span 6; }
.insight-card--radar   { grid-column: span 6; }
.insight-card--report  { grid-column: span 6; }
.insight-card--engagement { grid-column: span 6; }
.insight-card--competitor { grid-column: span 6; }
@media (max-width: 980px) {
  .insight-card--word, .insight-card--guide, .insight-card--sns,
  .insight-card--radar, .insight-card--report,
  .insight-card--engagement, .insight-card--competitor { grid-column: span 1 !important; }
}
.insight-card--report  { grid-column: span 5; }
@media (max-width: 880px) {
  .insight-grid { grid-template-columns: 1fr; }
  .insight-card { grid-column: span 1 !important; padding: 28px 24px; }
}
.insight-card__label {
  font-family: var(--f-num);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 16px;
}
.insight-card h3 {
  font-size: clamp(20px, 1.6vw + 6px, 26px);
  line-height: 1.4;
  margin: 0 0 14px;
}
.insight-card p {
  color: var(--c-fg-dim);
  font-size: 14px;
  margin: 0 0 18px;
}
.insight-card__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.ins-chip {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--f-display);
  border: 1px solid var(--c-line);
}
.ins-chip--up   { background: #E8F0E5; color: #2E5C2F; border-color: rgba(46, 92, 47, 0.2); }
.ins-chip--down { background: #FBE9E7; color: #8A2E2E; border-color: rgba(138, 46, 46, 0.2); }

.guide-call {
  background: linear-gradient(135deg, #1A1A1E 0%, #2A2A30 100%);
  color: #FBF7F8;
  padding: 22px 24px;
  border-radius: 10px;
  display: grid;
  gap: 8px;
}
.guide-call__label {
  font-family: var(--f-num);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0;
}
.guide-call__main {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(16px, 1.4vw + 4px, 20px);
  margin: 0;
  line-height: 1.5;
  color: #FBF7F8;
}
.guide-call__main strong { color: #EFB8C8; }
.guide-call__why {
  font-size: 12px;
  color: rgba(255, 252, 253, 0.62);
  margin: 0;
  line-height: 1.6;
}

/* 傾向分析 (= 単純集計ではなく AI が要約した文脈) */
.trend-summary {
  margin-top: 18px;
  padding: 22px 24px;
  background: var(--c-bg-deep);
  border-left: 3px solid var(--c-accent);
  border-radius: 10px;
}
.trend-summary__hd {
  font-family: var(--f-num);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 12px;
}
.trend-summary ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.trend-summary li {
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--c-fg-dim);
}
.trend-summary li::before {
  content: "";
  position: absolute; left: 0; top: 0.7em;
  width: 12px; height: 1px;
  background: var(--c-accent);
}
.trend-summary li strong {
  color: var(--c-fg);
  font-family: var(--f-display);
  font-weight: 600;
}

/* 新メニュー開発提案 */
.insight-card--menu { grid-column: span 6; }
@media (max-width: 980px) { .insight-card--menu { grid-column: span 1 !important; } }
.menu-proposal {
  margin-top: 18px;
}
.menu-proposal__hd {
  font-family: var(--f-num);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 10px;
}
.menu-proposal__card {
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(214, 138, 163, 0.10) 0%, rgba(214, 138, 163, 0.02) 100%);
  border: 1px solid rgba(214, 138, 163, 0.32);
  border-radius: 10px;
}
.menu-proposal__name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 14px;
  color: var(--c-fg);
}
.menu-proposal__name strong {
  font-weight: 700;
  color: var(--c-accent);
}
.menu-proposal__why {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--c-fg-dim);
  margin: 6px 0 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
}
.menu-proposal__why > span {
  font-family: var(--f-num);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--c-accent);
  padding-top: 3px;
}

/* 指針リスト (= 1 行ではなく複数の選択肢) */
.guide-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.guide-list__item {
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(194, 106, 133, 0.07) 0%, rgba(255, 253, 254, 1) 100%);
  border: 1px solid rgba(194, 106, 133, 0.22);
  border-radius: 10px;
}
.guide-list__hd {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-fg);
  margin: 0 0 6px;
}
.guide-list__num {
  display: inline-block;
  padding: 2px 8px;
  margin-right: 8px;
  background: var(--c-accent);
  color: #FFFFFF;
  font-family: var(--f-num);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 4px;
}
.guide-list__main {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--c-fg);
  margin: 0 0 6px;
}
.guide-list__main strong { color: var(--c-accent); }
.guide-list__why {
  font-size: 11px;
  color: var(--c-fg-mute);
  margin: 0;
  line-height: 1.6;
}

.growth-note {
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--c-fg-mute);
  font-style: italic;
}

/* === insight-card に画像つきバリアント (= ヒーロー画像 + 中身) === */
.insight-card--with-img {
  padding: 0;
  overflow: hidden;
  background: var(--c-surface);
  border-radius: var(--r);
}
.insight-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--c-bg-deep);
}
.insight-card__inner {
  padding: 22px 24px 24px;
  display: grid;
  gap: 8px;
}
.insight-card--with-img .insight-card__inner h3 {
  margin-top: 4px;
}

/* 指針 コンパクト版 (= タイトル + 1 行 em) */
.guide-list-compact {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.guide-list-compact li {
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-fg-dim);
  padding: 10px 14px;
  background: rgba(194, 106, 133, 0.06);
  border-left: 3px solid var(--c-accent);
  border-radius: 8px;
}
.guide-list-compact li em {
  font-style: italic;
  color: var(--c-fg);
  font-weight: 600;
}
.guide-list-compact__num {
  font-family: var(--f-num);
  font-weight: 800;
  color: var(--c-accent);
  margin-right: 8px;
  font-size: 14px;
}

/* エンゲージメント率 訴求 */
.er-formula {
  margin: 14px 0 0;
  padding: 16px 18px;
  list-style: none;
  background: var(--c-bg-deep);
  border-radius: 10px;
  display: grid;
  gap: 10px;
}
.er-formula li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  gap: 12px;
}
.er-formula__k {
  color: var(--c-fg-dim);
  font-weight: 500;
}
.er-formula__v {
  font-family: var(--f-num);
  font-weight: 600;
  color: var(--c-fg);
  font-size: 13px;
}
.er-formula__total {
  border-top: 1px solid rgba(194, 106, 133, 0.30);
  padding-top: 10px;
  margin-top: 2px;
}
.er-formula__total .er-formula__k {
  color: var(--c-accent);
  font-weight: 700;
  font-family: var(--f-display);
}
.er-formula__total .er-formula__v {
  color: var(--c-accent);
  font-weight: 700;
}

/* 同業種 AI 検索 箇条 */
.competitor-bullets {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.competitor-bullets li {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--c-fg-dim);
  padding-left: 22px;
  position: relative;
}
.competitor-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 12px; height: 2px;
  background: var(--c-accent);
  border-radius: 1px;
}

/* レーダーチャート 業界平均 根拠注記 */
.radar-source {
  margin-top: 14px;
  font-size: 11px;
  line-height: 1.7;
  color: var(--c-fg-mute);
  font-style: italic;
  padding: 10px 12px;
  background: rgba(194, 106, 133, 0.05);
  border-radius: 8px;
}

/* 六角レーダーチャート */
/* insight-card--radar の重複定義は上にあるので OK */
.radar {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 18px auto 12px;
}
.radar__grid polygon {
  fill: none;
  stroke: rgba(194, 106, 133, 0.20);
  stroke-width: 1;
}
.radar__grid line {
  stroke: rgba(194, 106, 133, 0.14);
  stroke-width: 1;
}
.radar__avg {
  fill: rgba(33, 26, 30, 0.18);
  stroke: rgba(33, 26, 30, 0.45);
  stroke-width: 1.2;
  stroke-dasharray: 4 3;
}
.radar__self {
  fill: url(#rg-self);
  stroke: var(--c-accent);
  stroke-width: 2;
}
.radar__labels text {
  font-family: var(--f-display);
  font-size: 11px;
  fill: var(--c-fg-dim);
  font-weight: 500;
}
.radar-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  color: var(--c-fg-dim);
  margin-top: 4px;
}
.radar-legend__item { display: inline-flex; align-items: center; gap: 8px; }
.radar-legend__dot { width: 16px; height: 4px; border-radius: 2px; }
.radar-legend__dot--self { background: var(--c-accent); }
.radar-legend__dot--avg  { background: rgba(33, 26, 30, 0.45); }

.growth-plan {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  background: var(--c-bg-deep);
  padding: 18px 20px;
  border-radius: 10px;
}
.growth-plan__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 13px;
}
.growth-plan__row > span:first-child {
  color: var(--c-fg-dim);
  font-family: var(--f-display);
}
.growth-plan__row strong {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--c-fg);
}

/* =========================================================================
   役割別レポート (= S4 INSIGHT 末尾、 30 秒誇張の是正)
   ========================================================================= */
.role-reports {
  margin: 56px 0 0;
  padding: 36px 32px;
  background: linear-gradient(135deg, rgba(194, 106, 133, 0.08) 0%, rgba(255, 253, 254, 1) 100%);
  border: 1px solid rgba(194, 106, 133, 0.22);
  border-radius: var(--r);
}
.role-reports__hd {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw + 4px, 22px);
  text-align: center;
  margin: 0 0 24px;
  color: var(--c-fg);
}
.role-reports__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .role-reports__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .role-reports__grid { grid-template-columns: 1fr; } }
.role-card {
  padding: 22px 18px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  display: grid;
  gap: 8px;
}
.role-card__role {
  font-family: var(--f-num);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0;
}
.role-card__what {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-fg);
  margin: 0;
}
.role-card__detail {
  font-size: 12px;
  line-height: 1.7;
  color: var(--c-fg-dim);
  margin: 0;
}
.role-reports__note {
  margin: 22px 0 0;
  font-size: 12px;
  color: var(--c-fg-mute);
  text-align: center;
}

/* line-feature__list (= S5 機能 (a) / (b) で使用) */
.line-feature__list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 720px) { .line-feature__list { grid-template-columns: 1fr; } }
.line-feature__list li {
  padding: 16px 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-accent);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-fg-dim);
}
.line-feature__list li strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--c-fg);
  margin-bottom: 4px;
  font-size: 14px;
}

/* AFTER 末尾の控えめ注 */
.after-fineprint {
  max-width: 640px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 12px;
  color: var(--c-ink-dim);
  line-height: 1.8;
}

/* spot-block--sub (= シナリオ continued、 余白を詰める) */
.spot-block--sub { padding-top: 0; border-top: 0; }

/* SPOTLIGHT 4 機能 サマリグリッド (= まずパッと見せる) */
.feature-grid {
  list-style: none;
  /* 2026-06-11: 他ブロックと同じ左右余白に統一 (= full-bleed セクション内で自前 gutter) */
  max-width: var(--maxw);
  margin: 0 auto 28px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-grid__item { margin: 0; }
.feature-grid__link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--c-surface);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(92, 58, 71, 0.06);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
  height: 100%;
  display: flex; flex-direction: column;
}
.feature-grid__link:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(92, 58, 71, 0.12);
}
.feature-grid__link img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: var(--c-bg-deep);
}
.feature-grid__body {
  padding: 16px 18px 18px;
  display: grid;
  gap: 6px;
  flex: 1;
}
.feature-grid__no {
  font-family: var(--f-num);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0;
}
.feature-grid__body h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.45;
  margin: 0;
  color: var(--c-fg);
}
.feature-grid__body p {
  font-size: 12px;
  line-height: 1.65;
  color: var(--c-fg-dim);
  margin: 0;
}
.feature-grid__note {
  text-align: center;
  font-size: 12px;
  color: var(--c-fg-mute);
  margin: 0 0 36px;
}

/* =========================================================================
   S5 SPOTLIGHT (= 3 つの目玉)
   ========================================================================= */
.section--spotlight {
  background: var(--c-bg-soft);
  max-width: none;
  padding-left: 0; padding-right: 0;
}
.section--spotlight > .section-head {
  max-width: 760px; margin-left: auto; margin-right: auto;
  padding: 0 var(--gutter);
}
.spot-block {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px var(--gutter);
  border-top: 1px solid var(--c-line);
}
.spot-block:first-of-type { border-top: 0; }
.spot-block__head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}
.spot-block__num {
  font-family: var(--f-num);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 14px;
}
.spot-block__head h3 {
  font-size: clamp(26px, 3vw + 6px, 40px);
  line-height: 1.3;
  margin: 0 0 16px;
}
.spot-block__head p {
  color: var(--c-fg-dim);
  font-size: clamp(14px, 1vw + 4px, 16px);
  line-height: 1.9;
  margin: 0;
}

/* ----- 顔測定 face-cam ----- */
.face-cam {
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
@media (max-width: 880px) {
  .face-cam { grid-template-columns: 1fr; gap: 24px; justify-items: center; }
}
.face-cam__stage {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
  background: #1A1A1E;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.face-cam__video,
.face-cam__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.face-cam__video {
  object-fit: cover;
  transform: scaleX(-1);  /* ミラー */
  background: #000;
}
.face-cam__canvas {
  pointer-events: none;
  transform: scaleX(-1);
}
.face-cam__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  text-align: center;
  color: rgba(255, 252, 253, 0.78);
  font-size: 14px;
  line-height: 1.8;
  background: radial-gradient(ellipse at 50% 50%, rgba(214, 138, 163, 0.15) 0%, transparent 70%), #1A1A1E;
  pointer-events: none;
}
.face-cam__placeholder p { margin: 0; }
.face-cam__stage.is-on .face-cam__placeholder { display: none; }
.face-cam__panel {
  display: grid;
  gap: 18px;
  align-content: start;
}
.face-cam__btn {
  background: var(--c-accent);
  color: #FFFFFF;
  border: 0;
  border-radius: 999px;
  height: 56px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--f-body);
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out);
  align-self: flex-start;
}
.face-cam__btn:hover { background: #cf8aa4; transform: translateY(-1px); }
.face-cam__btn:disabled { background: #B5AC9D; cursor: not-allowed; transform: none; }
.face-cam__error {
  padding: 12px 16px;
  background: #FBE9E7;
  color: #8A2E2E;
  border-radius: 8px;
  font-size: 13px;
  margin: 0;
}
.face-cam__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0;
  list-style: none;
  margin: 0;
}
@media (max-width: 600px) { .face-cam__metrics { grid-template-columns: 1fr; } }
.face-cam__metrics li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 14px 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 10px;
}
.face-cam__metrics li > span {
  font-family: var(--f-display);
  font-size: 12px;
  color: var(--c-fg-dim);
}
.face-cam__metrics li > strong {
  font-family: var(--f-num);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-size: 16px;
  color: var(--c-accent);
}
.face-cam__note {
  font-size: 12px;
  color: var(--c-fg-mute);
  line-height: 1.7;
  margin: 0;
}

/* ----- インスタ動画自動生成 reel ----- */
.reel-stage {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
@media (max-width: 880px) {
  .reel-stage { grid-template-columns: 1fr; gap: 28px; justify-items: center; }
}
.reel-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #1A1A1E;
  border: 6px solid #1A1A1E;
  box-shadow: 0 20px 50px rgba(26, 26, 30, 0.22);
}
.reel-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.reel-overlay {
  position: absolute; left: 0; right: 0; top: 18px;
  padding: 0 18px;
  pointer-events: none;
}
.reel-caption {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  color: #FBF7F8;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0.04em;
}
.reel-variants {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .reel-variants { grid-template-columns: 1fr; } }
.reel-variants li {
  padding: 18px 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  display: grid;
  gap: 8px;
}
.reel-variants__tag {
  display: inline-block;
  align-self: start;
  font-family: var(--f-num);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(214, 138, 163, 0.12);
  color: var(--c-accent);
  border: 1px solid rgba(214, 138, 163, 0.32);
}
.reel-variants li div {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--c-fg-dim);
}

/* =========================================================================
   Premiere Pro 風 タイムライン エディタ (= シナリオ可視化)
   ========================================================================= */
.timeline-editor {
  margin: 8px 0 32px;
  background: #1A1A1E;
  border: 1px solid rgba(255, 252, 253, 0.12);
  border-radius: 12px;
  overflow: hidden;
  color: #FBF7F8;
  font-family: var(--f-num);
}
.timeline-editor__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: linear-gradient(180deg, #2A2A30 0%, #1A1A1E 100%);
  border-bottom: 1px solid rgba(255, 252, 253, 0.10);
  font-size: 12px;
}
.te-title {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: 0.04em;
}
.te-meta { color: rgba(255, 252, 253, 0.5); font-size: 11px; }
.timeline-editor__tracks {
  display: grid;
  gap: 1px;
  background: rgba(255, 252, 253, 0.08);
  padding-bottom: 0;
}
.te-track {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: stretch;
  background: #1F1F25;
  min-height: 48px;
}
.te-track__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 252, 253, 0.45);
  display: flex; align-items: center;
  padding: 0 14px;
  background: #16161A;
  border-right: 1px solid rgba(255, 252, 253, 0.08);
}
.te-track__lane {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px 8px;
  position: relative;
}
.te-clip {
  height: 32px;
  border-radius: 4px;
  width: var(--w);
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 10px;
  font-family: var(--f-body);
  color: #FBF7F8;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  cursor: default;
}
.te-clip span {
  text-overflow: ellipsis;
  overflow: hidden;
}
.te-clip--ai    { background: rgba(122, 184, 255, 0.32); border-color: rgba(122, 184, 255, 0.55); }
.te-clip--need  { background: rgba(214, 138, 163, 0.42); border-color: var(--c-accent); }
.te-clip--need::after {
  content: "撮影";
  position: absolute; top: 3px; right: 4px;
  font-size: 8px;
  background: var(--c-accent);
  color: #1A1A1E;
  padding: 1px 6px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.te-clip--swap  { background: rgba(46, 92, 47, 0.55); border-color: rgba(46, 92, 47, 0.9); }
.te-clip--logo  { background: rgba(255, 252, 253, 0.22); border-color: rgba(255, 252, 253, 0.45); color: #1A1A1E; }
.te-clip--gap   { background: transparent; border-color: transparent; }
.te-clip--voice { background: rgba(122, 184, 255, 0.18); border-color: rgba(122, 184, 255, 0.32); }
.te-clip--bgm   { background: rgba(255, 252, 253, 0.12); border-color: rgba(255, 252, 253, 0.22); }
.te-clip--telop { background: rgba(214, 138, 163, 0.20); border-color: rgba(214, 138, 163, 0.45); }
.timeline-editor__legend {
  display: flex; flex-wrap: wrap; gap: 18px;
  padding: 10px 18px;
  background: #16161A;
  border-top: 1px solid rgba(255, 252, 253, 0.08);
  font-size: 11px;
  color: rgba(255, 252, 253, 0.62);
  font-family: var(--f-body);
}
.te-legend { display: inline-flex; align-items: center; gap: 8px; }
.te-swatch { display: inline-block; width: 14px; height: 10px; border-radius: 2px; border: 1px solid transparent; }
.te-swatch--ai   { background: rgba(122, 184, 255, 0.32); border-color: rgba(122, 184, 255, 0.55); }
.te-swatch--need { background: rgba(214, 138, 163, 0.42); border-color: var(--c-accent); }
.te-swatch--swap { background: rgba(46, 92, 47, 0.55); border-color: rgba(46, 92, 47, 0.9); }
.te-swatch--logo { background: rgba(255, 252, 253, 0.32); border-color: rgba(255, 252, 253, 0.55); }
@media (max-width: 720px) {
  .timeline-editor__legend { gap: 10px; font-size: 10px; }
  .te-track__label { font-size: 9px; padding: 0 8px; }
  .te-clip { font-size: 9px; padding: 0 6px; }
}

/* =========================================================================
   AFTER の役割分担
   ========================================================================= */
.after-roles {
  margin: 32px auto 24px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 880px;
  text-align: left;
}
@media (max-width: 720px) { .after-roles { grid-template-columns: 1fr; } }
.after-roles > li {
  padding: 22px 24px;
  border: 1px solid var(--c-line-ink);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.65);
}
.after-roles__by {
  font-family: var(--f-num);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 12px;
}
.after-roles > li ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}
.after-roles > li ul li {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--c-ink-dim);
}
.reel-pipe {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: pipe;
}
.reel-pipe li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px 18px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-accent);
  border-radius: 10px;
}
.reel-pipe__num {
  font-family: var(--f-num);
  font-weight: 600;
  font-size: 18px;
  color: var(--c-accent);
}
.reel-pipe li div { font-size: 13px; line-height: 1.7; color: var(--c-fg-dim); }
.reel-pipe li strong { color: var(--c-fg); font-family: var(--f-display); font-weight: 600; }

/* ----- シナリオ提案 scenario ----- */
.scenario-stage { display: grid; gap: 24px; }
.scenario-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}
@media (max-width: 880px) {
  .scenario-flow { grid-template-columns: 1fr; }
}
.scenario-flow__step {
  position: relative;
  padding: 24px 22px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 10px;
}
.scenario-flow__step::before {
  content: "→";
  position: absolute; left: 100%; top: 50%;
  transform: translate(-50%, -50%);
  color: var(--c-accent);
  font-weight: 700;
  font-size: 20px;
  z-index: 1;
}
.scenario-flow__step:last-child::before { display: none; }
@media (max-width: 880px) { .scenario-flow__step::before { display: none; } }
.scenario-flow__week {
  font-family: var(--f-num);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 8px;
}
.scenario-flow__step h4 {
  font-size: 15px;
  margin: 0 0 10px;
  line-height: 1.4;
}
.scenario-flow__step p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--c-fg-dim);
  margin: 0;
}
.scenario-note {
  text-align: center;
  font-size: 13px;
  color: var(--c-fg-mute);
  margin: 0;
}

/* =========================================================================
   S6 WORKFLOW
   ========================================================================= */
.section--workflow {
  position: relative;
  background:
    linear-gradient(180deg, rgba(253, 248, 250, 0.92) 0%, rgba(253, 248, 250, 0.78) 50%, rgba(253, 248, 250, 0.95) 100%),
    url('../img/gemini/workflow-bg.jpg') center / cover no-repeat,
    var(--c-bg);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  counter-reset: step;
}
@media (max-width: 880px) { .timeline { grid-template-columns: 1fr; gap: 16px; } }
.timeline__step {
  padding: 32px 28px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  position: relative;
  opacity: 0.7;
  transition: opacity var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out);
}
.timeline__step.in-view { opacity: 1; border-color: rgba(214, 138, 163, 0.35); transform: translateY(-2px); box-shadow: 0 4px 18px rgba(26, 26, 30, 0.06); }
.timeline__week {
  font-family: var(--f-num);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--c-accent);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.timeline__step h3 {
  font-size: clamp(20px, 1.6vw + 4px, 24px);
  margin: 0 0 14px;
}
.timeline__step p { color: var(--c-fg-dim); margin: 0; }
.footnote {
  margin: 28px 0 0;
  font-size: 13px;
  color: var(--c-fg-mute);
}

/* =========================================================================
   S7 AFTER
   ========================================================================= */
.section--after {
  background: var(--c-bg-deep);
  color: var(--c-ink);
  max-width: none;
  padding: clamp(120px, 14vw, 200px) var(--gutter);
}
.section--after .section-head .eyebrow { color: var(--c-accent); }
.section--after .section-head h2 {
  font-size: clamp(36px, 5.4vw, 76px);
  letter-spacing: -0.025em;
}
.after-stage {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.after-body {
  margin: 40px 0 56px;
  color: var(--c-ink-dim);
  font-size: clamp(16px, 1vw + 6px, 18px);
  line-height: 2;
}
.after-emphasis {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw + 6px, 28px);
  letter-spacing: -0.01em;
  margin: 0;
  padding-top: 32px;
  border-top: 1px solid var(--c-line-ink);
}

/* =========================================================================
   S8 FAQ
   ========================================================================= */
.section--faq { background: var(--c-bg); }
.faq { display: grid; gap: 0; max-width: 880px; }
.faq__item {
  border-top: 1px solid var(--c-line);
}
.faq__item:last-child { border-bottom: 1px solid var(--c-line); }
.faq__item > summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 24px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(16px, 1vw + 6px, 19px);
  color: var(--c-fg);
  transition: color var(--t-fast) var(--ease-out);
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary::after {
  content: "";
  width: 16px; height: 16px;
  background:
    linear-gradient(var(--c-fg-dim), var(--c-fg-dim)) center / 16px 1px no-repeat,
    linear-gradient(var(--c-fg-dim), var(--c-fg-dim)) center / 1px 16px no-repeat;
  transition: transform var(--t-base) var(--ease-out), background var(--t-base) var(--ease-out);
}
.faq__item[open] > summary::after {
  transform: rotate(90deg);
  background:
    linear-gradient(var(--c-accent), var(--c-accent)) center / 16px 1px no-repeat;
}
.faq__item[open] > summary { color: var(--c-accent); }
.faq__body {
  padding: 0 0 28px;
  color: var(--c-fg-dim);
  max-width: 60ch;
}
.faq__body p { margin: 0; }

/* =========================================================================
   S9 PURPOSE & OUTCOME (= 目的とできることのサマリ)
   ========================================================================= */
.section--purpose {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(214, 138, 163, 0.10) 0%, transparent 60%),
    var(--c-bg-soft);
}
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin: 56px 0 64px;
}
/* 2026-06-10 改修: 文字だけのカード → サムネイル画像付きカードに刷新
   + 旧 nth-child 指定で 6 枚目 (目玉) が span 1 に潰れて縦長の枠になっていたバグを class 指定に変更 */
.purpose-card {
  position: relative;
  grid-column: span 6;
  padding: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.purpose-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 138, 163, 0.35);
  box-shadow: 0 8px 24px rgba(26, 26, 30, 0.06);
}
.purpose-card__img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.purpose-card__body { padding: 24px 28px 28px; }
.purpose-card--lead {
  grid-column: span 12;
  background: linear-gradient(135deg, rgba(214, 138, 163, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
}
.purpose-card--lead .purpose-card__body { padding: 48px 48px; }
.purpose-card--lead h3 { font-size: clamp(24px, 2.4vw + 4px, 32px); }
.purpose-card--star {
  grid-column: span 12;
  flex-direction: row;
  border-color: rgba(194, 106, 133, 0.45);
  box-shadow: 0 8px 28px rgba(194, 106, 133, 0.10);
}
.purpose-card--star .purpose-card__img {
  width: 42%;
  height: auto;
  min-height: 220px;
  flex: 0 0 42%;
}
.purpose-card--star .purpose-card__body { padding: 36px 40px; align-self: center; }
@media (max-width: 880px) {
  .purpose-grid { grid-template-columns: 1fr; gap: 16px; }
  .purpose-card,
  .purpose-card--lead,
  .purpose-card--star { grid-column: 1 / -1; }
  .purpose-card--star { flex-direction: column; }
  .purpose-card--star .purpose-card__img { width: 100%; flex: none; height: 170px; min-height: 0; }
  .purpose-card--lead .purpose-card__body,
  .purpose-card--star .purpose-card__body { padding: 28px 24px; }
}
.purpose-card__label {
  font-family: var(--f-num);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 14px;
}
.purpose-card h3 {
  font-size: clamp(19px, 1.6vw + 4px, 24px);
  line-height: 1.45;
  margin: 0 0 12px;
}
.purpose-card p { color: var(--c-fg-dim); margin: 0; }

/* 2026-06-10 改修: 文字だけの締め → サロン写真を背景に敷いた full-width バナーに
   (= 「余白だらけの文字をみても感動しません」 指摘対応) */
.purpose-coda {
  position: relative;
  margin: 8px 0 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: center;
  padding: clamp(64px, 9vw, 128px) 32px;
  background-image: url('../img/gemini/insight-hero.jpg');
  background-size: cover;
  background-position: center 30%;
}
.purpose-coda::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(33, 26, 30, 0.30) 0%, rgba(33, 26, 30, 0.62) 100%);
}
.purpose-coda__inner { position: relative; z-index: 1; }
.purpose-coda__line {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw + 6px, 40px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  margin: 0;
}
.purpose-coda__sub {
  margin: 18px 0 0;
  font-size: clamp(13px, 0.8vw + 8px, 16px);
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer {
  background: var(--c-bg-deep);
  border-top: 1px solid var(--c-line);
  padding: 64px var(--gutter) 32px;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
.footer__brand { display: grid; gap: 12px; align-items: center; grid-template-columns: auto auto; }
.footer__brand .brand__name { font-size: 18px; }
.footer__tagline {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: var(--c-fg-dim);
  font-size: 13px;
}
.footer__company { color: var(--c-fg-dim); font-size: 13px; line-height: 1.9; }
.footer__company p { margin: 0; }
.footer__nav {
  display: flex; flex-wrap: wrap; gap: 16px 28px;
  font-size: 13px; color: var(--c-fg-dim);
}
.footer__nav a:hover { color: var(--c-fg); }
.footer__copyright {
  max-width: var(--maxw);
  margin: 48px auto 0;
  color: var(--c-fg-mute);
  font-size: 12px;
  font-family: var(--f-num);
  letter-spacing: 0.08em;
}

/* =========================================================================
   Scroll reveal (Lenis + ScrollTrigger 連携)
   ========================================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* =========================================================================
   Reduced motion / Accessibility
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .scroll-hint__line { animation: none; }
}

:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* =========================================================================
   2026-06-11 大規模改修 追加分
   - funnel 画像 / CONCEPT 統合チップ / INSIGHT ショーケース /
     役割×時間バンド / リール元画像 / SPOTLIGHT インタラクティブ
   ========================================================================= */

/* ----- S3 funnel: 各ステップに画像 ----- */
.funnel__step--img {
  grid-template-columns: 96px 1fr;
  position: relative;
  align-items: center;
}
.funnel__img {
  width: 96px; height: 96px;
  object-fit: cover;
  border-radius: var(--r-sm);
  display: block;
}
.funnel__step--img .funnel__num {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  padding: 2px 8px;
  font-size: 11px;
  box-shadow: 0 2px 8px rgba(33, 26, 30, 0.10);
}
@media (max-width: 520px) {
  .funnel__step--img { grid-template-columns: 72px 1fr; gap: 12px; }
  .funnel__img { width: 72px; height: 72px; }
}

/* ----- S3 CONCEPT 統合チップ (= 旧 機能(a) の 4 項目) ----- */
.concept-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}
.concept-chips li {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--c-fg-dim);
}
.concept-chips li strong {
  display: block;
  font-family: var(--f-display);
  font-size: 13px;
  color: var(--c-fg);
  margin-bottom: 3px;
}

/* ----- S4 INSIGHT ショーケース (= タブ + 自動ローテーション) ----- */
.insight-show {
  margin-top: 40px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(92, 58, 71, 0.07);
}
.insight-show__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 20px 0;
}
.insight-chip {
  padding: 9px 16px;
  border-radius: 20px;
  border: 1px solid var(--c-line);
  background: var(--c-bg-soft);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--c-fg-dim);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-out);
}
.insight-chip:hover { border-color: var(--c-accent); color: var(--c-accent); }
.insight-chip.is-active {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(194, 106, 133, 0.35);
}
.insight-show__stage {
  position: relative;
  min-height: 320px;
}
.insight-panel {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 28px;
  padding: 26px 28px 30px;
  align-items: center;
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.insight-panel.is-active {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.insight-panel__visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--r);
  display: block;
}
.insight-panel__visual--radar { display: flex; justify-content: center; }
.insight-panel__visual--radar .radar { max-width: 300px; width: 100%; height: auto; }
.insight-panel__label {
  font-family: var(--f-num);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 10px;
}
.insight-panel__body h3 {
  font-size: clamp(19px, 1.7vw + 5px, 26px);
  line-height: 1.45;
  margin: 0 0 12px;
}
.insight-panel__body > p { color: var(--c-fg-dim); font-size: 14px; margin: 0 0 10px; }
.insight-panel__data {
  background: var(--c-bg-soft);
  border-left: 3px solid var(--c-accent-2);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 12.5px;
  color: var(--c-fg-dim);
}
.insight-panel__data strong { color: var(--c-accent); }
.insight-show__progress {
  height: 3px;
  background: var(--c-bg-deep);
}
.insight-show__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--c-accent-2), var(--c-accent));
  transition: width 0.2s linear;
}
@media (max-width: 880px) {
  .insight-panel { grid-template-columns: 1fr; gap: 16px; padding: 20px 18px 24px; }
  .insight-show__stage { min-height: 480px; }
}

/* ----- S4 役割 × 時間 強調バンド ----- */
.role-time {
  margin-top: 56px;
  padding: clamp(36px, 5vw, 64px) clamp(20px, 4vw, 48px);
  background:
    radial-gradient(ellipse 70% 90% at 85% 10%, rgba(229, 159, 180, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, #FFFFFF 0%, #FDF8FA 100%);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  text-align: center;
}
.role-time__hd {
  font-size: clamp(22px, 2.4vw + 6px, 34px);
  line-height: 1.4;
  margin: 0 0 14px;
}
.role-time__lede {
  color: var(--c-fg-dim);
  font-size: clamp(13px, 0.7vw + 8px, 15px);
  line-height: 2;
  margin: 0 0 36px;
}
.role-time__lede strong { color: var(--c-accent); font-size: 1.1em; }
.role-time__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 26px;
}
@media (max-width: 880px) { .role-time__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .role-time__grid { grid-template-columns: 1fr; } }
.role-time__card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 26px 18px 22px;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.role-time__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(194, 106, 133, 0.14);
}
.role-time__num {
  font-family: var(--f-num);
  font-size: clamp(44px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 8px;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.role-time__num span {
  font-size: 0.32em;
  font-family: var(--f-display);
  font-weight: 700;
  -webkit-text-fill-color: var(--c-fg-dim);
}
.role-time__card--staff .role-time__num {
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-accent) 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.role-time__role {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 8px;
  color: var(--c-fg);
}
.role-time__what {
  font-size: 12px;
  line-height: 1.75;
  color: var(--c-fg-dim);
  margin: 0;
}
.role-time__total {
  font-size: clamp(14px, 0.9vw + 8px, 17px);
  color: var(--c-fg);
  margin: 0;
}
.role-time__total strong { color: var(--c-accent); }

/* ----- S5 リール元画像 → 生成動画 ----- */
.reel-origin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  margin: 28px 0 8px;
  flex-wrap: wrap;
}
.reel-origin__src {
  margin: 0;
  width: clamp(150px, 22vw, 220px);
}
.reel-origin__src img {
  width: 100%;
  aspect-ratio: 9 / 12;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: 0 10px 30px rgba(33, 26, 30, 0.18);
  border: 4px solid #FFFFFF;
  transform: rotate(-3deg);
}
.reel-origin__src figcaption {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-fg-dim);
  margin-top: 12px;
}
.reel-origin__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.reel-origin__arrow-line {
  display: block;
  width: clamp(60px, 8vw, 110px);
  height: 2px;
  background: linear-gradient(90deg, var(--c-accent-2), var(--c-accent));
  position: relative;
}
.reel-origin__arrow-line::after {
  content: "";
  position: absolute;
  right: -1px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left: 9px solid var(--c-accent);
}
.reel-origin__arrow-label {
  font-size: 11px;
  text-align: center;
  color: var(--c-accent);
  font-weight: 600;
  line-height: 1.6;
}

/* ----- S5 SPOTLIGHT インタラクティブ (= canvas パーティクル + 3D チルト) ----- */
.section--spotlight { position: relative; }
.spotlight-fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
/* canvas 自体は absolute のまま残す (= :not で除外しないと後勝ちで in-flow 化して空白になる) */
.section--spotlight > *:not(.spotlight-fx) { position: relative; z-index: 1; }
.feature-grid { perspective: 1100px; }
.feature-grid__link {
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}
.feature-grid__link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  background-size: 220% 100%;
  background-position: 120% 0;
  pointer-events: none;
  transition: background-position 0.7s var(--ease-out);
}
.feature-grid__link:hover::after { background-position: -120% 0; }

/* ----- 2026-06-11: リール動画 サウンドトグル (= デフォルト消音、 タップで ON) ----- */
.reel-frame { cursor: pointer; }
.reel-sound {
  position: absolute;
  left: 50%; bottom: 14px;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
  max-width: calc(100% - 24px);
  background: rgba(33, 26, 30, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 10px 16px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  z-index: 3;
  animation: reel-sound-pulse 2.4s ease-in-out infinite;
  transition: opacity 0.4s var(--ease-out), background 0.3s var(--ease-out);
}
.reel-sound small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 2px;
}
.reel-sound__icon { font-size: 20px; flex-shrink: 0; }
@keyframes reel-sound-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229, 159, 180, 0.55); }
  50%      { box-shadow: 0 0 0 9px rgba(229, 159, 180, 0); }
}
/* サウンド ON 中はコンパクト表示 + パルス停止 */
.reel-sound.is-on {
  animation: none;
  background: rgba(194, 106, 133, 0.88);
  padding: 8px 14px;
}
.reel-sound.is-on small { display: none; }

/* =========================================================================
   2026-06-11 第 3 弾
   ========================================================================= */

/* (1a) HERO 文字の視認性強化 = スロット切替中も読みやすく */
.section--hero .display,
.section--hero .lede,
.section--hero .hero__brand {
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.9),
    0 2px 18px rgba(255, 255, 255, 0.85),
    0 0 46px rgba(255, 255, 255, 0.75);
}
.slot {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  padding: 0 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* (1c) 元写真 → AI ディレクター → 生成動画 横一列フロー */
.reel-flow {
  display: grid;
  grid-template-columns: minmax(150px, 230px) 56px minmax(170px, 240px) 56px minmax(200px, 280px);
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 36px 0 20px;
}
.reel-flow__src { margin: 0; }
.reel-flow__src img {
  width: 100%;
  aspect-ratio: 9 / 12;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: 0 10px 30px rgba(33, 26, 30, 0.18);
  border: 4px solid #FFFFFF;
  transform: rotate(-3deg);
}
.reel-flow__src figcaption {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-fg-dim);
  margin-top: 12px;
}
.reel-flow__arrow { display: flex; justify-content: center; }
.reel-flow__arrow span {
  display: block;
  width: 100%;
  max-width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-accent-2), var(--c-accent));
  position: relative;
  animation: reel-arrow-flow 1.8s ease-in-out infinite;
}
.reel-flow__arrow span::after {
  content: "";
  position: absolute;
  right: -1px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left: 8px solid var(--c-accent);
}
@keyframes reel-arrow-flow {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 1; }
}
.reel-flow__director {
  background: var(--c-surface);
  border: 1px solid rgba(194, 106, 133, 0.4);
  border-radius: var(--r);
  padding: 18px 20px;
  box-shadow: 0 8px 24px rgba(194, 106, 133, 0.10);
}
.reel-flow__director-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-accent);
  margin: 0 0 10px;
  text-align: center;
}
.reel-flow__director ul { display: grid; gap: 6px; }
.reel-flow__director li {
  font-size: 12px;
  color: var(--c-fg-dim);
  padding-left: 18px;
  position: relative;
}
.reel-flow__director li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--c-accent-2);
  font-weight: 700;
}
.reel-flow__result .reel-frame { max-width: 280px; margin: 0 auto; }
@media (max-width: 880px) {
  /* モバイルは 元写真 → ディレクター を横 2 列、 動画は下にセンター */
  .reel-flow {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 14px;
  }
  .reel-flow__arrow { display: none; }
  .reel-flow__result { grid-column: 1 / -1; }
}

/* (1d) 補足 4 点をコンパクトに */
.reel-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 0 0 28px;
  counter-reset: rn;
}
.reel-notes li {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  padding: 12px 14px 12px 40px;
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--c-fg-dim);
  position: relative;
  counter-increment: rn;
}
.reel-notes li::before {
  content: counter(rn);
  position: absolute;
  left: 12px; top: 12px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #FFFFFF;
  font-family: var(--f-num);
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.reel-notes li strong {
  display: block;
  font-size: 12px;
  color: var(--c-fg);
  margin-bottom: 2px;
}

/* (2a) HERO 背景動画 (= Veo 生成、 写真 poster fallback) */
.hero__scene--photo video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 72% 30%;
}

/* =========================================================================
   2026-06-11 第 4 弾
   ========================================================================= */

/* (1) 見出しの不自然な改行対策 */
.nowrap { white-space: nowrap; }
.section-head h2,
.spot-block__head h3 { text-wrap: balance; }
.section--spotlight > .section-head { max-width: 920px; }
.feature-grid__body h3 { white-space: nowrap; font-size: clamp(13px, 0.55vw + 7px, 15px); }

/* (2) 差替ワークフロー アニメデモ */
.swap-demo {
  max-width: 980px;
  margin: 0 auto 26px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FDF8FA 100%);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 26px 26px 20px;
  box-shadow: 0 10px 34px rgba(92, 58, 71, 0.08);
}
.swap-demo__stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 22px;
  align-items: start;
}
.swap-demo__card-label {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--c-accent);
  margin: 0 0 10px;
  transition: opacity 0.4s;
}
.swap-demo__card--plan { margin: 0; }
.swap-demo__card--plan img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
  border-radius: var(--r-sm);
  border: 2px dashed rgba(194, 106, 133, 0.5);
  padding: 4px;
  background: var(--c-surface);
}
.swap-demo__card--plan figcaption {
  font-size: 11px;
  color: var(--c-fg-dim);
  text-align: center;
  margin-top: 8px;
}
.swap-demo__viewfinder {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: #211A1E;
}
.swap-demo__viewfinder img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: opacity 0.5s;
}
.swap-demo.is-cam .swap-demo__viewfinder img { opacity: 1; }
.swap-demo__reticle {
  position: absolute; inset: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 6px;
  pointer-events: none;
}
.swap-demo__reticle::before, .swap-demo__reticle::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  border: 2.5px solid #FFFFFF;
}
.swap-demo__reticle::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.swap-demo__reticle::after  { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }
.swap-demo__flash {
  position: absolute; inset: 0;
  background: var(--c-surface);
  opacity: 0;
  pointer-events: none;
}
.swap-demo__flash.is-fire { animation: swap-flash 0.45s ease-out; }
@keyframes swap-flash {
  0% { opacity: 0.95; }
  100% { opacity: 0; }
}
.swap-demo__strip {
  display: flex;
  gap: 6px;
  background: #2A2A30;
  border-radius: var(--r-sm);
  padding: 10px;
  align-items: center;
}
.swap-demo__clip {
  height: 64px;
  flex: 1;
  border-radius: 6px;
  background: linear-gradient(135deg, #F6D9E0, #E59FB4);
  opacity: 0.55;
}
.swap-demo__clip--sm { flex: 0.55; }
.swap-demo__clip--target {
  flex: 1.7;
  position: relative;
  opacity: 1;
  overflow: hidden;
  outline: 2px dashed rgba(229, 159, 180, 0.9);
  outline-offset: 2px;
  transition: outline-color 0.4s;
}
.swap-demo__clip--target img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
.swap-demo__clip--target em {
  position: absolute;
  left: 6px; bottom: 5px;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(33, 26, 30, 0.65);
  border-radius: 6px;
  padding: 2px 8px;
}
.swap-demo.is-done .swap-demo__clip--target {
  outline: 2px solid #4CAF50;
}
.swap-demo__done {
  font-size: 12px;
  font-weight: 700;
  color: #2E7D32;
  margin: 10px 0 0;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.45s, transform 0.45s;
}
.swap-demo.is-done .swap-demo__done { opacity: 1; transform: none; }
/* 飛んでいくゴースト画像 */
.swap-demo__ghost {
  position: absolute;
  width: 120px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(33, 26, 30, 0.35);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  left: 0; top: 0;
}
.swap-demo__ghost.is-fly {
  transition: transform 0.9s cubic-bezier(0.5, 0, 0.3, 1), opacity 0.2s, width 0.9s;
  opacity: 1;
}
@media (max-width: 880px) {
  .swap-demo__stage { grid-template-columns: 1fr; gap: 16px; }
  .swap-demo__ghost { display: none; }
}


/* =========================================================================
   NOIR THEME 2026-06-13 — ブループリント線画ウォークスルー (Keigo デモ) 連動の
   ダーク再構成。 canvas は z0 (背面)、 コンテンツは z2、 ビネット z1。
   可読性はダークガラス面 (--c-surface) + バックドロップブラーで確保する。
   ========================================================================= */

/* レイヤリング: 背景 canvas (z0) の上にコンテンツ */
main, .site-footer { position: relative; z-index: 2; }
/* ビネット (= デモ移植。 画面端を僅かに沈めて視線を中央へ) */
body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(ellipse at center, transparent 52%, rgba(8, 4, 12, 0.55) 100%);
}

/* ヘッダー = ダークガラス */
.site-header { background: rgba(12, 7, 18, 0.45); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.site-header.is-scrolled { background: rgba(12, 7, 18, 0.82); }

/* ロゴ = Cormorant Garamond italic + 「ai」 ローズ→シャンパン グラデ (デモ準拠) */
.brand__name,
.hero__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--c-fg);
  text-shadow: 0 0 28px rgba(243, 184, 212, 0.35);
}
.brand__name { font-size: 27px; }
.hero__brand-name {
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: 0.18em;
  text-shadow: 0 0 60px rgba(243, 184, 212, 0.35);
}
.brand__name::first-letter,
.hero__brand-name::first-letter {
  font-size: 1em;
  letter-spacing: inherit;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.brand__ai {
  background: linear-gradient(90deg, #f0a8c8, #e8c89a);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* 2026-06-13: 店舗1 がゴールド背景になり「ai」グラデが溶けるため白単色に (Keigo 指示) */
.hero__brand-name,
.hero__brand-name .brand__ai {
  background: none;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

/* HERO: 旧グラデ背景は撤去 (3D 線画が主役)。 コピーは薄いガラスに乗せて可読性確保 */
.hero__scene { display: none; }
.section--hero { background: transparent; min-height: 88vh; min-height: 88dvh; }
.hero__copy {
  background: rgba(12, 7, 18, 0.42);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(240, 168, 200, 0.14);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.5vw, 44px);
  max-width: min(var(--maxw), 92vw);
}
.hero__brand-sub { color: var(--c-fg-dim); letter-spacing: 0.3em; }
.hero__scroll-hint { color: rgba(243, 207, 224, 0.55); }
.scroll-hint__label { letter-spacing: 0.5em; }

/* 見出しまわり: eyebrow をデモのローズ発光トーンに */
.eyebrow { color: #e9b8cc; letter-spacing: 0.35em; text-shadow: 0 1px 12px rgba(12, 7, 18, 0.95); }
h2, h3 {
  /* 明るい線画の上でも読めるよう 2 層シャドウ (近距離 + ワイド) */
  text-shadow: 0 2px 14px rgba(12, 7, 18, 0.92), 0 0 46px rgba(12, 7, 18, 0.85);
}
.section-lede, .section-head p { text-shadow: 0 1px 10px rgba(12, 7, 18, 0.9); }

/* セクション帯はすべて透過 (線画を透かす)。 ガラス面はカード側が担う */
.section { background: transparent; }

/* 写真はダーク地に馴染ませる (僅かに沈め + 白フチ → 発光ローズの細フチ) */
main img { filter: brightness(0.94) saturate(0.96); border-radius: var(--r-sm); }
.site-header img, .site-footer img { filter: none; }

/* カード共通: ダークガラス + 細い発光ボーダー (= 小さめのコンテンツ片のみ)
   ※ spot-block (顔測定・動画 等の全幅ブロック) は中身が透明なため blur すると
     背景の線画がブロック全面でぼやけて目立つ → blur を外し 3D をそのまま見せる
     (2026-06-13 Keigo 指示) */
.challenge-card,
.feature-grid__link,
.concept-chip,
.insight-panel,
.faq-item,
.workflow-step {
  border: 1px solid rgba(240, 168, 200, 0.13);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}

/* 旧ライトテーマ用の白ハイライト陰影を無効化 */
.hero__brand-name { /* text-shadow は上で再定義済 */ }
.display, .display__line { text-shadow: none; }

/* フッター */
.site-footer { background: rgba(12, 7, 18, 0.78); border-top: 1px solid rgba(240, 168, 200, 0.12); }

/* ---- HERO ジャーニーゾーン (2026-06-13 v2 = スロット廃止、 一言ずつ出す) ---- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.section--hero.section--journey {
  display: block;
  min-height: 0;
  height: 540vh;          /* = 背景を見せる助走区間 (2026-06-13: 340→540vh = 文字を読む余裕を拡大) */
  padding: 0;
  background: transparent;
}
.journey-stage {
  position: fixed; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; text-align: center;
  padding: 0 var(--gutter);
  opacity: 0; transform: translateY(28px);
  pointer-events: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.journey-stage.on { opacity: 1; transform: translateY(0); }
/* 文字の背後に柔らかい暗のハロー (= bloom の白い光芒に白文字が溶けるのを防ぐ。
   端は透明なので背景の線画は見え続ける) */
.journey-stage::before {
  content: '';
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(94vw, 1040px); height: min(66vh, 560px);
  background: radial-gradient(closest-side,
    rgba(12, 7, 18, 0.8) 0%, rgba(12, 7, 18, 0.55) 55%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}
.journey-stage--cta.on { pointer-events: auto; }
.journey-en {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.95rem; letter-spacing: 0.45em; color: #e9b8cc;
  margin: 0; text-shadow: 0 1px 12px rgba(12, 7, 18, 0.9);
}
.journey-word {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2rem, 5.6vw, 4.4rem);
  letter-spacing: 0.1em;
  line-height: 1.3;
  /* 2026-06-13: ピンクグラデを廃し白単色 (= ロゴと統一)。 「AI に任せる。」 のみ --grad で彩色 */
  color: #ffffff;
}
.journey-word--grad {
  background: linear-gradient(95deg, #fff 10%, #f3b8d4 38%, #cfa8f0 62%, #ecca96 95%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.journey-sub {
  margin: 0; font-size: clamp(11px, 1vw + 2px, 14px);
  letter-spacing: 0.3em; color: var(--c-fg-dim);
  text-shadow: 0 1px 10px rgba(12, 7, 18, 0.9);
}
.journey-lede {
  margin: 0; max-width: 680px; line-height: 2.1;
  color: var(--c-fg);
  text-shadow: 0 1px 10px rgba(12, 7, 18, 0.92);
}
.hero__scroll-hint--fixed {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; transition: opacity 0.5s ease;
}
/* モーション無効環境では静的に縦積み表示 */
@media (prefers-reduced-motion: reduce) {
  .section--hero.section--journey { height: auto; padding: 140px 0 80px; }
  .journey-stage { position: static; opacity: 1; transform: none; pointer-events: auto; }
  .hero__scroll-hint--fixed { display: none; }
}
