/* フォント表示の最適化 */ body { font-display: swap; text-rendering: optimizeSpeed; } /* インタラクティブ要素の応答性を向上 */ a, button, input, select, textarea { touch-action: manipulation; } /* タップ操作の視覚フィードバック */ a:active, button:active { transform: scale(0.98); transition: transform 0.1s; } /* スクロール性能の最適化 */ .entry-conte…