<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#drawer {
  display: none;
}

#drawer-area {
  display: none;
}

/*---------------------------------------------------------------------------------------------------
--------------------------------------------* Media Query Smart Phone *------------------------------
-----------------------------------------------------------------------------------------------------*/
/* @media screen and (max-width: 834px) { */
#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;
}

#gmenu-icon {
  position: fixed;
  z-index: 9010;
  top: 18px;
  right: 7px;
  margin: 6px;
}
#gmenu-icon span {
  position: absolute;
  z-index: 9011;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #6AD0C8;
}
#gmenu-icon span:nth-of-type(1) {
  top: 0;
}
#gmenu-icon span:nth-of-type(2) {
  top: 14px;
}
#gmenu-icon.active span:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
}
#gmenu-icon.active span:nth-of-type(2) {
  transform: translateY(-7px) rotate(45deg);
}

/* } */
@media screen and (max-width: 1100px) {
  /* drawer torigger btn */
  #drawer-area {
    display: block !important;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9010;
    width: 60px;
    height: 60px;
    transition: right 0.2s linear;
  }
  #drawer-area.toggle {
    right: 55%;
  }
  #drawer-area.move {
    -webkit-animation: headerMove 0.6s ease-in forwards;
    animation: headerMove 0.6s ease-in forwards;
  }

  #gmenu-icon {
    width: 40px;
    top: 16px;
    right: 10px;
    margin: 6px;
    background: #6AD0C8;
    transition: right 0.2s linear;
  }
  #gmenu-icon span:nth-of-type(1) {
    top: 0;
  }
  #gmenu-icon span:nth-of-type(2) {
    top: 9px;
  }
  #gmenu-icon.active {
    right: 10px;
  }
  #gmenu-icon.active span:nth-of-type(1) {
    transform: translateY(4px) rotate(-45deg);
  }
  #gmenu-icon.active span:nth-of-type(2) {
    transform: translateY(-4px) rotate(45deg);
  }
  #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: -70%;
    z-index: 8001;
    width: 70%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.5s ease;
    padding: 80px 12px 12px 12px;
  }
  #drawer.toggle {
    right: 0;
  }
  #drawer .dlogo {
    text-align: center;
    margin-bottom: 24px;
  }
  #drawer .dlogo img {
    width: 30%;
    height: auto;
    vertical-align: bottom;
  }
  #drawer ul.d-main {
    width: 96%;
    margin: 0 auto 24px;
  }
  #drawer ul.d-main li.menu {
    padding: 12px 0 10px 4px;
    font-weight: bold;
    border-bottom: solid 1px #fff;
  }
  #drawer ul.d-main li.menu:nth-child(1) {
    border-top: 1px solid #fff;
  }
  #drawer ul.d-main li.menu a {
    font-family: "Kosugi Maru", sans-serif;
    font-size: 1.5rem;
    width: 100%;
    display: inline-block;
    text-align: left;
    transition: all 0.5s ease;
    color: #f7f7f7;
  }
}
@media screen and (max-width: 1100px) and (max-width: 480px) {
  #drawer ul.d-main li.menu a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1100px) {
  #drawer ul.d-main li.menu a span {
    display: inline-block;
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  #drawer ul.d-main li.menu a .ja {
    line-height: 1;
  }
}
@media screen and (max-width: 1100px) {
  #drawer ul.d-main li.menu a .en {
    color: #3CA06A;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1100px) {
  #drawer ul.d-main li.menu a:hover {
    color: #F4DFDE;
    display: block;
  }
}
@media screen and (max-width: 1100px) {
  #drawer ul.d-main li.menu.ctabtn {
    background: #6AD0C8;
  }
}
@media screen and (max-width: 1100px) and (max-width: 480px) {
  #drawer {
    right: -100%;
    width: 100%;
  }
}
@keyframes headerMove {
  0% {
    opacity: 1;
    right: 0;
  }
  100% {
    opacity: 0;
    right: 200px;
  }
}
@keyframes borderMove {
  0% {
    opacity: 1;
    right: 11px;
  }
  100% {
    opacity: 0;
    right: 200px;
  }
}

/*# sourceMappingURL=drawer.css.map */
</pre></body></html>