#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: #333;
}
#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: 1024px) {
  /* drawer torigger btn */
  #drawer-area {
    display: block !important;
    position: fixed;
    top: 10px;
    right: 10px;
    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: 22px;
    right: 10px;
    margin: 6px;
    background: #E68078;
    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: #090909;
    transition: all 0.5s ease;
    padding: 100px 12px 12px 12px;
  }
  #drawer.toggle {
    right: 0;
  }
  #drawer ul.d-main {
    width: 70%;
    margin: 0 auto;
  }
  #drawer ul.d-main li.menu {
    padding: 12px 0 10px 4px;
    font-weight: bold;
    border-bottom: solid 1px #333;
  }
  #drawer ul.d-main li.menu a {
    color: #1a1a1a;
    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: 1024px) and (max-width: 480px) {
  #drawer ul.d-main li.menu a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  #drawer ul.d-main li.menu a:hover {
    color: #F4DFDE;
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  #drawer ul.d-main li.menu ul.sub-menu {
    display: flex;
    flex-direction: column;
    padding-left: 4px;
    margin: 4px 0 0 6px;
  }
  #drawer ul.d-main li.menu ul.sub-menu li {
    margin-bottom: 4px;
    padding-left: 4px;
    color: #1a1a1a;
  }
  #drawer ul.d-main li.menu ul.sub-menu li a {
    font-size: 1.5em;
    color: #6C4E43;
  }
}
@media screen and (max-width: 1024px) and (max-width: 480px) {
  #drawer {
    right: -100%;
    width: 100%;
  }
}
#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;
    right: 0;
  }
  100% {
    opacity: 0;
    right: 200px;
  }
}
@keyframes borderMove {
  0% {
    opacity: 1;
    right: 11px;
  }
  100% {
    opacity: 0;
    right: 200px;
  }
}
.dw-logo {
  width: 200px;
  margin: 0 auto 40px auto;
}
@media screen and (max-width: 480px) {
  .dw-logo {
    width: 160px;
    margin: 0 auto 20px auto;
  }
}
.dw-logo img {
  width: 100%;
}

ul.sns {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
ul.sns li {
  width: 40px;
}
ul.sns li:first-child {
  margin-right: 20px;
}

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