/* CSS Variables */
:root {
  /* Colors */
  --main-color: #2C5F7D;
  --accent-color: #6DB4C8;
  --sub-color: #E8F4F8;
  --text-color: #2C5F7D;
  --text-sub-color: #5A8A9B;
  --bg-color: #FFFFFF;
  --bg-light: #F5FAFB;

  /* Typography */
  --font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;

  /* Font Sizes */
  --font-size-h1: 2.5rem;    /* 40px */
  --font-size-h2: 2rem;      /* 32px */
  --font-size-h3: 1.5rem;    /* 24px */
  --font-size-body: 1rem;    /* 16px */
  --font-size-small: 0.875rem; /* 14px */

  /* Font Weights */
  --font-weight-bold: 700;
  --font-weight-medium: 500;
  --font-weight-regular: 400;

  /* Letter Spacing */
  --letter-spacing-h1: 0.05em;
  --letter-spacing-h2: 0.03em;
  --letter-spacing-h3: 0.02em;

  /* Line Heights */
  --line-height-heading: 1.4;
  --line-height-body: 1.8;
  --line-height-small: 1.6;

  /* Spacing */
  --spacing-xs: 0.5rem;   /* 8px */
  --spacing-sm: 1rem;     /* 16px */
  --spacing-md: 2rem;     /* 32px */
  --spacing-lg: 3rem;     /* 48px */
  --spacing-xl: 4rem;     /* 64px */
  --spacing-xxl: 6rem;    /* 96px */

  /* Container */
  --container-width: 1200px;
  --container-padding: 1.5rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* 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.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-index */
  --z-index-dropdown: 100;
  --z-index-sticky: 200;
  --z-index-fixed: 300;
  --z-index-modal-backdrop: 400;
  --z-index-modal: 500;
  --z-index-loading: 1000;

  /* Header Height */
  --header-height: 80px;
  --header-height-mobile: 60px;
}

/* Responsive Font Sizes */
@media (max-width: 1023px) {
  :root {
    --font-size-h1: 2rem;      /* 32px */
    --font-size-h2: 1.75rem;   /* 28px */
    --font-size-h3: 1.25rem;   /* 20px */
  }
}

@media (max-width: 767px) {
  :root {
    --font-size-h1: 1.5rem;    /* 24px */
    --font-size-h2: 1.25rem;   /* 20px */
    --font-size-h3: 1rem;      /* 16px */
    --font-size-body: 0.875rem; /* 14px */
    --container-padding: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
  }
}
