@charset "UTF-8";

#table + section table {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
#table + section table td {
  padding: 3px;
}

/*---テーブル---*/
a[id*="table"]  + section table td,
a[id*="table"]  + section table th {
    padding: 3px;
}
a[id*="table"]  + section table .fixed {
    width: 25%;
}
a[id*="table"] + section .table-flex {
    display: flex;
    width: 100%;
}
a[id*="table"] + section .table-scroll:nth-of-type(1) {
    width: 40%;
}
a[id*="table"] + section .table-scroll:nth-of-type(2) {
    width: 60%;
}
@media screen and (max-width: 768px) {
a[id*="table"] + section .table-flex {
    flex-direction: column;
}
a[id*="table"] + section .table-scroll:nth-of-type(1) {
    width: 100%;
}
a[id*="table"] + section .table-scroll:nth-of-type(2) {
    width: 100%;
}
}