/* ==========================================================================
   Design Tokens
   すべての色・タイポグラフィ・スペーシングはこのファイルのCSS変数を経由する。
   ========================================================================== */

:root {
  /* --- Color: base（背景は白基調） --- */
  --color-bg: #ffffff;
  --color-bg-elevated: #ffffff;
  --color-fg: #000000;
  --color-fg-muted: #5c5c5c;
  --color-border: #dbdbdb;

  /* --- Color: メインカラー（信頼感のあるブルー。CTA/リンク/フォーカス） --- */
  --color-accent: #004ca0;
  --color-accent-hover: #003876;
  --color-accent-foreground: #ffffff;

  /* --- Color: サブカラー（ゴールド。数値・強調ワードなど控えめな差し色） --- */
  --color-secondary: #c9a333;
  --color-secondary-foreground: #ffffff;

  /* --- Color: dark section（フッター等） --- */
  --color-ink: #000000;
  --color-ink-foreground: #ffffff;

  /* --- Feedback --- */
  --color-error: #c0392b;
  --color-success: #1e7a4c;

  /* --- Typography: font family ---
     見出し・本文ともに Noto Sans JP で統一する。 */
  --font-heading: "Noto Sans JP", -apple-system, "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-body: "Noto Sans JP", -apple-system, "Hiragino Sans", "Yu Gothic", sans-serif;

  /* --- Typography: scale（比率 1.25 = Major Third、モバイル基準） --- */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 1.875rem;  /* 30px */
  --text-4xl: 2.375rem;  /* 38px */
  --text-5xl: 3rem;      /* 48px */

  /* --- Spacing（4pxグリッド） --- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* --- Layout --- */
  --container-max: 1120px;
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.5rem;

  /* --- Motion --- */
  --transition-fast: 150ms ease-out;
  --transition-base: 250ms ease-out;
  --transition-slow: 400ms ease-in-out;

  /* --- Elevation（柔らかい印象にするため控えめに） --- */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
