/* SITE 67 — HOST STANDARD BLACK / design tokens
   配色: ブラック #101114 / オフホワイト #F5F5F2 / グレー #8A8F98 / 控えめなゴールド #B6A16A
   角丸は 8px のみ（MASTER §8: 1サイト内で混在させない）
   影は 2段階まで
   本文16px / 注記14px を最小値とする */
:root {
  /* --- 面 --- */
  --c-bg: #101114;
  --c-bg-2: #16181C;
  --c-bg-3: #1D2026;
  --c-bg-inset: #0B0C0E;

  /* --- 罫線 --- */
  --c-line: #2A2E35;
  --c-line-strong: #3B414A;

  /* --- 文字 ---
     #F5F5F2 / #101114 = 17.4:1、#C7CAD0 = 11.4:1、#8A8F98 = 5.6:1（いずれも4.5:1以上） */
  --c-fg: #F5F5F2;
  --c-fg-2: #C7CAD0;
  --c-muted: #969BA4;

  /* --- アクセント（ゴールド1色 + 状態色） ---
     #CDB87F / #101114 = 9.6:1、#B6A16A / #101114 = 7.4:1 */
  --c-accent: #B6A16A;
  --c-accent-bright: #CDB87F;
  --c-accent-ink: #16130A;
  --c-accent-soft: rgba(182, 161, 106, 0.14);
  --c-accent-line: rgba(182, 161, 106, 0.42);

  --c-ok: #7FC7A4;      /* 営業中・出勤あり */
  --c-off: #B4B9C1;     /* 休業・出勤なし */
  --c-alert: #E8897B;   /* エラー・注意（#101114 上で 6.2:1） */
  --c-focus: #CDB87F;

  /* --- 角丸（8px 単一） --- */
  --radius: 8px;

  /* --- 影（2段階） --- */
  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-2: 0 12px 32px rgba(0, 0, 0, 0.55);

  /* --- 寸法 --- */
  --w-page: 1200px;
  --w-text: 760px;
  --h-header: 72px;
  --h-cta: 52px;   /* 固定CTA項目の最小高。上辺1pxボーダー込みの実高を 48〜56px に収める */
  --tap: 44px;

  /* --- 余白 --- */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 88px;

  /* --- 文字サイズ（最小14px） --- */
  --fs-note: 14px;   /* 注記・補足 */
  --fs-body: 16px;   /* 本文・料金・時刻・住所・ラベル */
  --fs-lead: 17px;
  --fs-h4: 18px;
  --fs-h3: 21px;
  --fs-h2: clamp(24px, 2.6vw, 32px);
  --fs-h1: clamp(28px, 4vw, 44px);
  --fs-display: clamp(32px, 5.4vw, 54px);

  --lh-tight: 1.32;
  --lh-normal: 1.6;
  --lh-long: 1.75;

  /* --- 書体 --- */
  --font-base: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-num: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* --- モーション（1サイト2種類まで: fade-up / fade） --- */
  --dur: 420ms;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --z-header: 60;
  --z-cta: 70;
  --z-drawer: 90;
  --z-modal: 100;
}

@media (prefers-reduced-motion: reduce) {
  :root { --dur: 1ms; }
}
