/* ============================================================
   Design Tokens — にしごりクリニック HP v2
   "静かな高級感" カラー・スペーシング・タイポグラフィ定義
   ============================================================ */
:root {
  /* Color — 白・紺・グレー・淡いブルー（専門性・信頼感・清潔感）*/
  --c-bg:          #f8f9fb;   /* ほぼ白の背景 */
  --c-surface:     #FFFFFF;
  --c-surface-alt: #f0f3f7;   /* セクション背景（淡いグレー）*/
  --c-primary:     #1a3d6e;   /* 紺（専門性・信頼）*/
  --c-primary-mid: #2c5aa0;   /* ミッドブルー */
  --c-accent:      #4a90c4;   /* ブルー（清潔感）*/
  --c-accent-light:#e8f0f8;   /* 淡いブルー */
  --c-text:        #2C2C2C;
  --c-text-mid:    #5A5A5A;
  --c-text-muted:  #8B8B8B;
  --c-border:      #d0d8e0;
  --c-border-light:#e8ecf0;
  --c-white:       #FFFFFF;
  --c-error:       #C0392B;

  /* Typography */
  --font-sans:   'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', system-ui, sans-serif;
  --font-serif:  'Noto Serif JP', 'Hiragino Mincho ProN', Georgia, serif;

  --text-xs:    0.75rem;   /*  12px */
  --text-sm:    0.875rem;  /*  14px */
  --text-base:  1rem;      /*  16px */
  --text-md:    1.125rem;  /*  18px */
  --text-lg:    1.25rem;   /*  20px */
  --text-xl:    1.5rem;    /*  24px */
  --text-2xl:   1.875rem;  /*  30px */
  --text-3xl:   2.25rem;   /*  36px */
  --text-4xl:   3rem;      /*  48px */
  --text-5xl:   3.75rem;   /*  60px */

  --leading-tight:  1.25;
  --leading-normal: 1.7;
  --leading-loose:  1.9;

  --weight-regular: 400;
  --weight-medium:  500;
  --weight-bold:    700;

  /* Spacing (8px base) */
  --sp-1:   0.25rem;  /*  4px */
  --sp-2:   0.5rem;   /*  8px */
  --sp-3:   0.75rem;  /* 12px */
  --sp-4:   1rem;     /* 16px */
  --sp-5:   1.25rem;  /* 20px */
  --sp-6:   1.5rem;   /* 24px */
  --sp-7:   1.75rem;  /* 28px */
  --sp-8:   2rem;     /* 32px */
  --sp-10:  2.5rem;   /* 40px */
  --sp-12:  3rem;     /* 48px */
  --sp-14:  3.5rem;   /* 56px */
  --sp-16:  4rem;     /* 64px */
  --header-h: 60px;   /* 固定ヘッダー高（モバイル＝上段のみ。PCは下のmediaで上書き） */
  --sp-20:  5rem;     /* 80px */
  --sp-24:  6rem;     /* 96px */
  --sp-32:  8rem;     /* 128px */

  /* Layout */
  --container-max:  1120px;
  --container-text: 720px;
  --gutter:         1.5rem;

  /* Border */
  --radius-sm:  2px;
  --radius:     3px;
  --radius-md:  4px;
  --radius-lg:  6px;

  /* Shadow */
  --shadow-sm:  none;
  --shadow:     none;
  --shadow-lg:  none;

  /* Transition */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration-fast: 150ms;
  --duration:      250ms;
  --duration-slow: 400ms;
}
