table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  font-family: 'Roboto', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
}

table th, table td {
  /* font-size: 1.6rem; */ /* スマホでも適度に可読 */
  text-align: center;
  padding: 10px;
  word-break: break-word; /* 長文がはみ出さない */
}
table tr:last-child td {
    background: none;
}
@media (max-width: 600px) {
  table th {
    background: #434343;
    color: #fff;
  }
  table td {
    background: #ffffff;
    color: #252525;
    font-size: 18px;
  }
}
