/*画面幅1000px以下のときに適応_スマホ*/
@media(max-width: 1000px) {


  #mask {
    display: none;
    transition: all 0.5s ease-in-out;
  }

  .open #mask {
    display: block;
    background-color: #000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0.9;
    cursor: pointer;
    transition: all 1s ease-in-out;
    z-index: 100;
  }



  nav {
    display: block;
    width: 50%;
    position: fixed;
    background-color: #222;
    top: 0;
    left: -1000px;
    bottom: 0;
    transition: all 0.5s;
    z-index: 101;
    opacity: 0;
    overflow-y: scroll;
  }

  nav .inner ul li a {
    font-size: 12px;

  }



  .contentsContainer {
    width: 100%;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    overflow-y: scroll;
  }


  table td {
    font-size: 13px;
  }

  .newsWrapper h1 {
    font-size: 17px;
  }

  .ContentsItem img {
    width: 50%;
    padding-top: 90px;
  }


/*時刻表↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/

  .timetables table {
    width: 100%;
    margin: 0 auto;
  }

  .timetables_6 table {
    width: 100%;
    margin: 0 auto;
  }

  .timetables_7 table {
    width: 100%;
    margin: 0 auto;
  }


  .timetables_8 table {
    width: 100%;
    margin: 0 auto;
  }

  .timetables_9 table {
    width: 100%;
    margin: 0 auto;
  }


  .table_item {
    font-size: 70%;
  }

  .timetables p {
    font-size: 90%;
  }

  .timetables_6 p {
    font-size: 90%;
  }

  .timetables_7 p {
    font-size: 90%;
  }
  
  .timetables_8 p {
    font-size: 90%;
  }

  .timetables_9 p {
    font-size: 90%;
  }

}





/*画面幅1000px以上のときに適応_PC*/
@media(min-width: 1000px) {



  .toggle-btn {
    display: none;
  }


  nav {
    width: 20%;
    position: fixed;
    background-color: #222;
    top: 0;
    bottom: 0;
    transition: all 0.5s;
    overflow-y: scroll;
    z-index: 100;
  }



  .contentsContainer {
    width: 80%;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    overflow-y: scroll;
  }







}