/* ========================================
   CSS変数定義
   ======================================== */
:root {
    /* メインカラーとサブカラー */
    --primary-color: #005bac;
    --secondary-color: #ffcc00;
    
    /* 文字色 */
    --text-color-1: #ffffff;
    --text-color-2: #000000;
    
    /* 全チーム共通の補助色 */
    --white: #ffffff;
    --light-gray: #f4f4f4;
    
    /* ボーダー用の半透明色 */
    --border-white-light: rgba(255, 255, 255, 0.2);
    --border-white-medium: rgba(255, 255, 255, 0.3);
    
    /* フォント設定（デフォルト） */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-weight: 700;
}
