body{
    background-color: rgb(138, 220, 230);
    font-family: 'M PLUS 1', sans-serif;
}

.gawa{
  border: #fff solid 3px;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  box-shadow: 5px 5px 10px -5px;
}

#humberger {
    position: relative;
    height: 20px;
    width: 28px;
    display: inline-block;
    box-sizing: border-box;
  }
  #humberger div {
    position: absolute;
    left: 0;
    height: 2px;
    width: 28px;
    background-color: #444;
    border-radius: 2px;
    display: inline-block;
    box-sizing: border-box;
  }
  #humberger div:nth-of-type(1) {
    bottom: 20px;
  }
  #humberger div:nth-of-type(2) {
    bottom: 10px;
  }
  #humberger div:nth-of-type(3) {
    bottom: 0;
  }
h1{
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    font-weight: bold;
}
h2{
    text-align: center;
    letter-spacing: 0.1em;
}
p{
  letter-spacing: 0.04em;
}
ul{
  letter-spacing: 0.04em;
}
img{
  margin-top: 60px;
    width: 100%;
    height: 400px;
    object-fit:cover;
    object-position: center 30%;
}
iframe{
    width: 100%;
}
section{
    width: 800px;
    margin: 0 auto;
}
input[type="text"],input[type="email"],textarea{
    width: 100%;
}
textarea{
    height: 80px;
}
.map,a{
    text-align:center;
}
footer{
  width: 800px;
  text-align: center;
  margin: 0 auto;
}

.header {
    background-color: rgb(138, 220, 230);
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    margin-bottom: 5px;
    z-index: +1;
  }
  header>p{
    margin: 0px 20px 0px;
  }

  .nav_list{
    font-size: 20px;
    text-align: center;
    width: 800px;
    margin: 0 auto;
    margin-top: 20px;
  }
  .nav_item{
    border:rgb(138, 220, 230) 3px solid;
    background-color: rgb(138, 220, 230);
    margin-bottom: 15px;
    letter-spacing: 0.04em;
    border-radius: 20px;
  }

  #pic {
    animation :imgfade 10s infinite;
    opacity: 0;
    }
    
    @keyframes imgfade {
      0% {
        opacity: 0;
      }
      
      25% {
        opacity: 1;
      }
      50% {
        opacity: 1;
      }
    
      75% {
        opacity: 1;
      }
      100% {
        opacity: 0;
      }
    }
  
  /* ここから下がハンバーガーメニューに関するCSS */
    
  /* チェックボックスを非表示にする */
  .drawer_hidden {
    display:none;
  }
  
  /* ハンバーガーアイコンの設置スペース */
  .drawer_open {
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;/* 重なり順を一番上にする */
    cursor: pointer;
  }
  
  /* ハンバーガーメニューのアイコン */
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
  }
  
  /* 三本線の一番上の棒の位置調整 */
  .drawer_open span:before {
    bottom: 8px;
  }
  
  /* 三本線の一番下の棒の位置調整 */
  .drawer_open span:after {
    top: 8px;
  }
  
  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
  }
  
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  
  #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
  }
    
  /* メニューのデザイン*/
  .nav_content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%; /* メニューを画面の外に飛ばす */
    z-index: 99;
    background: #fff;
    transition: .5s;
  }
  
  /* メニュー黒ポチを消す */
  .nav_list {
    list-style: none;
  }
  
  /* アイコンがクリックされたらメニューを表示 */
  #drawer_input:checked ~ .nav_content {
    left: 0;/* メニューを画面に入れる */
  }


@media screen and (max-width:640px){
  section{
    width: 100%;
}
.nav_list{
  width: 100%;
}
footer{
  width: 100%;
}
header{
  margin-bottom: 0px;
}
header>p{
  margin: 0px 5px 0px;
  font-size: 16px;
}
h1{
  font-size: 25px;
}
img{
  height: 350px;
}
}