@charset "UTF-8";
/* CSS Document */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: 9999;
  transition: all .3s;
}
header.scroll-nav {
  height: 90px;
  background-color: #f5f4f3;
  transition: all .3s;
}
header #header_wrapper h1 {
  position: absolute;
  top: 5px;
  left: 4%;
  width: 80px;
  margin: 0;
}
header #header_wrapper h1 img {
  width: 100%;
}
header nav {
  position: absolute;
  top: 35px;
  right: 3%;
}
header nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
header nav ul li {
  font-size: 16px;
  letter-spacing: 2px;
}
header nav ul li a {
  display: block;
  text-decoration: none;
  color: #42210b;
  padding: 0 20px;
}
/*---トグル---*/
.nav-toggle {
  display: none;
}

@media screen and (max-width:1050px) {
    
  header {
    height: 50px;
  }
    
    header.scroll-nav {
  height: 60px;
  background-color: #f5f4f3;
  transition: all .3s;
}
  header #header_wrapper h1 {
    width: 60px;
    top: 1px;
  }
  header nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-color: rgba(255, 255, 255, 0.8);
    display: none;
  }
  header nav ul {
    display: block;
    width: auto;
    margin: 80px auto 0;
    height: 70%;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    text-align: center;
  }
  header nav ul li a {
    padding: 10px 0;
    font-size: 20px;
  }
  /*---トグル---*/
  .nav-toggle {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 70px;
    height: 60px;
    cursor: pointer;
    background-color: #736357;
    z-index: 9999;
    overflow: hidden;
    border-bottom-left-radius: 10px;
  }
  .nav-toggle span {
    display: block;
    position: absolute;
    height: 2.5px;
    width: 30px;
    background-color: #fff;
    left: 20.3px;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }
  .nav-toggle span:nth-child(1) {
    top: 18px;
  }
  .nav-toggle span:nth-child(2) {
    top: 28px;
  }
  .nav-toggle span:nth-child(3) {
    top: 38px;
  }
  .open .nav-toggle span:nth-child(1) {
    top: 28px;
    transform: rotate(-45deg);
  }
  .open .nav-toggle span:nth-child(2) {
    left: 50%;
    opacity: 0;
    animation: active-menu-bar02 .8s forwards;
  }
  .open .nav-toggle span:nth-child(3) {
    top: 28px;
    transform: rotate(45deg);
  }
  .open nav {
    display: block;
    animation-duration: 0.6s;
    animation-name: fade-in;
  }
    
  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }


