/* ============================================================
   AEO STUDIO — 広告LP
   Design concept: 「紙の信頼 × 知性の闇」
   高級専門ファームの紙面（明朝・余白・ヘアライン）と、
   AIラボの精密さ（モノスペース・精密グリッド・ティールの信号光）を
   ロゴのブルー→ティールに沿って一つのシステムに統合する。
   ============================================================ */

:root {
  /* --- Neutrals: cool navy ink / paper --- */
  --ink:        #081120;                /* deep navy ink（ロゴのAEO文字色に一致） */
  --ink-2:      #0E1B30;
  --bg:         #F6F8FB;                /* cool paper */
  --bg-2:       #ECF1F7;                /* tinted band */
  --surface:    #FFFFFF;
  --text:       #2A3548;
  --muted:      #5C6A80;
  --faint:      #8C97A9;                /* 装飾・罫線専用。本文テキストには使わない（AA不足） */
  --line:       #E2E8F1;
  --line-2:     #D2DBE7;

  /* --- Brand accents（ロゴのグラデーションに一致） --- */
  --blue:       #0B73FF;                /* electric blue */
  --blue-ink:   #0A57C2;                /* AA-safe deep blue for text */
  --blue-soft:  #EAF2FF;
  --teal:       #00E0B8;                /* AI signal（ダーク面のみ） */
  --teal-ink:   #0B8A74;                /* AA-safe teal for light surfaces */
  --champagne:  #F7E7C4;                /* サロン文脈の温度感を足す補助色 */
  --rose-soft:  #FFF1F4;                /* 美容サロンの柔らかい補助面 */
  --grad:       linear-gradient(120deg, #0B73FF 10%, #00C9A7 100%);  /* 装飾専用（ボーダー・罫線） */
  --grad-cta:   linear-gradient(120deg, #0A57C2 10%, #0A7A66 100%); /* 白文字を載せる面用（AA 4.5:1+） */
  --grad-text:  linear-gradient(100deg, #57B6FF, #00E0B8);

  /* --- Dark-surface tokens --- */
  --d-line:     rgba(140, 172, 255, .14);
  --d-soft:     rgba(255, 255, 255, .04);
  --d-text:     rgba(255, 255, 255, .72);
  --d-faint:    rgba(255, 255, 255, .45);

  /* --- Signal --- */
  --good:       #00B47B;
  --warn:       #B06A0A;               /* AA-safe amber for text/markers */
  --err:        #C2362B;               /* AA-safe red (白面 5.4:1) */

  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  22px;
  --maxw:       1180px;

  --shadow-sm:  0 1px 2px rgba(8, 17, 32, .05), 0 6px 18px -8px rgba(8, 17, 32, .08);
  --shadow:     0 2px 6px rgba(8, 17, 32, .05), 0 18px 44px -16px rgba(8, 17, 32, .14);
  --shadow-lg:  0 4px 10px rgba(8, 17, 32, .06), 0 36px 80px -28px rgba(8, 17, 32, .26);

  /* --- Motion: one easing language --- */
  --ease-out:   cubic-bezier(.16, 1, .3, 1);
  --ease-std:   cubic-bezier(.4, 0, .2, 1);

  /* --- Type: 明朝（信頼）× ゴシック（読み）× モノ（精密） --- */
  --font-display: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --font-body:    "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, "SF Mono", monospace;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
:where(section[id]) { scroll-margin-top: 72px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  font-size: 15.5px;
  letter-spacing: .015em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
sup { font-size: .6em; vertical-align: super; }

/* 日本語の改行: 文節単位（対応UAのみ）。.nb は語句を分割させない */
h1, h2, h3, h4, .nayami-list p, .lead, .cin-sub, .pdesc, .shift-bridge, .nayami-bridge { word-break: auto-phrase; line-break: strict; }
.nb { white-space: nowrap; }
/* モバイルでは本文中の .nb を解除（320〜375pxでのはみ出し・孤立行防止） */
@media (max-width: 760px) { .lead .nb, .cin-sub .nb, .shift-bridge .nb { white-space: normal; } }
/* 表示幅別の改行制御: br.sp = モバイルのみ / br.pc = PCのみ */
@media (min-width: 761px) { br.sp { display: none; } }
@media (max-width: 760px) { br.pc { display: none; } }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { position: relative; padding: clamp(72px, 9.5vw, 136px) 0; }
.section.alt { background: var(--bg-2); }
.center { text-align: center; }

/* セクション見出しの言語: モノの番号ラベル＋明朝の見出し */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-ink);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--blue); }
.eyebrow.center::before { display: none; }
.eyebrow.center::after { display: none; }
.dark .eyebrow { color: var(--teal); }

.h-sec {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(27px, 3.9vw, 42px);
  line-height: 1.36; letter-spacing: .025em;
  margin: 16px 0 0; color: var(--ink);
  text-wrap: balance;
}
.dark .h-sec { color: #fff; }

.lead {
  color: var(--muted); font-size: clamp(14.5px, 1.6vw, 17px);
  line-height: 1.95; margin-top: 22px; max-width: 56ch; text-wrap: pretty;
}
.center .lead { margin-left: auto; margin-right: auto; }
.dark .lead { color: var(--d-text); }
.hl {
  background: linear-gradient(transparent 64%, rgba(0, 224, 184, .35) 64%);
  padding: 0 .05em; font-weight: 700; color: var(--ink);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 15.5px;
  padding: 16px 30px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .18s var(--ease-std), box-shadow .18s var(--ease-std),
              background .18s var(--ease-std), border-color .18s var(--ease-std);
  white-space: nowrap; line-height: 1;
}
.btn-primary {
  color: #fff;
  background: var(--grad-cta);
  box-shadow: 0 10px 26px -8px rgba(11, 115, 255, .55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(11, 115, 255, .6); }
.btn:active { transform: translateY(0) scale(.985); transition-duration: .06s; }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-ink); transform: translateY(-2px); }
.btn-lg { padding: 19px 38px; font-size: 16.5px; }
.btn .arr { transition: transform .16s var(--ease-std); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Header ---------- */
.head {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 16px 0; border-bottom: 1px solid transparent;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease, padding .3s ease;
}
.head.scrolled {
  background: rgba(255, 255, 255, .9);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  border-color: var(--line);
  padding: 11px 0;
  box-shadow: 0 4px 24px -16px rgba(8, 17, 32, .3);
}
.head .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: inline-flex; align-items: center; line-height: 0; }
.logo-img { height: 48px; width: auto; display: block; }
.head.scrolled .logo-img { height: 42px; }
/* ヒーロー（ダーク）上は白ロゴ、スクロール後の白ヘッダーはカラーロゴ */
.logo .logo-on-light { display: none; }
.head.scrolled .logo .logo-on-dark { display: none; }
.head.scrolled .logo .logo-on-light { display: block; }
.foot .logo-img { height: 46px; }
@media (max-width: 400px) { .logo-img { height: 38px; } }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, .85); transition: color .2s; }
.nav a:hover { color: #fff; }
.head.scrolled .nav a { color: var(--muted); }
.head.scrolled .nav a:hover { color: var(--blue-ink); }
/* CTAはヘッダー状態に関わらず常に白文字（.head.scrolled .nav a より高い詳細度が必要） */
.head .nav a.nav-cta, .head.scrolled .nav a.nav-cta,
.head .nav a.nav-cta:hover, .head.scrolled .nav a.nav-cta:hover { color: #fff; }
.head .nav-cta { padding: 11px 22px; font-size: 14px; }
@media (max-width: 880px) { .nav a:not(.nav-cta) { display: none; } }

/* ============================================================
   00 HERO — フルブリード動画（静かなシネマ）
   ============================================================ */
.hero.cinema {
  position: relative;
  min-height: 100vh;   /* svh非対応UA向けフォールバック */
  min-height: 100svh;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 0 0 clamp(76px, 11vh, 124px);
  background: var(--ink); color: #fff;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 64% 40%; z-index: 0;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 17, 32, .9) 0%, rgba(8, 17, 32, .52) 42%, rgba(8, 17, 32, .1) 74%),
    linear-gradient(180deg, rgba(8, 17, 32, .72) 0%, transparent 30%, transparent 52%, var(--ink) 100%);
}
.hero.cinema .wrap { position: relative; z-index: 2; }
.cin-copy { max-width: 760px; }

/* ---- hero--ad: 広告ムービーが主役のFV。コピーは動画内にあるため
       スクリムは上下の縁のみ、CTAは右下へ（動画の字幕・ロゴと重ねない） ---- */
.hero--ad .hero-scrim {
  background:
    linear-gradient(180deg, rgba(8, 17, 32, .5) 0%, rgba(8, 17, 32, 0) 16%, rgba(8, 17, 32, 0) 70%, var(--ink) 100%);
}
.hero--ad .hero-bg { object-position: center; }
/* CTAは左下（動画の電話モック=右側と重ねない。冒頭3秒の字幕とは僅かに近接するのみ） */
@media (max-width: 720px) {
  .hero--ad .cin-copy { margin: 0 auto; text-align: center; }
  .hero--ad .hero-cta { justify-content: center; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px 8px 12px; border-radius: 999px;
  background: rgba(8, 17, 32, .38); border: 1px solid rgba(255, 255, 255, .22);
  font-size: 12.5px; font-weight: 500; letter-spacing: .06em; color: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.hero-badge .badge-ic { display: inline-grid; place-items: center; width: 16px; height: 16px; color: var(--teal); }
.hero-badge .badge-ic svg { width: 15px; height: 15px; }

.hero.cinema h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(37px, 5.6vw, 70px);
  line-height: 1.32; letter-spacing: .02em;
  margin: 26px 0 0; text-wrap: balance;
  text-shadow: 0 2px 30px rgba(8, 17, 32, .45);
}
.hero.cinema h1 .grad { color: var(--teal); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero.cinema h1 .grad {
    background: var(--grad-text);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
}
.cin-sub {
  margin-top: 22px; font-size: clamp(14.5px, 1.7vw, 17.5px);
  color: rgba(255, 255, 255, .88); line-height: 2; max-width: 46ch;
  text-shadow: 0 1px 18px rgba(8, 17, 32, .5);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-micro {
  margin-top: 16px; font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .08em; color: rgba(255, 255, 255, .55);
}
.hv-chip {
  position: absolute; top: 84px; right: 18px; z-index: 2;
  font-size: 11px; letter-spacing: .06em; color: rgba(255, 255, 255, .88);
  background: rgba(8, 17, 32, .6); border: 1px solid rgba(255, 255, 255, .18);
  padding: 3px 10px; border-radius: 999px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
/* 背景動画の一時停止トグル（WCAG 2.2.2 Pause, Stop, Hide） */
.vid-toggle {
  position: absolute; right: 18px; bottom: 18px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: rgba(8, 17, 32, .55); color: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 255, 255, .25);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s;
}
.vid-toggle:hover { background: rgba(8, 17, 32, .75); border-color: rgba(255, 255, 255, .5); }
.vid-toggle svg { width: 15px; height: 15px; }
.vid-toggle .ic-play { display: none; }
.vid-toggle[aria-pressed="true"] .ic-pause { display: none; }
.vid-toggle[aria-pressed="true"] .ic-play { display: block; }

.cin-scroll {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .3em; color: rgba(255, 255, 255, .6);
}
.cin-scroll i { display: block; width: 1px; height: 40px; position: relative; overflow: hidden; background: rgba(255, 255, 255, .18); }
.cin-scroll i::after {
  content: ""; position: absolute; left: 0; top: -40px; width: 100%; height: 40px;
  background: linear-gradient(180deg, transparent, var(--teal));
  animation: cueDown 2.1s ease-in-out infinite;
}
@keyframes cueDown { 0% { top: -40px; } 65%, 100% { top: 40px; } }
@media (max-width: 920px) {
  .hero.cinema { padding-bottom: 92px; }
  .hero.cinema h1 { font-size: clamp(33px, 9vw, 46px); }
  .hero-bg { object-position: 58% center; }
  .hv-chip { top: 76px; }
}

/* ============================================================
   DARK SECTIONS — 精密グリッド＋オーロラ（AIラボの空気）
   ============================================================ */
.dark { background: var(--ink); color: #fff; overflow: hidden; }
.dark::before {
  content: ""; position: absolute; inset: -12%;
  background:
    radial-gradient(860px 520px at 84% -4%, rgba(11, 115, 255, .22), transparent 60%),
    radial-gradient(640px 440px at 8% 104%, rgba(0, 224, 184, .1), transparent 62%);
  pointer-events: none;
}
.dark::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image:
    linear-gradient(rgba(140, 172, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 172, 255, .055) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(85% 80% at 50% 20%, #000 25%, transparent 80%);
  mask-image: radial-gradient(85% 80% at 50% 20%, #000 25%, transparent 80%);
}
.dark .wrap { position: relative; z-index: 1; }

/* ---------- 01 THE SHIFT ---------- */
.shift { padding-top: 0; }
/* 視覚ラベル＋商標注記：協賛・提携と誤認させないための明示（フッター注記と二重化） */
.mq-label {
  position: relative; z-index: 1; text-align: center;
  padding: 26px 24px 0; margin: 0;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: .28em; color: var(--d-faint);
}
.mq {
  position: relative; z-index: 1; overflow: hidden;
  padding: 20px 0; border-bottom: 1px solid var(--d-line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.mq-note {
  position: relative; z-index: 1; text-align: right;
  margin: 0; padding: 8px 18px 0;
  font-size: 10px; letter-spacing: .02em; color: rgba(255, 255, 255, .28);
}
.mq-track { display: flex; width: max-content; animation: mq 44s linear infinite; }
/* 1セット幅 ≥ ビューポート幅を保証（min-width:100vw）。2セット構成で -50% 移動＝ちょうど1セット分なので、
   どの画面幅でも右端が空かずシームレスに無限ループする */
.mq-set { display: flex; align-items: center; gap: 48px; justify-content: space-around; min-width: 100vw; padding: 0 24px; }
@keyframes mq { to { transform: translateX(-50%); } }
.trust-chip {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 16px; font-weight: 500;
  letter-spacing: .04em; color: rgba(255, 255, 255, .82); white-space: nowrap;
}
/* 各社アイコンはモノトーン統一（ブランドカラーの再現を避け、商標利用を「出所表示」最小限に留める） */
.trust-chip .ai-ic { width: 22px; height: 22px; flex: 0 0 auto; color: rgba(255, 255, 255, .92); }
/* ホバー/フォーカスで一時停止（WCAG 2.2.2） */
.mq:hover .mq-track, .mq:focus-within .mq-track { animation-play-state: paused; }

.shift .center { margin-top: clamp(64px, 8vw, 104px); }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin: clamp(44px, 6vw, 68px) auto 0; max-width: 1020px;
  border-top: 1px solid var(--d-line); border-bottom: 1px solid var(--d-line);
}
.stat { padding: clamp(26px, 3.4vw, 40px) 24px; text-align: center; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 1px; background: var(--d-line);
}
.stat-num {
  font-family: var(--font-mono); font-weight: 600;
  font-size: clamp(42px, 5.4vw, 62px); line-height: 1.1; color: #fff;
  font-variant-numeric: tabular-nums; letter-spacing: 0;
}
.stat-num .count { color: var(--teal); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .stat-num .count {
    background: var(--grad-text);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
}
.stat-pre { font-size: .72em; vertical-align: .08em; margin-right: 2px; }
.stat-unit { font-size: .38em; font-weight: 500; color: var(--d-text); margin-left: 6px; letter-spacing: .04em; }
.stat-lbl { margin-top: 10px; font-size: 13px; color: var(--d-text); letter-spacing: .02em; }
.stat-lbl sup { color: var(--teal); font-family: var(--font-mono); }
@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 22px 12px; }
  .stat + .stat::before { left: 18%; right: 18%; top: 0; bottom: auto; width: auto; height: 1px; }
}

.shift-bridge {
  margin-top: clamp(36px, 5vw, 54px); text-align: center;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(16px, 2vw, 20.5px); line-height: 2; color: rgba(255, 255, 255, .86);
}
.shift-bridge b { font-weight: 700; color: var(--teal); }
.src-note { margin-top: 22px; text-align: center; font-size: 11.5px; line-height: 1.9; color: rgba(255, 255, 255, .62); }

/* ============================================================
   02 NAYAMI — こんなお悩み
   ============================================================ */
.nayami-grid {
  display: grid; grid-template-columns: .92fr 1.08fr;
  gap: clamp(34px, 5vw, 68px); align-items: center;
  margin-top: clamp(36px, 5vw, 56px);
}
.nayami-photo { position: relative; max-width: 440px; justify-self: end; margin: 0; }
.nayami-photo img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.nayami-photo::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 42%, rgba(8, 17, 32, .76) 100%);
}
.nayami-photo figcaption {
  position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2;
  color: #fff; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(16px, 1.9vw, 20px); line-height: 1.8; letter-spacing: .02em;
  text-shadow: 0 1px 14px rgba(8, 17, 32, .6);
}
.nayami-photo figcaption .gold { color: #FFDFAC; }
.nayami-photo figcaption small {
  display: block; margin-top: 6px; font-family: var(--font-body); font-weight: 400;
  font-size: 10.5px; color: rgba(255, 255, 255, .72);
}
.nayami-list { list-style: none; }
.nayami-list li { display: flex; align-items: baseline; gap: 20px; padding: 23px 4px; border-top: 1px solid var(--line-2); }
.nayami-list li:last-child { border-bottom: 1px solid var(--line-2); }
.nayami-list i {
  font-family: var(--font-mono); font-style: normal; font-weight: 600;
  font-size: 14px; letter-spacing: .1em; color: var(--blue-ink); flex: 0 0 2.4em;
}
.nayami-list p {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(16.5px, 2vw, 20.5px); color: var(--ink); line-height: 1.8;
}
.nayami-bridge {
  text-align: center; margin-top: clamp(38px, 5vw, 56px);
  font-family: var(--font-display); font-size: clamp(15.5px, 1.8vw, 19px);
  color: var(--text); line-height: 2;
}
.nayami-bridge b { color: var(--blue-ink); font-weight: 700; }
@media (max-width: 920px) {
  .nayami-grid { grid-template-columns: 1fr; }
  .nayami-photo { justify-self: center; max-width: 400px; }
}

/* ============================================================
   02.5 DIAGNOSTIC PREVIEW — 無料診断の具体化
   ============================================================ */
.diagnostic {
  background:
    linear-gradient(180deg, var(--bg) 0%, #FFFFFF 52%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.diag-wrap {
  display: grid; grid-template-columns: .92fr 1.08fr;
  gap: clamp(34px, 5.5vw, 72px); align-items: center;
}
.diag-copy .diagnostic-summary {
  margin-top: 24px; padding: 20px 22px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line); border-left: 3px solid var(--teal-ink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  color: var(--ink); font-size: 15px; line-height: 2; font-weight: 500;
}
.diag-note {
  margin-top: 16px; color: var(--muted); font-size: 13px; line-height: 1.9;
}
.diag-report {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .96), rgba(246, 248, 251, .9)) padding-box,
    linear-gradient(130deg, rgba(11, 115, 255, .42), rgba(0, 201, 167, .42), rgba(247, 231, 196, .8)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(24px, 3vw, 34px);
}
.report-head {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em;
  color: var(--muted); text-transform: uppercase;
}
.report-head b {
  letter-spacing: .08em; color: var(--blue-ink);
  background: var(--blue-soft); border: 1px solid #C8DCFB;
  border-radius: 999px; padding: 4px 10px;
}
.report-score {
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center;
  margin-top: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line);
}
.report-score div { min-width: 132px; }
.rs-label {
  display: block; font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .08em; color: var(--muted); text-transform: uppercase;
}
.report-score strong {
  font-family: var(--font-mono); font-size: 58px; line-height: 1; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.report-score div span:last-child { color: var(--muted); font-family: var(--font-mono); }
.report-score p { font-size: 14px; line-height: 1.9; color: var(--text); }
.report-bars { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.report-bars div {
  display: grid; grid-template-columns: 108px 1fr 54px; gap: 12px; align-items: center;
  font-size: 12.5px; color: var(--text);
}
.report-bars i {
  position: relative; display: block; height: 8px; border-radius: 999px;
  background: var(--line); overflow: hidden;
}
.report-bars i::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: var(--w);
  background: var(--grad-cta); border-radius: inherit;
}
.report-bars b { font-size: 12px; color: var(--blue-ink); text-align: right; }
.diag-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-top: clamp(34px, 4.5vw, 54px);
}
.diag-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}
.dc-num {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; color: var(--teal-ink);
}
.diag-card h3 {
  margin-top: 12px; font-size: 16px; color: var(--ink);
  font-weight: 700; line-height: 1.5;
}
.diag-card p { margin-top: 8px; font-size: 13px; color: var(--muted); line-height: 1.85; }
/* 中盤CTA: 診断価値を見た直後に行動できる出口 */
.diag-cta { margin-top: clamp(36px, 5vw, 52px); text-align: center; }
.diag-cta-micro {
  margin-top: 14px; font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .08em; color: var(--muted);
}
@media (max-width: 760px) {
  /* モバイルは「あなたの」を省いて1行に収める */
  .diag-cta .diag-cta-pc { display: none; }
  .diag-cta .btn-lg { padding: 17px 26px; font-size: 15.5px; }
}

@media (max-width: 920px) {
  .diag-wrap { grid-template-columns: 1fr; }
  .diag-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .diag-grid { grid-template-columns: 1fr; }
  .report-score { grid-template-columns: 1fr; gap: 12px; }
  .report-bars div { grid-template-columns: 92px 1fr; }
  .report-bars b { grid-column: 2; text-align: left; margin-top: -8px; }
}

/* ============================================================
   03 AEO EXPLAINER — 定義（answer-first）＋回答カードのモック
   ============================================================ */
.aeo-split {
  display: grid; grid-template-columns: 1.04fr .96fr;
  gap: clamp(40px, 5.5vw, 72px); align-items: center;
}
@media (max-width: 920px) { .aeo-split { grid-template-columns: 1fr; gap: 56px; } }

/* AEOの見本: AIが1文で抜ける定義ブロック（JSON-LDのspeakable対象） */
.answer-first {
  margin: 26px 0 0; padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--line); border-left: 3px solid var(--blue);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-size: 16.5px; line-height: 2; color: var(--ink); font-weight: 500;
}
.answer-first b { color: var(--blue-ink); font-weight: 700; }
@media (max-width: 640px) { .answer-first { font-size: 14.5px; padding: 16px 18px; } }

/* AI回答カード: 紙面の上に浮かぶ「黒曜石のガラス」——このLPの焦点 */
.hero-visual { position: relative; }
.answer-card {
  position: relative; z-index: 2;
  border-radius: var(--radius-lg); padding: 24px;
  color: rgba(255, 255, 255, .88);
  border: 1px solid transparent;
  background:
    linear-gradient(165deg, #0D1A2E 0%, #081120 100%) padding-box,
    linear-gradient(135deg, rgba(11, 115, 255, .7), rgba(0, 224, 184, .55)) border-box;
  box-shadow: 0 40px 80px -32px rgba(8, 17, 32, .5), 0 0 0 6px rgba(11, 115, 255, .05);
}
.answer-card .ac-head { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.answer-card .ac-ai {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: var(--grad); box-shadow: 0 6px 16px -6px rgba(11, 115, 255, .7);
}
.answer-card .ac-ai svg { width: 17px; height: 17px; }
.answer-card .ac-title { font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: .08em; color: rgba(255, 255, 255, .6); }
.ac-qa { display: flex; flex-direction: column; gap: 14px; padding: 16px 0; }
.ac-row { display: flex; gap: 12px; align-items: flex-start; }
.ac-av {
  width: 26px; height: 26px; border-radius: 8px; flex: 0 0 auto;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 600; font-size: 12px;
}
.ac-av.q { background: rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .85); }
.ac-av.a { background: var(--grad-cta); color: #fff; }
.answer-card .ac-q { font-size: 14.5px; font-weight: 700; color: #fff; line-height: 1.6; padding-top: 3px; }
.answer-card .ac-a { font-size: 13.5px; line-height: 1.95; color: rgba(255, 255, 255, .8); }
.answer-card .ac-a b { color: #fff; }
.cite {
  display: inline-flex; align-items: baseline; vertical-align: text-top;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  padding: 1px 6px; border-radius: 6px; margin: 0 2px; transform: translateY(-1px);
  background: rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .7);
}
.cite.you { background: var(--blue-ink); color: #fff; box-shadow: 0 0 0 3px rgba(11, 115, 255, .3); }
.answer-card .ac-sources { padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .1); display: flex; flex-direction: column; gap: 9px; }
.src-row { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.src-row .n { font-family: var(--font-mono); font-weight: 600; font-size: 11px; color: rgba(255, 255, 255, .4); width: 14px; }
.src-row .nm { font-family: var(--font-mono); font-size: 11.5px; color: rgba(255, 255, 255, .6); }
.src-row.you .nm { color: var(--teal); font-weight: 600; }
.src-row.you .badge-you {
  margin-left: auto; font-size: 10px; font-weight: 700; color: #fff;
  background: var(--blue-ink); padding: 2px 9px; border-radius: 999px;
}
.answer-card .ac-note { margin-top: 14px; font-size: 11px; line-height: 1.7; color: rgba(255, 255, 255, .66); }

/* 浮遊する補足カード */
.float-card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 11px; padding: 12px 16px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow);
}
.float-card .fc-ic {
  width: 30px; height: 30px; border-radius: 9px; flex: 0 0 auto;
  display: grid; place-items: center; background: var(--blue-soft); color: var(--blue-ink);
}
.float-card .fc-ic svg { width: 16px; height: 16px; }
.float-card .fc-body { display: flex; flex-direction: column; line-height: 1.3; }
.float-card .fc-num { font-weight: 700; font-size: 13.5px; color: var(--ink); }
.float-card .fc-lbl { font-size: 11px; color: var(--muted); margin-top: 1px; }
.fc-tr { top: -22px; right: -16px; animation: floaty 7s ease-in-out infinite; }
.fc-bl { bottom: -24px; left: -26px; animation: floaty 8s ease-in-out 1.2s infinite; }
/* フロートカードが法務注記に重ならないよう、カード下部に余白を確保（カード表示幅のみ） */
@media (min-width: 921px) { .aeo-split .answer-card { padding-bottom: 72px; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (max-width: 920px) {
  .float-card { display: none; }
  .answer-card { max-width: 480px; margin: 0 auto; }
}

.answer-assets {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 18px; align-items: stretch;
  margin-top: clamp(44px, 6vw, 72px);
}
.answer-snippet, .answer-checklist {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.answer-snippet {
  padding: clamp(24px, 3.2vw, 34px);
  border-left: 3px solid var(--blue);
}
.snippet-kicker {
  display: inline-flex; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .16em; color: var(--blue-ink); text-transform: uppercase;
}
.answer-snippet h3 {
  margin-top: 14px; font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ink); line-height: 1.6; letter-spacing: .02em; font-weight: 600;
}
.answer-snippet p { margin-top: 14px; color: var(--muted); font-size: 14px; line-height: 2; }
.answer-checklist { padding: 28px; background: linear-gradient(180deg, #fff, var(--bg)); }
.answer-checklist h3 { font-size: 16px; color: var(--ink); margin-bottom: 16px; }
.answer-checklist ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.answer-checklist li {
  display: grid; grid-template-columns: 76px 1fr; gap: 12px; align-items: baseline;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.answer-checklist li:last-child { border-bottom: 0; padding-bottom: 0; }
.answer-checklist b { color: var(--blue-ink); font-size: 13px; }
.answer-checklist span { color: var(--muted); font-size: 13px; line-height: 1.75; }
@media (max-width: 920px) { .answer-assets { grid-template-columns: 1fr; } }

/* ============================================================
   04 SERVICES
   ============================================================ */
.svc-diagram { max-width: 1020px; margin: clamp(34px, 4.5vw, 52px) auto 0; }
.svc-diagram img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.svc-diagram figcaption { text-align: center; margin-top: 16px; font-family: var(--font-display); font-size: 14.5px; color: var(--muted); letter-spacing: .04em; }
.svc-diagram figcaption small { display: block; margin-top: 5px; font-family: var(--font-body); font-size: 11px; color: var(--muted); }

.salon-map {
  display: grid; grid-template-columns: .74fr 1.26fr;
  gap: clamp(24px, 4vw, 46px); align-items: center;
  margin-top: clamp(36px, 5vw, 60px);
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(150deg, #fff 0%, #fff 58%, var(--rose-soft) 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.map-copy span {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .16em; color: var(--teal-ink); text-transform: uppercase;
}
.map-copy h3 {
  margin-top: 12px; font-family: var(--font-display);
  font-size: clamp(21px, 2.6vw, 29px); line-height: 1.55;
  color: var(--ink); letter-spacing: .02em;
}
.map-copy p { margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 1.95; }
.map-board {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.map-board article {
  min-height: 136px; display: flex; flex-direction: column;
  padding: 18px; border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 24px -22px rgba(8, 17, 32, .34);
}
.map-board b {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  color: var(--blue-ink); text-transform: uppercase;
}
.map-board strong { margin-top: 10px; color: var(--ink); font-size: 15px; line-height: 1.55; }
.map-board span { margin-top: auto; color: var(--muted); font-size: 12.5px; line-height: 1.65; padding-top: 14px; }
@media (max-width: 920px) { .salon-map { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .map-board { grid-template-columns: 1fr; } }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(40px, 5vw, 60px); }
@media (max-width: 920px) { .svc-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
.svc-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease-std), box-shadow .22s var(--ease-std), border-color .22s;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--grad); opacity: 0; transition: opacity .25s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.svc-card:hover::before { opacity: 1; }
.svc-num { font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; color: var(--blue-ink); letter-spacing: .18em; }
.svc-ic { width: 50px; height: 50px; border-radius: 13px; background: var(--blue-soft); display: grid; place-items: center; margin: 18px 0; }
.svc-ic svg { width: 24px; height: 24px; color: var(--blue-ink); }
.svc-card h3 { font-family: var(--font-body); font-size: 19.5px; font-weight: 700; color: var(--ink); margin-bottom: 12px; line-height: 1.55; }
.svc-card p { font-size: 13.5px; color: var(--muted); line-height: 1.9; }
.svc-feat { list-style: none; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 9px; }
.svc-feat li { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; color: var(--text); }
.svc-feat li svg { width: 16px; height: 16px; color: var(--teal-ink); flex: 0 0 auto; margin-top: 4px; }

/* ============================================================
   05 WHY — 強み＋比較表
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: clamp(40px, 5vw, 56px); }
@media (max-width: 920px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; display: flex; gap: 22px; align-items: flex-start; box-shadow: var(--shadow-sm);
  transition: box-shadow .25s var(--ease-std), border-color .25s;
}
.why-card:hover { box-shadow: var(--shadow); border-color: var(--line-2); }
.why-card .wn {
  font-family: var(--font-mono); font-weight: 600; font-size: 26px; line-height: 1.2;
  color: var(--blue); flex: 0 0 auto; opacity: .85;
}
.why-card h3 { font-family: var(--font-body); font-size: 18.5px; font-weight: 700; color: var(--ink); margin-bottom: 9px; line-height: 1.5; }
.why-card p { font-size: 13.5px; color: var(--muted); line-height: 1.9; }

/* --- 代表プロフィール（「AIに任せて大丈夫?」への信頼材料） --- */
.prof { max-width: 920px; margin: clamp(56px, 7vw, 84px) auto 0; }
.prof-label {
  display: block; text-align: center;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--blue-ink);
}
.prof-copy {
  margin-top: 12px; text-align: center;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(19px, 2.4vw, 24px); color: var(--ink);
  letter-spacing: .03em; line-height: 1.7;
}
.prof-card {
  margin-top: 26px; display: grid; grid-template-columns: 286px 1fr;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.prof-id {
  position: relative; padding: 38px 30px;
  background: var(--ink); color: #fff;
  display: flex; flex-direction: column; justify-content: center;
}
.prof-id::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(0, 224, 184, .16), transparent 55%),
    radial-gradient(120% 100% at -10% 110%, rgba(11, 115, 255, .18), transparent 60%);
}
.prof-id > * { position: relative; }
.prof-role {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .18em; color: var(--teal);
}
.prof-name {
  margin-top: 14px; font-family: var(--font-display); font-weight: 600;
  font-size: 21.5px; letter-spacing: .04em; line-height: 1.75;
  text-wrap: balance; word-break: auto-phrase; line-break: strict;
}
.prof-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.prof-tags li {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; letter-spacing: .05em;
  color: rgba(255, 255, 255, .85); padding: 4px 11px; border-radius: 999px;
  border: 1px solid var(--d-line); background: var(--d-soft);
}
.prof-body { padding: 34px 38px 30px; }
.prof-bio { font-size: 14px; color: var(--text); line-height: 2.05; text-wrap: pretty; }
.prof-facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 24px 0 0; padding-top: 22px; border-top: 1px solid var(--line);
}
.prof-facts dt {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .16em; color: var(--blue-ink);
}
.prof-facts dd {
  margin: 7px 0 0; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(17px, 1.9vw, 21px); color: var(--ink); line-height: 1.4;
}
.prof-facts small {
  display: block; margin-top: 4px;
  font-family: var(--font-body); font-weight: 400; font-size: 11px;
  color: var(--muted); letter-spacing: .02em;
}
.prof-skills { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.prof-skills-label {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .16em; color: var(--blue-ink);
}
.prof-skills ul { list-style: none; margin-top: 12px; display: grid; gap: 9px; }
.prof-skills li {
  position: relative; padding-left: 15px;
  font-size: 13px; color: var(--muted); line-height: 1.85;
}
.prof-skills li::before {
  content: ""; position: absolute; left: 0; top: .8em;
  width: 7px; height: 1.5px; background: var(--teal-ink);
}
.prof-skills b { color: var(--ink); font-weight: 700; }
@media (max-width: 760px) {
  .prof-card { grid-template-columns: 1fr; }
  .prof-id { padding: 30px 26px 26px; }
  .prof-body { padding: 26px 24px 24px; }
  .prof-facts { grid-template-columns: 1fr; gap: 14px; }
}

/* --- 比較表 --- */
.cmp { max-width: 920px; margin: clamp(56px, 7vw, 84px) auto 0; }
.cmp-title {
  text-align: center; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(19px, 2.4vw, 24px); color: var(--ink); letter-spacing: .03em;
}
.cmp-lead { margin-top: 10px; text-align: center; font-size: 13px; color: var(--muted); }
.cmp-table { margin-top: 26px; border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-sm); }
.cmp-row { display: grid; grid-template-columns: 1.15fr .95fr 1.1fr; }
.cmp-row + .cmp-row { border-top: 1px solid var(--line); }
.cmp-c { padding: 15px 20px; font-size: 13.5px; display: flex; align-items: center; gap: 9px; min-width: 0; }
.cmp-head .cmp-c {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; letter-spacing: .08em;
  color: var(--muted); background: var(--bg-2); padding-top: 13px; padding-bottom: 13px;
}
.cmp-head .c-us { color: var(--blue-ink); }
.cmp-head .c-us img { width: 17px; height: 17px; }
.c-item { color: var(--ink); font-weight: 600; font-size: 13px; }
.c-them { color: var(--muted); border-left: 1px solid var(--line); }
.c-us {
  border-left: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(11, 115, 255, .05), rgba(0, 201, 167, .04));
  color: var(--ink); font-weight: 600;
}
.m-ok {
  width: 19px; height: 19px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center; background: var(--grad-cta); color: #fff;
}
.m-ok svg { width: 11px; height: 11px; }
.m-tri { color: var(--warn); font-size: 12px; flex: 0 0 auto; }
.m-no { color: var(--line-2); flex: 0 0 auto; font-weight: 700; }
.cmp-note { margin-top: 14px; font-size: 11px; color: var(--muted); text-align: center; }
@media (max-width: 680px) {
  .cmp-row { grid-template-columns: 1fr 1.15fr; }
  .cmp-row .c-item { grid-column: 1 / -1; background: var(--bg-2); padding: 9px 16px; font-size: 12px; }
  /* 見た目は隠すがアクセシビリティツリーには残す（role=table の列構造維持） */
  .cmp-head .c-item { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
  .cmp-c { padding: 12px 14px; font-size: 12px; }
  .c-them { border-left: none; }
}

/* ============================================================
   06 FLOW
   ============================================================ */
.flow-note { font-size: 11.5px; color: var(--muted); margin-top: 14px; }
.center .flow-note { max-width: 60ch; margin-left: auto; margin-right: auto; }
.flow-steps { margin-top: clamp(40px, 5vw, 58px); display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 920px) { .flow-steps { grid-template-columns: 1fr; gap: 12px; max-width: 480px; margin-inline: auto; } }
.flow-step {
  position: relative; padding: 28px 22px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.flow-step .fn {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 600; font-size: 14px; color: #fff;
  background: var(--grad-cta); margin-bottom: 16px;
  box-shadow: 0 6px 14px -6px rgba(11, 115, 255, .55);
}
.flow-step h3 { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.flow-step p { font-size: 12.5px; color: var(--muted); line-height: 1.8; }
.flow-step .dur {
  margin-top: 13px; font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--blue-ink); letter-spacing: .06em;
}
@media (min-width: 921px) {
  .flow-step:not(:last-child)::after {
    content: "→"; position: absolute; right: -13px; top: 38px; z-index: 1;
    color: var(--faint); font-size: 14px; font-family: var(--font-mono);
  }
}

/* ============================================================
   07 PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: clamp(44px, 5.5vw, 62px); align-items: stretch; }
@media (max-width: 1080px) { .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; max-width: 760px; margin-inline: auto; } }
@media (max-width: 600px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; } }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 26px; display: flex; flex-direction: column; position: relative;
  box-shadow: var(--shadow-sm);
}
.price-card.featured {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--grad) border-box;
  box-shadow: var(--shadow-lg);
  transform: scale(1.025);
}
@media (max-width: 920px) { .price-card.featured { transform: none; } }
.price-card .pop {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-cta); color: #fff;
  font-size: 12px; font-weight: 700; padding: 5px 18px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 18px -8px rgba(11, 115, 255, .6);
}
.price-card .pname { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--ink); letter-spacing: .02em; }
.price-card .pdesc { font-size: 12.5px; color: var(--muted); margin: 8px 0 20px; min-height: 38px; line-height: 1.7; }
.price-card .pamt { display: flex; align-items: baseline; gap: 4px; }
.price-card .pamt .yen { font-family: var(--font-mono); font-size: 17px; font-weight: 600; color: var(--ink); align-self: flex-start; margin-top: 7px; }
.price-card .pamt .num { font-family: var(--font-mono); font-weight: 600; font-size: 46px; color: var(--ink); line-height: 1; letter-spacing: 0; }
.price-card .pamt .per { font-size: 13px; color: var(--muted); }
.price-card .pnote { font-size: 11.5px; color: var(--muted); margin-top: 7px; }
.pdeliver {
  margin-top: 16px; padding: 14px 14px 13px;
  border-radius: 12px; background: var(--bg);
  border: 1px solid var(--line);
}
.pdeliver span {
  display: block; font-family: var(--font-mono); font-size: 10.5px;
  font-weight: 600; letter-spacing: .12em; color: var(--teal-ink);
  text-transform: uppercase; margin-bottom: 6px;
}
.pdeliver p { font-size: 12px; color: var(--text); line-height: 1.75; }
.price-card .pfeat { list-style: none; margin: 22px 0; padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-card .pfeat li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text); }
.price-card .pfeat li svg { width: 16px; height: 16px; color: var(--teal-ink); flex: 0 0 auto; margin-top: 4px; }
.price-card .btn { width: 100%; }
.price-card.featured .btn { padding: 18px 30px; font-size: 16px; }

/* --- LP card: light blue accent (between plain & featured) --- */
.price-card.accent {
  background: linear-gradient(180deg, color-mix(in srgb, var(--blue) 5%, var(--surface)), var(--surface) 62%);
  overflow: hidden;
}
.price-card.accent::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad);
}

/* --- Premium set card: deep navy + gold (最上級セット) --- */
.price-card.premium {
  background:
    radial-gradient(130% 80% at 50% -12%, rgba(0, 201, 167, .18), transparent 58%),
    var(--ink);
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: var(--shadow-lg);
  transform: scale(1.025);
}
@media (max-width: 920px) { .price-card.premium { transform: none; } }
.price-card.premium .pname { color: #fff; }
.price-card.premium .pdesc { color: rgba(255, 255, 255, .74); }
.price-card.premium .pamt .yen,
.price-card.premium .pamt .num { color: #fff; }
.price-card.premium .pamt .per { color: rgba(255, 255, 255, .66); }
.price-card.premium .pnote { color: rgba(255, 255, 255, .6); }
.price-card.premium .pdeliver {
  background: rgba(255, 255, 255, .055);
  border-color: rgba(255, 255, 255, .13);
}
.price-card.premium .pdeliver span { color: #FFDFAC; }
.price-card.premium .pdeliver p { color: rgba(255, 255, 255, .86); }
.price-card.premium .pfeat { border-top-color: rgba(255, 255, 255, .14); }
.price-card.premium .pfeat li { color: rgba(255, 255, 255, .9); }
.price-card.premium .pfeat li svg { color: #FFDFAC; }
.price-card.premium .btn { padding: 18px 30px; font-size: 16px; }

/* gold "最上級" badge */
.price-card .pop.pop-gold {
  background: linear-gradient(120deg, #FFE3B0, #E7B775);
  color: #3A2A12;
  box-shadow: 0 8px 18px -8px rgba(231, 183, 117, .7);
}
/* gold CTA on dark card */
.btn-premium {
  background: linear-gradient(120deg, #FFE7BD, #E7B775);
  color: #2A1E0C;
  box-shadow: 0 10px 26px -10px rgba(231, 183, 117, .7);
}
.btn-premium:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(231, 183, 117, .85); }
/* keep おすすめ / 最上級 cards lifted after the reveal animation (override .reveal.in) */
.price-card.featured.in, .price-card.premium.in { transform: scale(1.03); }
@media (max-width: 1080px) { .price-card.featured.in, .price-card.premium.in { transform: none; } }

/* --- 見本先行制作プラン（ご案内制）バナー --- */
.mihon-plan {
  margin-top: 34px; padding: 32px 30px 26px; border-radius: var(--radius-lg);
  border: 1px dashed color-mix(in srgb, var(--teal-ink) 40%, var(--line));
  background: linear-gradient(180deg, color-mix(in srgb, var(--teal-ink) 5%, var(--surface)), var(--surface) 68%);
  position: relative; box-shadow: var(--shadow-sm);
}
.mihon-plan .mihon-badge {
  position: absolute; top: -13px; left: 28px; background: var(--ink); color: #fff;
  font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: 999px; letter-spacing: .06em; white-space: nowrap;
}
.mihon-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.mihon-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--ink); }
.mihon-name span { display: block; font-family: inherit; font-size: 12.5px; font-weight: 500; color: var(--muted); margin-top: 4px; }
.mihon-target { font-size: 12.5px; color: var(--teal-ink); font-weight: 600; margin-top: 8px; }
.mihon-price { display: flex; align-items: baseline; gap: 5px; white-space: nowrap; }
.mihon-price .yen { font-family: var(--font-mono); font-size: 16px; font-weight: 600; color: var(--ink); }
.mihon-price .num { font-family: var(--font-mono); font-size: 38px; font-weight: 600; color: var(--ink); line-height: 1; }
.mihon-price .tax { font-size: 12px; color: var(--muted); }
.mihon-desc { font-size: 13px; color: var(--text); line-height: 1.9; margin-top: 16px; max-width: 72ch; }
.mihon-feat { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 10px; margin: 14px 0 0; padding: 0; }
.mihon-feat li { font-size: 12px; color: var(--text); border: 1px solid var(--line); background: var(--bg); border-radius: 999px; padding: 6px 13px; }
.mihon-meta { display: flex; flex-wrap: wrap; gap: 6px 22px; margin-top: 14px; font-size: 12px; color: var(--muted); }
.mihon-note { font-size: 11.5px; color: var(--muted); line-height: 1.8; margin-top: 12px; border-top: 1px solid var(--line); padding-top: 12px; }
.mihon-note a { color: var(--teal-ink); text-decoration: underline; }
@media (max-width: 600px) {
  .mihon-plan { padding: 28px 20px 22px; }
  .mihon-head { align-items: flex-start; flex-direction: column; gap: 10px; }
}

.price-common { margin-top: 30px; text-align: center; font-size: 12px; color: var(--muted); letter-spacing: .02em; }

/* ============================================================
   08 FAQ
   ============================================================ */
.faq-list { margin-top: clamp(36px, 4.5vw, 48px); max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color .2s;
}
.faq-item.open { border-color: color-mix(in srgb, var(--blue) 35%, var(--line)); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 26px; display: flex; align-items: center; gap: 16px;
  font-family: var(--font-body); font-size: 15.5px; font-weight: 700; color: var(--ink);
  line-height: 1.6;
}
.faq-q .qmark { font-family: var(--font-mono); color: var(--blue); flex: 0 0 auto; font-size: 15px; font-weight: 600; }
.faq-q .toggle { margin-left: auto; flex: 0 0 auto; width: 24px; height: 24px; position: relative; }
.faq-q .toggle::before, .faq-q .toggle::after {
  content: ""; position: absolute; background: var(--blue); border-radius: 2px; left: 50%; top: 50%;
}
.faq-q .toggle::before { width: 13px; height: 2px; transform: translate(-50%, -50%); }
.faq-q .toggle::after { width: 2px; height: 13px; transform: translate(-50%, -50%); transition: transform .3s var(--ease-std); }
.faq-item.open .faq-q .toggle::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { overflow: hidden; transition: max-height .35s var(--ease-std); }
.js .faq-a { max-height: 0; } /* JS動作時のみ折りたたみ（no-JSでも読める） */
.faq-a-inner { padding: 0 26px 24px 57px; font-size: 14px; color: var(--muted); line-height: 2; }

/* ============================================================
   10 FINAL CTA + FORM
   ============================================================ */
.final .wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 5.5vw, 64px); align-items: center; }
@media (max-width: 920px) { .final .wrap { grid-template-columns: 1fr; gap: 44px; } }
.final h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 4.2vw, 44px); line-height: 1.4; letter-spacing: .02em;
  color: #fff; margin-top: 16px; text-wrap: balance;
}
.final .fsub { margin-top: 20px; color: var(--d-text); font-size: 15px; line-height: 2; max-width: 42ch; }
.final-list { margin-top: 26px; list-style: none; display: flex; flex-direction: column; gap: 13px; }
.final-list li { display: flex; gap: 12px; align-items: center; font-size: 14.5px; color: rgba(255, 255, 255, .9); }
.final-list li svg { width: 19px; height: 19px; color: var(--teal); flex: 0 0 auto; }
.final-report {
  margin-top: 24px; padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-left: 3px solid var(--teal);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
}
.final-report span {
  display: block; font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .14em; color: var(--teal); text-transform: uppercase;
  margin-bottom: 6px;
}
.final-report p { color: rgba(255, 255, 255, .82); font-size: 13px; line-height: 1.85; }
.final-chips { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.final-chips span {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: .06em;
  color: var(--teal); border: 1px solid rgba(0, 224, 184, .35);
  background: rgba(0, 224, 184, .07); padding: 7px 14px; border-radius: 999px;
}
.chips-note { margin-top: 12px; font-size: 11px; color: rgba(255, 255, 255, .58); }

.form-card {
  background: var(--surface); color: var(--text);
  border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-lg);
}
.form-card h3 { font-family: var(--font-body); font-size: 21px; font-weight: 700; color: var(--ink); }
.form-card .fc-sub { font-size: 13px; color: var(--muted); margin: 6px 0 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: var(--blue-ink); font-size: 11px; margin-left: 5px; }
.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid #97A3B5; border-radius: 11px; padding: 13px 15px; /* 非テキストコントラスト3:1 */
  font-family: var(--font-body); font-size: 16px; /* iOSフォーカスズーム防止 */
  color: var(--ink); background: var(--bg);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11, 115, 255, .13); background: #fff;
}
.field textarea { resize: vertical; min-height: 84px; }
.field.err input, .field.err select, .field.err textarea { border-color: var(--err); }
.field .errmsg { display: none; font-size: 12px; color: var(--err); margin-top: 6px; }
.field.err .errmsg { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-card .btn { width: 100%; margin-top: 18px; padding-top: 20px; padding-bottom: 20px; font-size: 16.5px; letter-spacing: .02em; }
.form-card .fc-note { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 14px; line-height: 1.8; }
.form-card .fc-note a, .field-consent .consent a { color: var(--blue-ink); text-decoration: underline; text-underline-offset: 2px; }

.field-consent { margin-top: 6px; margin-bottom: 18px; }
.field-consent .consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.7; font-weight: 400; color: var(--text); cursor: pointer; }
.field-consent input[type="checkbox"] {
  -webkit-appearance: auto; appearance: auto; width: 18px; height: 18px; min-height: 0;
  padding: 0; border: none; border-radius: 0; background: none; box-shadow: none;
  accent-color: var(--blue); cursor: pointer; flex: 0 0 auto; margin-top: 3px;
}
.field-consent.err .consent { color: var(--err); }
.field-consent.err input[type="checkbox"] { outline: 2px solid var(--err); outline-offset: 2px; }
.form-error { margin: 12px 0 0; font-size: 13px; font-weight: 500; text-align: center; color: var(--err); }
/* mailtoフォールバック時の案内（送信は未完了であることを明示する） */
.form-note-mailto {
  margin: 14px 0 0; padding: 12px 14px; border-radius: 10px;
  background: var(--blue-soft); border: 1px solid #C8DCFB;
  font-size: 13px; line-height: 1.9; color: var(--ink);
}
.form-note-mailto a { color: var(--blue-ink); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }

.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; animation: rise .5s var(--ease-out) both; }
.form-success .chk { width: 64px; height: 64px; border-radius: 50%; background: var(--good); display: grid; place-items: center; margin: 0 auto 20px; color: #fff; }
.form-success .chk svg { width: 32px; height: 32px; }
.form-success h3 { color: var(--ink); margin-bottom: 10px; font-size: 21px; font-weight: 700; }
.form-success p { font-size: 14px; color: var(--muted); }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: #050B16; color: rgba(255, 255, 255, .6); padding: 60px 0 30px; }
.foot .wrap { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot .logo { margin-bottom: 14px; }
.foot .f-about { max-width: 34ch; font-size: 13px; line-height: 2; }
.foot .f-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.foot .f-col h2 {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .56);
  margin-bottom: 16px;
}
.foot .f-col a { display: block; font-size: 13.5px; color: rgba(255, 255, 255, .7); margin-bottom: 10px; transition: color .2s; }
.foot .f-col a:hover { color: #fff; }
.foot .f-trademark { margin-top: 36px; font-size: 11px; line-height: 1.8; color: rgba(255, 255, 255, .56); max-width: 80ch; }
.foot .f-sample-note { margin-top: 14px; font-size: 10.5px; line-height: 1.7; color: rgba(255, 255, 255, .38); max-width: 80ch; }
.foot .f-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08); margin-top: 18px; padding-top: 22px;
  font-size: 12px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.foot .f-bottom a { color: rgba(255, 255, 255, .72); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 720px) { .foot .f-col a { padding: 7px 0; margin-bottom: 2px; } }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(255, 255, 255, .94);
  background: color-mix(in srgb, var(--surface) 93%, transparent);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); padding: 12px 16px;
  display: none; gap: 12px; align-items: center;
  transform: translateY(110%); transition: transform .35s var(--ease-out);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta.form-focus.show { transform: translateY(110%) !important; }
body:has(#leadForm:focus-within) .sticky-cta.show { transform: translateY(110%) !important; }
.sticky-cta .sc-txt { flex: 1; font-size: 12.5px; font-weight: 700; color: var(--ink); line-height: 1.4; }
.sticky-cta .sc-txt span { display: block; font-size: 11px; font-weight: 400; color: var(--muted); }
.sticky-cta .btn { padding: 14px 22px; font-size: 15px; flex: 0 0 auto; min-height: 48px; }
@media (max-width: 880px) { .sticky-cta { display: flex; } body { padding-bottom: 74px; } }

/* ============================================================
   Reveal animation
   .js が無ければ（JS失敗時）コンテンツは常に表示される
   ============================================================ */
.reveal { transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.js .reveal { opacity: 0; transform: translateY(26px); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }
.reveal.d4 { transition-delay: .28s; }

/* ---------- Accessibility / hardening ---------- */
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.dark :focus-visible, .hero :focus-visible { outline-color: var(--teal); }
.hero .wrap > *, .final .wrap > * { min-width: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

@media (max-width: 360px) {
  .wrap { padding: 0 16px; }
  .head .wrap { gap: 10px; }
  .head .nav-cta { padding: 10px 14px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .js .reveal { opacity: 1; transform: none; transition: none; }
  .mq-track { animation: none; flex-wrap: wrap; width: auto; }
  .mq { mask-image: none; -webkit-mask-image: none; }
  .mq-set[aria-hidden="true"] { display: none; } /* 静止時は複製セットを出さない */
  .cin-scroll i::after { animation: none; }
  .float-card { animation: none; }
  .faq-a { transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   Sample Works — 制作サンプルLPカード(#service内)
   ============================================================ */
.works { margin-top: 72px; }
.works-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.works-eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--blue-ink);
}
.works-head h3 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(20px, 3.4vw, 26px); font-weight: 700;
  color: var(--ink); margin: 10px 0 12px;
}
.works-head p { font-size: 14px; color: var(--muted); line-height: 2; }
.works-head strong { color: var(--ink); }

.works-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.works-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none; color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.works-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px -10px rgba(8,17,32,.18); }
.works-salon { border-top-color: #E5408A; }
.works-water { border-top-color: #1D7FD6; }
.works-acne { border-top-color: #E08A9A; }
.works-whitening { border-top-color: #C8A96A; }
.works-saloncv { border-top-color: #1F8A7A; }
/* 公開中の自社サイト(横長プレビューの制作事例) */
.works-sub {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); text-align: center; margin: 0 0 14px;
}
.sites-row {
  display: grid; gap: 20px; margin: 0 auto 34px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.site-card { border-top-color: #2D6CDF; }
.works-thumb.site-thumb { aspect-ratio: 1200 / 630; }
.works-thumb.site-thumb img { object-position: center; }
.works-tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  background: var(--bg-2); color: var(--muted);
  border-radius: 999px; padding: 4px 12px;
}
.works-card strong {
  font-family: "Shippori Mincho", serif;
  font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.6;
}
.works-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.works-card li {
  font-size: 12.5px; color: var(--muted);
  padding-left: 18px; position: relative;
  overflow-wrap: anywhere; line-height: 1.6;
}
.works-card li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-ink); font-weight: 700; }
.works-link {
  margin-top: auto; padding-top: 8px;
  font-weight: 700; font-size: 13.5px; color: var(--blue-ink);
}
.works-salon .works-link { color: #C2256E; }
.works-acne .works-link { color: #C2667A; }
.works-water .works-link { color: #0E5AA8; }
.works-whitening .works-link { color: #A8884A; }
.works-saloncv .works-link { color: #16615A; }
.works-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 22px; }

/* 制作事例カード:FVプレビュー / 公開中バッジ / 準備中(WIP)状態 */
.works-card { position: relative; }
.works-body { flex: 1 1 auto; display: flex; flex-direction: column; gap: 12px; padding: 20px 22px; }

/* ファーストビュー・プレビュー(ブラウザ風フレーム) */
.works-thumb {
  position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden;
  background: var(--bg-2); border-bottom: 1px solid var(--line-2);
}
.works-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform .4s ease;
}
.works-card:hover .works-thumb img { transform: scale(1.05); }
.works-chrome {
  position: absolute; top: 0; left: 0; right: 0; z-index: 2;
  height: 22px; display: flex; align-items: center; gap: 6px; padding: 0 10px;
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(8,17,32,.06);
}
.works-chrome i { width: 7px; height: 7px; border-radius: 50%; background: #D8DEE7; }
.works-chrome i:nth-child(1) { background: #FF5F57; }
.works-chrome i:nth-child(2) { background: #FEBC2E; }
.works-chrome i:nth-child(3) { background: #28C840; }
.works-open {
  position: absolute; right: 10px; bottom: 10px; z-index: 2;
  font-size: 11px; font-weight: 700; color: #fff;
  background: rgba(8,17,32,.82); border-radius: 999px; padding: 5px 11px;
  opacity: 0; transform: translateY(6px); pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.works-card:hover .works-open { opacity: 1; transform: translateY(0); }

/* 準備中プレビュー(Coming soon パネル) */
.works-thumb--wip {
  display: grid; place-items: center;
  background: repeating-linear-gradient(45deg, var(--bg-2) 0 10px, var(--surface) 10px 20px);
}
.works-wip-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 999px; padding: 6px 16px;
}

.works-badge {
  position: absolute; top: 30px; right: 12px; z-index: 3;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  color: #fff; background: var(--good);
  border-radius: 999px; padding: 4px 12px;
  box-shadow: 0 2px 8px -2px rgba(8,17,32,.3);
}
.works-badge--wip { background: var(--faint); color: #fff; }
.works-card.is-wip { cursor: default; opacity: .72; }
.works-card.is-wip:hover { transform: none; box-shadow: var(--shadow-sm); }
.works-link--wip { color: var(--muted) !important; }
