/*画面幅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;
  }


  .kaijoContainer img {
    width: 100px;
  }

  .parkingMark img {
    width: 30px;
  }


  .kaijoItems h3 {
    font-size: 23px;
  }

  .kaijoItems2 img {
    width: 100px;
  }

  .kaijoItems3 img {
    width: 100px;
  }

  .kaijoItems2 h4 {
    font-size: 20px;
  }

  .kaijoItems3 h4 {
    font-size: 20px;

  }


}





/*画面幅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;
  }







}