/**
 * 定義（最小単位）
 * 色・フォント・スペーシングなどのデザイントークン
 */
:root {
  /* Color */
  --color-bg: #faf9f7;
  --color-surface: #ffffff;
  --color-text: #1a1916;
  --color-text-muted: #6b6963;
  --color-accent: #2563eb;
  --color-accent-light: #eff6ff;
  --color-border: #e5e3de;
  --color-success: #059669;
  --color-success-light: #ecfdf5;
  --color-success-border: #6ee7b7;

  /* Typography */
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "DM Serif Display", serif;
  --font-size-base: 16px;
  --font-size-sm: 0.875rem;
  --font-size-xs: 0.75rem;
  --line-height-base: 1.7;
  --line-height-tight: 1.3;

  /* Layout */
  --radius: 8px;
  --radius-lg: 12px;
  --container: 860px;
  --container-article: 680px;
  --container-wide: 1100px;
  --space-section-y: 48px;
  --header-height: 60px;

  /* Z-index */
  --z-header: 100;
}
