/**
 * Base Fonts
 * フォント読み込み（1箇所で統一管理）
 */

/* Google Fonts - 全ページ共通 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* ===== Base Typography ===== */
body {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Font Family Utilities ===== */
.font-serif {
  font-family: var(--font-serif);
}

.font-sans {
  font-family: var(--font-sans);
}

.font-mono {
  font-family: var(--font-mono);
}

/* ===== Font Weight Utilities ===== */
.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* ===== Font Size Utilities ===== */
.text-xs {
  font-size: 12px;
  line-height: 1.5;
}

.text-sm {
  font-size: 14px;
  line-height: 1.5;
}

.text-base {
  font-size: 16px;
  line-height: 1.6;
}

.text-lg {
  font-size: 18px;
  line-height: 1.6;
}

.text-xl {
  font-size: 20px;
  line-height: 1.5;
}

.text-2xl {
  font-size: 24px;
  line-height: 1.4;
}

.text-3xl {
  font-size: 28px;
  line-height: 1.3;
}

.text-4xl {
  font-size: 32px;
  line-height: 1.2;
}
