/* フォント表示最適化 */

/* システムフォントフォールバック */
@supports (font-variation-settings: normal) {
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Serif JP', serif;
  }
}

/* フォント読み込み完了前のシステムフォント表示 */
body {
  font-display: swap;
}

/* テキスト色の最適化 */
p, span, a, li, h1, h2, h3, h4, h5, h6 {
  font-feature-settings: "kern" 1;
  text-rendering: optimizeSpeed;
}

/* 垂直テキスト表示の最適化 */
[style*="writing-mode"] {
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* アニメーション中のテキスト最適化 */
.blur, .lineanime, 
#g-nav.panelactive ul li {
  will-change: opacity;
}
