@charset "UTF-8";

/*--テーブルのインナー幅--*/

@media screen and (max-width: 500px) {
  .table_scroll {
    width: fit-content;
    min-width: 100%;
    max-width: 2500px;
  }
}

@media screen and (min-width: 501px) {
  .table_scroll {
    min-width: 100%;
    /*width: 1000px;*/
  }
}


/*--テーブルの横スクロール--*/
@media screen and (max-width: 1100px) {
  .outer {
    overflow: scroll;
  }

  table {
    white-space: nowrap;
  }
}


@media screen and (max-width: 768px) {
  .table_scroll {
    overflow: scroll;
    overflow: auto;
  }

  table {
   white-space: nowrap;
  }
}

@media screen and (max-width: 1100px){
  .block_table_3 table td, .block_table_7 table td,
  .block_table_3 table th, .block_table_7 table th{
      overflow: scroll;
  }
}