/*ハンバーガーメニュー*/
  .main-menu {
    margin: 0 auto;
    display: flex;
    width: 1280px;
  }

  .sp-menu__box {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background: #4c4c4c90;
  }
  .sp-menu__box span,
  .sp-menu__box span:before,
  .sp-menu__box span:after {
    content: "";
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #ffffff;
    position: absolute;
  }
  .sp-menu__box span:before {
    bottom: 8px;
  }
  .sp-menu__box span:after {
    top: 8px;
  }
  #sp-menu__check {
    display: none;
  }
  #sp-menu__check:checked ~ .sp-menu__box span {
    background: rgba(255, 255, 255, 0);
  }
  #sp-menu__check:checked ~ .sp-menu__box span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #sp-menu__check:checked ~ .sp-menu__box span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  #sp-menu__check:checked ~ .sp-menu__content {
    left: 0;
  }
  .sp-menu__content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #4c4c4c90;
    transition: all 0.5s;
  }
  .sp-menu__list {
    padding: 70px 10px 0;
  }
  .sp-menu__item {
    border-bottom: solid 1px #ffffff;
    list-style: none;
  }
  .sp-menu__link {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
  }
/*スライド*/
  #slider {
      width: 100%;
      height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
      margin-left: auto;
      margin-right: auto;
  }

/*マップ・リスト共通部分*/
  .contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    margin: 30px 0;
    padding-top: 30px;
  }

/*マップ*/
  .map {
    width: calc(100% / 2 - 30px);
    height:auto;
    margin-bottom: 30px;
    text-align: left;
    font-size:1.5vw
  }

  .maplist1{
    list-style: none;
    padding: 30px 10px;
    padding-left: 100px;
    
  }

  .maplist2{
      list-style: none;
      padding: 70px 10px;
      padding-left: 100px;
    }

  .maptext{
    color:rgb(226, 117, 117)
  }

  .map img{
    width:100%;
    height:auto;
  }

  @media only screen and (max-width: 1000px) {
    .map{
    width: calc(100% / 1 - 30px);
    }	
  }

/*リスト*/

  .list {
    width: calc(100% / 4 - 30px);
    height:auto;
    margin-bottom: 30px;
    padding: 50px 10px;
    text-align: center;
  }
  .list img{
    width:250px;
    height:auto;
  }


  @media only screen and (max-width: 1200px) {
    .list{
      width: calc(100% / 2 - 30px);
    }	
  }

  @media only screen and (max-width: 768px) {
    .list{
    width: calc(100% / 1 - 30px);
    }	
  }



  /*リストアニメーション*/
  .scroll-in{
    opacity: 0;
  }
  
  .displayed{
    animation: fadeUp 1s forwards;
 }
 @keyframes fadeUp{
     0%{opacity:0; transform: translateY(50px);}
    100%{opacity:1; transform: translateY(0);}
 }

/*文字*/
  h1{
      font-family:'Zen Kaku Gothic New', sans-serif;
      position: absolute;
      z-index: 2;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);  
      text-align: center;
      font-size:3vw;
      letter-spacing: 0.1em;
      color: #fff;
    }

    h2{
      text-align: center;
      font-size:3vw;
      padding-bottom: 30px;
      padding-top: 60px;
      font-family: "Hiragino Maru Gothic ProN W4","ヒラギノ丸ゴ ProN W4", sans-serif;
    }

    h3{
      text-align: center;
      font-size:2vw;
    }

    h4{
      text-align: center;
    }

    li{
      list-style: none;
      color: rgb(235, 107, 107);
      padding: 40px 10px;
    }

    
  

    /*字体*/
    .h1,h3,h4,li,p{
      font-family:'Zen Kaku Gothic New', sans-serif;
    }
    /*.h2{
      font-family: "Hiragino Maru Gothic ProN W4","ヒラギノ丸ゴ ProN W4";
    }*/

    a{
      text-decoration: none;
      color:black;
    }

/*背景色*/
  body{
    background-color: rgb(255, 255, 255);
  }

/*フッター*/
.end{
  background: #fff;
  text-align: center;
  color: #3a3a3a;
  margin:0px auto;
  padding:80px 0px;
  width:100%;
}
/*h5{
  text-align: center;
  width:100%;
  margin:0px auto;
  padding:0px 0px;
  font-family: Comic Sans MS;
}*/
  