@charset "UTF-8";
/*レスポンシブブレイクポイント*/
#face {
  background: #ccd6e0;
  height: 100vh;
  background-image: url(../images/recruit/top_img.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1200px) {
  #face {
    min-height: auto;
    height: calc(100vh - 80px);
  }
}
@media (max-width: 767px) {
  #face {
    height: calc(100vh - 50px);
    max-height: 400px;
  }
}
#face .face_content {
  margin-left: 25vw;
  padding: 20px;
  width: calc(100% - 25vw);
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 1200px) {
  #face .face_content {
    margin-left: 0vw;
    padding: 20px;
    width: 100%;
  }
}
#face .face_content .under_h1 {
  color: white;
}
#face .face_content .under_h1 span {
  color: #004e70;
}
#face .face_content .face_txt {
  position: absolute;
  left: 30px;
  bottom: 30px;
  line-height: 2;
  color: #fff;
}
@media (max-width: 767px) {
  #face .face_content .face_txt {
    left: 0px;
    bottom: 0px;
    line-height: 2;
    font-size: 13px;
    text-align: justify;
    margin: 0 20px 20px;
  }
}

/*------------------------
main
------------------------*/
.h2_common span {
  font-size: 40px;
}
@media (max-width: 767px) {
  .h2_common span {
    font-size: 24px;
  }
}

.info_dl {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .info_dl {
    width: 100%;
    margin: 0 auto;
  }
}
.info_dl dt,
.info_dl dd {
  padding: 20px;
  border-top: 1px solid #ddd;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .info_dl dt,
.info_dl dd {
    padding: 0px;
    border-top: 0px solid #ddd;
    line-height: 1.3;
    font-size: 15px;
  }
}
.info_dl dt:nth-last-child(-n+2),
.info_dl dd:last-child {
  border-bottom: 1px solid #ddd;
}
@media (max-width: 767px) {
  .info_dl dt:nth-last-child(-n+2),
.info_dl dd:last-child {
    border-bottom: 0px solid #ddd;
  }
}
.info_dl dt {
  width: 20%;
  font-weight: bold;
}
@media (max-width: 767px) {
  .info_dl dt {
    width: 100%;
    margin-bottom: 5px;
  }
}
.info_dl dd {
  width: 80%;
  text-align: justify;
}
@media (max-width: 767px) {
  .info_dl dd {
    width: 100%;
    line-height: 2;
  }
}
@media (max-width: 767px) {
  .info_dl dd:not(:last-child) {
    margin-bottom: 30px;
  }
}

.entry_btn {
  text-align: center;
  width: 300px;
  height: 40px;
  margin: 50px auto 0;
  background: #c1554d;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 5px;
  transition: all 0.2s;
}

.entry_btn:hover {
  background: #fe8a7e;
}

.recurite_head_module {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.recurite_list_ul > li {
  padding-left: 10px;
  box-sizing: border-box;
  position: relative;
}
.recurite_list_ul > li:nth-child(n+2) {
  margin-top: 10px;
}
.recurite_list_ul > li:before {
  position: absolute;
  top: 9px;
  left: 0;
  background: #000;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
}
/*# sourceMappingURL=recruit.css.map */