.page-faq__title {
  margin-top: 42px;
}

.entry-form {
  padding: 100px 0 364px;
  background-color: #fff;
}

@media only screen and (max-width: 768px) {
  .entry-form {
    padding: 100px 0 200px;
  }
}

.entry-form__description {
  text-align: center;
  margin-top: 6px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: calc(32 / 16);
  color: #000;
}

@media only screen and (max-width: 768px) {
  .entry-form__description {
    font-size: 1.4rem;
    text-align: left;
  }
}

.entry-form__step {
  margin-top: 55px;
}

@media only screen and (max-width: 768px) {
  .entry-form__step {
    margin-top: 40px;
  }
}

.entry-form__step-list {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 115px;
  width: fit-content;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .entry-form__step-list {
    gap: 100px;
  }
}

.entry-form__step-list::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background-color: #d8d8d8;
}

.entry-form__step-item {
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
}

@media only screen and (max-width: 768px) {
  .entry-form__step-item {
    font-size: 1.4rem;
  }
}

.entry-form__step-item::after {
  content: "";
  position: absolute;
  top: 33px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background-color: #dedede;
  border-radius: 50%;
}

.entry-form__step-item--active::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  background-color: #087854;
  border-radius: 50%;
}

.entry-form__body {
  margin-top: 136px;
}

@media only screen and (max-width: 768px) {
  .entry-form__body {
    margin-top: 100px;
  }
}

.entry-form__item {
  padding: 46px clamp(1.25rem, -36.25rem + 60vw, 8.75rem) 46px clamp(1.25rem, -13.438rem + 23.5vw, 4.188rem);
  display: flex;
  gap: 6%;
  align-items: center;
  border-bottom: 1px solid #d9d9d9;
}

.entry-form__item:first-child {
  border-top: 1px solid #d9d9d9;
}

@media only screen and (max-width: 768px) {
  .entry-form__item {
    flex-direction: column;
    padding: 20px 0;
    align-items: initial;
  }
}

.entry-form__item.entry-form__item--start {
  align-items: flex-start;
}

.entry-form__label {
  width: 24rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

@media only screen and (max-width: 768px) {
  .entry-form__label {
    width: 100%;
    font-size: 1.6rem;
  }
}

.entry-form__label--start {
  margin-top: 20px;
}

.entry-form__label--privacy {
  margin-top: 35px;
}

@media only screen and (max-width: 768px) {
  .entry-form__label--start {
    margin-top: 0;
  }

  .entry-form__label--privacy {
    margin-top: 0;
  }
}

.entry-form__required {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 11px;
  background-color: #087854;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}

.entry-form__optional {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 11px;
  background-color: #000;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .entry-form__required,
  .entry-form__optional {
    font-size: 1.2rem;
    padding: 4px 8px;
  }
}

.entry-form__input,
.entry-form__textarea {
  width: 100%;
  padding: 16px 12px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #000;
  border: none;
  background-color: #f3f3f3;
  border-radius: 0;
}

@media only screen and (max-width: 768px) {
  .entry-form__input,
  .entry-form__textarea {
    font-size: 1.4rem;
    margin-top: 12px;
    padding: 12px;
  }
}

.entry-form__textarea {
  min-height: 378px;
  resize: none;
  field-sizing: content;
}

.entry-form__input::placeholder,
.entry-form__textarea::placeholder {
  color: #d7d7d7;
  font-size: 1.8rem;
}

@media only screen and (max-width: 768px) {
  .entry-form__input::placeholder,
  .entry-form__textarea::placeholder {
    font-size: 1.4rem;
  }
}

.entry-form__annotation {
  margin-left: 10px;
  font-size: 1.4rem;
  font-weight: 400;
}

.entry-form__privacy-body {
  padding: 38px 30px 18px;
  border: 1px solid #d9d9d9;
  height: 300px;
  overflow: hidden;
  overflow-y: scroll;
}

.entry-form__privacy-body li {
  list-style: decimal;
  margin-top: 5px;
}

@media only screen and (max-width: 768px) {
  .entry-form__privacy-body {
    padding: 15px;
    margin-top: 12px;
  }
  .entry-form__privacy-body li {
    font-size: 1.2rem;
  }
}

.entry-form__privacy-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
}

@media only screen and (max-width: 768px) {
  .entry-form__privacy-title {
    font-size: 1.8rem;
  }
}

.entry-form__privacy-text {
  margin-top: 10px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: calc(32 / 16);
  color: #000;
}

@media only screen and (max-width: 768px) {
  .entry-form__privacy-text {
    font-size: 1.2rem;
  }
}

.entry-form__checkbox {
  margin-top: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .entry-form__checkbox {
    margin-top: 20px;
  }
}

.entry-form__checkbox-input {
  display: none;
}

.entry-form__checkbox-icon {
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  border-radius: 3px;
  position: relative;
  margin-right: 15px;
  flex-shrink: 0;
}

@media only screen and (max-width: 768px) {
  .entry-form__checkbox-icon {
    margin-right: 10px;
  }
}

.entry-form__checkbox-input:checked + .entry-form__checkbox-icon::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 4px;
  width: 7px;
  height: 12px;
  border-right: 3px solid #f0831e;
  border-bottom: 3px solid #f0831e;
  transform: rotate(45deg);
}

.entry-form__checkbox-label {
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
}

@media only screen and (max-width: 768px) {
  .entry-form__checkbox-label {
    font-size: 1.4rem;
  }
}

.entry-form__submit {
  margin-top: 84px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media only screen and (max-width: 768px) {
  .entry-form__submit {
    margin-top: 60px;
    gap: 20px;
  }
}

.entry-form__submit-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f7941d;
  color: #fff;
  margin: 0 auto;
  width: 100%;
  max-width: 430px;
  padding: 2.4rem 4.2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 2.2rem;
  border: none;
}

@media only screen and (max-width: 768px) {
  .entry-form__submit-button {
    font-size: 2rem;
  }
}

.entry-form__submit-button:hover span::before {
  opacity: 1;
  right: -194px;
}

@media only screen and (max-width: 768px) {
  .entry-form__submit-button:hover span::before {
    right: -210px;
  }
}

.entry-form__confirm-button:hover span::before {
  opacity: 1;
  right: -304px;
}

.entry-form__submit-button:hover::after {
  right: 10px;
  opacity: 0;
}

.entry-form__submit-button::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}

.entry-form__submit-button::after {
  position: absolute;
  content: "";
  background: url(/assets/img/recruit/recruitment/btn-orange.svg) no-repeat center center / cover;
  width: 20px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  transition: opacity 0.3s ease, right 0.3s ease;
}

.entry-form__submit-button span {
  position: relative;
}

.entry-form__submit-button span::before {
  position: absolute;
  content: "";
  background: url(/assets/img/recruit/recruitment/btn-orange.svg) no-repeat center center / cover;
  width: 20px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
  right: -175px;
  transition: opacity 0.3s ease, right 0.3s ease;
  opacity: 0;
}

.entry-form__confirm-button span::before {
  right: -285px;
}

/* confirm */

.entry-form__body--confirm .entry-form__item {
  padding: 61px 70px;
}

@media only screen and (max-width: 768px) {
  .entry-form__body--confirm .entry-form__item {
    padding: 20px 0;
  }
}

.entry-answer {
  font-size: 1.8rem;
  font-weight: 500;
  color: #000;
}

@media only screen and (max-width: 768px) {
  .entry-answer {
    font-size: 1.4rem;
    margin-top: 12px;
  }
}

.entry-form__back {
  display: block;
  position: relative;
  max-width: 430px;
  width: 100%;
  margin: 0 auto;
  font-size: 2.2rem;
  font-weight: 500;
  color: #000;
  padding: 2.4rem 9rem;
  border: 1px solid #d2d2d2;
  border-radius: 900px;
}

@media only screen and (max-width: 768px) {
  .entry-form__back {
    font-size: 2rem;
    padding: 2.4rem 0 2.4rem 9rem;
  }
}

.entry-form__back:hover::before {
  opacity: 0;
  left: 25px;
}

.entry-form__back:hover .entry-form__back-text::before {
  opacity: 1;
  left: -50px;
}

.entry-form__back::before {
  position: absolute;
  content: "";
  background: url(/assets/img/recruit/recruitment/btn-black.svg) no-repeat center center / cover;
  width: 20px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  left: 40px;
  transition: opacity 0.3s ease, left 0.3s ease;
}

.entry-form__back::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  border-radius: 50%;
  border: 1px solid #d2d2d2;
}

.entry-form__back-text {
  position: relative;
}

.entry-form__back-text::before {
  position: absolute;
  content: "";
  background: url(/assets/img/recruit/recruitment/btn-black.svg) no-repeat center center / cover;
  width: 20px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  left: -30px;
  opacity: 0;
  transition: opacity 0.3s ease, left 0.3s ease;
}

/* complete */

.entry-form__back-top {
  margin-top: 146px;
}

@media only screen and (max-width: 768px) {
  .entry-form__back-top {
    margin-top: 100px;
  }
}

.entry-form__back--top {
  padding: 2.4rem 4.1rem;
  display: block;
  position: relative;
  max-width: 430px;
  width: 100%;
  margin: 0 auto;
  font-size: 2.2rem;
  font-weight: 500;
  color: #000;
  border: 1px solid #d2d2d2;
  border-radius: 900px;
}

@media only screen and (max-width: 768px) {
  .entry-form__back--top {
    font-size: 2rem;
    padding: 2.4rem 9rem 2.4rem 4rem;
  }
}

.entry-form__back--top:hover::after {
  opacity: 0;
  right: 25px;
}

.entry-form__back--top:hover .entry-form__back-text::after {
  opacity: 1;
  right: -130px;
}

@media only screen and (max-width: 768px) {
  .entry-form__back--top:hover .entry-form__back-text::after {
    right: -150px;
  }
}

.entry-form__back--top::after {
  position: absolute;
  content: "";
  background: url(/assets/img/recruit/recruitment/btn-black.svg) no-repeat center center / cover;
  width: 20px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  right: 40px;
  left: auto;
  transition: opacity 0.3s ease, right 0.3s ease;
}

.entry-form__back--top::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  right: 25px;
  border-radius: 50%;
  border: 1px solid #d2d2d2;
  top: 50%;
  transform: translateY(-50%);
}

.entry-form__back--top .entry-form__back-text {
  position: relative;
}

.entry-form__back--top .entry-form__back-text::after {
  position: absolute;
  content: "";
  background: url(/assets/img/recruit/recruitment/btn-black.svg) no-repeat center center / cover;
  width: 20px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  right: -110px;
  opacity: 0;
  transition: opacity 0.3s ease, right 0.3s ease;
}

@media only screen and (max-width: 768px) {
  .entry-form__back--top .entry-form__back-text::after {
    right: -130px;
  }
}
