#drawer {
  display: none;
}

#drawer-area {
  display: none;
}

#common_contact {
  background: #007aff;
  padding: 30px 0;
}
#common_contact .inner {
  width: 930px;
  margin: 0 auto;
}
@media screen and (max-width: 930px) {
  #common_contact .inner {
    width: 90%;
  }
}
#common_contact .inner .desc {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 834px) {
  #common_contact .inner .desc {
    font-size: 1.7rem;
  }
  #common_contact .inner .desc br {
    display: none;
  }
}
#common_contact .inner .btn_wrap {
  display: grid;
  grid-template-columns: 40% 40%;
  column-gap: 20%;
}
@media screen and (max-width: 930px) {
  #common_contact .inner .btn_wrap {
    grid-template-columns: 48% 48%;
    column-gap: 4%;
  }
}
@media screen and (max-width: 834px) {
  #common_contact .inner .btn_wrap {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 520px) {
  #common_contact .inner .btn_wrap {
    width: 100%;
  }
}
#common_contact .inner .btn_wrap .tel_btn {
  background: #4ACCBB;
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
}
@media screen and (max-width: 834px) {
  #common_contact .inner .btn_wrap .tel_btn {
    margin-bottom: 30px;
  }
}
#common_contact .inner .btn_wrap .tel_btn img {
  display: inline-block;
  margin-right: 20px;
}
#common_contact .inner .btn_wrap .tel_btn span {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 834px) {
  #common_contact .inner .btn_wrap .tel_btn span {
    font-size: 1.6rem;
  }
}
#common_contact .inner .btn_wrap .mail_btn {
  background: #29CCFF;
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
}
#common_contact .inner .btn_wrap .mail_btn img {
  display: inline-block;
  margin-right: 20px;
}
#common_contact .inner .btn_wrap .mail_btn span {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 834px) {
  #common_contact .inner .btn_wrap .mail_btn span {
    font-size: 1.6rem;
  }
}

/*---------------------------------------------------------------------------------------------------
--------------------------------------------* 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 .4s;
  box-sizing: border-box;
}

#gmenu-icon {
  position: fixed;
  z-index: 9010;
  top: 24px;
  right: 40px;
  width: 35px;
  height: 30px;
  margin: 0px;
}
#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);
}

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

  #gmenu-icon {
    top: 18px;
    right: 14px;
    width: 25px;
    height: 11px;
    margin: 6px;
    transition: right .2s linear;
  }
  #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 .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: #233FE3;
    transition: all .5s ease;
    padding: 100px 12px 12px 12px;
  }
  #drawer.toggle {
    right: 0;
  }
  #drawer .logo {
    display: block;
    width: 70%;
    margin: 0 auto 30px;
  }
  #drawer .logo img {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
  #drawer ul.navi {
    width: 70%;
    margin: 0 auto 30px;
  }
  #drawer ul.navi li {
    width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid #fff;
    transition: .6s;
    padding: 10px;
  }
  #drawer ul.navi li:last-child {
    border-bottom: none;
  }
  #drawer ul.navi li:hover {
    background-color: #fff;
  }
  #drawer ul.navi li:hover a {
    color: #233FE3;
  }
  #drawer ul.navi li a {
    font-family: "heisei-kaku-gothic-std", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    letter-spacing: .15em;
    padding: 3px;
    font-size: 1.6em;
    transition: .6s;
  }
}
@media screen and (max-width: 1100px) 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 */
