@charset "UTF-8";
/* SP用ハンバーガーメニュー */
#humberger {
  display: block;
  position: fixed;
  top: 8px;
  right: 10px;
  padding: 10px 9px 7px;
  width: 15px;
  border: 1px solid #050126;
  border-radius: 50%;
  box-sizing: initial;
  background: #B3DEFD;
  cursor: pointer;
  z-index: 50000;
}

.icon-bar {
  display: block;
  margin: 0 0 3px;
  height: 2px;
  box-sizing: initial;
  background: #050126;
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
}

/* ドロワー開放時のスタイル */
body.drawer-opened #humberger {
  border: none;
  width: 20px;
  background: none;
}
body.drawer-opened #humberger .icon-bar {
  background: #050126;
}
body.drawer-opened #humberger :nth-child(1) {
  transform: translate(0, 5px) rotate(225deg);
}
body.drawer-opened #humberger :nth-child(2) {
  opacity: 0;
}
body.drawer-opened #humberger :nth-child(3) {
  transform: translate(0, -5px) rotate(-225deg);
}
body.drawer-opened #overlay {
  z-index: 20001;
  opacity: 0.8;
  right: -240px;
}

#drawernav {
  display: none;
  position: fixed;
  top: 0;
  z-index: 20002;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  background: #DBDBE0;
  color: #000;
  font-family: Noto Sans JP, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, Verdana, sans-serif;
}

#humbergermenu-logo {
  display: block;
  position: fixed;
  width: 100%;
  height: 50px;
  background: #FFF;
  z-index: 50000;
}
#humbergermenu-logo a {
  position: relative;
  top: 11px;
  left: 15px;
  cursor: pointer;
}
#humbergermenu-logo a img {
  width: 85px;
  height: 28px;
}

.drawernav-inner {
  padding: 50px 15px 70px;
}

.drawernav-txtlist ul li:not(:last-child) {
  border-bottom: solid 1px #FFF;
}
.drawernav-txtlist ul li a {
  display: block;
  position: relative;
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #050126;
}
.drawernav-txtlist ul li a::after {
  transform: rotate(45deg);
  content: '';
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  width: 7px;
  height: 7px;
  border-top: 1px solid #050126;
  border-right: 1px solid #050126;
  cursor: pointer;
}
.drawernav-txtlist ul li p::after {
  content: '';
  display: inline-block;
  position: relative;
  top: -1px;
  left: 10px;
  width: 9px;
  height: 9px;
  background: url("../img/common/ic_link.webp") no-repeat 0 0;
  background-size: contain;
}
.drawernav-txtlist ul li.home img {
  width: 22px;
  height: 22px;
}
.drawernav-txtlist ul li.training {
  margin: 0 0 10px;
  padding: 0 0 15px;
  border-bottom: solid 1px #050126;
}
.drawernav-txtlist ul li.company a, .drawernav-txtlist ul li.recruit a, .drawernav-txtlist ul li.hakenform a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.drawernav-txtlist ul li.company a::before, .drawernav-txtlist ul li.recruit a::before, .drawernav-txtlist ul li.hakenform a::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
}
.drawernav-txtlist ul li.company a::before {
  background: url("../img/common/ic_company.webp") no-repeat 0 0;
  background-size: contain;
}
.drawernav-txtlist ul li.recruit a::before {
  background: url("../img/common/ic_recruit.webp") no-repeat 0 0;
  background-size: contain;
}
.drawernav-txtlist ul li.hakenform a::before {
  background: url("../img/common/ic_hakenform.webp") no-repeat 0 0;
  background-size: contain;
}

.drawernav-btnlist {
  margin: 15px 0 40px;
  padding: 20px 0 0;
  border-top: solid 1px #050126;
}
.drawernav-btnlist ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.drawernav-btnlist ul li.mod-btn a {
  width: 270px;
}
.drawernav-btnlist ul li.mod-btn__contact {
  padding: 0 0 20px;
  border-bottom: solid 1px #050126;
}
.drawernav-btnlist ul li.tel a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 25px;
  font-weight: 500;
  color: #050126;
}
.drawernav-btnlist ul li.tel a::before {
  content: '';
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url("../img/common/ic_phone.webp") no-repeat 0 0;
  background-size: contain;
}

.drawernav-copyright {
  text-align: center;
  font-size: 13px;
  font-weight: 400;
}

.spNav .accordion {
  border-bottom: 1px solid #000;
}
.spNav .accordion:first-of-type {
  border-top: 1px solid #000;
}
.spNav .accordion dl dt {
  position: relative;
  padding: 11px 30px 12px 0;
  height: 45px;
  font-size: 16px;
}
.spNav .accordion dl dt:before, .spNav .accordion dl dt:after {
  position: absolute;
  content: "";
  transition: all 0.2s linear;
  background: #000;
}
.spNav .accordion dl dt:before {
  right: 16px;
  top: 15px;
  width: 2px;
  height: 14px;
}
.spNav .accordion dl dt:after {
  right: 10px;
  top: 21px;
  width: 14px;
  height: 2px;
}
.spNav .accordion dl dt.is-open:before {
  transform: rotate(180deg);
  opacity: 0;
}
.spNav .accordion dl dt.is-open:after {
  transform: rotate(180deg);
}
.spNav .accordion dl dd {
  display: none;
}
.spNav ul li a {
  display: block;
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 500;
  color: #000;
}
.spNav ul li p {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
}
.spNav .spNav-sublist ul {
  margin: 0 0 0 15px;
  padding: 0 0 10px;
}
.spNav .spNav-sublist ul li a {
  font-size: 15px;
  font-weight: normal;
}
.spNav .spNav-btn {
  display: flex;
  justify-content: center;
  margin: 30px 0 0;
}
.spNav .spNav-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 45px;
  border: solid 1px #79747E;
  border-radius: 30px;
  font-size: 16px;
  color: #000;
}

/* SP用ハンバーガーメニュー */
