@charset "UTF-8";
@-webkit-keyframes in_contents {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes in_contents {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  font-family: "Luckiest Guy", "Kiwi Maru", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  z-index: 10;
  opacity: 0;
  -webkit-animation: in_contents 0.5s cubic-bezier(0.5, 1, 0.89, 1) 0.3s forwards;
          animation: in_contents 0.5s cubic-bezier(0.5, 1, 0.89, 1) 0.3s forwards;
  width: 100%;
}

@media only screen and (min-width: 751px) {
  nav {
    height: auto;
    height: 50px;
  }
}

nav .nav {
  width: 100%;
}

@media only screen and (max-width: 750px) {
  nav .nav {
    width: 100%;
    height: 100vh;
    display: none;
    z-index: 1;
    background: var(--color-navy);
  }
}

nav .nav__bg {
  position: absolute;
  background: var(--color-navy);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 750px) {
  nav .nav__bg.nav_open {
    pointer-events: auto;
  }
}

nav .nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  font-size: 20px;
  letter-spacing: 0.05em;
  position: absolute;
}

nav .nav__list a {
  color: #fff;
}

@media screen and (min-width: 961px) {
  nav .nav__list {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  nav .nav__list .menu_item {
    margin-left: 20px;
  }
  nav .nav__list .menu_item:first-child {
    margin-left: 0;
  }
}

@media only screen and (max-width: 750px) {
  nav .nav__list {
    display: block;
    text-align: center;
    font-size: 30px;
    margin-top: 30%;
  }
  nav .nav__list .menu_item {
    margin-top: 20px;
  }
  nav .nav__list .menu_item:first-child {
    margin-top: 0;
  }
}

@media screen and (min-width: 961px) {
  nav .nav_btn {
    display: none;
  }
}

@media only screen and (max-width: 750px) {
  nav .nav_btn {
    opacity: 1;
    position: fixed;
    z-index: 120;
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    background-size: contain;
    background: #fef7e8;
    border: #512b25 solid 2px;
  }
}

nav .nav_btn__inner {
  position: relative;
  top: 22px;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 57%;
  height: 40px;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media only screen and (max-width: 960px) {
  nav .nav_btn__inner {
    position: absolute;
    top: 50%;
    height: 28px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

nav .nav_btn__inner span {
  position: absolute;
  left: 0;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 3px;
  -webkit-transition: all .4s;
  transition: all .4s;
  border-radius: 1px;
  background-color: #512b25;
  z-index: 10;
}

nav .nav_btn__inner span:nth-of-type(1) {
  top: 0;
}

nav .nav_btn__inner span:nth-of-type(2) {
  top: 13px;
}

nav .nav_btn__inner span:nth-of-type(3) {
  bottom: 0;
}

nav .nav_btn__inner.nav_open span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}

nav .nav_btn__inner.nav_open span:nth-of-type(2) {
  opacity: 0;
}

nav .nav_btn__inner.nav_open span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
}

@media screen and (max-width: 767px) {
  nav .nav_btn__inner.nav_open span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
  }
  nav .nav_btn__inner.nav_open span:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
  }
  nav .nav_btn__inner.nav_open span:nth-of-type(1) {
    top: 7px;
  }
  nav .nav_btn__inner.nav_open span:nth-of-type(3) {
    bottom: 7px;
  }
}

@media screen and (min-width: 961px) {
  .l-header {
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .p-page__title {
    color: var(--color-orange);
    text-align: center;
  }
  .p-page__header-in {
    display: block;
  }
  .p-page__brand {
    margin-left: auto;
    padding-top: 27px;
  }
}
/*# sourceMappingURL=nav.css.map */