/* CSS変数定義 - デザイントークン */

:root {
  /* ========================================
     カラーパレット
     ======================================== */
  
  /* プライマリ - ゴールド系 */
  --color-primary: #c9a65d;
  --color-primary-dark: #8b4513;
  --color-primary-light: #f0e68c;
  
  /* ニュートラル */
  --color-bg: #faf3db;
  --color-bg-dark: #000000;
  --color-text: #8b4513;
  --color-text-light: #a0522d;
  --color-text-inverse: #ffffff;
  
  /* アクセント */
  --color-accent-pink: #ff99c8;
  --color-accent-pink-hover: #ff6fae;
  --color-accent-blue: #5a8df9;
  --color-accent-blue-hover: #0066ff;
  
  /* ステージカラー */
  --color-stage-mvp: #ffe0ff;
  --color-stage-final: #e0efff;
  --color-stage-semi: #eaffea;
  
  /* ========================================
     タイポグラフィ
     ======================================== */
  --font-family: 'Noto Sans JP', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  
  /* ========================================
     スペーシング
     ======================================== */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  
  /* ========================================
     シャドウ
     ======================================== */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 6px 10px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 10px 20px rgba(0, 0, 0, 0.4);
  
  /* ========================================
     ボーダー
     ======================================== */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-full: 9999px;
  
  /* ========================================
     トランジション
     ======================================== */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* ========================================
     レイアウト
     ======================================== */
  --max-width: 1200px;
  --header-height: auto;
  --tab-height: 48px;
  
  /* ========================================
     Z-index
     ======================================== */
  --z-dropdown: 100;
  --z-modal: 1000;
  --z-toast: 1100;
}

/* ダークモード対応（将来拡張用） */
@media (prefers-color-scheme: dark) {
  :root {
    /* 必要に応じてダークモード変数を定義 */
  }
}
