@charset "UTF-8";

#employer .main-content {
  max-width: 1220px;
  padding: 50px 40px 80px;
  margin-bottom: 40px;
}
#employer .main-content .inner {
  max-width: 980px;
  margin: 0 auto;
}
#employer .header-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
#employer .header-info .logo {
  width: 18%;
  max-width: 170px;
  margin: 20px 2% 0 0;
}
#employer .header-info .detail {
  width: 80%;
}
#employer .header-info .detail .name {
  border-bottom: solid 2px #E2E2E2;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
}
#employer .header-info .detail .name::after {
  content: "";
  position: absolute;
  width: 32%;
  border-bottom: solid 2px #013577;
  bottom: -2px;
  left: 0px;
}
#employer .header-info .detail .description {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: justify;
}
#employer .header-info .detail .btn a {
  border: solid 1px #D6D2D2;
  border-radius: 20px;
  color: #003577;
  display: inline-block;
  font-weight: 300;
  padding: 7px 20px 7px 40px;
  position: relative;
}
#employer .header-info .detail .btn a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px #003577;
  border-right: solid 2px #003577;
  transform: rotate(135deg);
  position: absolute;
  top: 14px;
  left: 22px;
}
#employer .message {
  background-color: #FFF9D8;
  border-radius: 30px;
  padding: 30px 40px 40px;
  margin-bottom: 60px;
  position: relative;
}
#employer .message::after {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../img/common/icon-message.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
}
#employer .message .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}
#employer .message .text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  text-align: justify;
}
#employer .img-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 80px;
}
#employer .img-list li {
  width: calc(50% - 20px);
}
#employer .img-list li .img {
  margin-bottom: 10px;
}
#employer .img-list li .text {
  font-weight: 300;
  line-height: 1.6;
  text-align: justify;
}

#employer .info-list {
  margin-bottom: 30px;
}
#employer .info-list .item {
  display: flex;
  border-top: dashed 1px #E5E5E5;
  padding: 25px 0;
}
#employer .info-list .item dt {
  width: 180px;
  font-size: 18px;
  font-weight: bold;
  padding-left: 4%;
  margin-right: 5%;
}
#employer .info-list .item dd {
  width: calc(95% - 180px);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7
}
#employer .info-list .item dd a {
  color: #01459A;
  text-decoration: underline;
}
#employer-job .section-title {
  color: #212326;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}
#employer-job .section-title::before {
  content: "";
  width: 1px;
  height: 50px;
  background-color: #01459A;
  margin: 0 auto;
  position: absolute;
  top: -65px;
  left: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  #employer .main-content {
    padding: 20px 20px 60px;
    margin-bottom: 40px;
  }
  #employer .header-info {
    flex-direction: column;
  }
  #employer .header-info .logo {
    width: 100%;
    max-width: 210px;
    margin: 20px auto;
  }
  #employer .header-info .detail {
    width: 100%;
  }
  #employer .header-info .detail .name {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  #employer .header-info .detail .description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  #employer .header-info .detail .btn {
    text-align: center;
  }
  #employer .message {
    border-radius: 15px;
    padding: 35px 20px;
    margin-bottom: 40px;
  }
  #employer .message .title {
    font-size: 18px;
  }
  #employer .message .text {
    font-size: 16px;
  }
  #employer .img-list {
    flex-direction: column;
    gap: 30px 0;
    margin-bottom: 40px;
  }
  #employer .img-list li {
    width: 100%;
  }
  #employer .img-list li .text {
    line-height: 1.5;
  }

  #employer .info-list {
    margin-bottom: 20px;
  }
  #employer .info-list .item {
    flex-direction: column;
    padding: 15px 0;
  }
  #employer .info-list .item dt {
    width: 100%;
    padding-left: 0;
    margin: 0 0 2px;
  }
  #employer .info-list .item dd {
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
  }
  #employer-job .section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}