/* ===========================================
   base.css
   基本タイポグラフィとボディ設定
   =========================================== */

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}

/* === 見出し === */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
  font-weight: 700;
}

h1 { font-size: clamp(32px, 5vw, 48px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(20px, 3vw, 24px); }
h4 { font-size: 18px; }

/* === 本文 === */
p {
  line-height: 1.8;
}

a {
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* === ディスプレイフォント === */
.display-font {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === 強調 === */
strong {
  font-weight: 700;
}

/* === 区切り線 === */
hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-4) 0;
}