@charset "UTF-8";
/* テーブルスクロール */
.scroll_msg {
  margin: 20px 0 0;
  color: #0290DC;
  font-weight: bold;
}
.table_scroll {
  overflow-x: scroll;
}
.table_scroll table {
  margin: 10px 0 0;
  width: 768px;
}
@media only screen and (min-width: 769px) {
  .scroll_msg {
    display: none;
  }
  .table_scroll {
    overflow-x: unset;
  }
  .table_scroll table {
    margin: 30px 0 0;
    width: 100%;
  }
}