#drawer {
  display: none;
}

#drawer-area {
  display: none;
}

#overlay {
  display: none;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
  position: fixed;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  #gmenu-icon,
  #gmenu-icon span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }

  #drawer-area {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9010;
    width: 61px;
    height: 56px;
    background-color: #e6ffff;
    transition: left .2s linear;
    border-radius: 0 0 0 20px;
  }
  #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;
    top: 13px;
    right: 10px;
    width: 25px;
    height: 22px;
    margin: 6px;
    transition: right .2s linear;
  }
  #gmenu-icon span {
    position: absolute;
    z-index: 9011;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #000078;
  }
  #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:nth-of-type(1) {
    transform: translateY(3px) rotate(-45deg);
  }
  #gmenu-icon.active span:nth-of-type(2) {
    transform: translateY(-3px) rotate(45deg);
  }
  #gmenu-icon.active span:nth-of-type(3) {
    opacity: 0;
  }
  #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: -70%;
    z-index: 8001;
    width: 70%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    transition: all .5s ease;
    padding: 80px 12px 12px 12px;
  }
  #drawer.toggle {
    right: 0;
  }
  #drawer .tel {
    width: 70%;
    margin: 50px auto 0;
    padding-left: 8px;
    display: grid;
    grid-template-columns: 18% 80%;
    column-gap: 2%;
    align-items: center;
  }
}
@media screen and (max-width: 768px) and (max-width: 350px) {
  #drawer .tel {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #drawer .tel .mark {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 768px) and (max-width: 350px) {
  #drawer .tel .mark {
    margin: 0 auto;
    width: 40px;
  }
}
@media screen and (max-width: 768px) {
  #drawer .tel a {
    display: block;
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    color: #000078;
  }
}
@media screen and (max-width: 768px) and (max-width: 520px) {
  #drawer .tel a {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) and (max-width: 350px) {
  #drawer .tel a {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #drawer .tel a span {
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    color: #000078;
  }
}
@media screen and (max-width: 768px) and (max-width: 520px) {
  #drawer .tel a span {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  #drawer ul.d-main {
    width: 70%;
    margin: 0 auto;
  }
  #drawer ul.d-main li {
    width: 100%;
    margin: 0 auto 2px;
    transition-duration: .5s;
  }
  #drawer ul.d-main li:last-child {
    margin-bottom: 0;
  }
  #drawer ul.d-main li:hover {
    background-color: #0075be;
  }
  #drawer ul.d-main li:hover:first-child {
    background-color: transparent;
  }
  #drawer ul.d-main li:hover a {
    color: #fff;
  }
  #drawer ul.d-main li .logo {
    width: 200px;
    display: block;
    margin-bottom: 50px;
  }
  #drawer ul.d-main li a {
    color: #000078;
    letter-spacing: .15em;
    padding: 12px 10px 8px;
    font-size: 1.6em;
    background: rgba(255, 255, 255, 0);
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 700;
    font-style: normal;
    transition-duration: .5s;
    display: block;
  }
  #drawer ul.d-main li a span {
    display: block;
    line-height: 1.5;
    color: #ffffff;
    font-size: 1.6rem;
    width: 75%;
    font-family: "breakers-slab", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
}
@media screen and (max-width: 768px) 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;
    left: 0;
  }
  100% {
    opacity: 0;
    left: 200px;
  }
}
@keyframes borderMove {
  0% {
    opacity: 1;
    left: 11px;
  }
  100% {
    opacity: 0;
    left: 200px;
  }
}

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