@charset "UTF-8";
.post-button,
.applyBtn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 22px 52px;
  gap: 10px;
  margin-top: 80px;
  color: #fff;
  text-align: center;
  font-family: Pretendard;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px; /* 122.222% */
  border-radius: 12px;
  background: #f74130;
}
.post-button::after,
.applyBtn::after {
  content: "";
  width: 12px;
  height: 22px;
  background: url(../images/img_arrow.svg) no-repeat center;
}

.toggle-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.toggle-label::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #bdbdbd;
  border-bottom: 2px solid #bdbdbd;
  transform: rotate(45deg);
  transition: 0.3s;
}

/* 열렸을 때 */
.checkbox-privacy.active .toggle-label::after,
.checkbox-survey.active .toggle-label::after {
  transform: rotate(-135deg);
}

/* 아코디언 */
.sheet-wrap {
  display: none;
}

.checkbox-privacy.active .sheet-wrap,
.checkbox-survey.active .sheet-wrap {
  display: block;
}

.hero {
  position: relative;
  padding: 100px 0 162px 0;
}
.hero .heroCont {
  padding-top: 100px;
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: space-between;
}
.hero .heroCont .visual {
  max-width: 602px;
}
.hero .rightCont {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero .form_box {
  display: flex;
  justify-content: flex-start;
  width: 322px;
  height: 366px;
  padding: 34px 22px 16px 22px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 19.673px 0 rgba(210, 210, 210, 0.8);
  z-index: 1;
}
.hero .form_box .title {
  display: inline-block;
  margin-bottom: 20px;
  color: #222;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.353px;
}
.hero .form_box .step {
  display: none;
  width: 100%;
  text-align: left;
}
.hero .form_box .step.active {
  display: flex;
  flex-direction: column;
}
.hero .form_box .input_item p {
  margin-bottom: 10px;
  text-align: left;
  color: #222;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.315px;
}
.hero .form_box .input_item input {
  display: flex;
  height: 50px;
  width: 100%;
  padding-left: 20px;
  align-items: center;
  color: #222;
  font-family: Pretendard;
  font-size: 13.771px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.275px;
  background: #f4f4f4;
  border-radius: 10px;
}
.hero .form_box .input_item input::-moz-placeholder {
  color: #c2c2c2;
}
.hero .form_box .input_item input::placeholder {
  color: #c2c2c2;
}
.hero .form_box .input_item + .input_item {
  margin-top: 20px;
}
.hero .form_box .input_item .phoneInfo {
  margin-top: 12px;
  color: #c2c2c2;
  font-family: Pretendard;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.215px;
}
.hero .form_box .select_box {
  position: relative;
}
.hero .form_box .select_box label {
  content: "";
  position: absolute;
  right: 16px;
  top: calc(50% - 3px);
  display: block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 7px solid #d9d9d9;
}
.hero .form_box select {
  display: flex;
  height: 50px;
  width: 100%;
  padding-left: 20px;
  align-items: center;
  color: #222;
  font-family: Pretendard;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.275px;
  background: #f4f4f4;
  border-radius: 10px;
  appearance: none;
  -webkit-appearance: none; /* 사파리 */
  -moz-appearance: none; /* 파이어폭스 */
}
.hero .form_box select:invalid {
  color: #c2c2c2;
}
.hero .form_box .select_item {
  position: relative;
}
.hero .form_box .select_item + .select_item {
  margin-top: 8px;
}
.hero .form_box .checkbox-privacy .sheet-header .desc,
.hero .form_box .checkbox-survey .sheet-header .desc {
  font-size: 12px !important;
}
.hero .form_box .sheet-header .desc {
  width: 100%;
  font-size: 12px !important;
  margin-top: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid #888;
}
.hero .form_box .terms-desc .agreement input[type=radio] + label {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  color: #555;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.05em;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}
.hero .form_box .terms-desc .agreement input[type=radio] + label span {
  margin-right: 6px;
  padding: 2px 10px;
  background: #23a6d2;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.05em;
  border-radius: 11px;
}
.hero .form_box .terms-desc .agreement input[type=radio] + label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 8px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="26" height="21" fill="none"><path fill="%23DDD" d="M22.192 1.2 9.584 14.728l-5.78-6.2a2.123 2.123 0 0 0-3.15 0c-.872.935-.872 2.448 0 3.382L8.008 19.8c.417.448.985.7 1.576.7.592 0 1.158-.252 1.577-.7L25.347 4.582c.87-.934.87-2.447 0-3.381a2.122 2.122 0 0 0-3.152 0h-.003Z"/></svg>') no-repeat center/auto 6px #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.hero .form_box .terms-desc .agreement input[type=radio]:checked + label:before {
  content: "";
  display: inline-block;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="8" fill="none"><path fill="%23fff" fill-rule="evenodd" d="M3.172 6.485 4.586 7.9l5.657-5.657L8.829.829 4.586 5.07 1.758 2.242.343 3.657l2.829 2.828Z" clip-rule="evenodd"/></svg>') no-repeat center/auto 8px, #333;
  border: 1px solid #333;
}
.hero .form_box .sheet-wrap {
  padding: 10px;
}
.hero .form_box .terms-desc .desc-wrap .use {
  padding: 8px;
  background: #f1f1f1;
  border-radius: 4px;
}
.hero .form_box .terms-desc .desc-wrap p {
  color: #979797;
  font-size: 10px;
  line-height: 18px;
  letter-spacing: -0.05em;
}
.hero .form_box .sheet-agree .terms-desc .agreement {
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  grid-row-gap: 10px;
  margin: 14px 0;
}
.hero .form_box .privacy-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: none;
  overflow: auto;
  margin: 0;
  height: calc(100% - 20px);
  flex: 1;
  flex-wrap: nowrap;
  padding: 0 10px 0 0;
  margin-bottom: 20px;
}
.hero .form_box .privacy-box .checkbox-privacy {
  margin-top: 0;
}
.hero .form_box .privacy-box::-webkit-scrollbar {
  width: 4px;
}
.hero .form_box .privacy-box::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.hero .form_box .privacy-box::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.hero .form_box .privacy-box .checkBox {
  display: flex;
  justify-content: space-between;
}
.hero .form_box .privacy-box .checkBox label {
  display: flex;
  color: #6d6a6a;
  font-family: Pretendard;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.261px;
}
.hero .form_box .privacy-box .checkBox label span {
  margin-right: 6px;
  color: #f13d28;
}
.hero .form_box .privacy-box .checkBox label::before {
  width: 9px;
  height: 7px;
  background-size: 100% auto;
  margin-right: 4px;
}
.hero .form_box .resultBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 20px 0;
}
.hero .form_box .resultBox p {
  margin-top: 14px;
  color: #222;
  text-align: center;
  font-family: Pretendard;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.378px;
}
.hero .form_box .resultBox button {
  width: 100%;
  margin-top: auto;
  padding: 12px 0;
  color: #fff;
  text-align: center;
  font-family: Pretendard;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.358px;
  border-radius: 8px;
  background: #f13d28;
}
.hero .form_box .btnBox {
  display: flex;
  margin-top: auto;
  gap: 10px;
}
.hero .form_box .btn {
  margin-top: auto;
  flex: 1;
  padding: 12px 0;
  color: #fff;
  text-align: center;
  font-family: Pretendard;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.358px;
  border-radius: 8px;
  background: #f13d28;
  text-align: center;
}
.hero .form_box .btn::after {
  display: none;
}
.hero .form_box .btn.prev {
  background-color: #f4f4f4;
  border: none;
  color: #565656;
}

.nJob .imgBox {
  max-width: 1000px;
  margin: 56px auto 0 auto;
}
.nJob .imgBox img {
  width: 100%;
}

.bottomCta .banner-bottom {
  margin-top: 24px;
}

.section {
  padding: 60px 0;
}
.section .imgBox {
  margin: 0 auto;
}
.section .imgBox img {
  width: 100%;
}
.section__title {
  max-width: 702px;
  margin: 0 auto;
}

.section01 .imgBox {
  max-width: 828px;
}

.section02 {
  padding: 85px 0 60px 0;
  background: #222;
}
.section02 .imgBox {
  max-width: 796px;
}

.section03 .imgBox {
  max-width: 956px;
}

.section04 .imgBox {
  max-width: 796px;
  margin: 0 auto;
}
.section04 .imgBox img {
  width: 100%;
}

@media screen and (max-width: 760px) {
  .banner-bottom,
  .post-button {
    width: 100%;
    padding: 20px 0;
    gap: 4px;
    margin-top: 30px;
    font-size: 20px;
    line-height: 20px; /* 122.222% */
    border-radius: 6px;
    justify-content: center;
  }
  .banner-bottom::after,
  .post-button::after {
    content: "";
    width: 6px;
    height: 11px;
    background-size: 100% auto;
  }
  .hero .form_box {
    width: 100%;
  }
  .hero {
    position: relative;
    padding: 80px 0 0 0;
  }
  .hero .heroCont {
    flex-direction: column;
    padding-top: 30px;
  }
  .hero .heroCont .visual {
    margin-bottom: 40px;
    padding: 0 16px;
    max-width: 602px;
  }
  .hero .rightCont {
    padding: 0 16px;
    width: 100%;
  }
  .section {
    position: relative;
    padding: 20px 48px;
  }
  .section .imgBox {
    margin: 0 auto;
  }
  .section .imgBox img {
    width: 100%;
  }
  .section01 {
    padding: 0;
  }
  .section02 {
    padding: 0;
  }
  .section03 {
    padding: 0;
  }
  .section03 .post-button {
    opacity: 0;
    position: absolute;
    left: 14%;
    bottom: 2%;
    width: 72%;
    height: 6%;
  }
  .section04 {
    padding: 0;
  }
  .apply {
    padding: 45px 0;
  }
  .review {
    margin: 45px 0 40px 0;
  }
  .bottomCta {
    padding: 0;
  }
  .bottomCta img {
    max-width: 100%;
  }
  .bottomCta .post-button {
    opacity: 0;
    position: absolute;
    left: 17%;
    bottom: 13%;
    width: 72%;
    height: 12%;
  }
}/*# sourceMappingURL=styles.css.map */