/*
===============================================
CSS Variables for FujiwaraOffice Website
株式会社ふじわらOffice コーポレートサイト用CSS変数
===============================================
*/

:root {
  /* ===============================================
     カラーパレット / Color Palette
     =============================================== */
  
  /* メインカラー */
  --color-primary: #0096ca;      /* スカイブルー - メインカラー */
  --color-primary-light: #33abd5; 
  --color-primary-dark: #007ba3;
  --color-primary-subtle: #eaf5f5; /* メインカラーの淡色背景 */
  
  /* アクセントカラー */
  --color-accent: #fac60e;       /* サンフラワーイエロー */
  --color-accent-light: #fbd340;
  --color-accent-dark: #e0b00c;
  --color-accent-subtle: #fff9eb; /* アクセントの淡色背景 */
  
  /* ベースカラー */
  --color-white: #ffffff;
  --color-black: #1a1a1a;        /* ディープブラック */
  --color-text: #1a1a1a;         /* テキストカラー */
  --color-background: #f7f7f5;   /* 背景グレー - ウォームホワイト */
  --color-neutral: #333333;      /* ニュートラル（予約済み） */
  
  /* グレースケール */
  --color-gray-light: #cccccc;   /* グレー1 - ライトグレー */
  --color-gray-medium: #aaaaaa;  /* グレー2 - ミディアムグレー */
  --color-gray-dark: #999999;    /* グレー3 - ダークグレー */
  --color-gray-subtle: #ebebeb;  /* グレー4 - サブトルグレー */
  
  /* ===============================================
     タイポグラフィ / Typography
     =============================================== */
  
  /* フォントファミリー */
  --font-japanese: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  --font-english: 'Karla', 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  
  /* フォントサイズ */
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 1.875rem;  /* 30px */
  --font-size-4xl: 2.25rem;   /* 36px */
  --font-size-5xl: 3rem;      /* 48px */
  
  /* フォントウェイト */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;  /* Noto Sans JP Medium */
  --font-weight-semibold: 600;  /* Karla Semibold */
  --font-weight-bold: 700;  /* Noto Sans JP Bold */
  
  /* 行間 */
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  /* ===============================================
     レイアウト / Layout
     =============================================== */
  
  /* コンテナ幅 */
  --container-width-main: 500px;     /* 本文エリア固定幅 */
  --container-width-side: 340px;     /* サイドエリア幅 */
  --container-width-full: 1200px;    /* フルコンテナ幅 */
  --gap-sidebar: 115px;              /* サイドバー間ギャップ */
  --gap-content: 20px;               /* コンテンツ間ギャップ */
  
  /* ブレイクポイント（CSS内では使用不可、参考値） */
  --breakpoint-mobile: 500px;
  --breakpoint-tablet: 1023px;
  --breakpoint-desktop: 1024px;
  
  /* スペーシング */
  --spacing-xs: 0.25rem;   /* 4px */
  --spacing-sm: 0.5rem;    /* 8px */
  --spacing-md: 1rem;      /* 16px */
  --spacing-lg: 1.5rem;    /* 24px */
  --spacing-xl: 2rem;      /* 32px */
  --spacing-2xl: 3rem;     /* 48px */
  --spacing-3xl: 4rem;     /* 64px */
  --spacing-4xl: 6rem;     /* 96px */
  
  /* パディング */
  --padding-container: 20px;
  --padding-section: 3rem 0;
  --padding-component: 1.5rem;
  
  /* ===============================================
     インタラクション / Interaction
     =============================================== */
  
  /* トランジション */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* ボーダーラディウス */
  --radius-sm: 0.25rem;    /* 4px */
  --radius-md: 0.5rem;     /* 8px */
  --radius-lg: 0.75rem;    /* 12px */
  --radius-xl: 20px;       /* 20px */
  --radius-full: 9999px;   /* 完全な円形 */
  
  /* シャドウ */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* ===============================================
     Z-index / Layer Management
     =============================================== */
  
  --z-base: 1;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
  --z-toast: 1070;
}