/* =========================================================
   base.css — リセット ＋ body 基本スタイル
   ========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

/* CTA（#form 等）のアンカー移動を滑らかに（全ページ共通・挙動のみ／レイアウト不変） */
html { scroll-behavior: smooth; }
/* 動きを減らす設定のユーザーには即時ジャンプに（アクセシビリティ配慮） */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 700; }
