@charset "UTF-8";
header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9998;
}
header nav.nav_top h1 {
  width: 300px;
  margin: 0;
  position: fixed;
  top: 30px;
  left: 5%;
  z-index: 9999;
}
header nav.nav_top h1 img {
  width: 100%;
}
header nav.nav_top ul {
  width: 100%;
  text-align: right;
  position: absolute;
  top: 35px;
  right: 12%;
}
header nav.nav_top ul li {
  font-family: trajan-pro-3, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  margin: 0 0 0 2%;
}
header nav.nav_top ul li a {
  text-decoration: none;
  color: #fff;
  position: relative;
}
header nav.nav_top ul li a:after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #b0353e;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
header nav.nav_top ul li a:hover:after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}
header nav.nav_top ul li a:hover {
  opacity: 1;
}
/*サイトマップ*/
header nav.sitemap .logo {
  width: 400px;
  margin-bottom: 50px;
}
header nav.sitemap .logo img {
  width: 100%;
}
header nav.sitemap {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(153, 15, 26, 0.9);
  background-image: url("../img/bg_logo.png");
  background-size: 50%;
  background-position: 110% center;
  background-repeat: no-repeat;
  z-index: 9999;
  display: none;
}
header nav.sitemap .inner {
  width: 1100px;
  height: 200px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
header nav.sitemap ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
header nav.sitemap ul li {
  display: inline-block;
  margin: 0 2%;
}
header nav.sitemap ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-family: trajan-pro-3, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 2px;
}
/*トグル*/
.nav-toggle {
  display: block;
  position: fixed;
  right: 5%;
  top: 37px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 10000;
}
.nav-toggle span {
  display: block;
  position: absolute;
  height: 1px;
  width: 50px;
  background-color: #fff;
  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: 20px;
}
.nav-toggle span:nth-child(2) {
  top: 30px;
}
.open .nav-toggle span:nth-child(1) {
  top: 25px;
  transform: rotate(-45deg);
}
.open .nav-toggle span:nth-child(2) {
  top: 25px;
  transform: rotate(45deg);
}
.open nav.sitemap {
  display: block;
  animation-duration: 0.6s;
  animation-name: fade-in;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width:1050px) {
  header nav.nav_top h1 {
    width: 180px;
    margin: 0;
    position: fixed;
    top: 30px;
    left: 5%;
    z-index: 9999;
  }
  header nav.nav_top ul {
    display: none;
  }
  /*サイトマップ*/
  header nav.sitemap .logo {
    width: 180px;
    margin-bottom: 40px;
  }
  header nav.sitemap {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(153, 15, 26, 0.9);
    background-image: url("../img/bg_logo.png");
    background-size: 110%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 9999;
    display: none;
  }
  header nav.sitemap .inner {
    width: 80%;
    height: 75%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 50px 0;
  }
  header nav.sitemap ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
  }
  header nav.sitemap ul li {
    display: block;
    margin: 20px 0;
  }
  header nav.sitemap ul li a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 2px;
  }
  /*トグル*/
  .nav-toggle {
    display: block;
    position: fixed;
    right: 5%;
    top: 22px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10000;
  }
}