#drawer {
  display: none;
}

#overlay {
  display: none;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
  position: fixed;
  bottom: 0;
  right: 0;
}

/* drawer icon ---------------------------------------------------------------------------------------------------*/
#gmenu-icon,
#gmenu-icon span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

/* drawer torigger btn */
#drawer-area {
  display: none;
  position: fixed;
  top: 27px;
  right: 21px;
  z-index: 9902;
  width: 54px;
  height: 46px;
  background: #fff;
  transition: right 0.2s linear;
}
@media screen and (max-width: 520px) {
  #drawer-area {
    display: block;
  }
}
#drawer-area img {
  position: relative;
  top: 8px;
  width: 50px;
  height: 50px;
}
#drawer-area.move {
  -webkit-animation: headerMove 0.6s ease-in forwards;
  animation: headerMove 0.6s ease-in forwards;
}

#gmenu-icon {
  position: fixed;
  z-index: 9902;
  right: 22px;
  top: 43px;
  width: 40px;
  height: 32px;
  margin: 6px;
  transition: right 0.2s linear;
}
@media screen and (max-width: 520px) {
  #gmenu-icon {
    top: 32px;
  }
}
#gmenu-icon span {
  position: absolute;
  z-index: 999;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #0F1641;
}
#gmenu-icon span:nth-of-type(1) {
  top: 0;
}
#gmenu-icon span:nth-of-type(2) {
  top: 12px;
}
#gmenu-icon span:nth-of-type(3) {
  top: 24px;
}
#gmenu-icon.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}
#gmenu-icon.active span:nth-of-type(2) {
  opacity: 0;
}
#gmenu-icon.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(47deg);
}
#gmenu-icon.move {
  -webkit-animation: borderMove 0.6s ease-in forwards;
  animation: borderMove 0.6s ease-in forwards;
}

/* drawer body */
#drawer {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 9901;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000626;
  transition: all 0.3s ease;
  padding: 40px 12px 12px 12px;
}
#drawer.toggle {
  right: 0;
}
#drawer.toggle.togglemore {
  height: 100%;
}
#drawer .d-main {
  width: 50%;
  margin: 0 auto;
  padding: 80px 0 30px;
}
@media screen and (max-width: 520px) {
  #drawer .d-main {
    width: 80%;
  }
}
#drawer .d-main li {
  width: 100%;
  margin: 0 auto 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #262942;
}
#drawer .d-main li:nth-child(1) {
  padding-top: 10px;
  border-top: 1px solid #262942;
}
#drawer .d-main li a {
  color: #fff;
  letter-spacing: 0.15em;
  font-size: 2.4rem;
  display: block;
  padding-left: 3px;
  line-height: 1;
}
#drawer .d-main li a span {
  color: #ffffff;
  letter-spacing: 0.15em;
  font-size: 2.4rem;
  display: inline-block;
  width: 100%;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
}
#drawer .d-main li a span.ja {
  font-size: 1.8rem;
  margin-bottom: 0;
}
#drawer .d-main li a span.en {
  color: #ccc;
  font-size: 1.4rem;
}
#drawer .d_subnavi {
  padding: 12px;
  background: #fff;
  width: 80%;
  margin: 0 auto;
}
#drawer .d_subnavi .sns_wrap a {
  display: flex;
  align-items: center;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.3rem;
}
#drawer .d_subnavi .sns_wrap a:nth-child(1) {
  margin-bottom: 5px;
}
#drawer .d_subnavi .sns_wrap a img {
  display: inline-block;
  margin-right: 8px;
}
#drawer .d_subnavi .sns_wrap a img.icon_x {
  position: relative;
  left: 4px;
  margin-right: 17px;
}

@keyframes headerMove {
  0% {
    opacity: 1;
    left: 0;
  }
  100% {
    opacity: 0;
    left: 200px;
  }
}
@keyframes borderMove {
  0% {
    opacity: 1;
    left: 11px;
  }
  100% {
    opacity: 0;
    left: 200px;
  }
}

/*# sourceMappingURL=drawer.css.map */
