@charset "UTF-8";
/* スマホ用テーブルスクロール設定 */
.table-wrap {
  overflow-x: auto; /* はみ出た場合に横スクロールバーを表示 */
  white-space: nowrap; /* 中身のテキストが折り返されるのを防ぐ */
  width: 100%;
}
.table-wrap table {
  width: 100%; /* 必要に応じて最小幅 min-width: 600px; などを指定 */
}