/* ========================================
   Design Tokens - Extracted from Figma
   代理店LP (zdKwXz3IM6IZzChavZaowf)
   ======================================== */

:root {
  /* ----------------------------------------
     Colors
     ---------------------------------------- */
  /* Primary */
  --color-primary: #eb821f;        /* オレンジ（CTA） */
  --color-primary-dark: #efa200;   /* オレンジダーク */

  /* Secondary */
  --color-navy: #1e2b50;           /* ダークネイビー（ヘッダー・背景） */
  --color-blue: #2f5dd6;           /* ブルー（アクセント） */

  /* Text */
  --color-text-primary: #000000;   /* 黒 */
  --color-text-secondary: #666666; /* グレー */
  --color-text-muted: #828282;     /* 薄グレー */
  --color-text-light: #a5a5a5;     /* さらに薄いグレー */

  /* Background */
  --color-bg-white: #ffffff;
  --color-bg-light: #f7f8f7;
  --color-bg-cream: #fffcf8;
  --color-bg-peach: #fff0e2;
  --color-bg-gray: #edeff5;
  --color-bg-light-gray: #e6e7ec;

  /* Accent */
  --color-accent-yellow: #f4ea2f;
  --color-accent-gold: #c49972;
  --color-accent-red: #d9161c;

  /* Border */
  --color-border: #d9d9d9;
  --color-border-light: #c6c9d3;

  /* ----------------------------------------
     Typography
     ---------------------------------------- */
  /* Font Families */
  --font-primary: 'Noto Sans JP', sans-serif;
  --font-mincho: 'Shippori Mincho', serif;
  --font-english: 'Outfit', sans-serif;

  /* Font Sizes */
  --text-xs: 14px;
  --text-sm: 16px;
  --text-base: 18px;
  --text-lg: 20px;
  --text-xl: 22px;
  --text-2xl: 30px;
  --text-3xl: 35px;
  --text-4xl: 40px;
  --text-5xl: 50px;
  --text-6xl: 60px;
  --text-hero: 90px;
  --text-hero-large: 157px;

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-bold: 700;
  --font-black: 900;

  /* ----------------------------------------
     Spacing
     ---------------------------------------- */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 80px;
  --space-4xl: 100px;

  /* ----------------------------------------
     Layout
     ---------------------------------------- */
  --container-width: 1200px;
  --container-wide: 1440px;
  --header-height: 100px;
  --button-height: 64px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* ----------------------------------------
     Shadows
     ---------------------------------------- */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);

  /* ----------------------------------------
     Transitions
     ---------------------------------------- */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}
