/* 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: 11px;
  left: 20px;
  z-index: 9010;
  width: 50px;
  height: 50px;
  transition: left 0.2s linear;
  background: #151515;
}
@media screen and (max-width: 1100px) {
  #drawer-area {
    display: block;
  }
}
#drawer-area.toggle {
  left: 55%;
}
#drawer-area.move {
  -webkit-animation: headerMove 0.6s ease-in forwards;
  animation: headerMove 0.6s ease-in forwards;
}

#gmenu-icon {
  position: fixed;
  z-index: 9010;
  margin: 0;
  top: 27px;
  left: 30px;
  width: 30px;
  height: 30px;
  transition: right 0.2s linear;
  display: none;
}
@media screen and (max-width: 1100px) {
  #gmenu-icon {
    display: block;
  }
}
#gmenu-icon span {
  position: absolute;
  z-index: 9011;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #B4E1EB;
}
#gmenu-icon span:nth-of-type(1) {
  top: 0;
}
#gmenu-icon span:nth-of-type(2) {
  top: 9px;
}
#gmenu-icon span:nth-of-type(3) {
  top: 18px;
}
#gmenu-icon.active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
#gmenu-icon.active span:nth-of-type(2) {
  display: none;
}
#gmenu-icon.active span:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}
#gmenu-icon.move {
  -webkit-animation: borderMove 0.6s ease-in forwards;
  animation: borderMove 0.6s ease-in forwards;
}

/* drawer body */
#drawer {
  display: none;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 8001;
  width: 90%;
  height: 100%;
  overflow: hidden;
  transition: all 0.5s ease;
  background: #151515;
  padding-top: 80px;
}
@media screen and (max-width: 1100px) {
  #drawer {
    display: flex;
  }
}
#drawer.toggle {
  right: 0;
}
#drawer ul.d-main {
  width: 90%;
  display: grid;
  grid-template-columns: 49% 49%;
  column-gap: 2%;
}
#drawer ul.d-main li {
  width: 100%;
  margin: 0 auto 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #3333;
  display: grid;
  place-items: center;
}
#drawer ul.d-main li a {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  padding: 8px 12px;
  color: #ffffff;
  letter-spacing: 0.15em;
  font-size: 1.8em;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 400;
  font-style: normal;
}
#drawer ul.d-main li a:hover {
  background: #00c8e6;
}
#drawer .link_list {
  width: 90%;
  display: grid;
  grid-template-columns: 49% 49%;
  column-gap: 2%;
}
#drawer .link_list a {
  position: relative;
  width: 100%;
  height: 80px;
  display: grid;
  place-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}
#drawer .link_list a.sns1 {
  background: url(../images/sns_pic1.jpg);
}
#drawer .link_list a.sns2 {
  background: url(../images/sns_pic2.jpg);
}
#drawer .link_list a.sns3 {
  background: url(../images/sns_pic3.jpg);
}
#drawer .link_list a.sns4 {
  background: url(../images/sns_pic4.jpg);
}
#drawer .link_list a.sns5 {
  background: url(../images/sns_pic5.jpg);
}
#drawer .link_list a::before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.55);
  transition: all 0.6s ease;
}
#drawer .link_list a .link_wrap {
  display: inline-block;
  position: relative;
  z-index: 10;
}
#drawer .link_list a .link_wrap .icon {
  display: inline-block;
  margin-bottom: 6px;
}
@media screen and (max-width: 520px) {
  #drawer .link_list a .link_wrap .icon img {
    width: auto;
    height: 23px;
    vertical-align: bottom;
  }
}
#drawer .link_list a .link_wrap .idtxt {
  font-family: zen-old-mincho, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 1.3rem;
}
@media screen and (max-width: 1280px) {
  #drawer ul.d-main {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  #drawer {
    right: -100%;
    width: 100%;
  }
  #drawer.toggle {
    right: 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 */
