@charset "UTF-8";
header {
  width: 100%;
  background-color: #fff;
  z-index: 10000;
  transition: all .3s;
}
.fixed_nav {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  transition: all .3s;
}
header h1 {
  margin: 0;
  width: 250px;
  position: absolute;
  top: 23px;
  left: 3%;
}
header h1 .sp {
  display: none;
}
header h1 img {
  width: 100%;
}
header h2 {
  font-size: 24px;
  margin: 0;
  padding: 15px 0;
  text-align: center;
}
header h2 a {
  display: block;
  text-decoration: none;
  color: #952b2c;
}
header h2 .sub {
  display: block;
  font-size: 15px;
  font-weight: normal;
  margin-top: 5px;
}
header h2 .sub br.sp {
  display: none;
}
header nav {
  background: linear-gradient(45deg, rgba(149, 43, 44, 1), rgba(169, 49, 50, 1), rgba(255, 98, 89, 1));
}
header nav ul {
  margin: 0;
  padding: 18px 0;
  list-style: none;
  text-align: center;
}
header nav ul li {
  display: inline-block;
}
header nav ul li a {
  display: block;
  text-decoration: none;
  border-left: solid 1px #551919;
  padding: 0 30px;
  color: #fff;
}
header nav ul li:last-child a {
  border-right: solid 1px #551919;
}
header.scroll-nav nav {
  transition: all .3s;
  box-shadow: 1px 1px 10px #aaa;
}
.nav-toggle {
  display: none;
}
@media screen and (max-width:1050px) {
  header {
    height: 60px;
    position: fixed;
    top: 0;
    box-shadow: 1px 1px 10px #aaa;
  }
  header h1 {
    margin: 0;
    width: 60px;
    position: absolute;
    top: 12px;
    left: 3%;
  }
  header h1 .pc {
    display: none;
  }
  header h1 .sp {
    display: block;
  }
  header h2 {
    font-size: 11px;
    padding: 8px 0;
  }
  header h2 .sub {
    font-size: 10px;
    line-height: 12px;
    margin-top: 3px;
  }
  header h2 .sub br.sp {
    display: block;
  }
  header nav {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0;
    margin-top: 60px;
  }
  header nav ul {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    text-align: left;
    padding: 0;
  }
  header nav ul li {
    display: block;
  }
  header nav ul li:last-child {
    margin-bottom: 100px;
  }
  header nav ul li a {
    margin: 0;
    padding: 15px 5%;
    border-left: none;
    border-bottom: solid 1px #efefef;
  }
  header nav ul li:last-child a {
    border-right: none;
  }
  header.scroll-nav nav {
    box-shadow: none;
  }
  /*トグル*/
  .nav-toggle {
    display: block;
    position: fixed;
    right: 5%;
    top: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10000;
    transition: all .3s;
  }
  .nav-toggle span {
    position: absolute;
    height: 3px;
    width: 40px;
    background: linear-gradient(45deg, rgba(149, 43, 44, 1), rgba(169, 49, 50, 1), rgba(255, 98, 89, 1));
    left: 0;
    transition: .35s ease-in-out;
  }
  .nav-toggle span:nth-child(1) {
    top: 9px;
  }
  .nav-toggle span:nth-child(2) {
    top: 19px;
  }
  .nav-toggle span:nth-child(3) {
    top: 29px;
  }
  .open .nav-toggle span:nth-child(1) {
    top: 19px;
    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: 19px;
    transform: rotate(45deg);
  }
  .open nav {
    display: block;
    animation-duration: 0.6s;
    animation-name: fade-in;
  }
  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}