body{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: black;
  color: white;
}
*{
  font-family: YuMincho, 'Yu Mincho', serif;
}

a{
  color: white;
  text-decoration: none;
  display: block;
}
a:hover{
  color: white;
  opacity: .8;
}

nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  height: 15vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid white;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
}
.icon{
  display: none;
}
nav img{
  height: 10vh;
}
nav ul{
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding: 0;
  padding-bottom: 3vh;
  height: 100%;
}
nav ul li{
  list-style: none;
  padding-left: 6vh;
  letter-spacing: 3px;
}
header{
  padding-top: 15vh;
  margin-bottom: 50px;
}
header img{
  text-align: center;
  width: 50%;
  margin: 0 auto;
  display: block;
}

h2{
  letter-spacing: 5px;
  padding-top: 200px;
  padding-bottom: 60px;
  text-align: center;
}

.kodawari-back{
  background-image: url(../img/miso-t-res.jpg);
  background-size: cover;
  position: relative;
}
.kodawari-back::after{
  content: '';
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: .5;
}
.kodawari h3{
  font-size: 32px;
  padding: 20px 0;
}
.kodawari-box{
  margin: 30px auto;
  padding: 10px 20px;
  width: 80%;
  z-index: 3;
}
.kodawari-box p{
  line-height: 50px;
  font-weight: bold;
}
.menu img{
  width: 100%;
}
.menu a{
  margin-top: 50px;
  text-decoration: underline;
  text-align: right;
  letter-spacing: 3px;
  margin-right: 3vh;
}

table{
  text-align: center;
  color: white;
}
tr{
  height: 60px;
}
.info,.accese{
  width: 90%;
  margin: 0 auto;
}
.info table{
  color: white;
}
.accese table{
  color: white;
}
.iframe{
  text-align: center;
  margin: 30px 0;
}
iframe{
  border-radius: 5px;
  width: 100%;
}

footer{
  border-top: 1px solid white;
  margin-top: 80px;
  padding: 50px 0 10px 0;
}
.sns{
  text-align: center;
}
footer img{
  width: 7vh;
}
.footer-nav ul{
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 10vh;
  width: 70%;
  margin: 50px auto;
}
small{
  display: block;
  text-align: right;
}

@media screen and (max-width:800px){

  nav{
    height: 12vh;
    justify-content: space-around;
  }
  nav img{
    height: 8vh;
  }
  .res-nav{
    position: fixed;
    top: 0;
    left: 1000px;
    width: 100%;
    height: 100vh;
    padding-top: 5vh;
    background-color: rgba(0, 0, 0, 0.8);
    flex-direction: column;
    align-items: center;
    transition: .6s ease-in-out;
  }
  .res-nav-open{
    left: 0px;
    transition: .6s ease-in-out;
  }
  nav ul li{
    border-bottom: 1px solid rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    width: 80%;
    text-align: center;
    margin: 0 auto;
  }

  .icon{
    display: block;
    transition: .5s;
    padding-left: 35vh;
  }
  .batu{
    display: none;
  }
  .icon img{
    width: 40px;
    height: 40px;
    padding-left: 0;
  }
  .icon img:hover{
    cursor: pointer;
  }
  .open{
    display: block;
  }
  .close{
    display: none;
  }
  /* .batu{
    margin-top: 15px;
  } */
  .footer-nav ul{
    flex-direction: column;
    margin: 50px 20px;
    width: 100%;
    align-items: flex-start;
  }
  small{
    text-align: center;
  }
}

@media screen and (max-width:650px){
  table{
    font-size: 12px;
  }
  
  .kodawari h3{
    text-align: center;
  }
}
@media screen and (max-width:540px){
  .kodawari-back{
    background-image: none;
  }
}
@media screen and (max-width:400px){
  .icon{
    padding-left: 20vh;
  }
  table{
    font-size: 11px;
  }
}