/* ============================================================
   Blessing Light 3000 — B&O 完全模倣 0-1 再構築
   2026-04-27 / 最終更新 2026-05-10 (Phase 1-4 SSoT 化完了)

   ── DESIGN SYSTEM SSoT POLICY ─────────────────────────────
   1. **このファイルが Web 側 SSoT。** 全媒体 (LP/READ/名刺) はここに定義された
      var(--*) を参照。直書き (px/em/数値) 禁止。
   2. **同梱の design-tokens.json は Figma Tokens Studio plugin 連携用。**
      Web → JSON 方向は手動更新 (CSS変更時に同 token を JSON 反映)。
      Figma → Web 方向は禁止 (運用混乱の温床)。
   3. **token 追加には根拠が必要。** 新 px / 新 weight / 新 letter-spacing /
      新 line-height / 新 spacing は AI Council 協議 or PR レビュー必須。
   4. **既存 token の値変更は全 3 媒体への影響を確認。** type/spacing は媒体別
      base が定義済 (LP/READ/名刺 :root)・グローバル (font/color/ls/lh/space)
      は本ファイル :root のみ。

   ── 完成度履歴 ────────────────────────────────────────
   - Phase 1 (2026-05-10): font-size 28→8 token / weight 6→3 階調 → 60点
   - Phase 2 (2026-05-10): legacy alias 完全廃止 / semantic role 明示 → 72点
   - Phase 3 (2026-05-10): letter-spacing 30→7 / line-height 20→4 token → 82点
   - Phase 4 (2026-05-10): spacing scale 40+→9 token + Figma 同期 → 90+点目標
   ============================================================ */

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

em, i, cite, dfn, address, var, blockquote {
  font-style: normal;
}

:root {
  /* B&O Monotone System (Copper 削除) */
  --bg: #ffffff;            /* 純白 */
  --bg-alt: #f5f5f3;        /* セクション切替 */
  --bg-deep: #000000;       /* 純黒 (CTA・footer) */
  --bg-paper: #fafaf8;      /* カード地 */
  --ink: #000000;           /* 純黒テキスト */
  --ink-soft: #555555;      /* サブテキスト */
  --ink-muted: #8a8a87;     /* キャプション */
  --ink-faint: #b8b6b2;     /* さらに薄いグレー */
  --hairline: #d9d6d0;      /* 境界線 */
  --accent: #000000;        /* アクセントは黒のみ */

  /* B&O Typography Stack */
  --font: 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Inter', 'Noto Sans JP', Arial, sans-serif;
  --font-stack: 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Inter', 'Noto Sans JP', Arial, sans-serif;

  /* ════════════════════════════════════════════════════════════
   * SSoT Type Scale — 8 段階 (AI Council 2026-05-10 確定)
   * 全 font-size は var(--ts-*) で参照。px 直書き禁止
   * Phase 2 (2026-05-10) で legacy alias 完全廃止
   * ════════════════════════════════════════════════════════════ */
  --ts-display:  clamp(40px, 5.4vw, 72px);  /* Hero メイン (h1) */
  --ts-title:    clamp(28px, 3.2vw, 52px);  /* Section title (h2) */
  --ts-subtitle: 22px;                       /* Card title / Sub heading (h3) */
  --ts-lede:     17px;                       /* Lede paragraph / 強調本文 */
  --ts-body:     15px;                       /* Default body 本文 */
  --ts-caption:  13px;                       /* Card body / footer */
  --ts-meta:     11px;                       /* Note / 注釈 / fine print (uppercase 不可) */
  --ts-eyebrow:  11px;                       /* Label uppercase 専用 (nav / section-label / brand) */
  /* ※ meta と eyebrow は同 px だが意味が違う:
   *   - meta:    通常書体・小見出し補助・「※注釈」「個人の感想です」等
   *   - eyebrow: uppercase 強制・letter-spacing wide/widest と必ず併用・SECTION ラベル */

  /* SSoT Font Weight 3 階調 */
  --fw-light:   300;  /* Display/Title 軽さ演出 */
  --fw-regular: 400;  /* 本文デフォルト */
  --fw-medium:  500;  /* 強調 / ラベル / CTA */

  /* SSoT Letter Spacing 7 段階 (Phase 3 / 2026-05-10) */
  --ls-tight:   -0.02em;   /* Display/Title 圧縮 */
  --ls-snug:    -0.005em;  /* 本文 default */
  --ls-normal:  0;         /* 数字・table・neutral */
  --ls-loose:   0.04em;    /* Caption / Card body */
  --ls-wider:   0.16em;    /* Tagline / Subtitle uppercase */
  --ls-wide:    0.24em;    /* Brand label */
  --ls-widest:  0.32em;    /* Eyebrow uppercase / NAV CTA */

  /* SSoT Line Height 4 段階 (Phase 3 / 2026-05-10) */
  --lh-tight:   1.15;  /* Display / Hero h1 */
  --lh-snug:    1.3;   /* Title / Subtitle */
  --lh-normal:  1.65;  /* Body 標準 */
  --lh-loose:   1.85;  /* Caption / Note 長文 */

  /* ════════════════════════════════════════════════════════════
   * SSoT Spacing Scale — 9 段階 (Phase 4 / 2026-05-10)
   * margin / padding / gap で使用。layout 用の breakpoint/container は別 token
   * ════════════════════════════════════════════════════════════ */
  --space-1: 4px;   /* fine / icon */
  --space-2: 8px;   /* hairline gap */
  --space-3: 12px;  /* small gap */
  --space-4: 16px;  /* default */
  --space-5: 24px;  /* medium */
  --space-6: 32px;  /* element row */
  --space-7: 40px;  /* section row */
  --space-8: 64px;  /* large block */
  --space-9: 96px;  /* section gap */

  /* Spacing (B&O 級贅沢余白・更に拡張) */
  --section-y: clamp(120px, 14vw, 200px);
  --container: 1280px;
  --container-narrow: 820px;

  /* B&O Easing System */
  --ease: cubic-bezier(0.19, 1, 0.22, 1);     /* B&O 標準・ゆっくり目 */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* 短いインタラクション */
  --duration-slow: 1s;
  --duration: 0.6s;
  --duration-fast: 0.3s;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--ts-body);
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-snug);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "palt" 1;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Focus / Selection ラグジュアリー polish (Phase 6) ─ */
a:focus-visible, button:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
  border-radius: 1px;
}

::selection { background: var(--ink); color: var(--bg); }
::-moz-selection { background: var(--ink); color: var(--bg); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-7);
}
@media (max-width: 768px) { .container { padding: 0 var(--space-5); } }

/* ── NAV (B&O 風・透明スタート → スクロールで白) ─ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background var(--duration) var(--ease), backdrop-filter var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom-color: var(--hairline);
}

.nav-inner {
  max-width: 100%;
  margin: 0;
  padding: var(--space-5) clamp(40px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-7);
}
.nav-logo { justify-self: start; }
.nav-links { justify-self: center; }
.nav-cta { justify-self: end; }

.nav-logo {
  display: flex; align-items: center; gap: var(--space-4);
  font-family: var(--font);
  font-weight: 500;
  font-size: var(--ts-body);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--ink);
}

.nav-logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: var(--ts-eyebrow);
  font-weight: 500;
  letter-spacing: var(--ls-loose);
  background: transparent;
}

.nav-logo-text em {
  color: var(--ink-muted);
  font-weight: 300;
  letter-spacing: var(--ls-wider);
}

.nav-links {
  display: flex; gap: var(--space-7);
  margin: 0;
}

.nav-links a {
  font-size: var(--ts-caption);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: var(--ls-loose);
  position: relative;
  padding: var(--space-1) 0;
}

.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: var(--space-3) var(--space-5);
  background: var(--ink);
  color: var(--bg) !important;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: var(--ts-meta);
  font-weight: 500;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}
.nav-cta:hover { background: var(--bg); color: var(--ink) !important; }

.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: var(--space-2); flex-direction: column; gap: var(--space-1);
}
.nav-hamburger span {
  display: block; width: 22px; height: 1px; background: var(--ink);
}

@media (max-width: 768px) {
  .nav-inner { padding: var(--space-5) var(--space-5); gap: var(--space-4); }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .nav-cta { padding: var(--space-3) var(--space-4); font-size: var(--ts-meta); }
}

/* ── HERO (B&O 風・全画面背景写真) ────────── */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  background: var(--bg);
  overflow: hidden;
}

.wave-canvas, .particles,
.purchase-wave-bg, .cta-final-wave,
.problem-wave, .wave-divider { display: none !important; }

.hero-photo-bg {
  display: block !important;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background: var(--bg-alt);
}

.hero-photo-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: brightness(0.95) contrast(1.02);
  opacity: 1;
}

/* テキスト可読性確保のグラデーションオーバーレイ */
.hero-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.85) 35%, rgba(255,255,255,0.4) 65%, rgba(255,255,255,0.05) 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 45%, rgba(255,255,255,0.45) 100%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-photo-bg::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.82) 40%, rgba(255,255,255,0.55) 70%, rgba(255,255,255,0.35) 100%);
  }
}

.hero-content {
  max-width: 540px;
  position: relative;
  z-index: 2;
  padding: 160px var(--space-6) 100px clamp(40px, 6vw, 96px);
  width: auto;
  margin-top: 22vh;
}

@media (max-width: 900px) {
  .hero {
    align-items: flex-start;
  }
  .hero-content {
    padding: 140px var(--space-5) var(--space-8);
    max-width: 100%;
  }
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: var(--space-7);
  font-size: var(--ts-eyebrow);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: none; display: none; }
.eyebrow-dot { display: none; }

.hero-title {
  font-family: var(--font);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-5);
  color: var(--ink);
}

.hero-title em {
  font-weight: 500;
  color: var(--ink);
}

.title-gradient {
  background: none;
  -webkit-text-fill-color: var(--ink);
  color: var(--ink);
  font-weight: 300;
}

.hero-subtitle {
  font-size: var(--ts-caption);
  color: var(--ink-soft);
  line-height: var(--lh-normal);
  max-width: 100%;
  margin: 0 0 40px;
  font-weight: 400;
  letter-spacing: var(--ls-normal);
}

.hero-subtitle strong {
  color: var(--ink);
  font-weight: 500;
}

.br-pc { display: inline; }
@media (max-width: 768px) { .br-pc { display: none; } }

.hero-actions {
  display: flex;
  gap: var(--space-5);
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-bottom: 0;
  align-items: center;
}
@media (max-width: 480px) {
  .hero-actions { flex-wrap: wrap; gap: var(--space-5); }
}

/* ── BUTTONS (B&O 風) ─────────────────────────── */
.btn-primary, .btn-purchase {
  display: inline-flex; align-items: center; gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  background: var(--ink);
  color: var(--bg) !important;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: var(--ts-meta);
  font-weight: 500;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease), gap var(--duration) var(--ease);
  text-decoration: none;
  font-family: var(--font);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-primary span, .btn-purchase span { white-space: nowrap; }
.btn-primary:hover, .btn-purchase:hover {
  background: var(--bg);
  color: var(--ink) !important;
  gap: var(--space-4);
}
.btn-primary svg, .btn-purchase svg {
  transition: transform var(--duration) var(--ease);
}
.btn-primary:hover svg, .btn-purchase:hover svg {
  transform: translateX(4px);
}

.btn-large { padding: var(--space-5) var(--space-7); font-size: var(--ts-caption); }

/* B&O 風 Discover → リンク型 (Ghost ボタン置換) */
.btn-ghost {
  display: inline-flex; align-items: center; gap: var(--space-4);
  padding: var(--space-2) 0 var(--space-3);
  background: transparent;
  color: var(--ink);
  border: none;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  font-size: var(--ts-meta);
  font-weight: 500;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  text-decoration: none;
  transition: gap var(--duration) var(--ease), color var(--duration) var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-ghost:hover {
  background: transparent;
  color: var(--ink-soft);
  gap: var(--space-5);
}
.btn-ghost svg {
  transition: transform var(--duration) var(--ease);
}
.btn-ghost:hover svg {
  transform: translateX(6px);
}

.btn-primary svg, .btn-ghost svg, .btn-purchase svg {
  width: 14px; height: 14px;
}

/* ── HERO STATS ─────────────────────────────── */
.hero-stats {
  display: flex; justify-content: center; align-items: stretch;
  gap: var(--space-9);
  padding-top: var(--space-9);
  border-top: 1px solid var(--hairline);
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 600px) { .hero-stats { gap: var(--space-6); flex-wrap: wrap; } }

.hero-stat { display: flex; flex-direction: column; align-items: center; }

.stat-num {
  font-family: var(--font);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 300;
  letter-spacing: var(--ls-tight);
  color: var(--ink);
  line-height: var(--lh-tight);
}
.stat-num small {
  font-size: 0.45em;
  font-weight: 300;
  margin-left: 2px;
}

.stat-lbl {
  font-size: var(--ts-eyebrow);
  color: var(--ink-muted);
  margin-top: var(--space-4);
  letter-spacing: var(--ls-wide);
  font-weight: 500;
  text-transform: uppercase;
}

.hero-stat-divider { width: 1px; background: var(--hairline); }

.scroll-indicator { display: none; }

/* ── SECTION COMMON ─────────────────────────── */
.section {
  position: relative;
  padding: var(--section-y) 40px;
  background: var(--bg);
}

.section-problem,
.section-package,
.section-voice {
  background: var(--bg-alt);
}

.section-tech, .section-benefits,
.section-gallery, .section-specs,
.section-purchase, .section-faq {
  background: var(--bg);
}

.section .container { position: relative; }

.section-label {
  font-size: var(--ts-eyebrow);
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  text-align: center;
}

.section-title {
  font-family: var(--font);
  font-size: var(--ts-title);
  font-weight: 300;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  text-align: center;
  margin-bottom: var(--space-6);
  color: var(--ink);
}

.section-title em {
  font-weight: 500;
  color: var(--ink);
}

.section-desc {
  text-align: center;
  font-size: var(--ts-lede);
  color: var(--ink-soft);
  line-height: var(--lh-normal);
  max-width: 680px;
  margin: 0 auto 96px;
  letter-spacing: var(--ls-snug);
}

/* ── PROBLEM ────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  background: transparent;
  border: none;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: var(--space-8) var(--space-7);
  border-radius: 0;
  transition: background var(--duration) var(--ease);
}
.problem-card:last-child { border-right: none; }
@media (max-width: 900px) { .problem-card { border-right: none; } }
.problem-card:hover { background: var(--bg-paper); }

.problem-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-7);
  color: var(--ink);
}
.problem-icon svg { width: 28px; height: 28px; stroke-width: 1; }

.problem-card h3 {
  font-family: var(--font);
  font-size: var(--ts-subtitle);
  font-weight: 400;
  margin-bottom: var(--space-4);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-snug);
}

.problem-card p {
  font-size: var(--ts-caption);
  color: var(--ink-soft);
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-snug);
}

/* ── TECHNOLOGY ─────────────────────────────── */
.tech-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: center;
  margin-top: 0;
}
@media (max-width: 900px) {
  .tech-split { grid-template-columns: 1fr; gap: var(--space-8); }
}

.tech-photo-frame {
  overflow: hidden;
  background: var(--bg-paper);
  border-radius: 0;
  border: none;
}
.tech-photo-frame img { width: 100%; display: block; }
.tech-photo-frame::after { content: none; }

.tech-feature {
  display: flex; gap: var(--space-6);
  padding: var(--space-7) 0;
  border-bottom: 1px solid var(--hairline);
}
.tech-feature:last-child { border-bottom: none; }

.tech-feature-num {
  font-family: var(--font);
  font-size: var(--ts-eyebrow);
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: var(--ls-wide);
  flex-shrink: 0;
  width: 40px;
}

.tech-feature-body h3 {
  font-family: var(--font);
  font-size: var(--ts-subtitle);
  font-weight: 300;
  margin-bottom: var(--space-4);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-snug);
}

.tech-feature-body p {
  font-size: var(--ts-body);
  color: var(--ink-soft);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-5);
  letter-spacing: var(--ls-snug);
}

.tech-divider { display: none; }

.tech-chip-row { display: flex; gap: var(--space-3); flex-wrap: wrap; }

.tech-chip {
  padding: var(--space-1) 0;
  background: transparent;
  color: var(--ink-soft);
  border: none;
  border-radius: 0;
  font-size: var(--ts-eyebrow);
  font-weight: 500;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}
.tech-chip::after { content: ' / '; color: var(--hairline); }
.tech-chip:last-child::after { content: ''; }

/* ── BENEFITS ───────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
@media (max-width: 700px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-card {
  background: transparent;
  border: none;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: var(--space-8) var(--space-7);
  display: flex; flex-direction: column; gap: var(--space-5);
  border-radius: 0;
  transition: background var(--duration) var(--ease);
}
.benefit-card:nth-child(2n) { border-right: none; }
@media (max-width: 700px) { .benefit-card { border-right: none; } }
.benefit-card:hover { background: var(--bg-paper); transform: none; box-shadow: none; }

.benefit-num {
  font-family: var(--font);
  font-size: var(--ts-eyebrow);
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: var(--ls-wide);
}

.benefit-icon-wrap {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.benefit-icon-wrap svg { width: 28px; height: 28px; stroke-width: 1; }

.benefit-card h3 {
  font-family: var(--font);
  font-size: var(--ts-subtitle);
  font-weight: 400;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-snug);
}

.benefit-card p {
  font-size: var(--ts-caption);
  color: var(--ink-soft);
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-snug);
}

/* ── GALLERY (B&O 風フルブリード) ──────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-1);
  margin-top: 0;
}
.gallery-grid .gallery-main {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--bg-alt);
  aspect-ratio: 1 / 1;
  border-radius: 0;
}
.gallery-main { aspect-ratio: 1 / 1; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform var(--duration-slow) var(--ease), opacity var(--duration) var(--ease);
  opacity: 1;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after { content: none; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: var(--space-1); }
  .gallery-grid .gallery-main { grid-column: 1 / 3; grid-row: auto; }
}

/* ── PACKAGE ────────────────────────────────── */
.package-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  margin-top: 0;
}
@media (max-width: 900px) {
  .package-layout { grid-template-columns: 1fr; gap: var(--space-8); }
}

.package-photo {
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: var(--bg-paper);
}
.package-photo img { width: 100%; display: block; }
.package-photo::after { content: none; }

.package-content h2 {
  font-family: var(--font);
  font-size: var(--ts-title);
  font-weight: 300;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-6);
  color: var(--ink);
}
.package-content h2 em {
  color: var(--ink-muted);
  font-weight: 300;
}
.package-content h2 .price-num {
  font-weight: 400;
  letter-spacing: var(--ls-normal);
}

.package-desc {
  font-size: var(--ts-body);
  color: var(--ink-soft);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-7);
  letter-spacing: var(--ls-snug);
}

.package-items {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0;
}
.package-items li {
  display: flex; align-items: baseline; gap: var(--space-4);
  font-size: var(--ts-caption);
  color: var(--ink);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--hairline);
  letter-spacing: var(--ls-snug);
}
.package-items li:last-child { border-bottom: 1px solid var(--hairline); }
.package-items li::before {
  content: counter(pack-counter, decimal-leading-zero);
  counter-increment: pack-counter;
  color: var(--ink-muted);
  font-size: var(--ts-eyebrow);
  font-weight: 500;
  letter-spacing: var(--ls-wider);
  flex-shrink: 0;
  width: 32px;
}
.package-items { counter-reset: pack-counter; }

/* ── SPECS ──────────────────────────────────── */
.specs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: start;
}
@media (max-width: 900px) {
  .specs-layout { grid-template-columns: 1fr; gap: var(--space-8); }
}

.specs-real-photo {
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: var(--bg-paper);
}
.specs-real-photo img { width: 100%; display: block; }

.specs-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  border-top: 1px solid var(--ink);
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.specs-table tr { border-bottom: 1px solid var(--hairline); }
.specs-table tr:last-child { border-bottom: 1px solid var(--ink); }
.specs-table th, .specs-table td {
  padding: var(--space-5) 0;
  text-align: left;
  font-size: var(--ts-caption);
  vertical-align: top;
  letter-spacing: var(--ls-snug);
}
.specs-table th {
  width: 38%;
  font-weight: 500;
  color: var(--ink-muted);
  font-size: var(--ts-eyebrow);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}
.specs-table td { color: var(--ink); font-weight: 400; }

.specs-note {
  font-size: var(--ts-eyebrow);
  color: var(--ink-muted);
  margin-top: var(--space-6);
  letter-spacing: var(--ls-loose);
}

/* ── EVIDENCE (B&O 風シンプル) ──────────────────── */
.section-evidence {
  background: var(--bg);
}
.evidence-lede {
  text-align: center;
  font-family: var(--font);
  font-size: var(--ts-lede);
  color: var(--ink);
  line-height: var(--lh-normal);
  max-width: 760px;
  margin: 0 auto 64px;
  letter-spacing: var(--ls-snug);
  font-weight: 400;
}
.evidence-lede strong {
  font-weight: 500;
  color: var(--ink);
}
.evidence-journals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto 56px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: var(--space-6) 0;
}
.evidence-journals span {
  font-family: var(--font);
  font-size: var(--ts-caption);
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: var(--ls-normal);
  padding: var(--space-2) var(--space-5);
  border-right: 1px solid var(--hairline);
  white-space: nowrap;
}
.evidence-journals span:last-child {
  border-right: none;
}
@media (max-width: 700px) {
  .evidence-journals { flex-direction: column; padding: var(--space-4) 0; }
  .evidence-journals span { border-right: none; border-bottom: 1px solid var(--hairline); padding: var(--space-3) var(--space-5); }
  .evidence-journals span:last-child { border-bottom: none; }
}
.evidence-note {
  text-align: center;
  font-size: var(--ts-meta);
  color: var(--ink-muted);
  letter-spacing: var(--ls-normal);
  max-width: 640px;
  margin: 0 auto;
}

/* ── VOICE ──────────────────────────────────── */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
@media (max-width: 1100px) { .voice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .voice-grid { grid-template-columns: 1fr; } }

.voice-card {
  background: transparent;
  border: none;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: var(--space-7) var(--space-6);
  border-radius: 0;
  transition: none;
}
.voice-card:nth-child(4n) { border-right: none; }
@media (max-width: 1100px) {
  .voice-card { border-right: 1px solid var(--hairline); }
  .voice-card:nth-child(4n) { border-right: 1px solid var(--hairline); }
  .voice-card:nth-child(2n) { border-right: none; }
}
@media (max-width: 600px) { .voice-card { border-right: none; } }
.voice-card:hover { background: transparent; transform: none; box-shadow: none; border-color: var(--hairline); }

.voice-stars {
  color: var(--ink-muted);
  font-size: var(--ts-meta);
  letter-spacing: var(--ls-widest);
  margin-bottom: var(--space-5);
}

.voice-card blockquote {
  font-family: var(--font);
  font-size: var(--ts-lede);
  line-height: var(--lh-normal);
  color: var(--ink);
  margin-bottom: var(--space-7);
  font-weight: 300;
  letter-spacing: var(--ls-snug);
}

.voice-author {
  display: flex; align-items: center; gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid var(--hairline);
}

.voice-avatar {
  width: 40px; height: 40px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font);
  font-weight: 500;
  font-size: var(--ts-eyebrow);
  color: var(--ink);
  background: transparent;
  letter-spacing: var(--ls-loose);
}

.voice-name {
  font-size: var(--ts-caption);
  font-weight: 500;
  letter-spacing: var(--ls-normal);
}

.voice-role {
  font-size: var(--ts-eyebrow);
  color: var(--ink-muted);
  letter-spacing: var(--ls-loose);
  margin-top: var(--space-1);
  text-transform: uppercase;
}

/* ── PURCHASE ───────────────────────────────── */
.purchase-card {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-9);
  background: transparent;
  border: none;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: var(--space-9) 0;
  margin-top: var(--space-8);
  box-shadow: none;
}
@media (max-width: 900px) {
  .purchase-card { grid-template-columns: 1fr; padding: var(--space-8) 0; gap: var(--space-8); }
}

.purchase-product-name {
  font-family: var(--font);
  font-size: var(--ts-subtitle);
  font-weight: 300;
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-4);
  line-height: var(--lh-tight);
}

.purchase-product-desc {
  font-size: var(--ts-eyebrow);
  color: var(--ink-muted);
  margin-bottom: var(--space-7);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  font-weight: 500;
}

.purchase-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
}
.purchase-features li {
  position: relative;
  padding: var(--space-4) 0 var(--space-4) var(--space-6);
  font-size: var(--ts-caption);
  color: var(--ink);
  line-height: var(--lh-normal);
  border-bottom: 1px solid var(--hairline);
  letter-spacing: var(--ls-snug);
}
.purchase-features li:last-child { border-bottom: none; }
.purchase-features li::before {
  content: '';
  position: absolute;
  left: 0; top: var(--space-5);
  width: 16px; height: 1px;
  background: var(--ink);
}
.purchase-features li::after { content: none; }

.purchase-card-right {
  display: flex; flex-direction: column; gap: var(--space-4);
  padding-left: var(--space-9);
  border-left: 1px solid var(--hairline);
}
@media (max-width: 900px) {
  .purchase-card-right { padding-left: 0; padding-top: var(--space-7); border-left: none; border-top: 1px solid var(--hairline); }
}

.purchase-price-label {
  font-size: var(--ts-eyebrow);
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.purchase-price {
  display: flex; align-items: baseline; gap: var(--space-1);
  font-family: var(--font);
  font-weight: 300;
}
.purchase-price-currency { font-size: var(--ts-subtitle); color: var(--ink-muted); }
.purchase-price-num {
  font-size: var(--ts-display);
  letter-spacing: var(--ls-tight);
  color: var(--ink);
}

.purchase-price-inquiry {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-4) 0;
}
.purchase-price-inquiry .inquiry-label {
  font-family: var(--font);
  font-size: var(--ts-subtitle);
  font-weight: 300;
  letter-spacing: var(--ls-snug);
  color: var(--ink);
}
.purchase-price-inquiry .inquiry-note {
  font-size: var(--ts-meta);
  color: var(--ink-muted);
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-normal);
}

.purchase-price-note {
  font-size: var(--ts-eyebrow);
  color: var(--ink-muted);
  margin-bottom: var(--space-5);
  letter-spacing: var(--ls-loose);
}

.purchase-trust {
  display: flex; gap: var(--space-5); flex-wrap: wrap;
  font-size: var(--ts-eyebrow);
  color: var(--ink-muted);
  margin-top: var(--space-4);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}

/* ── FAQ ────────────────────────────────────── */
.faq-container { max-width: var(--container-narrow); }

.faq-list {
  margin-top: var(--space-6);
  border-top: 1px solid var(--ink);
}
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item:last-child { border-bottom: 1px solid var(--ink); }

.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-6) 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: var(--ts-lede);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-snug);
  transition: color 0.3s ease;
}
.faq-q:hover { color: var(--ink-muted); }

.faq-icon {
  width: 18px; height: 18px;
  color: var(--ink);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  stroke-width: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-in-out; }
.faq-a.open { max-height: 600px; }
.faq-a p {
  padding: 0 0 32px;
  font-size: var(--ts-body);
  color: var(--ink-soft);
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-snug);
}

/* ── CTA FINAL (純黒背景・B&O 風) ───────────── */
.section-cta-final {
  padding: var(--section-y) 40px;
  background: var(--bg-deep);
  color: var(--bg);
  text-align: center;
}

.cta-final-inner { max-width: 1080px; }

.cta-final-title {
  font-family: var(--font);
  font-size: var(--ts-title);
  font-weight: 300;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-7);
  color: var(--bg);
}
.cta-final-title em {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

.cta-final-desc {
  font-size: var(--ts-lede);
  color: rgba(255, 255, 255, 0.65);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-8);
  letter-spacing: var(--ls-snug);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-8);
}

.section-cta-final .btn-primary {
  background: var(--bg);
  color: var(--ink) !important;
  border-color: var(--bg);
}
.section-cta-final .btn-primary:hover {
  background: var(--bg-deep);
  color: var(--bg) !important;
  border-color: var(--bg);
}

.cta-sub-links {
  margin-top: var(--space-7);
  font-size: var(--ts-eyebrow);
  color: rgba(255, 255, 255, 0.5);
  display: flex; gap: var(--space-5);
  justify-content: center; align-items: center; flex-wrap: wrap;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}
.cta-sub-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 6px;
}

/* ── FOOTER MINIMAL (© のみ) ──────────────────── */
.footer-minimal {
  padding: var(--space-6) var(--space-5);
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--hairline);
}
.footer-minimal small {
  font-size: var(--ts-eyebrow);
  color: var(--ink-muted);
  letter-spacing: var(--ls-loose);
}

/* ── FOOTER (legacy・未使用) ──────────────────── */
.footer {
  padding: var(--space-9) var(--space-7) var(--space-8);
  background: var(--bg);
  border-top: 1px solid var(--hairline);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--space-9);
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-7); }
}

.footer-logo {
  display: flex; align-items: center; gap: var(--space-4);
  font-family: var(--font);
  font-weight: 500;
  font-size: var(--ts-caption);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.footer-info p {
  font-size: var(--ts-eyebrow);
  color: var(--ink-muted);
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-normal);
}

.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links a {
  font-size: var(--ts-eyebrow);
  color: var(--ink);
  letter-spacing: var(--ls-loose);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--ink-muted); }

.footer-copy {
  grid-column: 1 / -1;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--hairline);
  font-size: var(--ts-eyebrow);
  color: var(--ink-muted);
  text-align: center;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}

/* ── REVEAL ─────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ── PRINT ──────────────────────────────────── */
@media print {
  .nav, .hero-actions, .nav-cta, .btn-primary, .btn-ghost, .btn-purchase { display: none; }
  body { font-size: 11pt; background: white; }
  .section { page-break-inside: avoid; background: white; }
}

/* ============================================================
   ── MOBILE REFINEMENT (AI Council 統合 / 2026-04-27)
   - 本文可読性: body-s 13→14px, hero-subtitle 14px (11px以下禁止)
   - タップ領域: nav-cta 44px+, btn 48px+ 確保 (Apple HIG準拠)
   - 余白圧縮: section-y 120→80px下限 (経営者の指疲労低減)
   - ハンバーガー削除: LPはスクロール読み物・ナビ不要 (B&O流)
   - AI 全合意の地雷回避: accent色追加なし / ascpect崩しなし
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-y: clamp(80px, 12vw, 120px);
    --body-s: 14px;
  }

  .nav-hamburger { display: none !important; }
  .nav-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: var(--space-4);
  }
  .nav-logo {
    font-size: var(--ts-meta);
    letter-spacing: var(--ls-wider);
    white-space: nowrap;
  }
  .nav-logo-text { white-space: nowrap; }
  .nav-cta {
    padding: var(--space-3) var(--space-4);
    font-size: var(--ts-meta);
    letter-spacing: var(--ls-wider);
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-self: end;
    white-space: nowrap;
  }

  .hero-content {
    padding: 120px var(--space-5) var(--space-8);
    margin-top: 10vh;
  }
  .hero-eyebrow { margin-bottom: var(--space-6); letter-spacing: var(--ls-wide); }
  .hero-subtitle {
    font-size: var(--ts-body);
    line-height: var(--lh-normal);
    margin-bottom: var(--space-6);
  }

  .btn-primary, .btn-purchase {
    padding: var(--space-4) var(--space-5);
    min-height: 48px;
  }
  .btn-large { padding: var(--space-4) var(--space-6); min-height: 52px; }
  .btn-ghost { min-height: 44px; align-items: center; }

  .section { padding: var(--section-y) 24px; }
  .section-desc {
    font-size: var(--ts-body);
    line-height: var(--lh-normal);
    margin-bottom: var(--space-8);
  }
  .section-title { margin-bottom: var(--space-5); }
  .section-label { margin-bottom: var(--space-5); }

  .problem-card, .benefit-card, .voice-card { padding: var(--space-7) var(--space-5); }
  .problem-card h3, .benefit-card h3 { font-size: var(--ts-lede); }
  .problem-card p, .benefit-card p { font-size: var(--ts-body); line-height: var(--lh-normal); }

  .tech-feature { padding: var(--space-6) 0; gap: var(--space-5); }
  .tech-feature-num { width: 28px; }
  .tech-feature-body p { font-size: var(--ts-body); line-height: var(--lh-normal); }

  .package-content h2 { margin-bottom: var(--space-5); }
  .package-desc { font-size: var(--ts-body); margin-bottom: var(--space-6); line-height: var(--lh-normal); }
  .package-items li { padding: var(--space-4) 0; font-size: var(--ts-body); }

  .specs-table th, .specs-table td { padding: var(--space-4) 0; }
  .specs-table td { font-size: var(--ts-body); }

  .evidence-lede { font-size: var(--ts-body); line-height: var(--lh-normal); margin-bottom: var(--space-7); }

  .voice-card blockquote { font-size: var(--ts-body); line-height: var(--lh-normal); margin-bottom: var(--space-5); }
  .voice-name { font-size: var(--ts-body); }

  .purchase-card { padding: var(--space-7) 0 !important; gap: var(--space-7); margin-top: var(--space-7); }
  .purchase-product-name { font-size: var(--ts-subtitle); }
  .purchase-price-inquiry .inquiry-label { font-size: var(--ts-subtitle); }
  .purchase-features li { padding: var(--space-3) 0 var(--space-3) var(--space-5); font-size: var(--ts-body); }

  .faq-q { padding: var(--space-5) 0; font-size: var(--ts-body); min-height: 48px; }
  .faq-a p { font-size: var(--ts-body); line-height: var(--lh-normal); }

  .section-cta-final { padding: var(--section-y) 24px; }
  .cta-final-title { margin-bottom: var(--space-5); }
  .cta-final-desc { font-size: var(--ts-body); margin-bottom: var(--space-7); line-height: var(--lh-normal); }

  .footer-minimal { padding: var(--space-5) var(--space-5); }
}

/* タブレット / 大スマホ向け微調整 (1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container { padding: 0 32px; }
  .section { padding: var(--section-y) 32px; }
}

/* ══ INVESTMENT コスト比較 (レスポンシブ・可読性改善) ══ */
.cost-compare {
  max-width: 920px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.cost-card {
  background: var(--bg);
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cost-card-feature { background: var(--bg-paper); }
.cost-card-label {
  font-size: var(--ts-meta);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--ink-muted);
}
.cost-card-feature .cost-card-label { color: var(--ink); font-weight: 500; }
.cost-card-sub {
  font-size: var(--ts-caption);
  color: var(--ink-soft);
  font-weight: 300;
}
.cost-card-num {
  font-family: var(--font);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: var(--ls-normal);
  font-feature-settings: 'tnum';
  color: var(--ink-muted);
  margin-top: 6px;
}
.cost-card-feature .cost-card-num { color: var(--ink); font-weight: 500; }
.cost-card-note {
  font-size: var(--ts-meta);
  color: var(--ink-muted);
  line-height: var(--lh-normal);
}
.cost-health-note {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 24px 28px;
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--ink);
  background: var(--bg-paper);
  font-size: var(--ts-caption);
  line-height: var(--lh-loose);
  color: var(--ink-soft);
  font-weight: 300;
  text-align: left;
}
.cost-health-note strong { color: var(--ink); font-weight: 500; }
@media (max-width: 720px) {
  .cost-compare { grid-template-columns: 1fr; }
}

/* ══ フロート相談ボタン (モバイル下部固定バー・Hakobune パターン) ══ */
.float-contact {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  background: var(--ink);
  color: var(--bg);
  font-size: var(--ts-caption);
  font-weight: 500;
  letter-spacing: var(--ls-snug);
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(0,0,0,0.22);
  transition: background .25s ease, color .25s ease;
}
.float-contact:hover,
.float-contact:focus-visible {
  background: var(--bg);
  color: var(--ink);
}
.float-contact svg { width: 18px; height: 18px; }
/* デスクトップでは非表示 (nav の詳細確認 CTA があるため・Hakobune パターン) */
@media (min-width: 769px) {
  .float-contact { display: none; }
}
