/* 補助スタイル: Tailwind CDNでカバーしきれない最小限のみ */

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Noto Sans JP", "Yu Gothic UI", "Meiryo", system-ui, sans-serif;
}

/* テスト画面のラジオ選択肢の視認性アップ */
fieldset label {
  user-select: none;
}

/* テーブル内の長文を折り返さない */
table th, table td {
  white-space: nowrap;
}

@media (max-width: 640px) {
  table th, table td {
    white-space: normal;
  }
}

/* video要素のフォールバック */
video {
  background: #000;
}
