#drawer {
  display: none;
}

#drawer-area {
  display: none;
}

#overlay {
  display: none;
}

/* 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: 24px;
  right: 40px;
  width: 35px;
  height: 30px;
  margin: 0;
}
#gmenu-icon span {
  position: absolute;
  z-index: 9011;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #BBC6CB;
}
#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);
}

#drawer-area {
  position: fixed;
  top: 60px;
  right: 35px;
  z-index: 9010;
  width: 55px;
  height: 55px;
  transition: left 0.2s linear;
  background: #0C8F6F;
}
@media screen and (max-width: 768px) {
  #drawer-area {
    display: block !important;
  }
}
@media screen and (max-width: 520px) {
  #drawer-area {
    top: 40px;
    right: 20px;
  }
}
#drawer-area.toggle {
  right: 100%;
}
#drawer-area.move {
  -webkit-animation: headerMove 0.6s ease-in forwards;
  animation: headerMove 0.6s ease-in forwards;
}

#gmenu-icon {
  top: 75px;
  right: 45px;
  width: 25px;
  height: 34px;
  margin: 6px;
  transition: right 0.2s linear;
}
@media screen and (max-width: 520px) {
  #gmenu-icon {
    top: 55px;
    right: 30px;
  }
}
#gmenu-icon span:nth-of-type(1) {
  top: 0;
}
#gmenu-icon span:nth-of-type(2) {
  top: 9px;
}
#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 {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 8001;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(-25deg, #0C8F6F, #43AF95);
  transition: all 0.5s ease;
  padding: 100px 15vw 0;
}
@media screen and (max-width: 768px) {
  #drawer {
    display: block !important;
  }
}
@media screen and (max-width: 520px) {
  #drawer {
    padding: 45px 4vw 0;
  }
}
#drawer.toggle {
  right: 0;
}
#drawer .drawer-logo {
  margin-bottom: 30px;
}
#drawer .menu {
  margin-bottom: 30px;
}
@media screen and (max-width: 520px) {
  #drawer .menu {
    display: grid;
    grid-template-columns: 49% 49%;
    place-items: center;
  }
}
#drawer .menu li {
  flex: 1;
  width: 100%;
}
@media screen and (max-width: 520px) {
  #drawer .menu li:nth-child(1), #drawer .menu li:nth-child(4), #drawer .menu li:nth-child(5), #drawer .menu li:nth-child(8), #drawer .menu li:nth-child(9) {
    background: #0C8F6F;
  }
  #drawer .menu li:nth-child(2), #drawer .menu li:nth-child(3), #drawer .menu li:nth-child(6), #drawer .menu li:nth-child(7), #drawer .menu li:nth-child(10) {
    background: #0C7C61;
  }
}
#drawer .menu li a {
  display: inline-block;
  width: 90%;
  height: 100%;
  padding-left: 10%;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 520px) {
  #drawer .menu li a {
    border-bottom: none;
  }
}
#drawer .menu li a:nth-child(1) {
  border-top: 1px solid #fff;
}
@media screen and (max-width: 520px) {
  #drawer .menu li a:nth-child(1) {
    border-top: none;
  }
}
#drawer .menu li a:hover {
  transition: all 0.6s ease;
  background: #0C8F6F;
}
#drawer .menu li a:hover span {
  transition: all 0.6s ease 0.05s;
  color: #fff;
}
#drawer .menu li a span {
  display: inline-block;
  width: 100%;
  line-height: 1;
}
#drawer .menu li a .ja {
  color: #fff;
  font-size: 1.8rem;
  font-family: "vdl-logog", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 12px 0 3px;
  margin-bottom: 6px;
}
@media screen and (max-width: 520px) {
  #drawer .menu li a .ja {
    font-size: 1.25rem;
  }
}
#drawer .menu li a .en {
  color: #fff;
  font-size: 1.45rem;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 0 0 12px;
}
@media screen and (max-width: 520px) {
  #drawer .menu li a .en {
    font-size: 1.6rem;
    margin-bottom: 3px;
  }
}
#drawer .drawer_utility {
  display: flex;
  justify-content: space-between;
  margin-left: auto;
}
@media screen and (max-width: 520px) {
  #drawer .drawer_utility {
    display: grid;
    grid-template-columns: 50% 50%;
  }
}
#drawer .drawer_utility a {
  display: inline-block;
  padding: 12px 0;
  background: #F2F2F2;
  margin-right: 14px;
  text-align: center;
  outline: 1px solid #fff;
  outline-offset: 0;
}
@media screen and (max-width: 520px) {
  #drawer .drawer_utility a {
    margin-right: 0;
  }
}
#drawer .drawer_utility a:hover {
  transition: all 0.3s ease-out;
  outline: 2px solid #fff;
  outline-offset: -4px;
}
#drawer .drawer_utility a:nth-child(1) {
  background: #1d1d1d;
}
#drawer .drawer_utility a:nth-child(2) {
  background: #8dbebe;
}
#drawer .drawer_utility a:nth-child(2) img {
  width: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
}
#drawer .drawer_utility a:nth-child(2) span {
  padding-top: 6px;
}
#drawer .drawer_utility a:nth-child(3) {
  background: #99e3cd;
}
#drawer .drawer_utility a:nth-child(4) {
  background: #add5b2;
}
#drawer .drawer_utility a:last-child {
  margin-right: 0;
}
#drawer .drawer_utility a img {
  display: inline-block;
  margin-bottom: 8px;
  width: 50px;
  height: auto;
  vertical-align: bottom;
}
#drawer .drawer_utility a span {
  display: inline-block;
  width: 100%;
  font-weight: bold;
  font-size: 1.2rem;
  color: #fff;
  font-family: "nitalago-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
}

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