/* システムフォントのみを使用（オフライン対応・Google Fonts依存なし） */
:root {
  --app-font-family: 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans',
    'Meiryo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
}
body {
  font-family: var(--app-font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
