.recruit_modal {
  position: relative;
  cursor: pointer;
  text-align: left;
}

.recruit_modal:hover .child_navi {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 768px) {
  .recruit_modal:hover .child_navi {
    visibility: hidden;
    opacity: 0;
  }
}

.recruit_modal input {
  display: none;
}

@media screen and (max-width: 768px) {
  .recruit_modal input[type="checkbox"]:checked ~ .child_navi {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto;
  }
  .recruit_modal input[type="checkbox"]:checked ~ * .toggle_icon {
    position: fixed;
  }
}

.recruit_modal label:after {
  content: none !important;
}

.recruit_modal .toggle_icon {
  display: none;
}

@media screen and (max-width: 768px) {
  .recruit_modal .toggle_icon {
    z-index: 1;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
}

.recruit_modal .child_navi {
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding: 10px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background: rgba(255, 255, 255, 0.8);
  pointer-events: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.recruit_modal .child_navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.recruit_modal .child_navi ul li {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
}

.recruit_modal .child_navi ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recruit_modal .child_navi ul li a {
  display: block;
  position: relative;
  padding: 0 20px 0 5px;
}

.recruit_modal .child_navi ul li a i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  margin: auto 0;
  color: #00998c;
}
