@charset "UTF-8";
::selection {
  background-color: #ffea00;
  color: #1a1a1a;
}

/* Firefox */
::-moz-selection {
  background-color: #ffea00;
  color: #1a1a1a;
}

#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 .4s;
  box-sizing: border-box;
}

#drawer-area {
  display: block !important;
  position: fixed;
  top: 25px;
  right: 47px;
  z-index: 9010;
  width: 60px;
  height: 43px;
  background: white;
  border-radius: 3px;
  transition: all .2s linear;
}
@media screen and (max-width: 520px) {
  #drawer-area {
    right: 20px;
  }
}
#drawer-area.js__on {
  width: 50px;
  border-radius: 12px;
  right: 47px;
}
@media screen and (max-width: 520px) {
  #drawer-area.js__on {
    top: 26px;
    right: 19px;
  }
}
#drawer-area.toggle {
  right: 55%;
}
#drawer-area.move {
  -webkit-animation: headerMove .6s ease-in forwards;
  animation: headerMove .6s ease-in forwards;
}

#gmenu-icon {
  position: fixed;
  z-index: 9010;
  margin: 0;
  top: 39px;
  right: 54px;
  width: 45px;
  height: 30px;
  transition: right .2s linear;
}
@media screen and (max-width: 520px) {
  #gmenu-icon {
    right: 27px;
  }
}
#gmenu-icon span {
  position: absolute;
  z-index: 9011;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #2F3039;
}
#gmenu-icon span:nth-of-type(1) {
  top: 0;
}
#gmenu-icon span:nth-of-type(2) {
  top: 7px;
}
#gmenu-icon span:nth-of-type(3) {
  top: 14px;
}
#gmenu-icon.active span {
  width: 75%;
}
#gmenu-icon.active span:nth-of-type(1) {
  transform: translateY(6.5px) rotate(-225deg);
}
#gmenu-icon.active span:nth-of-type(2) {
  transition-duration: .25s;
  transform: translateX(15px);
  opacity: 0;
}
#gmenu-icon.active span:nth-of-type(3) {
  transform: translateY(-6.5px) rotate(225deg);
}
#gmenu-icon.move {
  -webkit-animation: borderMove .6s ease-in forwards;
  animation: borderMove .6s ease-in forwards;
}

/* drawer body */
#drawer {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 8001;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #2F3039;
  padding: 30px 12px 12px 12px;
  transition: all .45s ease .45s;
}
#drawer.toggle {
  right: 0;
}
#drawer .logo {
  display: block;
  width: 55px;
  margin: 0 auto 120px;
}
@media screen and (max-width: 520px) {
  #drawer .logo {
    margin-bottom: 10px;
  }
}
#drawer ul.d-main {
  width: 65%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 50%;
}
@media screen and (max-width: 1100px) {
  #drawer ul.d-main {
    width: 80%;
  }
}
@media screen and (max-width: 834px) {
  #drawer ul.d-main {
    width: 90%;
  }
}
@media screen and (max-width: 520px) {
  #drawer ul.d-main {
    display: block;
  }
}
#drawer ul.d-main li {
  width: 100%;
  margin: 0 auto;
  transition-duration: .6s;
}
@media screen and (max-width: 520px) {
  #drawer ul.d-main li {
    border-bottom: 1px solid #2F3039;
  }
}
#drawer ul.d-main li:hover {
  background-color: #dedede;
}
#drawer ul.d-main li:hover a span.en {
  color: #484c9c;
}
#drawer ul.d-main li:hover a span.ja {
  color: #2F3039;
}
#drawer ul.d-main li:hover a::after {
  right: 20px;
  color: #2F3039;
}
#drawer ul.d-main li a {
  display: inline-block;
  padding: 30px;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 520px) {
  #drawer ul.d-main li a {
    padding: 10px;
  }
}
#drawer ul.d-main li a::after {
  content: "▲";
  line-height: 1;
  font-size: 15px;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 45%;
  right: 50px;
  z-index: 10;
  color: #fff;
  transform: rotate(90deg);
  transition: all .35s ease-in-out .3s;
}
#drawer ul.d-main li a span {
  display: inline-block;
  width: 100%;
  font-family: "fot-udkakugo-large-pr6n", sans-serif;
  font-weight: 700;
  font-style: normal;
}
#drawer ul.d-main li a span.en {
  letter-spacing: .15em;
  font-size: 1.4rem;
  color: #dedede;
}
#drawer ul.d-main li a span.ja {
  letter-spacing: .15em;
  font-size: 1.25rem;
  color: #c7c7c7;
}

#drawer ul.d-main li.d-main-item.slidedown {
  padding-bottom: 0;
}
#drawer ul.d-main li.d-main-item.slidedown ul li {
  padding: 4px 0;
}

@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 */
