色々やり方はありそうでしたが、これが既存のテーブルのスタイルやhtmlを編集せずにシンプルに実装できそうで良かったです。
<div class="sc-table">
<table>
<tbody>
<tr>
<th>・・・</th>
<th>・・・</th>
<th>・・・</th>
</tr>
<tr>
<td>・・・</td>
<td>・・・</td>
<td>・・・</td>
</tr>
<tr>
<td>・・・</td>
<td>・・・</td>
<td>・・・</td>
</tr>
</tbody>
</table>
</div>
.sc-table {
overflow-x: scroll;
white-space: nowrap;
}
/*古いブラウザに対応したい場合*/
.sc-table {
overflow: scroll;
white-space: nowrap;
}