/* CSS変数定義（@importは使わない・wp_enqueue_styleで個別読み込み） */
:root {
  /* ブランドカラー */
  --color-brand:   #1144AA;
  --color-gold:    #B8962E;

  /* 背景色 */
  --color-bg-white:  #FFFFFF;
  --color-bg-cream:  #FAF8F5;
  --color-bg-gold:   #F7F0E0;

  /* テキスト */
  --color-text-dark:  #1A1A1A;
  --color-text-gray:  #666666;
  --color-text-light: #999999;

  /* ボーダー */
  --color-border: #E8E4DE;

  /* フォント */
  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans-jp:  'Noto Sans JP', sans-serif;
  --font-en:       'Cormorant Garamond', serif;

  /* コンテナ */
  --container-max: 1440px;
  --container-padding: 100px;

  /* トランジション */
  --transition: 0.3s ease;
}
