/* ============================================
   Design Tokens - 実践みんなの特別支援教育 LP
   ============================================ */

:root {
  /* --- Colors --- */
  /* Primary: 若々しくフレッシュなグリーン */
  --color-primary: #00a960;
  --color-primary-light: #33c47d;
  --color-primary-dark: #008c4e;
  --color-primary-bg: #e6f7ed;

  /* Accent: 温かみのあるオレンジ（CTA用） */
  --color-accent: #e65100;
  --color-accent-light: #ff6d00;
  --color-accent-bg: #fff3e0;

  /* Neutral */
  --color-text: #1a1a1a;
  --color-text-secondary: #555555;
  --color-text-muted: #777777;
  --color-bg: #ffffff;
  --color-bg-light: #f9f9f7;
  --color-bg-warm: #fafaf5;
  --color-border: #e0e0e0;
  --color-border-light: #eeeeee;

  /* Semantic */
  --color-recruit: #1565c0;
  --color-recruit-bg: #e3f2fd;
  --color-seminar: #6a1b9a;
  --color-seminar-bg: #f3e5f5;
  --color-ranking: #f9a825;

  /* --- Typography --- */
  --font-family-base: "Inter", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-size-xs: 0.75rem;
  /* 12px */
  --font-size-sm: 0.875rem;
  /* 14px */
  --font-size-base: 1rem;
  /* 16px */
  --font-size-md: 1.125rem;
  /* 18px */
  --font-size-lg: 1.25rem;
  /* 20px */
  --font-size-xl: 1.5rem;
  /* 24px */
  --font-size-2xl: 1.75rem;
  /* 28px */
  --font-size-3xl: 2rem;
  /* 32px */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --line-height-tight: 1.3;
  --line-height-base: 1.7;
  --line-height-loose: 1.9;

  /* --- Spacing --- */
  --space-xs: 0.25rem;
  /* 4px */
  --space-sm: 0.5rem;
  /* 8px */
  --space-md: 1rem;
  /* 16px */
  --space-lg: 1.5rem;
  /* 24px */
  --space-xl: 2rem;
  /* 32px */
  --space-2xl: 3rem;
  /* 48px */
  --space-3xl: 4rem;
  /* 64px */
  --space-4xl: 6rem;
  /* 96px */

  /* --- Border Radius --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

  /* --- Transitions --- */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;

  /* --- Layout --- */
  --container-max: 1080px;
  --container-padding: var(--space-md);

  /* --- Z-index --- */
  --z-sticky: 100;
  --z-header: 200;
  --z-overlay: 300;
  --z-modal: 400;
}