:root {
  /* 背景・文字 */
  --color-bg-page: #fcfbf8;
  --color-bg-section: #f4f1eb;
  --color-bg-elevated: #ffffff;
  --color-bg-strong: #25282c;
  --color-bg-hover: #756a82;
  --color-text-primary: #25282c;
  --color-text-secondary: #686b70;
  --color-text-inverse: #ffffff;
  --color-text-accent: #756a82;
  --color-border-default: #ddd8d0;

  /* アクセント */
  --color-accent-sun: #efa847;
  --color-accent-coral: #dd795a;
  --color-accent-sun-soft: #ffe6ab;
  --color-accent-lavender: #d8cee7;

  /* フォント */
  --font-heading: "Zen Kaku Gothic New", "Yu Gothic", sans-serif;
  --font-body: "Noto Sans JP", "Yu Gothic", sans-serif;

  /* 余白・形状 */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 60px;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 4px 16px rgb(0 0 0 / 6%);

  /* レイアウト・動き */
  --content-width: 1200px;
  --header-height: 60px;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}

@media (min-width: 1024px) {
  :root {
    --header-height: 87px;
  }
}
