@charset "UTF-8";
#header_wrap #logo,
#header_wrap-lp #logo {
  position: relative;
  width: 150px;
  z-index: 99;
  left: 15px;
  margin-top: 15px;
  margin-bottom: 10px;
}
@media (max-width: 880px) {
  #header_wrap #logo,
  #header_wrap-lp #logo {
    width: 130px;
  }
}
#header_wrap #logo img,
#header_wrap-lp #logo img {
  width: 100%;
}

.nav_toggle {
  display: block;
  position: fixed;
  top: 34px;
  right: 37px;
  width: 50px;
  height: 21px;
  z-index: 9999;
  cursor: pointer;
}
@media (max-width: 880px) {
  .nav_toggle {
    top: 24px;
    right: 16px;
  }
}
.nav_toggle i {
  display: block;
  width: 100%;
  background-color: #000;
  position: absolute;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav_toggle i:nth-of-type(1) {
  height: 2px;
  top: 0;
}
.nav_toggle i:nth-of-type(2) {
  height: 1px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.nav_toggle i:nth-of-type(3) {
  height: 2px;
  bottom: 0;
}
.nav_toggle.show i:nth-of-type(1) {
  transform: translateY(10px) rotate(45deg);
  background-color: #fff;
  height: 1px;
}
.nav_toggle.show i:nth-of-type(2) {
  opacity: 0;
}
.nav_toggle.show i:nth-of-type(3) {
  transform: translateY(-10px) rotate(-45deg);
  background-color: #fff;
  height: 1px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  width: 100%;
  height: 100%;
  background-color: #595757;
  overflow: hidden;
  z-index: 9998;
  padding: 73px 0 50px;
}
.nav .nav_menu_ul {
  padding-right: 27vw;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
  height: 100%;
  overflow-x: hidden;
  width: auto;
}
@media (max-width: 880px) {
  .nav .nav_menu_ul {
    padding-right: 10vw;
  }
}
.nav .nav_menu_ul::-webkit-scrollbar {
  width: 0px;
}
.nav .nav_menu_ul .nav_menu_li {
  margin-bottom: 4vh;
  width: 100%;
  margin-left: 15%;
}
@media (max-width: 880px) {
  .nav .nav_menu_ul .nav_menu_li {
    margin-bottom: 3.1vh;
    margin-right: 5%;
  }
}
.nav .nav_menu_ul .nav_menu_li:last-of-type {
  margin-bottom: 0;
}
.nav .nav_menu_ul .nav_menu_li a {
  color: #fff;
  font-size: 4rem;
  text-align: left;
  font-weight: 100;
  letter-spacing: 0.4rem;
  display: block;
  width: 100%;
  z-index: 10;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: inline-block;
  transition: color ease 0.3s;
}
@media (max-width: 880px) {
  .nav .nav_menu_ul .nav_menu_li a {
    font-size: 3rem;
    letter-spacing: 0.2rem;
  }
}
.nav .nav_menu_ul .nav_menu_li a::before, .nav .nav_menu_ul .nav_menu_li a::after {
  content: "";
  position: absolute;
  background-color: #999;
  z-index: -1;
  height: 1px;
}
.nav .nav_menu_ul .nav_menu_li a::before {
  width: 0%;
  left: 0;
  bottom: 0;
  transition: width ease 0.4s;
}
.nav .nav_menu_ul .nav_menu_li a::after {
  width: 100%;
  left: 0;
  bottom: 0;
  transition: all ease 0.6s;
}
.nav .nav_menu_ul .nav_menu_li a:hover::before {
  width: 100%;
}
.nav .nav_menu_ul .nav_menu_li a:hover::after {
  left: 100%;
  width: 0%;
  transition: all ease 0.2s;
}
.nav.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

#header_wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: translateY 600ms, opacity 200ms;
}
@media (max-width: 1200px) {
  #header_wrap {
    width: 100%;
  }
}

#header_wrap.hide {
  translateY: -100%;
  opacity: 0;
}

#header_wrap.bg-white {
  transition: translateY 600ms, opacity 200ms;
}
@media (max-width: 1200px) {
  #header_wrap.bg-white {
    background-color: #fff;
  }
}

/* ナビゲーションが表示されているときにページ全体のスクロールを無効にする */
.body-no-scroll {
  overflow: hidden;
}/*# sourceMappingURL=header.css.map */