/* SITE 75 — HOST RECRUIT FOCUS / design tokens
   配色: ブラック #171717 / オフホワイト #EFEFEC / キャメル #C48B50 / スレート #59616B
   角丸は 4px のみ（MASTER §8: 1サイト内で混在させない）
   影は 2段階まで
   本文16px / 注記14px を最小値とする
   数字は lining-nums / tabular-nums を既定にする（電話・料金・日付で old-style を出さない） */
:root {
  /* --- 面 --- */
  --c-bg: #171717;
  --c-bg-2: #1E1F20;
  --c-bg-3: #26282A;
  --c-bg-inset: #101010;

  /* --- 罫線（スレート系） --- */
  --c-line: #32363B;
  --c-line-strong: #454B52;

  /* --- 文字 ---
     #EFEFEC / #171717 = 15.9:1、#C9CACC = 10.9:1、#9AA1AA = 6.9:1（いずれも4.5:1以上） */
  --c-fg: #EFEFEC;
  --c-fg-2: #C9CACC;
  --c-muted: #9AA1AA;

  /* --- アクセント（キャメル1色 + 状態色） ---
     #C48B50 / #171717 = 6.1:1、#DCA76D / #171717 = 8.5:1 */
  --c-accent: #C48B50;
  --c-accent-bright: #DCA76D;
  --c-accent-ink: #1B1206;
  --c-accent-soft: rgba(196, 139, 80, 0.13);
  --c-accent-line: rgba(196, 139, 80, 0.42);

  /* --- 求人モードの副アクセント（スレート）--- */
  --c-slate: #59616B;
  --c-slate-soft: rgba(89, 97, 107, 0.24);
  --c-slate-line: rgba(122, 132, 145, 0.5);

  --c-ok: #7FC29A;      /* 営業中・出勤あり */
  --c-off: #AEB4BB;     /* 休業・出勤なし */
  --c-alert: #E98D7E;   /* エラー・注意（#171717 上で 6.5:1） */
  --c-focus: #DCA76D;

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

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

  /* --- 寸法 --- */
  --w-page: 1120px;
  --w-text: 740px;
  --h-header: 72px;
  /* 固定CTAの項目高。上辺 1px ボーダーを足した実高が MASTER §6 の 48〜56px に収まる値にする */
  --h-cta: 54px;
  --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: 84px;

  /* --- 文字サイズ（最小14px） --- */
  --fs-note: 14px;   /* 注記・補足 */
  --fs-body: 16px;   /* 本文・料金・時刻・住所・ラベル */
  --fs-lead: 17px;
  --fs-h4: 18px;
  --fs-h3: 21px;
  --fs-h2: clamp(23px, 2.4vw, 30px);
  --fs-h1: clamp(27px, 3.6vw, 40px);
  --fs-display: clamp(30px, 4.4vw, 46px);

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

  /* --- 書体（Barlow + Noto Sans JP / システムフォントへフォールバック） --- */
  --font-base: "Barlow", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-num: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* --- モーション（fade-up 1種のみ） --- */
  --dur: 380ms;
  --ease: cubic-bezier(0.2, 0.6, 0.3, 1);

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

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