@charset "UTF-8";
/*ヘッダー*/
header {
  width: 100%;
  height: 110px;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  z-index: 9999;
}
header h1 {
  margin: 0;
}
header h1.logo img {
  width: 180px;
  position: absolute;
  top: 35px;
  left: 3%;
}
header nav {
  width: 780px;
  position: absolute;
  top: 35px;
  right: 2%;
}
header nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
header nav ul li a {
  display: block;
  width: 125px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  background-color: #938669;
  padding: 7px 0;
  border-radius: 5px;
  text-align: center;
  float: left;
  margin: 0 2px;
}
/*トグル*/
.nav-toggle {
  display: none;
}
.nav-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #b5ac88;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
.nav-toggle span:nth-child(1) {
  top: 0;
}
.nav-toggle span:nth-child(2) {
  top: 11px;
}
.nav-toggle span:nth-child(3) {
  top: 22px;
}
@media screen and (max-width:1050px) {
  /*トグル*/
  .nav-toggle {
    display: block;
    position: absolute;
    right: 5%;
    top: 25px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10000;
  }
  .open .nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  .open .nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open .nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
  .open nav {
    display: block;
    animation-duration: 0.6s;
    animation-name: fade-in;
  }
  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  /*ヘッダー*/
  header {
    width: 100%;
    height: 73px;
    background-color: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    z-index: 9999;
    border-bottom: solid 2px #d6cda5;
  }
  header h1 {
    margin: 0;
  }
  header h1.logo {
    width: 160px;
    position: absolute;
    top: -15px;
    left: 5%;
  }
  header h1.logo img {
    width: 100%;
  }
  header nav {
    width: 100%;
    height: 100vh;
    background-color: rgba(199, 182, 165, 0.9);
    position: fixed;
    top: 92px;
    right: 0;
    display: none;
  }
  header nav ul {
    width: 80%;
    margin: 20px auto;
    padding: 0;
    list-style: none;
    text-align: center;
  }
  header nav ul li a {
    display: block;
    width: 100%;
    font-size: 16px;
    color: #fff;
	letter-spacing: 1px;
	font-weight: bold;
    text-decoration: none;
    background: no-repeat;
    padding: 10px 0;
    border-radius: 0;
    text-align: center;
    float: none;
    margin: 0;
  }
}