@charset "UTF-8";
/* ============================================
   CSS Variables
   ============================================ */

:root {
  /* ----------------------------------------
     Colors
     ---------------------------------------- */
  /* Primary */
  --color-primary: #152850;
  --color-primary-dark: #3e3a39;

  /* Text */
  --color-text-primary: #3e3a39;
  --color-text-secondary: #333333;
  --color-text-black: #000000;
  --color-text-white: #ffffff;

  /* Background */
  --color-bg-white: #ffffff;
  --color-bg-gray: #f5f5f5;
  --color-bg-dark: #3e3a39;
  --color-bg-light-blue: rgba(187, 222, 251, 0.25);
  --color-text-dark-gray: #424242;

  /* Border */
  --color-border: #eeeeee;

  /* Gradient */
  --gradient-cta: linear-gradient(0deg, #ff0844 0%, #ffb199 100%);

  /* ----------------------------------------
     Typography
     ---------------------------------------- */
  --font-family-primary: 'Noto Sans JP', sans-serif;
  --font-family-heading: 'Inter', 'Noto Sans JP', sans-serif;
  --font-family-accent: 'Frank Ruhl Libre', serif;
  --font-family-number: 'Lato', sans-serif;

  /* Font Size */
  --font-size-xs: 10px;
  --font-size-sm: 13px;
  --font-size-base: 16px;
  --font-size-md: 18px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-2xl: 28px;
  --font-size-3xl: 32px;
  --font-size-4xl: 40px;
  --font-size-5xl: 48px;
  --font-size-6xl: 60px;
  --font-size-7xl: 76px;

  /* Font Weight */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;

  /* Line Height */
  --line-height-tight: 1.4;
  --line-height-normal: 1.6;

  /* Letter Spacing */
  --letter-spacing-tight: 0.05em;
  --letter-spacing-normal: 0.1em;
  --letter-spacing-wide: 0.15em;

  /* ----------------------------------------
     Spacing
     ---------------------------------------- */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-xl: 20px;
  --spacing-2xl: 24px;
  --spacing-3xl: 32px;
  --spacing-4xl: 40px;
  --spacing-5xl: 48px;
  --spacing-6xl: 80px;
  --spacing-7xl: 96px;

  /* ----------------------------------------
     Layout
     ---------------------------------------- */
  --max-width-content: 1080px;
  --max-width-wide: 1280px;

  /* Header Height */
  --header-height-desktop: 124px;
  --header-height-tablet: 70px;
  --header-height-mobile: 35px;

  /* ----------------------------------------
     Border Radius
     ---------------------------------------- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 21px;
  --radius-xl: 47px;

  /* ----------------------------------------
     Transition
     ---------------------------------------- */
  --transition-fast: 0.3s ease;
  --transition-default: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0.4, 0, 1);

  /* ----------------------------------------
     Shadow
     ---------------------------------------- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

  /* ----------------------------------------
     Z-index
     ---------------------------------------- */
  --z-index-header: 100;
  --z-index-modal: 200;
  --z-index-tooltip: 300;
}
