.re-login {
  margin: auto;
  padding: 3rem;
}
.re-login__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.re-login__tit {
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 3rem;
}
.re-login__depth {
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.re-login__depth--tit {
  font-size: 2rem;
  font-weight: 500;
}
.re-login__depth--box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.re-login__depth--btn {
  min-width: 340px;
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: center;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  padding: 3rem;
  gap: 3rem;
  border: 1px solid #eee;
}
@media (hover: hover) and (pointer: fine) {
  .re-login__depth--btn:hover {
    border-color: rgba(232, 72, 93, 0.7803921569);
  }
}
.re-login__depth--txt {
  text-align: left;
  line-height: 1.8;
}
.re-login__depth--txt h3 {
  padding-bottom: 10px;
}
.re-login__depth--user, .re-login__depth--company {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.re-login__depth--user {
  background-image: url("/img/recruit/personal.png");
}
.re-login__depth--company {
  background-image: url("/img/recruit/company.png");
}
.re-login__group {
  width: 100%;
}
.re-login__group--lable {
  width: 100%;
}
.re-login__from {
  position: relative;
  width: 100%;
  margin-top: 1rem;
}
.re-login__from--id {
  width: 100%;
  height: 50px;
  border: 1px solid #ddd;
  padding: 0 5rem 0 1.5rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.re-login__from--id[aria-invalid=true] {
  border-color: #e8485a;
  box-shadow: 0 0 0 0.3rem rgba(232, 72, 90, 0.12);
}
.re-login__from--btn {
  position: absolute;
  right: 0.8rem;
  top: 2.5rem;
  width: 4rem;
  height: 5rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) and (pointer: fine) {
  .re-login__from--btn:hover .re-login__from--vis {
    background-image: url("/img/recruit/user/icon/visibility_icon.svg");
  }
}
.re-login__from--btn.is-visible .re-login__from--vis {
  background-image: url("/img/recruit/user/icon/visibility_icon.svg");
}
.re-login__from--btn:focus-visible {
  outline: 0.3rem solid rgba(232, 72, 90, 0.2);
  outline-offset: 0.2rem;
  border-radius: 0.8rem;
}
.re-login__from--vis {
  display: block;
  width: 22px;
  height: 20px;
  background: url("/img/recruit/user/icon/visibility_off_icon.svg") no-repeat center center/contain;
}
.re-login__from--assist {
  min-height: 1.8rem;
  margin-top: 0.8rem;
  padding: 0 0.4rem;
  font-size: 1.3rem;
  line-height: 1.4;
  color: #666;
  visibility: hidden;
}
.re-login__from--assist.is-visible {
  visibility: visible;
}
.re-login__from--assist.is-error {
  color: #e8485a;
}
.re-login__options {
  width: 100%;
}
.re-login__options .re-login__options--check {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
}
.re-login__options .re-login__options--check input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 2rem;
  height: 2rem;
  border: 0.2rem solid #c9d3e0;
  border-radius: 0.6rem;
  background: #fff;
  position: relative;
  transition: all 0.2s ease;
  cursor: pointer;
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .re-login__options .re-login__options--check input[type=checkbox]:hover {
    border-color: #e8485a;
  }
}
.re-login__options .re-login__options--check input[type=checkbox]:checked {
  background: #e8485a;
  border-color: #e8485a;
}
.re-login__options .re-login__options--check input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 0.25rem;
  width: 0.5rem;
  height: 1rem;
  border: solid #fff;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
}
.re-login__options .re-login__options--check input[type=checkbox]:focus-visible {
  outline: 0.3rem solid rgba(0, 123, 255, 0.2);
  outline-offset: 0.2rem;
}
.re-login__options .re-login__options--check span {
  font-size: 1.6rem;
  color: #666;
}
.re-login__actions {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2rem;
}
.re-login__actions--submit, .re-login__actions--signup {
  height: 50px;
  border-radius: 1rem;
  font-size: 1.6rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  will-change: transform;
}
.re-login__actions--submit {
  background-color: #e8485a;
  color: #fff;
}
.re-login__actions--signup {
  border: 1px solid #e8485a;
  color: #e8485a;
  background-color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .re-login__actions--submit:hover, .re-login__actions--signup:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  }
  .re-login__actions--submit:active, .re-login__actions--signup:active {
    transform: translateY(0.1rem) scale(0.99);
    box-shadow: none;
  }
}
.re-login__feedback {
  width: 100%;
  min-height: 2rem;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #666;
  visibility: hidden;
}
.re-login__feedback.is-visible {
  visibility: visible;
}
.re-login__feedback.is-error {
  color: #e8485a;
}
.re-login__find {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.re-login__find button {
  color: #aaaaaa;
  text-decoration: underline;
  line-height: 1.8;
}
@media (hover: hover) and (pointer: fine) {
  .re-login__find button:hover {
    color: rgba(232, 72, 93, 0.7803921569);
  }
}
.re-login .re-join {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.re-login .re-join__steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: 1rem;
  background-color: #eee;
}
.re-login .re-join__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #ddd;
  text-align: center;
}
.re-login .re-join__step--active {
  color: #e8485a;
}
.re-login .re-join__step--active .re-join__step-icon {
  background-color: #e8485a;
}
.re-login .re-join__step--active .re-join__step-icon.re-join__step-icon--terms {
  background-image: url("/img/recruit/user/icon/assignment_icon.svg");
}
.re-login .re-join__step--active .re-join__step-icon.re-join__step-icon--profile {
  background-image: url("/img/recruit/user/icon/edit_square_active_icon.svg");
}
.re-login .re-join__step-icon {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem 2rem;
  flex-shrink: 0;
}
.re-login .re-join__step-icon--terms {
  background-image: url("/img/recruit/user/icon/assignment_active_icon.svg");
}
.re-login .re-join__step-icon--profile {
  background-image: url("/img/recruit/user/icon/edit_square_icon.svg");
}
.re-login .re-join__step-icon--done {
  background-image: url("/img/recruit/user/icon/check_icon.svg");
}
.re-login .re-join__step-label {
  font-size: 1.4rem;
  white-space: nowrap;
  font-weight: 400;
}
.re-login .re-join__step-arrow {
  width: 2rem;
  height: 2rem;
  border-top: 0.2rem solid #aaaaaa;
  border-right: 0.2rem solid #aaaaaa;
  transform: rotate(45deg);
  justify-self: center;
}
.re-login .re-join__terms {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.re-login .re-join__item {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.re-login .re-join__check {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  cursor: pointer;
}
.re-login .re-join__check--headline .re-join__check-copy {
  font-size: 1.6rem;
  font-weight: 700;
}
.re-login .re-join__check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.re-login .re-join__check-input:checked + .re-join__check-icon {
  border-color: #e8485a;
  background-color: #e8485a;
}
.re-login .re-join__check-input:checked + .re-join__check-icon::after {
  opacity: 1;
  transform: translate(-50%, -58%) rotate(45deg) scale(1);
}
.re-login .re-join__check-icon {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  border: 0.1rem solid #aaaaaa;
  border-radius: 50%;
  background-color: #fff;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.re-login .re-join__check-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.6rem;
  height: 1.2rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  opacity: 0;
  transform: translate(-50%, -58%) rotate(45deg) scale(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.re-login .re-join__check-copy {
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
}
.re-login .re-join__check-copy em {
  color: #e8485a;
  font-style: normal;
  font-weight: 400;
}
.re-login .re-join__divider {
  width: 100%;
  height: 0.1rem;
  background-color: #cccccc;
}
.re-login .re-join__view, .re-login .re-join__submit {
  width: 100%;
  height: 5rem;
  border-radius: 1rem;
  font-size: 1.6rem;
  font-weight: 400;
}
.re-login .re-join__view {
  border: 1px solid #e8485a;
  color: #e8485a;
  background-color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .re-login .re-join__view:hover {
    border-color: rgba(232, 72, 93, 0.7803921569);
    color: rgba(232, 72, 93, 0.7803921569);
  }
}
.re-login .re-join__submit {
  background-color: #707070;
  color: #fff;
  transition: background-color 0.2s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.re-login .re-join__submit:disabled {
  cursor: not-allowed;
}
.re-login .re-join__submit:not(:disabled) {
  background-color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .re-login .re-join__submit:not(:disabled):hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  }
  .re-login .re-join__submit:not(:disabled):active {
    transform: translateY(0.1rem) scale(0.99);
    box-shadow: none;
  }
}
.re-login .re-company-join {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.re-login .re-company-join__required {
  padding-right: 0.4rem;
  color: #e8485a;
  font-size: 1.6rem;
  text-align: right;
}
.re-login .re-company-join__required span {
  font-weight: 700;
}
.re-login .re-company-join__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 0.1rem solid #cccccc;
}
.re-login .re-company-join__title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}
.re-login .re-company-join__group {
  padding-top: 1.8rem;
  border-top: 0.1rem solid #d9d9d9;
}
.re-login .re-company-join__group:first-of-type {
  padding-top: 0;
  border-top: 0;
}
.re-login .re-company-join__label {
  display: inline-block;
  color: #333;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.re-login .re-company-join__label span {
  color: #e8485a;
}
.re-login .re-company-join__hint {
  display: inline-block;
  margin-left: 0.6rem;
  color: #666;
  font-size: 1.3rem;
}
.re-login .re-company-join__row, .re-login .re-company-join__password {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}
.re-login .re-company-join__password {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
}
.re-login .re-company-join__input {
  width: 100%;
  height: 5rem;
  padding: 0 1.8rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
  color: #333;
  font-size: 1.6rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.re-login .re-company-join__input::placeholder {
  color: #aaaaaa;
}
.re-login .re-company-join__input:focus {
  outline: none;
  border-color: #e8485a;
  box-shadow: 0 0 0 0.3rem rgba(232, 72, 90, 0.08);
}
.re-login .re-company-join__input--password {
  margin-top: 0;
  padding-right: 5.4rem;
}
.re-login .re-company-join__row .re-login .re-company-join__input {
  margin-top: 0;
}
.re-login .re-company-join__action {
  min-width: 11.8rem;
  height: 5rem;
  padding: 0 2rem;
  border-radius: 1rem;
  background-color: #b5b5b5;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  transition: background-color 0.2s ease, transform 0.18s ease;
}
.re-login .re-company-join__action:disabled {
  cursor: not-allowed;
}
.re-login .re-company-join__action:not(:disabled) {
  background-color: #e8485a;
}
.re-login .re-company-join__action--point {
  background-color: #e8485a;
}
.re-login .re-company-join__toggle {
  position: absolute;
  right: 1.4rem;
  top: 50%;
  width: 2.8rem;
  height: 2.8rem;
  transform: translateY(-50%);
  background: url("/img/recruit/user/icon/visibility_off_icon.svg") no-repeat center/contain;
}
.re-login .re-company-join__toggle.is-visible {
  background-image: url("/img/recruit/user/icon/visibility_icon.svg");
}
.re-login .re-company-join__upload {
  width: 100%;
  height: 5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0 2rem;
  border: 0.1rem solid #e8485a;
  border-radius: 1rem;
  background-color: #fff;
  color: #666;
  font-size: 1.6rem;
  font-weight: 400;
}
.re-login .re-company-join__upload.is-filled {
  color: #333;
}
.re-login .re-company-join__upload-icon {
  width: 1.8rem;
  height: 1.8rem;
  background: url("/img/recruit/user/icon/file_icon.svg") no-repeat center/contain;
  flex-shrink: 0;
}
.re-login .re-company-join__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 0.6rem;
}
.re-login .re-company-join__actions-btn {
  height: 5rem;
  border-radius: 1rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
}
.re-login .re-company-join__actions-btn--prev {
  background-color: #aaaaaa;
}
.re-login .re-company-join__actions-btn--submit {
  background-color: #e8485a;
}
.re-login .re-company-join__zipcode {
  margin: 1rem 0;
}
.re-login__done {
  width: 100%;
  max-width: 450px;
  min-height: 40rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
.re-login__done--tit {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
.re-login__done {
  text-align: center;
}
.re-login__done--img {
  width: 250px;
  height: 250px;
}
.re-login__done--img img {
  width: 100%;
}
.re-login__done--btn {
  width: 100%;
  max-width: 22rem;
  height: 5rem;
  background-color: #e8485a;
  color: #fff;
  border-radius: 1rem;
}

.find-info-page {
  width: 100%;
  min-height: 100%;
  padding: 3rem 3rem;
}
.find-info-page__wrap {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.find-info-page__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.find-info-page__eyebrow {
  font-size: 1.2rem;
  font-weight: 700;
  color: #e8485a;
}
.find-info-page__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
}
.find-info-page__description {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #666;
  word-break: keep-all;
}

.find-info-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0.6rem;
  border-radius: 1.6rem;
  background-color: #f5f5f5;
}
.find-info-tabs__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 5rem;
  padding: 0 2rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  color: #666;
  font-size: 1.6rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease;
}
.find-info-tabs__button.is-active, .find-info-tabs__button[aria-selected=true] {
  color: #e8485a;
  background-color: #fff;
  border: 2px solid #e8485a;
}
.find-info-tabs__button:focus-visible {
  color: #e8485a;
}
.find-info-tabs__button:active {
  color: #e8485a;
  transform: translateY(0.1rem);
}
@media (hover: hover) and (pointer: fine) {
  .find-info-tabs__button:hover {
    color: #e8485a;
  }
}

.find-info-panel {
  display: block;
}
.find-info-panel[hidden] {
  display: none;
}

.find-info-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.find-info-form__intro {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.find-info-form__title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}
.find-info-form__copy {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #666;
  word-break: keep-all;
}
.find-info-form__group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.find-info-form__label {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}
.find-info-form__box {
  position: relative;
}
.find-info-form__input {
  width: 100%;
  height: 5.4rem;
  padding: 0 1.8rem;
  border: 1px solid #d3d3d3;
  border-radius: 1rem;
  background-color: #fff;
  color: #333;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.find-info-form__input::placeholder {
  color: #a6a6a6;
  font-weight: 300;
}
.find-info-form__input:focus-visible {
  border: 1px solid #6971ff;
  background-color: #fff;
  color: #333;
  box-shadow: 0 0 1rem 0 rgba(105, 113, 255, 0.18);
  outline: none;
}
.find-info-form__input[aria-invalid=true] {
  border-color: #e8485a;
}
.find-info-form__assist {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #666;
}
.find-info-form__assist--error {
  color: #e8485a;
}
.find-info-form__feedback {
  padding: 1.4rem 1.6rem;
  border-radius: 1rem;
  background-color: rgba(232, 72, 90, 0.08);
  color: #e8485a;
  font-size: 1.3rem;
  line-height: 1.6;
  word-break: keep-all;
}
.find-info-form__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.find-info-form__submit {
  width: 100%;
  height: 5.4rem;
  border-radius: 1rem;
  background-color: #e8485a;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease;
}
.find-info-form__submit:focus-visible {
  border: 1px solid rgba(232, 72, 93, 0.7803921569);
  background-color: #fff;
  color: rgba(232, 72, 93, 0.7803921569);
  box-shadow: 0 0 1rem 0 rgba(105, 113, 255, 0.18);
  outline: none;
}
.find-info-form__submit:active {
  border: 1px solid rgba(232, 72, 93, 0.7803921569);
  background-color: #fff;
  color: rgba(232, 72, 93, 0.7803921569);
  box-shadow: 0 0 1rem 0 rgba(105, 113, 255, 0.18);
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  .find-info-form__submit:hover {
    border: 1px solid rgba(232, 72, 93, 0.7803921569);
    background-color: #fff;
    color: rgba(232, 72, 93, 0.7803921569);
    box-shadow: 0 0 1rem 0 rgba(105, 113, 255, 0.18);
    outline: none;
  }
}
.find-info-form__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  height: 5rem;
  border: 1px solid rgba(232, 72, 90, 0.45);
  border-radius: 1rem;
  color: #e8485a;
  font-size: 1.5rem;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease;
}
.find-info-form__link:focus-visible {
  border: 1px solid #6971ff;
  background-color: #fff;
  color: #6971ff;
  box-shadow: 0 0 1rem 0 rgba(105, 113, 255, 0.18);
  outline: none;
}
.find-info-form__link:active {
  border: 1px solid #6971ff;
  background-color: #fff;
  color: #6971ff;
  box-shadow: 0 0 1rem 0 rgba(105, 113, 255, 0.18);
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  .find-info-form__link:hover {
    border: 1px solid #6971ff;
    background-color: #fff;
    color: #6971ff;
    box-shadow: 0 0 1rem 0 rgba(105, 113, 255, 0.18);
    outline: none;
  }
}
.find-info-form__link:focus-visible {
  border: 1px solid #6971ff;
  background-color: #fff;
  color: #6971ff;
  box-shadow: 0 0 1rem 0 rgba(105, 113, 255, 0.18);
  outline: none;
}
.find-info-form__link:active {
  border: 1px solid #6971ff;
  background-color: #fff;
  color: #6971ff;
  box-shadow: 0 0 1rem 0 rgba(105, 113, 255, 0.18);
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  .find-info-form__link:hover {
    border: 1px solid #6971ff;
    background-color: #fff;
    color: #6971ff;
    box-shadow: 0 0 1rem 0 rgba(105, 113, 255, 0.18);
    outline: none;
  }
}

.recruit-body {
  position: relative;
}

.rehead {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
}
.rehead__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rehead__img {
  width: 13rem;
}
.rehead__img img {
  object-fit: cover;
}
.rehead__box {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.rehead__notice {
  transition: color 0.2s ease;
}
.rehead__notice:focus-visible, .rehead__notice:active, .rehead__notice[aria-current=page] {
  color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .rehead__notice:hover {
    color: #e8485a;
  }
}
.rehead__notice {
  font-weight: 400;
  color: #666;
  width: 4.5rem;
  height: 4.5rem;
  font-size: 1.2rem;
  display: grid;
  grid-template-rows: 60% 40%;
  justify-items: center;
  align-items: center;
}
@media (hover: hover) and (pointer: fine) {
  .rehead__notice:hover {
    color: #e8485a;
  }
  .rehead__notice:hover svg {
    color: #e8485a;
  }
}
.rehead svg {
  color: #666;
}
.rehead svg:focus-visible {
  color: #e8485a;
}
.rehead svg:active {
  color: #e8485a;
}

.re-menu {
  transition: color 0.2s ease;
}
.re-menu:focus-visible, .re-menu:active, .re-menu[aria-current=page] {
  color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .re-menu:hover {
    color: #e8485a;
  }
}
.re-menu {
  display: grid;
  grid-template-rows: 60% 40%;
  justify-items: center;
  align-items: center;
  font-weight: 400;
  color: #666;
  font-size: 1.2rem;
  height: 4.5rem;
}
.re-menu__icon {
  position: relative;
  width: 2.6rem;
  height: 2rem;
}
.re-menu__line {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 0.3rem;
  border-radius: 99.9rem;
  background-color: currentColor;
  transform: translateX(-50%) translateY(0) rotate(0deg);
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.2s ease, background-color 0.2s ease;
}
.re-menu__line--top {
  top: 0;
}
.re-menu__line--middle {
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.re-menu__line--bottom {
  bottom: 0;
}

.search-box {
  padding: 0 2rem;
}
.search-box .re-search {
  position: relative;
}
.search-box .re-search__icon {
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("/img/recruit/user/icon/search_icon.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.search-box .re-search__input {
  width: 100%;
  height: 4.6rem;
  padding: 0 4.4rem 0 1rem;
  border: 0.1rem solid rgba(232, 72, 90, 0.5);
  border-radius: 1rem;
  background-color: #fff;
  font-size: 1.6rem;
  color: #333;
}
.search-box .re-search__input::placeholder {
  color: #aaaaaa;
}
.search-box .re-search__input:focus {
  outline: none;
  border-color: #d0d0d0;
}
.search-box .re-search__input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.search-box .re-search__input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.search-box .re-search__field {
  position: relative;
}
.search-box .re-search__clear {
  display: none;
  position: absolute;
  top: 50%;
  right: 4rem;
  width: 4.5rem;
  height: 4.5rem;
  transform: translateY(-50%);
}
.search-box .re-search__clear div {
  width: 1.6rem;
  height: 1.6rem;
  background: url("/img/recruit/user/icon/close.png") no-repeat 50% 50%/cover;
}
.search-box .re-search__clear.is-show {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.search-box .re-search__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: absolute;
  top: 23px;
  right: 0rem;
  width: 4.4rem;
  height: 4.4rem;
  transform: translateY(-50%);
  border-radius: 1rem;
}
@media (hover: hover) and (pointer: fine) {
  .search-box .re-search__btn:hover .re-search__icon {
    background-image: url("/img/recruit/user/icon/search_icon_active.png");
  }
}
.search-box .re-search .search-in {
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.search-box .re-search .search-in__box {
  min-height: 200px;
  border-bottom: 1px solid #ddd;
}
.search-box .re-search .search-in__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}
.search-box .re-search .search-in__top div {
  color: #666;
}
.search-box .re-search .search-in__top button {
  color: #666;
  font-size: 1.4rem;
}
@media (hover: hover) and (pointer: fine) {
  .search-box .re-search .search-in__top button:hover {
    color: #e8485a;
  }
}
.search-box .re-search .search-in__middle {
  text-align: center;
  width: 100%;
  min-height: 100px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #666;
  font-size: 1.4rem;
}
.search-box .re-search .search-in__in-middle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.search-box .re-search .search-in__in-middle .recent-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e8485a;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  padding: 1rem;
  gap: 0.5rem;
  color: #e8485a;
  font-size: 1.4rem;
}
.search-box .re-search .search-in__in-middle .recent-btn__close {
  width: 1.4rem;
  height: 1.4rem;
  background: url("/img/recruit/user/icon/close.png") no-repeat center/contain;
}
@media (hover: hover) and (pointer: fine) {
  .search-box .re-search .search-in__in-middle .recent-btn:hover {
    border: 1px solid #aaaaaa;
    color: #666;
  }
  .search-box .re-search .search-in__in-middle .recent-btn:hover .recent-btn__close {
    background-image: url("/img/recruit/user/icon/close_active.png");
  }
}
.search-box .re-search .search-in__in-middle .recent-btn__flex {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.search-box .re-search .search-in__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 0;
}
.search-box .re-search .search-in__bottom .add-condition {
  padding: 1rem 1.5rem;
  color: #aaaaaa;
  font-size: 1.4rem;
  border: 1px solid #aaaaaa;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
}
@media (hover: hover) and (pointer: fine) {
  .search-box .re-search .search-in__bottom .add-condition:hover {
    color: #e8485a;
    border-color: #e8485a;
  }
}

.re-mobile-nav {
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.re-mobile-nav__box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.re-mobile-nav__box .menu-h2 {
  color: #666;
  font-weight: 400;
  font-size: 1.8rem;
}
.re-mobile-nav__title .mobileinfo {
  width: 2.4rem;
  height: 2.4rem;
  background: url("/img/recruit/user/icon/recruit_info_icon.png") no-repeat center/contain;
}
.re-mobile-nav__title .mobilemy {
  width: 2.4rem;
  height: 2.4rem;
  background: url("/img/recruit/user/icon/my_icon.png") no-repeat center/contain;
}
.re-mobile-nav__btn {
  width: 3rem;
  height: 4.5rem;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.re-mobile-nav__btn:focus-visible {
  color: #e8485a;
}
.re-mobile-nav__btn:active {
  color: #e8485a;
}
.re-mobile-nav__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.re-mobile-nav__title h2 {
  color: #666;
  font-weight: 600;
  font-size: 2rem;
}
.re-mobile-nav__action {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #b0b0b0;
  font-size: 1.6rem;
  font-weight: 500;
}
.re-mobile-nav__action svg {
  flex-shrink: 0;
}
.re-mobile-nav__action:focus-visible, .re-mobile-nav__action:active {
  color: #e8485a;
}

.mobile-bnb {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 66px;
  background-color: #fff;
  border-top: 1px solid #ddd;
  padding: 10px 0 calc(20px + env(safe-area-inset-bottom));
}
.mobile-bnb__btn {
  display: grid;
  grid-template-rows: 80% 20%;
  justify-items: center;
  width: 50px;
  height: 50px;
}
.mobile-bnb__btn.is-active {
  color: #e8485a;
}
.mobile-bnb__btn.is-active .mobile-bnb__txt {
  color: #e8485a;
}
.mobile-bnb__btn.is-active .mobile-bnb__icon.home {
  background-image: url("/img/recruit/user/icon/home_active_icon.png");
}
.mobile-bnb__btn.is-active .mobile-bnb__icon.info {
  background-image: url("/img/recruit/user/icon/recruit_info_icon_active.png");
}
.mobile-bnb__btn.is-active .mobile-bnb__icon.group {
  background-image: url("/img/recruit/user/icon/group_active_icon.png");
}
.mobile-bnb__btn.is-active .mobile-bnb__icon.anounce {
  background-image: url("/img/recruit/user/icon/anoun_active_icon.png");
}
.mobile-bnb__btn.is-active .mobile-bnb__icon.my {
  background-image: url("/img/recruit/user/icon/my_icon_active.png");
}
.mobile-bnb__btn .home {
  width: 24px;
  background: url("/img/recruit/user/icon/home_icon.png") no-repeat center/contain;
}
.mobile-bnb__btn .info {
  width: 24px;
  background: url("/img/recruit/user/icon/recruit_info_icon.png") no-repeat center/contain;
}
.mobile-bnb__btn .group {
  width: 34px;
  background: url("/img/recruit/user/icon/group_icon.png") no-repeat center/contain;
}
.mobile-bnb__btn .anounce {
  width: 28px;
  background: url("/img/recruit/user/icon/anoun_icon.png") no-repeat center/contain;
}
.mobile-bnb__btn .my {
  width: 24px;
  background: url("/img/recruit/user/icon/my_icon.png") no-repeat center/contain;
}
.mobile-bnb__txt {
  font-size: 1rem;
  color: #666;
}

.mobile-bnb-quick {
  position: fixed;
  right: 2rem;
  bottom: calc(86px + env(safe-area-inset-bottom));
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(1.2rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.mobile-bnb-quick.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-bnb-quick__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 5rem;
  height: 5rem;
  border: 1px solid #ddd;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.12);
  color: #333;
}
.mobile-bnb-quick__label {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}
.mobile-bnb-quick__icon {
  position: relative;
  display: block;
  width: 1.4rem;
  height: 1.4rem;
}
.mobile-bnb-quick__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.8rem;
  height: 0.8rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
.mobile-bnb-quick__icon--back::before {
  transform: rotate(45deg);
}
.mobile-bnb-quick__icon--top::before {
  transform: rotate(135deg);
}

.notice-panel {
  width: 40rem;
  padding: 2rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.notice-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.notice-panel__title-box {
  display: flex;
  align-items: center;
}
.notice-panel__title {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 400;
  color: #666;
}
.notice-panel__setting {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1rem;
}
.notice-panel__setting .home {
  width: 2.4rem;
  height: 2.4rem;
  transition: transform 0.2s ease;
  background: url("/img/recruit/user/icon/home_icon.png") no-repeat center/contain;
}
.notice-panel__setting .setting {
  width: 2.6rem;
  height: 2.6rem;
  transition: transform 0.2s ease;
  background: url("/img/recruit/user/icon/setting.png") no-repeat center/contain;
}
@media (hover: hover) and (pointer: fine) {
  .notice-panel__setting:hover .setting {
    transform: rotate(90deg);
    background-image: url("/img/recruit/user/icon/setting_active.png");
  }
}
.notice-panel__setting .close {
  width: 2.2rem;
  height: 2.2rem;
  transition: transform 0.2s ease;
  background: url("/img/recruit/user/icon/close.png") no-repeat center/contain;
}
@media (hover: hover) and (pointer: fine) {
  .notice-panel__setting:hover .close {
    transform: rotate(90deg);
    background-image: url("/img/recruit/user/icon/close_active.png");
  }
}
.notice-panel__setting-flex {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  height: 4.5rem;
  border-radius: 1rem;
  color: #aaaaaa;
  gap: 1rem;
}
.notice-panel__setting-flex .reset {
  width: 1.8rem;
  height: 1.8rem;
  transition: transform 0.2s ease;
  background: url("/img/recruit/user/icon/reset_icon.png") no-repeat center/contain;
}
.notice-panel__group {
  min-height: 30rem;
}
.notice-panel__group-title {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: #666;
}
.notice-panel__card-list, .notice-panel__activity-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.notice-panel__card-list li.is-hidden, .notice-panel__activity-list li.is-hidden {
  display: none;
}
.notice-panel__card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #eee;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.04);
}
.notice-panel__card-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #666;
}
.notice-panel__card-title {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 1rem;
  color: #333;
}
.notice-panel__empty {
  width: 100%;
  min-height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.notice-panel__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #666;
  transition: color 0.2s ease;
}
.notice-panel__more svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.notice-panel__more:focus-visible, .notice-panel__more:active {
  color: #e8485a;
}
.notice-panel__more:focus-visible svg, .notice-panel__more:active svg {
  color: #e8485a;
}
.notice-panel__more.is-open svg {
  transform: rotate(180deg);
}
@media (hover: hover) and (pointer: fine) {
  .notice-panel__more:hover {
    color: #e8485a;
  }
  .notice-panel__more:hover svg {
    color: #e8485a;
  }
}
.notice-panel__activity-list {
  gap: 1rem;
}
.notice-panel__activity-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.notice-panel__activity-time {
  position: relative;
  padding-left: 2rem;
  color: #666;
}
.notice-panel__activity-time::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.2rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: #aaaaaa;
  transform: translateY(-50%);
}
.notice-panel__activity-box {
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background-color: #f5f5f5;
  color: #666;
}

.re-notice {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.re-notice__card {
  padding: 2rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
}
.re-notice__card h3 {
  overflow: hidden;
  font-size: 1.8rem;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.re-notice__cate {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #666;
}
.re-notice p {
  overflow: hidden;
  margin-top: 1rem;
  font-size: 1.6rem;
  color: #666;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.re-notice__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #666;
}
.re-notice__meta a {
  color: #666;
}
.re-notice__meta a:focus-visible {
  color: #e8485a;
}
.re-notice__meta a:active {
  color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .re-notice__meta a:hover {
    color: #e8485a;
  }
}
.re-notice__empty {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  min-height: 20rem;
  padding: 0 3rem;
}

.mo-notice-style {
  padding: 0 2rem;
}
.mo-notice-style__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}
.mo-notice-style__setting-tit {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
}
.mo-notice-style__setting-txt {
  font-size: 1.4rem;
  color: #666;
}
.mo-notice-style__switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.mo-notice-style__switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.mo-notice-style__switch input:focus-visible + .easy-login-page__switch-track {
  box-shadow: 0 0 0 0.3rem rgba(232, 72, 90, 0.14);
}
.mo-notice-style__switch-track {
  position: relative;
  display: inline-block;
  width: 8.4rem;
  height: 4.4rem;
  border: 1px solid #ddd;
  border-radius: 99.9rem;
  background: #d8d8d8;
}
.mo-notice-style__switch-track::after {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease;
}
.mo-notice-style__switch input:checked + .mo-notice-style__switch-track {
  border-color: #e8485a;
  background: #e8485a;
}
.mo-notice-style__switch input:checked + .mo-notice-style__switch-track::after {
  transform: translateX(3.9rem);
}

.my-info-page {
  padding: 3rem;
}
.my-info-page__title {
  font-size: 2.2rem;
  font-weight: 700;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2rem;
}
.my-info-page__box {
  display: flex;
  flex-direction: column;
}
.my-info-page__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.my-info-page__menu-item {
  width: 100%;
  padding: 2rem;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.8rem;
  color: #666;
}
.my-info-page__menu-item:focus-visible {
  color: #e8485a;
}
.my-info-page__menu-item:active {
  color: #e8485a;
}
.my-info-page__leave {
  margin-top: 180px;
  color: #aaaaaa;
  font-size: 1.3rem;
  text-align: left;
}
.my-info-page__inner {
  display: flex;
  flex-direction: column;
}
.my-info-page__inner--tit {
  display: inline;
  width: 100%;
  padding: 3rem 0;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  text-align: center;
  margin: 2rem 0;
  font-weight: 500;
}
.my-info-page__inner--subtit {
  font-weight: 500;
  text-align: center;
  padding: 3rem 0;
}
.my-info-page__inner--txt {
  color: #666;
  font-size: 1.4rem;
  padding: 10px 0;
}
.my-info-page__inner--q {
  font-size: 1.4rem;
  color: #aaaaaa;
  padding-bottom: 2rem;
}
.my-info-page__inner--a {
  font-size: 1.4rem;
}

.mo-mail-txt {
  padding: 1rem 2rem;
  color: #666;
}

.re-main {
  padding: 0 2rem;
}
.re-main__inner {
  width: 100%;
  margin: 0 auto;
}
.re-main .re-hero {
  position: relative;
  min-height: 20rem;
  margin-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  color: #fff;
  background-image: url("/img/recruit/user/test_img.png");
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.re-main .re-hero__bg {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 3rem;
}
.re-main .re-hero__badge {
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow: 1rem 1rem 2rem #000;
}
.re-main .re-hero__tit {
  font-size: 1.6rem;
  color: #fff;
  padding: 3rem 0;
  word-break: keep-all;
  font-weight: 500;
}
.re-main .re-hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  font-size: 1.4rem;
}
.re-main .re-hero__meta span {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0.5rem;
  padding: 0.2rem 0.5rem;
}
.re-main .re-hero__empty {
  position: relative;
  min-height: 20rem;
  margin-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
}
.re-main .re-hero__empty-tit {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 3rem;
  color: #fff;
}
.re-main .re-banner {
  width: 100%;
  height: 90px;
  background-image: url("/img/recruit/user/re_img_test.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.re-main .re-banner-empty {
  width: 100%;
  height: 90px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.re-section__inner {
  width: 100%;
  margin-top: 2rem;
}
.re-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin: 1rem 0;
}
.re-section__head h2 {
  color: #666;
  font-weight: 400;
  font-size: 1.4rem;
}
.re-section__head button {
  color: #666;
  font-weight: 400;
  font-size: 1.4rem;
}
.re-section__head button:focus-visible {
  color: #e8485a;
}
.re-section__head button:active {
  color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .re-section__head button:hover {
    color: #e8485a;
  }
}
.re-section__card .re-company, .re-section__card-grid .re-company {
  position: relative;
  flex-shrink: 0;
  min-height: 14rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.re-section__card .re-company p, .re-section__card-grid .re-company p {
  font-size: 1.4rem;
  color: #666;
}
.re-section__card .re-company__location, .re-section__card-grid .re-company__location {
  font-size: 1.4rem;
  color: #666;
}
.re-section__card .re-company__scrap, .re-section__card-grid .re-company__scrap {
  display: flex;
  justify-content: end;
  width: 4rem;
  height: 4rem;
}
.re-section__card .re-company__scrap span, .re-section__card-grid .re-company__scrap span {
  width: 2.4rem;
  height: 2.4rem;
  background: url("/img/recruit/user/icon/star.png") no-repeat center/contain;
}
.re-section__card .re-company__scrap span.is-scrap, .re-section__card-grid .re-company__scrap span.is-scrap {
  background-image: url("/img/recruit/user/icon/star_active.png");
}
.re-section__empty {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  min-height: 20rem;
  padding: 0 3rem;
}

.rehead-notice {
  display: none;
  position: absolute;
  top: 4rem;
  right: 0;
  z-index: 5;
}

.re-info {
  width: 100%;
  padding: 0 2rem;
}
.re-info__title {
  font-size: 2.4rem;
  font-weight: 600;
}
.re-info__box {
  position: relative;
}
.re-info__count {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #666;
  gap: 1rem;
}
.re-info .re-info-filter {
  display: grid;
  grid-template-columns: minmax(25rem, 1fr) minmax(25rem, 1fr) minmax(30rem, 1.2fr);
  width: 100%;
  height: 4.5rem;
  border: 0.1rem solid #aaaaaa;
  border-radius: 1rem;
  background-color: transparent;
}
.re-info .re-info-filter__select, .re-info .re-info-filter__keyword {
  min-width: 0;
  height: 100%;
  padding: 0 1rem;
  color: #aaaaaa;
}
.re-info .re-info-filter__select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-right: 0.1rem solid #aaaaaa;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.re-info .re-info-filter__select:focus-visible, .re-info .re-info-filter__select:active {
  color: #e8485a;
  outline: none;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
@media (hover: hover) and (pointer: fine) {
  .re-info .re-info-filter__select:hover {
    color: #e8485a;
  }
  .re-info .re-info-filter__select:hover .infofilter-location {
    background-image: url("/img/recruit/user/icon/location_active_icon.png");
  }
  .re-info .re-info-filter__select:hover .infofilter-job {
    background-image: url("/img/recruit/user/icon/bag_active_icon.png");
  }
}
.re-info .re-info-filter__select.is-active {
  color: #e8485a;
}
.re-info .re-info-filter__select.is-active .re-info-filter__arrow {
  transform: rotate(180deg);
}
.re-info .re-info-filter__select.is-active .infofilter-location {
  background-image: url("/img/recruit/user/icon/location_active_icon.png");
}
.re-info .re-info-filter__select.is-active .infofilter-job {
  background-image: url("/img/recruit/user/icon/bag_active_icon.png");
}
.re-info .re-info-filter__label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.re-info .re-info-filter__icon {
  position: relative;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  color: currentColor;
}
.re-info .re-info-filter .infofilter-location {
  background: url("/img/recruit/user/icon/location_icon.png") no-repeat center/contain;
}
.re-info .re-info-filter .infofilter-job {
  background: url("/img/recruit/user/icon/bag_icon.png") no-repeat center/contain;
}
.re-info .re-info-filter__arrow {
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 2.4rem;
  height: 2.4rem;
  stroke-width: 2.3;
  transition: transform 0.2s ease;
}
.re-info .re-info-filter__keyword {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  transition: background-color 0.2s ease;
}
.re-info .re-info-filter__keyword:focus-within {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.re-info .re-info-filter__keyword input {
  width: 100%;
  height: 100%;
  border: 0;
  background-color: transparent;
  font: inherit;
  color: #333;
  outline: none;
}
.re-info .re-info-filter__keyword input::placeholder {
  color: #aaaaaa;
}
.re-info .re-info-filter__keyword input[type=search]::-webkit-search-cancel-button, .re-info .re-info-filter__keyword input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}
.re-info .re-info-filter__search {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: url("/img/recruit/user/icon/search_icon.png") no-repeat center/contain;
}
.re-info .re-info-condition {
  position: absolute;
  width: 100%;
  top: 80px;
  z-index: 4;
}
.re-info .re-info-panel {
  display: none;
  overflow: hidden;
  margin-top: -0.1rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.08);
}
.re-info .re-info-panel.is-open {
  display: block;
}
.re-info .re-info-panel__search {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 4.5rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid #ddd;
}
.re-info .re-info-panel__search input {
  width: 100%;
  height: 100%;
  border: 0;
  background-color: transparent;
  color: #333;
  outline: none;
}
.re-info .re-info-panel__search input::placeholder {
  color: #aaaaaa;
}
.re-info .re-info-panel__search input[type=search]::-webkit-search-cancel-button, .re-info .re-info-panel__search input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}
.re-info .re-info-panel__search--detail {
  position: absolute;
  width: 60%;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  display: none;
  padding: 1rem 2rem;
  background-color: #fff;
  z-index: 10;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.re-info .re-info-panel__search--detail.is-open {
  display: block;
}
.re-info .re-info-panel__search--box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  max-height: 25rem;
  overflow: auto;
}
.re-info .re-info-panel__search--check {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.5rem;
  color: #666;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}
.re-info .re-info-panel__search--check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.re-info .re-info-panel__search--check span {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  border: 0.1rem solid #aaa;
  border-radius: 0.6rem;
  background-color: #fff;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.re-info .re-info-panel__search--check span::after {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0.7rem;
  width: 0.6rem;
  height: 1.1rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  opacity: 0;
  transform: rotate(45deg);
}
.re-info .re-info-panel__search--check input:checked + span {
  border-color: #e8485a;
  background-color: #e8485a;
}
.re-info .re-info-panel__search--check input:checked + span::after {
  opacity: 1;
}
.re-info .re-info-panel__search-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: url("/img/recruit/user/icon/search_icon.png") no-repeat center/contain;
}
.re-info .re-info-panel__body {
  display: grid;
  grid-template-columns: 27rem 1fr;
  min-height: 25rem;
}
.re-info .re-info-panel__side {
  display: flex;
  flex-direction: column;
  padding: 1.8rem 0;
  border-right: 0.1rem solid #ddd;
  overflow: auto;
  max-height: 35rem;
}
.re-info .re-info-panel__side button {
  position: relative;
  min-height: 4.5rem;
  padding: 0 2rem;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 400;
  color: #666;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.re-info .re-info-panel__side button.is-active {
  color: #e8485a;
}
.re-info .re-info-panel__side button.is-active::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.8rem;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 0.2rem solid currentColor;
  border-right: 0.2rem solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.re-info .re-info-panel__side button:focus-visible, .re-info .re-info-panel__side button:active {
  color: #e8485a;
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  .re-info .re-info-panel__side button:hover {
    color: #e8485a;
    background-color: #fff7f8;
  }
}
.re-info .re-info-panel__checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-content: start;
  padding: 2rem;
  overflow: auto;
  max-height: 35rem;
}
.re-info .re-info-panel__bottom {
  display: grid;
  grid-template-columns: 80% 250px;
  justify-content: space-between;
  border-top: 1px solid #ddd;
  padding: 1rem 2rem;
}
.re-info .re-info-panel .re-info-selected {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.re-info .re-info-panel .re-info-selected .recent-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e8485a;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  padding: 1rem;
  gap: 0.5rem;
  color: #e8485a;
  font-size: 1.4rem;
}
.re-info .re-info-panel .re-info-selected .recent-btn__close {
  width: 1.4rem;
  height: 1.4rem;
  background: url("/img/recruit/user/icon/close.png") no-repeat center/contain;
}
@media (hover: hover) and (pointer: fine) {
  .re-info .re-info-panel .re-info-selected .recent-btn:hover {
    border: 1px solid #aaaaaa;
    color: #666;
  }
  .re-info .re-info-panel .re-info-selected .recent-btn:hover .recent-btn__close {
    background-image: url("/img/recruit/user/icon/close_active.png");
  }
}
.re-info .re-info-panel .re-info-selected .recent-btn__flex {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.re-info .re-info-panel__actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
}
.re-info .re-info-panel__actions button {
  height: 4.5rem;
  max-width: 8rem;
  border: 0.1rem solid #b9b9b9;
  border-radius: 1rem;
  font-size: 1.4rem;
  color: #666;
  padding: 1rem 1.5rem;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.re-info .re-info-panel__actions button:focus-visible, .re-info .re-info-panel__actions button:active {
  border-color: #e8485a;
  color: #e8485a;
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  .re-info .re-info-panel__actions button:hover {
    border-color: #e8485a;
    color: #e8485a;
    background-color: #fff !important;
  }
}
.re-info .re-info-panel__actions .re-info-panel__add {
  border-color: #e8485a;
  background-color: #e8485a;
  color: #fff;
}
.re-info .re-info-check {
  position: relative;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 4.5rem;
  color: #666;
  cursor: pointer;
}
.re-info .re-info-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.re-info .re-info-check span {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  border: 0.1rem solid #aaa;
  border-radius: 0.6rem;
  background-color: #fff;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.re-info .re-info-check span::after {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0.7rem;
  width: 0.6rem;
  height: 1.1rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  opacity: 0;
  transform: rotate(45deg);
}
.re-info .re-info-check input:checked + span {
  border-color: #e8485a;
  background-color: #e8485a;
}
.re-info .re-info-check input:checked + span::after {
  opacity: 1;
}
.re-info__in-middle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.re-info .re-info-chip {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  height: 5.2rem;
  padding: 0 1.4rem;
  border: 0.1rem solid #e8485a;
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #e8485a;
}
.re-info .re-info-chip span {
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
}
.re-info .re-info-chip span::before, .re-info .re-info-chip span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.8rem;
  height: 0.2rem;
  border-radius: 99.9rem;
  background-color: #aaaaaa;
}
.re-info .re-info-chip span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.re-info .re-info-chip span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.re-info__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}
.re-info__list .re-company {
  position: relative;
  flex-shrink: 0;
  min-height: 14rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.re-info__list .re-company:focus-within, .re-info__list .re-company:active {
  border-color: rgba(232, 72, 90, 0.35);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.08);
}
.re-info__list .re-company p {
  font-size: 1.4rem;
  color: #666;
}
.re-info__list .re-company__location {
  font-size: 1.4rem;
  color: #666;
}
.re-info__list .re-company__scrap {
  display: flex;
  justify-content: end;
  width: 4rem;
  height: 4rem;
}
.re-info__list .re-company__scrap span {
  width: 2.4rem;
  height: 2.4rem;
  background: url("/img/recruit/user/icon/star.png") no-repeat center/contain;
}
.re-info__list .re-company__scrap span.is-scrap {
  background-image: url("/img/recruit/user/icon/star_active.png");
}
.re-info__list .re-company__button {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  border: 1px solid #e8485a;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  padding: 10px;
  color: #e8485a;
  font-size: 1.4rem;
}
.re-info__list .re-company__button:focus-within, .re-info__list .re-company__button:active {
  background-color: #e8485a;
  color: #fff;
}

.mo-info {
  padding: 0 2rem;
}
.mo-info__list {
  margin-top: 2rem;
  padding-bottom: 5rem;
}
.mo-info__list .re-company {
  position: relative;
  flex-shrink: 0;
  min-height: 14rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.mo-info__list .re-company:focus-within, .mo-info__list .re-company:active {
  border-color: rgba(232, 72, 90, 0.35);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.08);
}
.mo-info__list .re-company p {
  font-size: 1.4rem;
  color: #666;
}
.mo-info__list .re-company__location {
  font-size: 1.4rem;
  color: #666;
}
.mo-info__list .re-company {
  width: 100%;
  margin: 2rem 0;
}
.mo-info__list .re-company__scrap {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  justify-content: end;
  width: 4rem;
  height: 4rem;
}
.mo-info__list .re-company__scrap span {
  width: 2.4rem;
  height: 2.4rem;
  background: url("/img/recruit/user/icon/star.png") no-repeat center/contain;
}
.mo-info__list .re-company__scrap span.is-scrap {
  background-image: url("/img/recruit/user/icon/star_active.png");
}
.mo-info__list .re-company__button {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  border: 1px solid #e8485a;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  padding: 10px;
  color: #e8485a;
  font-size: 1.4rem;
}
.mo-info__list .re-company__button:focus-within, .mo-info__list .re-company__button:active {
  background-color: #e8485a;
  color: #fff;
}
.mo-info .mo-info-top {
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid #ddd;
  width: 100%;
  padding-bottom: 0.5rem;
}
.mo-info .mo-info-top button {
  height: 4.5rem;
  color: #333;
}
.mo-info .mo-info-top button.is-active {
  color: #e8485a;
}
.mo-info .mo-info-location {
  width: 100%;
  padding: 1rem 0;
}
.mo-info .mo-info-location .mo-info-selected {
  width: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mo-info .mo-info-location .mo-info-selected__btn {
  flex: 0 0 auto;
  width: auto;
  white-space: nowrap;
  border: 1px solid #aaaaaa;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  padding: 1rem;
  color: #aaaaaa;
  font-size: 1.4rem;
}
.mo-info .mo-info-location .mo-info-selected .recent-btn {
  flex: 0 0 auto;
  width: auto;
  display: flex;
  white-space: nowrap;
  align-items: center;
  border: 1px solid #e8485a;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  padding: 1rem;
  gap: 0.5rem;
  color: #e8485a;
  font-size: 1.4rem;
}
.mo-info .mo-info-location .mo-info-selected .recent-btn__close {
  width: 1.4rem;
  height: 1.4rem;
  background: url("/img/recruit/user/icon/close.png") no-repeat center/contain;
}
.mo-info .mo-info-location .mo-info-selected .recent-btn:active {
  border: 1px solid #aaaaaa;
  color: #666;
}
.mo-info .mo-info-location .mo-info-selected .recent-btn:active .recent-btn__close {
  background-image: url("/img/recruit/user/icon/close_active.png");
}
.mo-info .mo-info-location .mo-info-selected .recent-btn__flex {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mo-info__body-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
}
.mo-info__body-top-select {
  position: relative;
  display: flex;
  align-items: center;
}
.mo-info__body-top-select select {
  width: 100px;
  padding: 0 1rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  min-height: 4.5rem;
  color: #666;
  background: transparent;
  appearance: none;
  outline: 0;
  cursor: pointer;
}
.mo-info__body-top-select svg {
  position: absolute;
  top: 48%;
  right: 1rem;
  color: #666;
  font-size: 1.4rem;
  pointer-events: none;
  transform: translateY(-50%) rotate(0deg);
}

.mo-company-account {
  min-height: calc(100vh - 6.5rem);
  background-color: #fff;
}
.mo-company-account__inner {
  padding: 2rem;
}
.mo-company-account__title, .mo-company-account__subtitle {
  color: #333;
  font-size: 1.6rem;
}
.mo-company-account__subtitle {
  margin-top: 5.8rem;
}
.mo-company-account__edit-item, .mo-company-account__info-item {
  margin-top: 3.4rem;
}
.mo-company-account__label {
  display: inline-block;
  margin-bottom: 1.4rem;
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
}
.mo-company-account__row {
  display: grid;
  align-items: center;
}
.mo-company-account__input, .mo-company-account__box {
  width: 100%;
  min-height: 5rem;
  display: flex;
  align-items: center;
  padding: 0 1.6rem;
  border: 1px solid #bcbcbc;
  border-radius: 1rem;
  background-color: #fff;
  color: #333;
  font-size: 1.6rem;
  font-weight: 500;
}
.mo-company-account__input {
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.mo-company-account__input[readonly] {
  cursor: default;
  background-color: #fafafa;
  color: #555555;
}
.mo-company-account__input:not([readonly]) {
  border-color: #e8485a;
  background-color: #fff7f8;
  box-shadow: 0 0 0 0.3rem rgba(232, 72, 90, 0.08);
}
.mo-company-account__edit-item.is-editing .mo-company-account__input {
  color: #333;
}
.mo-company-account__action {
  width: 100%;
  min-height: 5rem;
  border-radius: 1rem;
  border: 1px solid #e8485a;
  background-color: #fff;
  color: #e8485a;
  font-size: 1.6rem;
  font-weight: 400;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.mo-company-account__edit-item.is-editing .mo-company-account__action {
  background-color: #e8485a;
  color: #fff;
}
.mo-company-account__edit-item.is-editing .mo-company-account__label {
  color: #e8485a;
}
.mo-company-account__notice {
  margin: 2rem 0 0;
  padding: 0 1.6rem;
  color: #333;
  font-size: 1.6rem;
  font-weight: 500;
  word-break: keep-all;
}
.mo-company-account__box--danger {
  color: #e8485a;
}

.mo-add-condition {
  min-height: calc(100vh - 6.5rem);
  padding: 0 2rem;
  background-color: #fff;
}
.mo-add-condition__section {
  padding: 2rem 0;
  border-bottom: 1px solid #ddd;
}
.mo-add-condition__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.mo-add-condition__title {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
}
.mo-add-condition__select-btn {
  flex-shrink: 0;
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
}
.mo-add-condition__select-btn:focus-visible, .mo-add-condition__select-btn:active {
  color: #e8485a;
}
.mo-add-condition__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.mo-add-condition__tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e8485a;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  padding: 1rem;
  gap: 0.5rem;
  color: #e8485a;
  font-size: 1.4rem;
}
.mo-add-condition__tag:focus-visible, .mo-add-condition__tag:active {
  border-color: rgba(232, 72, 90, 0.45);
  background-color: rgba(232, 72, 90, 0.04);
}
.mo-add-condition__tag-close {
  width: 1.4rem;
  height: 1.4rem;
  background: url("/img/recruit/user/icon/close.png") no-repeat center/contain;
}
.mo-add-condition__check-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.mo-add-condition__check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.mo-add-condition__check span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  padding: 0 1.5rem 0 4.5rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  color: #aaaaaa;
  font-size: 1.6rem;
  white-space: nowrap;
}
.mo-add-condition__check span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  background-color: #fff;
  transform: translateY(-50%);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.mo-add-condition__check input:checked + span {
  border-color: rgba(232, 72, 90, 0.45);
  color: #333;
}
.mo-add-condition__check input:checked + span::before {
  border-color: #e8485a;
  background-color: #e8485a;
  box-shadow: inset 0 0 0 0.6rem #fff;
}
.mo-add-condition__actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem 2rem calc(2rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 24%, #fff 100%);
}
.mo-add-condition__action {
  min-height: 5rem;
  border-radius: 1rem;
  font-size: 1.6rem;
}
.mo-add-condition__action--line {
  background-color: #fff;
  color: #666;
  border: 1px solid #ddd;
}
.mo-add-condition__action--fill {
  background-color: #e8485a;
  color: #fff;
}
.mo-add-condition__empty {
  min-height: 100px;
  color: #aaaaaa;
}

.mo-add-detail {
  min-height: 70vh;
  background-color: #fff;
}
.mo-add-detail__content {
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr);
  min-height: calc(100vh - 6.5rem);
}
.mo-add-detail__group-list {
  background-color: #f5f5f5;
}
.mo-add-detail__group-btn {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 5.8rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid #ddd;
  text-align: left;
  font-size: 1.6rem;
  color: #666;
  background-color: transparent;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.mo-add-detail__group-btn.is-active {
  color: #e8485a;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.72);
}
.mo-add-detail__group-btn.is-selected {
  color: #e8485a;
}
.mo-add-detail__item-list {
  background-color: #fff;
}
.mo-add-detail__item-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  align-items: center;
  width: 100%;
  min-height: 5.8rem;
  padding: 1.6rem 2rem;
  border-bottom: 1px solid #ddd;
  text-align: left;
  font-size: 1.6rem;
  color: #666;
  transition: color 0.2s ease;
}
.mo-add-detail__item-btn.is-selected {
  color: #e8485a;
  font-weight: 500;
}
.mo-add-detail__item-label {
  min-width: 0;
  padding-right: 1.2rem;
}
.mo-add-detail__item-count {
  flex-shrink: 0;
}
.mo-add-detail__item-pannel {
  display: none;
}
.mo-add-detail__footer {
  width: 100%;
  position: sticky;
  bottom: 0;
  z-index: 3;
  padding: 2rem 2rem calc(2rem + env(safe-area-inset-bottom));
  background-color: #fff;
  box-shadow: 0 -0.8rem 2rem rgba(0, 0, 0, 0.06);
}
.mo-add-detail__footer.is-collapsible .mo-add-detail__toggle {
  display: inline-flex;
}
.mo-add-detail__footer.is-collapsible.is-collapsed .mo-add-detail__selected-wrap {
  max-height: var(--mo-add-detail-collapse-height, 150px);
}
.mo-add-detail__footer.is-collapsible.is-collapsed .mo-add-detail__toggle-icon {
  transform: rotate(-45deg);
}
.mo-add-detail__footer:not(.is-collapsed) .mo-add-detail__toggle-icon {
  transform: rotate(135deg);
}
.mo-add-detail__footer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.mo-add-detail__summary {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
}
.mo-add-detail__summary strong {
  font-weight: 700;
}
.mo-add-detail__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  color: #666;
  flex-shrink: 0;
}
.mo-add-detail__toggle-icon {
  width: 1rem;
  height: 1rem;
  border-top: 0.2rem solid currentColor;
  border-right: 0.2rem solid currentColor;
  transition: transform 0.2s ease;
}
.mo-add-detail__selected-wrap {
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.mo-add-detail__selected {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-height: 4.5rem;
  margin-top: 1.6rem;
}
.mo-add-detail__selected-empty {
  font-size: 1.4rem;
  color: #aaaaaa;
}
.mo-add-detail__selection-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.mo-add-detail__selection-arrow {
  position: relative;
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
}
.mo-add-detail__selection-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 0.2rem solid #9d9d9d;
  border-right: 0.2rem solid #9d9d9d;
  transform: translate(-70%, -50%) rotate(45deg);
}
.mo-add-detail__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 4.2rem;
  padding: 0 1.6rem;
  border-radius: 1rem;
  font-size: 1.4rem;
  white-space: nowrap;
}
.mo-add-detail__chip--group {
  background-color: #e8485a;
  color: #fff;
}
.mo-add-detail__chip--item {
  background-color: #FFE0E3;
  color: #e8485a;
}
.mo-add-detail__delete {
  width: 1.6rem;
  height: 1.6rem;
  background: url("/img/recruit/user/icon/close_active.png") no-repeat center/contain;
}
.mo-add-detail__chip-close {
  position: relative;
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
}
.mo-add-detail__chip-close::before, .mo-add-detail__chip-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 0.2rem;
  border-radius: 0.2rem;
  background-color: currentColor;
}
.mo-add-detail__chip-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mo-add-detail__chip-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mo-add-detail__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.mo-add-detail__action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 5rem;
  border-radius: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
}
.mo-add-detail__action--line {
  border: 1px solid #ddd;
  background-color: #fff;
  color: #aaaaaa;
}
.mo-add-detail__action--line .mo-add-detail__action-icon {
  background-image: url("/img/recruit/user/icon/reset_icon.png");
}
.mo-add-detail__action--line:focus-visible, .mo-add-detail__action--line:active {
  color: #e8485a;
  border-color: #c3c3c3;
}
.mo-add-detail__action--line:focus-visible .mo-add-detail__action-icon, .mo-add-detail__action--line:active .mo-add-detail__action-icon {
  background-image: url("/img/recruit/user/icon/reset_active_icon.png");
}
.mo-add-detail__action--fill {
  background-color: #e8485a;
  color: #fff;
}
.mo-add-detail__action-icon {
  width: 2.4rem;
  height: 2.4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.mo-add-detail .mo-none {
  display: none;
}

.mo-my {
  max-width: 58rem;
  padding: 0 2rem;
  margin: auto;
}
.mo-my__panel {
  display: none;
}
.mo-my__panel.is-open {
  display: block;
}
.mo-my__top {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  padding: 1rem 0;
  overflow-x: auto;
  border-bottom: 1px solid #ddd;
  scrollbar-width: none;
}
.mo-my__top::-webkit-scrollbar {
  display: none;
}
.mo-my__top--btn {
  flex-shrink: 0;
  color: #333;
  font-weight: 400;
  white-space: nowrap;
}
.mo-my__top--btn:focus-visible, .mo-my__top--btn:active {
  color: #e8485a;
}
.mo-my__top--btn.is-active {
  font-weight: 500;
  color: #e8485a;
}
.mo-my__middle {
  width: 100%;
  padding: 2rem 0 0;
}
.mo-my__middle--btn {
  width: 100%;
  background-color: #e8485a;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  color: #fff;
}
.mo-my__count {
  padding: 2rem 0;
}
.mo-my__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 2rem 2rem;
  background: #fff;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  border: 0.1rem solid #ddd;
}
.mo-my__list--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mo-my__list--info {
  display: flex;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
  font-size: 1.4rem;
  gap: 0.5rem;
  color: #666;
}
.mo-my__list--txt {
  color: #666;
}
.mo-my__list--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}
.mo-my__list--tit {
  width: 100%;
  color: #333;
  font-weight: 700;
  white-space: normal;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mo-my__list--name {
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
}
.mo-my__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 7rem;
}
.mo-my__content .re-company {
  position: relative;
  flex-shrink: 0;
  min-height: 14rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.mo-my__content .re-company:focus-within, .mo-my__content .re-company:active {
  border-color: rgba(232, 72, 90, 0.35);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.08);
}
.mo-my__content .re-company p {
  font-size: 1.4rem;
  color: #666;
}
.mo-my__content .re-company__location {
  font-size: 1.4rem;
  color: #666;
}
.mo-my__content .re-company__tit {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mo-my__content .re-company__scrap {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  justify-content: end;
  width: 4rem;
  height: 4rem;
}
.mo-my__content .re-company__scrap span {
  width: 2.4rem;
  height: 2.4rem;
  background: url("/img/recruit/user/icon/star_active.png") no-repeat center/contain;
}
.mo-my__content .re-company__button {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  border: 1px solid #e8485a;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  padding: 10px;
  color: #e8485a;
  font-size: 1.4rem;
}
.mo-my__content .re-company__button:focus-within, .mo-my__content .re-company__button:active {
  background-color: #e8485a;
  color: #fff;
}
.mo-my__actions {
  position: relative;
  flex-shrink: 0;
}
.mo-my__actions.is-open .mo-my__menu {
  display: flex;
}
.mo-my__actions.is-open .mo-my__more span {
  background-image: url("/img/recruit/user/icon/more_active_icon.png");
}
.mo-my__more {
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}
.mo-my__more span {
  width: 1.8rem;
  height: 1.8rem;
  background: url("/img/recruit/user/icon/more_icon.png") no-repeat center/contain;
}
.mo-my__more:focus-visible span, .mo-my__more:active span {
  background-image: url("/img/recruit/user/icon/more_active_icon.png");
}
.mo-my__menu {
  position: absolute;
  top: 2.4rem;
  right: 1rem;
  z-index: 5;
  display: none;
  flex-direction: column;
  min-width: 17rem;
  padding: 1rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.08);
  transform-origin: top right;
}
.mo-my__menu-item {
  width: 100%;
  padding: 1rem;
  color: #666;
  font-size: 1.6rem;
  text-align: left;
  white-space: nowrap;
}
.mo-my__menu-item:focus-visible, .mo-my__menu-item:active {
  color: #e8485a;
  background: rgba(232, 72, 90, 0.05);
}
@media (hover: hover) and (pointer: fine) {
  .mo-my__menu-item:hover {
    color: #e8485a;
    background: rgba(232, 72, 90, 0.05);
  }
}
.mo-my__delete {
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.mo-my__delete span {
  width: 1.8rem;
  height: 1.8rem;
  background: url("/img/recruit/user/icon/delete_icon.png") no-repeat center/contain;
}
.mo-my__delete:focus-visible span, .mo-my__delete:active span {
  background-image: url("/img/recruit/user/icon/delete_active_icon.png");
}
.mo-my__badge {
  color: #e8485a;
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  font-weight: 400;
}
.mo-my__txt {
  color: #666;
  font-size: 1.6rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mo-my__date {
  color: #666;
  font-size: 1.4rem;
  line-height: 1.4;
}
.mo-my__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30vh;
  text-align: center;
  color: #666;
}
.mo-my__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 2.4rem 0 calc(8.8rem + env(safe-area-inset-bottom));
}
.mo-my__pagination[hidden] {
  display: none !important;
}
.mo-my__pagination-button {
  min-width: 3.6rem;
  height: 3.6rem;
  padding: 0 1rem;
  border: 0.1rem solid #ddd;
  border-radius: 0.8rem;
  background: #fff;
  color: #666;
  font-size: 1.3rem;
  line-height: 1;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.mo-my__pagination-button.is-active {
  border-color: #e8485a;
  background: #e8485a;
  color: #fff;
  font-weight: 700;
}
.mo-my__pagination-button.is-disabled {
  border-color: #eee;
  background: #f5f5f5;
  color: #aaaaaa;
  cursor: default;
}
.mo-my__pagination-button--ellipsis {
  min-width: 4rem;
  font-weight: 600;
}
.mo-my__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 2rem 2rem;
  background: #fff;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  border: 0.1rem solid #ddd;
}
.mo-my__list--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mo-my__list--info {
  display: flex;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
  font-size: 1.4rem;
  gap: 0.5rem;
  color: #666;
}
.mo-my__list--txt {
  color: #666;
}
.mo-my__list--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}
.mo-my__list--tit {
  width: 100%;
  color: #333;
  font-weight: 700;
  white-space: normal;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mo-my__list--name {
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
}
.mo-my__list--edit {
  flex-shrink: 0;
  color: #aaaaaa;
  font-size: 1.4rem;
  border: 1px solid #aaa;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  padding: 1rem;
}
.mo-my__list--badge {
  flex-shrink: 0;
  color: #e8485a;
  font-size: 1.4rem;
}
.mo-my__list--flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.mo-apply-sheet {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
}
.mo-apply-sheet .mo-apply-sheet.is-open {
  display: block;
}
.mo-apply-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.mo-apply-sheet__dialog {
  position: absolute;
  left: 50%;
  bottom: 66px;
  width: min(100%, 76.7rem);
  max-height: calc(100vh - 7.2rem);
  padding: 2rem 2rem calc(env(safe-area-inset-bottom, 0px) + 2.4rem);
  border-radius: 3rem 3rem 0 0;
  background: #fff;
  transform: translateX(-50%);
  overflow-y: auto;
}
.mo-apply-sheet__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  margin-bottom: 1rem;
}
.mo-apply-sheet__title {
  color: #333;
  font-size: 2rem;
  font-weight: 600;
}
.mo-apply-sheet__close {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  transform: translateY(-50%);
}
.mo-apply-sheet__close span {
  width: 2.2rem;
  height: 2.2rem;
  background: url("/img/recruit/user/icon/close.png") no-repeat center/contain;
}
.mo-apply-sheet__close:focus-visible span, .mo-apply-sheet__close:active span {
  background-image: url("/img/recruit/user/icon/close_active.png");
}
.mo-apply-sheet__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mo-apply-sheet__category, .mo-apply-sheet__job-title, .mo-apply-sheet__label, .mo-apply-sheet__value, .mo-apply-sheet__summary, .mo-apply-sheet__submit {
  word-break: keep-all;
}
.mo-apply-sheet__category, .mo-apply-sheet__job-title {
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
}
.mo-apply-sheet__field {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.mo-apply-sheet__label {
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
}
.mo-apply-sheet__value {
  display: flex;
  align-items: center;
  min-height: 5.8rem;
  padding: 1rem 1.8rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.4;
}
.mo-apply-sheet__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.4;
}
.mo-apply-sheet__summary-arrow {
  position: relative;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.mo-apply-sheet__summary-arrow::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 0.9rem;
  height: 0.9rem;
  border-right: 0.2rem solid #666;
  border-bottom: 0.2rem solid #666;
  transform: translate(-50%, -50%) rotate(45deg);
}
.mo-apply-sheet__resume {
  margin-top: 0.6rem;
}
.mo-apply-sheet__resume .mo-my__list {
  box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.04);
}
.mo-apply-sheet__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5.8rem;
  margin-top: 2.8rem;
  border-radius: 1rem;
  background: #e8485a;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}
.mo-apply-sheet__submit:focus-visible, .mo-apply-sheet__submit:active {
  background: rgba(232, 72, 93, 0.7803921569);
}
.mo-apply-sheet__blank {
  text-align: center;
}
.mo-apply-sheet__blank div {
  padding-bottom: 2rem;
}

.mo-mys {
  max-width: 58rem;
  margin: auto;
}
.mo-mys .mo-my__panel {
  display: none;
}
.mo-mys .mo-my__panel.is-open {
  display: block;
}
.mo-mys .mo-my__top {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  padding: 1rem 2rem;
  overflow-x: auto;
  border-bottom: 1px solid #ddd;
  scrollbar-width: none;
}
.mo-mys .mo-my__top::-webkit-scrollbar {
  display: none;
}
.mo-mys .mo-my__top--btn {
  flex-shrink: 0;
  color: #333;
  font-weight: 400;
  white-space: nowrap;
}
.mo-mys .mo-my__top--btn:focus-visible, .mo-mys .mo-my__top--btn:active {
  color: #e8485a;
}
.mo-mys .mo-my__top--btn.is-active {
  font-weight: 500;
  color: #e8485a;
}
.mo-mys .mo-my__middle {
  width: 100%;
  padding: 2rem;
}
.mo-mys .mo-my__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 7rem;
}
.mo-mys .mo-my__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30vh;
  text-align: center;
  color: #666;
}
.mo-mys .mo-my__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 2.4rem 0 calc(8.8rem + env(safe-area-inset-bottom));
}
.mo-mys .mo-my__pagination[hidden] {
  display: none !important;
}
.mo-mys .mo-my__pagination-button {
  min-width: 3.6rem;
  height: 3.6rem;
  padding: 0 1rem;
  border: 0.1rem solid #ddd;
  border-radius: 0.8rem;
  background: #fff;
  color: #666;
  font-size: 1.3rem;
  line-height: 1;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.mo-mys .mo-my__pagination-button.is-active {
  border-color: #e8485a;
  background: #e8485a;
  color: #fff;
  font-weight: 700;
}
.mo-mys .mo-my__pagination-button.is-disabled {
  border-color: #eee;
  background: #f5f5f5;
  color: #aaaaaa;
  cursor: default;
}
.mo-mys .mo-my__pagination-button--ellipsis {
  min-width: 4rem;
  font-weight: 600;
}
.mo-mys .mo-my__mobile-hi {
  height: 85vh;
  background: #ffffff;
  background: linear-gradient(180deg, rgb(255, 255, 255) 50%, rgb(255, 191, 198) 100%);
  padding: 2rem;
}
.mo-mys .mo-my__mobile-hi--top {
  margin: 4rem 0 3rem;
}
.mo-mys .mo-my__mobile-hi--txt {
  margin-top: 3rem;
  font-size: 2.2rem;
  font-weight: 600;
}
.mo-mys .mo-my__mobile-hi--btn {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mo-mys .mo-my__mobile-hi--fullbtn {
  width: 100%;
  border-radius: 1rem;
  text-align: center;
  padding: 3rem 0;
  background-color: #e8485a;
  color: #fff;
}
.mo-mys .mo-my__mobile-hi--linebtn {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #e8485a;
  padding: 3rem 0;
  text-align: center;
  color: #e8485a;
  background-color: #fff;
}
.mo-mys .mo-my__apply-summary {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 7rem;
  margin: 2rem 0;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.mo-mys .mo-my__apply-summary--item {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: transparent;
  color: #666;
  font-size: 1.4rem;
  white-space: nowrap;
}
.mo-mys .mo-my__apply-summary--item:first-child {
  padding-left: 0;
}
.mo-mys .mo-my__apply-summary--item:last-child {
  padding-right: 0;
}
.mo-mys .mo-my__apply-summary--item:last-child::after {
  display: none;
}
.mo-mys .mo-my__apply-summary--item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.1rem;
  height: 4rem;
  background: #ddd;
  transform: translateY(-50%);
}
.mo-mys .mo-my__apply-summary--item.is-active {
  color: #e8485a;
}
.mo-mys .mo-my__apply-summary--label {
  line-height: 1;
}
.mo-mys .mo-my__apply-summary--count {
  font-size: 1.6rem;
  font-weight: 500;
}
.mo-mys .mo-my__apply-sort {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
  flex-shrink: 0;
}
.mo-mys .mo-my__apply-sort--btn {
  background: transparent;
  color: #666;
  font-size: 1.4rem;
}
.mo-mys .mo-my__apply-sort--btn.is-active {
  color: #e8485a;
}
.mo-mys .mo-my__apply-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  gap: 2rem;
}
.mo-mys .mo-my__apply-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
  padding: 2rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.mo-mys .mo-my__apply-card--top {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}
.mo-mys .mo-my__apply-card--badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4.5rem;
  padding: 1rem;
  border-radius: 1rem;
  font-size: 1.4rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.mo-mys .mo-my__apply-card--badge-ended {
  border: 1px solid #eee;
  color: #aaaaaa;
  background: #fff;
}
.mo-mys .mo-my__apply-card--badge-ongoing {
  color: #fff;
  background: #e8485a;
}
.mo-mys .mo-my__apply-card--titlebox {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  padding-top: 0.5rem;
}
.mo-mys .mo-my__apply-card--title {
  color: #333;
  font-size: 1.6rem;
  font-weight: 600;
  word-break: keep-all;
}
.mo-mys .mo-my__apply-card--date {
  color: #666;
  font-size: 1.4rem;
}
.mo-mys .mo-my__apply-card--actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.mo-mys .mo-my__apply-card--action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 4.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background: #fff;
  color: #666;
  font-size: 1.4rem;
  text-align: center;
  word-break: keep-all;
}
.mo-mys .mo-my__apply-card--action:focus-visible, .mo-mys .mo-my__apply-card--action:active {
  color: #e8485a;
  border-color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .mo-mys .mo-my__apply-card--action:hover {
    color: #e8485a;
    border-color: #e8485a;
  }
}
.mo-mys .mo-my__apply-card--action-danger {
  color: #e8485a;
  border-color: #e8485a;
}
.mo-mys .mo-my__apply-card--action-danger:focus-visible, .mo-mys .mo-my__apply-card--action-danger:active {
  color: #fff;
  background: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .mo-mys .mo-my__apply-card--action-danger:hover {
    color: #fff;
    background: #e8485a;
  }
}
.mo-mys .mo-my__apply-card--select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  min-height: 4.5rem;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background: #fff;
  color: #333;
  font-size: 1.6rem;
  word-break: keep-all;
}
.mo-mys .mo-my__apply-card--select:focus-visible, .mo-mys .mo-my__apply-card--select:active {
  color: #e8485a;
  border-color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .mo-mys .mo-my__apply-card--select:hover {
    color: #e8485a;
    border-color: #e8485a;
  }
}
.mo-mys .mo-my__apply-card--select-disabled {
  border-color: #ddd;
  background: #ddd;
  color: #aaaaaa;
  cursor: default;
  pointer-events: none;
}
.mo-mys .mo-my__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 2rem 2rem;
  background: #fff;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  border: 0.1rem solid #ddd;
}
.mo-mys .mo-my__list--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mo-mys .mo-my__list--info {
  display: flex;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
  font-size: 1.4rem;
  gap: 0.5rem;
  color: #666;
}
.mo-mys .mo-my__list--txt {
  color: #666;
}
.mo-mys .mo-my__list--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}
.mo-mys .mo-my__list--tit {
  width: 100%;
  color: #333;
  font-weight: 700;
  white-space: normal;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mo-mys .mo-my__list--name {
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
}
.mo-mys .mo-my__list--edit {
  flex-shrink: 0;
  color: #aaaaaa;
  font-size: 1.4rem;
  border: 1px solid #aaa;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  padding: 1rem;
}
.mo-mys .mo-my__list--badge {
  flex-shrink: 0;
  color: #e8485a;
  font-size: 1.4rem;
}
.mo-mys .mo-my__list--flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.re-my {
  display: grid;
  grid-template-columns: 17% 83%;
  gap: 3rem;
  padding: 2rem 3rem;
}
.re-my__empty {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.8rem;
  color: #aaaaaa;
}
.re-my .re-my-sub {
  padding: 2rem;
  border: 1px solid #ddd;
  max-height: 350px;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
}
.re-my .re-my-sub__tit {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.re-my .re-my-sub__tit--icon {
  width: 1.8rem;
  height: 1.8rem;
  background: url("/img/recruit/user/icon/my_icon.png") no-repeat center/contain;
}
.re-my .re-my-sub__tit--name {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
}
.re-my .re-my-sub__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.re-my .re-my-sub__btn {
  height: 4.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.re-my .re-my-sub__btn--icon {
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: contain;
  background-size: contain;
}
.re-my .re-my-sub__btn .resume {
  background-image: url("/img/recruit/user/icon/resume_icon.png");
}
.re-my .re-my-sub__btn .apply {
  background-image: url("/img/recruit/user/icon/apply_icon.png");
}
.re-my .re-my-sub__btn .favorite {
  background-image: url("/img/recruit/user/icon/favorite_icon.png");
}
.re-my .re-my-sub__btn .setting {
  background-image: url("/img/recruit/user/icon/setting.png");
}
.re-my .re-my-sub__btn--name {
  color: #aaaaaa;
}
@media (hover: hover) and (pointer: fine) {
  .re-my .re-my-sub__btn:hover .re-my-sub__btn--name {
    color: #e8485a;
  }
  .re-my .re-my-sub__btn:hover .resume {
    background-image: url("/img/recruit/user/icon/resume_active_icon.png");
  }
  .re-my .re-my-sub__btn:hover .apply {
    background-image: url("/img/recruit/user/icon/apply_active_icon.png");
  }
  .re-my .re-my-sub__btn:hover .favorite {
    background-image: url("/img/recruit/user/icon/favorite_active_icon.png");
  }
  .re-my .re-my-sub__btn:hover .setting {
    background-image: url("/img/recruit/user/icon/setting_active.png");
  }
}
.re-my .re-my-sub__btn.is-active .re-my-sub__btn--name {
  color: #e8485a !important;
}
.re-my .re-my-sub__btn.is-active .resume {
  background-image: url("/img/recruit/user/icon/resume_active_icon.png");
}
.re-my .re-my-sub__btn.is-active .apply {
  background-image: url("/img/recruit/user/icon/apply_active_icon.png");
}
.re-my .re-my-sub__btn.is-active .favorite {
  background-image: url("/img/recruit/user/icon/favorite_active_icon.png");
}
.re-my .re-my-sub__btn.is-active .setting {
  background-image: url("/img/recruit/user/icon/setting_active.png");
}
.re-my .re-my-content {
  display: none;
  width: 100%;
}
.re-my .re-my-content__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 2rem;
}
.re-my .re-my-content__top--box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.re-my .re-my-content__top--btn {
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #666;
  gap: 2rem;
}
@media (hover: hover) and (pointer: fine) {
  .re-my .re-my-content__top--btn:hover {
    color: #e8485a;
  }
  .re-my .re-my-content__top--btn:hover .re-my-content__top--icon {
    background-image: url("/img/recruit/user/icon/delete_active_icon.png");
  }
}
.re-my .re-my-content__top--icon {
  width: 1.8rem;
  height: 1.8rem;
  background: url("/img/recruit/user/icon/delete_icon.png") no-repeat center/contain;
}
.re-my .re-my-content__tit {
  font-size: 2.4rem;
  font-weight: 600;
  color: #333;
}
.re-my .re-my-content__count {
  color: #666;
}
.re-my .re-my-content__btn {
  width: 350px;
  display: inline;
  color: #fff;
  background-color: #e8485a;
  text-align: center;
  padding: 1.5rem 0;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
}
.re-my .re-my-content__middle {
  border-top: 1px solid #ddd;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.re-my .re-my-content__middle--apply {
  border-top: 0;
  padding-top: 2.4rem;
  gap: 3rem;
}
.re-my .re-my-content__apply-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.re-my .re-my-content__apply-summary {
  display: inline-flex;
  align-items: center;
  height: 5.5rem;
  padding: 2rem 3rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.re-my .re-my-content__apply-summary--item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: transparent;
  color: #666;
  font-size: 1.4rem;
  white-space: nowrap;
}
.re-my .re-my-content__apply-summary--item:first-child {
  padding-left: 0;
}
.re-my .re-my-content__apply-summary--item:last-child {
  padding-right: 0;
}
.re-my .re-my-content__apply-summary--item:last-child::after {
  display: none;
}
.re-my .re-my-content__apply-summary--item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.1rem;
  height: 4rem;
  background: #ddd;
  transform: translateY(-50%);
}
.re-my .re-my-content__apply-summary--item.is-active {
  color: #e8485a;
}
.re-my .re-my-content__apply-summary--label {
  line-height: 1;
}
.re-my .re-my-content__apply-summary--count {
  font-size: 1.6rem;
  font-weight: 500;
}
.re-my .re-my-content__apply-sort {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
  padding-top: 2rem;
  flex-shrink: 0;
}
.re-my .re-my-content__apply-sort--btn {
  background: transparent;
  color: #666;
  font-size: 1.4rem;
}
.re-my .re-my-content__apply-sort--btn.is-active {
  color: #e8485a;
}
.re-my .re-my-content__apply-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.re-my .re-my-content__apply-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
  padding: 2rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.re-my .re-my-content__apply-card--top {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}
.re-my .re-my-content__apply-card--badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4.5rem;
  padding: 1rem;
  border-radius: 1rem;
  font-size: 1.4rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.re-my .re-my-content__apply-card--badge-ended {
  border: 1px solid #eee;
  color: #aaaaaa;
  background: #fff;
}
.re-my .re-my-content__apply-card--badge-ongoing {
  color: #fff;
  background: #e8485a;
}
.re-my .re-my-content__apply-card--titlebox {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  padding-top: 0.5rem;
}
.re-my .re-my-content__apply-card--title {
  color: #333;
  font-size: 1.6rem;
  font-weight: 600;
  word-break: keep-all;
}
.re-my .re-my-content__apply-card--date {
  color: #666;
  font-size: 1.4rem;
}
.re-my .re-my-content__apply-card--actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.re-my .re-my-content__apply-card--action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 4.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background: #fff;
  color: #666;
  font-size: 1.4rem;
  text-align: center;
  word-break: keep-all;
}
.re-my .re-my-content__apply-card--action:focus-visible, .re-my .re-my-content__apply-card--action:active {
  color: #e8485a;
  border-color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .re-my .re-my-content__apply-card--action:hover {
    color: #e8485a;
    border-color: #e8485a;
  }
}
.re-my .re-my-content__apply-card--action-danger {
  color: #e8485a;
  border-color: #e8485a;
}
.re-my .re-my-content__apply-card--action-danger:focus-visible, .re-my .re-my-content__apply-card--action-danger:active {
  color: #fff;
  background: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .re-my .re-my-content__apply-card--action-danger:hover {
    color: #fff;
    background: #e8485a;
  }
}
.re-my .re-my-content__apply-card--select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  min-height: 4.5rem;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background: #fff;
  color: #333;
  font-size: 1.6rem;
  word-break: keep-all;
}
.re-my .re-my-content__apply-card--select:focus-visible, .re-my .re-my-content__apply-card--select:active {
  color: #e8485a;
  border-color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .re-my .re-my-content__apply-card--select:hover {
    color: #e8485a;
    border-color: #e8485a;
  }
}
.re-my .re-my-content__apply-card--select-disabled {
  border-color: #ddd;
  background: #ddd;
  color: #aaaaaa;
  cursor: default;
  pointer-events: none;
}
.re-my .re-my-content__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 2rem 2rem;
  background: #fff;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  border: 0.1rem solid #ddd;
}
.re-my .re-my-content__list--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.re-my .re-my-content__list--info {
  display: flex;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
  font-size: 1.4rem;
  gap: 0.5rem;
  color: #666;
}
.re-my .re-my-content__list--txt {
  color: #666;
}
.re-my .re-my-content__list--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}
.re-my .re-my-content__list--tit {
  width: 100%;
  color: #333;
  font-weight: 700;
  white-space: normal;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.re-my .re-my-content__list--name {
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
}
.re-my .re-my-content__list--edit {
  flex-shrink: 0;
  color: #aaaaaa;
  font-size: 1.4rem;
  border: 1px solid #aaa;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  padding: 1rem;
}
.re-my .re-my-content__list--badge {
  flex-shrink: 0;
  color: #e8485a;
  font-size: 1.4rem;
}
.re-my .re-my-content__list--flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.re-my .re-my-content__more {
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}
.re-my .re-my-content__more span {
  width: 1.8rem;
  height: 1.8rem;
  background: url("/img/recruit/user/icon/more_icon.png") no-repeat center/contain;
}
.re-my .re-my-content__more:focus-visible span, .re-my .re-my-content__more:active span {
  background-image: url("/img/recruit/user/icon/more_active_icon.png");
}
.re-my .re-my-content__menu {
  position: absolute;
  top: 2.4rem;
  right: 1rem;
  z-index: 5;
  display: none;
  flex-direction: column;
  min-width: 17rem;
  padding: 1rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.08);
  transform-origin: top right;
}
.re-my .re-my-content__menu-item {
  width: 100%;
  padding: 1rem;
  color: #666;
  font-size: 1.6rem;
  text-align: left;
  white-space: nowrap;
}
.re-my .re-my-content__menu-item:focus-visible, .re-my .re-my-content__menu-item:active {
  color: #e8485a;
  background: rgba(232, 72, 90, 0.05);
}
@media (hover: hover) and (pointer: fine) {
  .re-my .re-my-content__menu-item:hover {
    color: #e8485a;
    background: rgba(232, 72, 90, 0.05);
  }
}
.re-my .re-my-content__actions {
  position: relative;
  flex-shrink: 0;
}
.re-my .re-my-content__actions.is-open .re-my-content__menu {
  display: flex;
}
.re-my .re-my-content__actions.is-open .re-my-content__more span {
  background-image: url("/img/recruit/user/icon/more_active_icon.png");
}
.re-my .re-my-content__more {
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}
.re-my .re-my-content__more span {
  width: 1.8rem;
  height: 1.8rem;
  background: url("/img/recruit/user/icon/more_icon.png") no-repeat center/contain;
}
.re-my .re-my-content__more:focus-visible span, .re-my .re-my-content__more:active span {
  background-image: url("/img/recruit/user/icon/more_active_icon.png");
}
.re-my .re-my-content .re-bg-eee {
  background-color: #eee;
  font-weight: 600;
  min-height: 5rem;
}
.re-my .re-my-content .re-bord-eee {
  border: 1px solid #ddd;
  min-height: 10rem;
  margin-bottom: 1rem;
}
.re-my .re-my-content__lists {
  display: grid;
  grid-template-columns: 55px 120px 1fr 120px 100px 100px;
  align-items: center;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
}
.re-my .re-my-content__lists--check {
  cursor: pointer;
}
.re-my .re-my-content__lists--check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.re-my .re-my-content__lists--check span {
  width: 55px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
}
.re-my .re-my-content__lists--check span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 35%;
  width: 2rem;
  height: 2rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  background-color: #fff;
  transform: translateY(-50%);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.re-my .re-my-content__lists--check input:checked + span {
  border-color: rgba(232, 72, 90, 0.45);
  color: #333;
}
.re-my .re-my-content__lists--check input:checked + span::before {
  border-color: #e8485a;
  background-color: #e8485a;
  box-shadow: inset 0 0 0 0.6rem #fff;
}
.re-my .re-my-content__lists--date, .re-my .re-my-content__lists--end, .re-my .re-my-content__lists--status {
  font-size: 1.4rem;
}
.re-my .re-my-content__lists--btn button {
  color: #aaaaaa;
  font-size: 1.4rem;
  border: 1px solid #aaaaaa;
  padding: 1rem;
  border-radius: 1rem;
}
@media (hover: hover) and (pointer: fine) {
  .re-my .re-my-content__lists--btn button:hover {
    color: #333;
    border: 1px solid #333;
  }
}
.re-my .re-my-content__lists--apply-btn button {
  color: #e8485a;
  border: 1px solid #e8485a;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  padding: 1rem;
}
@media (hover: hover) and (pointer: fine) {
  .re-my .re-my-content__lists--apply-btn button:hover {
    color: #fff;
    background-color: #e8485a;
  }
}
.re-my .re-my-content__lists .re-my-justify-self {
  justify-self: center;
}
.re-my .re-my-content__lists--scrab {
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  justify-self: center;
}
.re-my .re-my-content__lists--scrab button {
  width: 2rem;
  height: 2rem;
  background: url("/img/recruit/user/icon/star_active.png") no-repeat center/contain;
}
.re-my .re-my-content__infopage {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.re-my .re-my-content__infopage[hidden] {
  display: none !important;
}
.re-my .re-my-content .my-info-page {
  width: 430px;
  min-height: 650px;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
}
.re-my .re-my-content .my-info-page .mo-notice-style {
  padding: 0;
}
.re-my .re-my-content .my-info-page .mo-mail-txt {
  padding: 1rem 0;
}
.re-my .re-my-content__setting-back {
  width: 100%;
  padding: 2rem 0;
  border-bottom: 1px solid #ddd;
  color: #666;
  text-align: left;
}
.re-my .re-my-content__setting-back-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.8rem;
}
.re-my .re-my-content__combox {
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9rem;
}
.re-my .re-my-content__combox--textbox {
  padding-bottom: 3rem;
}
.re-my .re-my-content__combox--txt {
  font-size: 2.4rem;
  font-weight: 600;
  padding-top: 40px;
}
.re-my .re-my-content__combox--btnbox {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.re-my .re-my-content__job-btn {
  height: 8rem;
  border-radius: 1rem;
  width: 230px;
  background-color: #e8485a;
  color: #fff;
}
.re-my .re-my-content__job-btn:focus-visible, .re-my .re-my-content__job-btn:active {
  color: #e8485a;
  background-color: #fff;
  border: 1px solid #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .re-my .re-my-content__job-btn:hover {
    color: #e8485a;
    background-color: #fff;
    border: 1px solid #e8485a;
  }
}
.re-my .re-my-content__move-apply {
  height: 8rem;
  border-radius: 1rem;
  width: 230px;
  border: 1px solid #e8485a;
  color: #e8485a;
}
.re-my .re-my-content__move-apply:focus-visible, .re-my .re-my-content__move-apply:active {
  background-color: rgba(232, 72, 93, 0.5);
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .re-my .re-my-content__move-apply:hover {
    background-color: rgba(232, 72, 93, 0.5);
    color: #fff;
  }
}
.re-my .re-my-content.is-open {
  display: block;
}
.re-my .re-apply-sheet {
  position: fixed;
  inset: 0;
  z-index: 10;
  height: 100%;
  display: none;
}
.re-my .re-apply-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
}
.re-my .re-apply-sheet__flex {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.re-my .re-apply-sheet__dialog {
  z-index: 20;
  padding: 3rem;
  border-radius: 1rem;
  background: #fff;
}
.re-my .re-apply-sheet__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  margin-bottom: 1rem;
}
.re-my .re-apply-sheet__title {
  color: #333;
  font-size: 2rem;
  font-weight: 600;
}
.re-my .re-apply-sheet__close {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  transform: translateY(-50%);
}
.re-my .re-apply-sheet__close span {
  width: 2.2rem;
  height: 2.2rem;
  background: url("/img/recruit/user/icon/close.png") no-repeat center/contain;
}
@media (hover: hover) and (pointer: fine) {
  .re-my .re-apply-sheet__close:hover span {
    background-image: url("/img/recruit/user/icon/close_active.png");
  }
}
.re-my .re-apply-sheet__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.re-my .re-apply-sheet__category, .re-my .re-apply-sheet__job-title, .re-my .re-apply-sheet__label, .re-my .re-apply-sheet__value, .re-my .re-apply-sheet__summary, .re-my .re-apply-sheet__submit {
  word-break: keep-all;
}
.re-my .re-apply-sheet__category, .re-my .re-apply-sheet__job-title {
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
}
.re-my .re-apply-sheet__field {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.re-my .re-apply-sheet__label {
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
}
.re-my .re-apply-sheet__value {
  display: flex;
  align-items: center;
  min-height: 5.8rem;
  padding: 1rem 1.8rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.4;
}
.re-my .re-apply-sheet__summary {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  color: #333;
  font-size: 1.6rem;
  border-radius: 1rem;
  border: 1px solid #ddd;
}
.re-my .re-apply-sheet__summary-arrow {
  position: relative;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.re-my .re-apply-sheet__summary-arrow::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 0.9rem;
  height: 0.9rem;
  border-right: 0.2rem solid #666;
  border-bottom: 0.2rem solid #666;
  transform: translate(-50%, -50%) rotate(45deg);
}
.re-my .re-apply-sheet__resume {
  margin-top: 0.6rem;
}
.re-my .re-apply-sheet__resume .re-my-content__list--flex {
  display: none;
}
.re-my .re-apply-sheet__resume .re-my__list {
  box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.04);
}
.re-my .re-apply-sheet__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5.8rem;
  margin-top: 2.8rem;
  border-radius: 1rem;
  background: #e8485a;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (hover: hover) and (pointer: fine) {
  .re-my .re-apply-sheet__submit:hover {
    background: rgba(232, 72, 93, 0.7803921569);
  }
}

.re-my-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
}
.re-my-pagination[hidden] {
  display: none !important;
}
.re-my-pagination__button {
  min-width: 4rem;
  height: 4rem;
  padding: 0 1.2rem;
  border: 0.1rem solid #ddd;
  border-radius: 0.8rem;
  background: #fff;
  color: #666;
  font-size: 1.4rem;
  line-height: 1;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.re-my-pagination__button.is-active {
  border-color: #e8485a;
  background: #e8485a;
  color: #fff;
  font-weight: 700;
}
.re-my-pagination__button.is-disabled {
  border-color: #eee;
  background: #f5f5f5;
  color: #aaaaaa;
  cursor: default;
}
.re-my-pagination__button--ellipsis {
  min-width: 4.4rem;
  font-weight: 600;
}
@media (hover: hover) and (pointer: fine) {
  .re-my-pagination__button:hover:not(.is-active):not(.is-disabled) {
    border-color: #e8485a;
    color: #e8485a;
  }
}

.re-resume {
  padding: 2rem;
  color: #333;
}
.re-resume__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 17rem;
  gap: 4rem;
  align-items: start;
}
.re-resume__block {
  margin: 1rem 0;
}
.re-resume__page-title {
  margin: 0 0 2rem;
  font-size: 2.4rem;
  font-weight: 600;
}
.re-resume__field-label {
  font-size: 1.6rem;
  font-weight: 600;
}
.re-resume__field-label span {
  color: #e8485a;
}
.re-resume__section-title {
  margin: 1rem 0;
  font-size: 1.8rem;
}
.re-resume__section-title span {
  color: #e8485a;
}
.re-resume__input, .re-resume__textarea {
  width: 100%;
  margin: 1rem 0;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  background: #fff;
  color: #333;
  font-size: 1.6rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.re-resume__input::placeholder, .re-resume__textarea::placeholder {
  color: #aaaaaa;
}
.re-resume__input:focus, .re-resume__textarea:focus {
  outline: none;
  border-color: rgba(232, 72, 90, 0.55);
  box-shadow: 0 0 0 0.3rem rgba(232, 72, 90, 0.08);
}
.re-resume__input--disabled, .re-resume__textarea--disabled {
  width: 100%;
  height: 5rem;
  margin: 1rem 0;
  padding: 0 2rem;
  border: none;
  border-radius: 1rem;
  background-color: #eee;
  color: #666;
  font-size: 1.6rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.re-resume__input {
  height: 5rem;
  padding: 0 2rem;
}
.re-resume__textarea {
  display: block;
  min-height: 8.6rem;
  padding: 1.8rem 1.6rem;
  resize: none;
}
.re-resume__basic-top {
  display: grid;
  grid-template-columns: 13rem minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
}
.re-resume__photo-group {
  grid-row: 1/span 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
}
.re-resume__photo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 16rem;
  border: none;
  border-radius: 1rem;
  background: #eee;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #666;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}
.re-resume__photo-box.is-filled span {
  display: none;
}
.re-resume__photo-actions {
  display: flex;
  gap: 0.8rem;
}
.re-resume__small-btn {
  flex: 1;
  height: 4.5rem;
  border-radius: 1rem;
  font-size: 1.4rem;
  color: #fff;
}
.re-resume__small-btn:disabled {
  background: #ddd;
  color: #fff;
  cursor: default;
}
.re-resume__small-btn.is-muted {
  background: #aaaaaa;
}
.re-resume__small-btn.is-point {
  background: #e8485a;
}
.re-resume__toggle {
  display: flex;
}
.re-resume__toggle-btn {
  flex: 1;
  height: 5rem;
  border: 0.1rem solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.6rem;
  margin: 1rem 0;
}
.re-resume__toggle-btn:first-child {
  margin-left: 0;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.re-resume__toggle-btn:last-child {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.re-resume__toggle-btn.is-active {
  position: relative;
  z-index: 1;
  border-color: #e8485a;
  background: rgba(232, 72, 90, 0.03);
  color: #e8485a;
}
.re-resume__field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 1.8rem;
}
.re-resume__field-grid .is-full {
  grid-column: 1/-1;
}
.re-resume__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.8rem;
}
.re-resume__edit-state {
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 99.9rem;
  background-color: rgba(232, 72, 90, 0.1);
  color: #e8485a;
  font-size: 1.3rem;
  font-weight: 700;
  white-space: nowrap;
}
.re-resume__section-meta {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.re-resume__section-caption {
  margin: 0;
  color: #666;
  font-size: 1.6rem;
  line-height: 1.5;
}
.re-resume__add-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #666;
  font-size: 1.6rem;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.re-resume__add-icon {
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  flex-shrink: 0;
}
.re-resume__add-icon::before, .re-resume__add-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 99.9rem;
  background: #666;
  transform: translate(-50%, -50%);
  transition: background-color 0.2s ease;
}
.re-resume__add-icon::before {
  width: 1.4rem;
  height: 0.2rem;
}
.re-resume__add-icon::after {
  width: 0.2rem;
  height: 1.4rem;
}
.re-resume .mo-add-condition__check-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.re-resume .mo-add-condition__check {
  cursor: pointer;
}
.re-resume__bottom-actions {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 3.4rem;
}
.re-resume__bottom-btn, .re-resume__side-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  border-radius: 1rem;
  font-size: 1.6rem;
  white-space: nowrap;
}
.re-resume__bottom-btn {
  min-width: 12rem;
  padding: 0 2rem;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.08);
}
.re-resume__bottom-btn--ghost {
  border: 0.1rem solid #ededed;
  background: #fff;
  color: #333;
}
.re-resume__bottom-btn--disabled {
  background: #b7b7b7;
  color: #fff;
  box-shadow: none;
}
.re-resume__bottom-btn--wide {
  min-width: 16rem;
}
.re-resume__aside {
  min-width: 0;
}
.re-resume__sticky {
  position: fixed;
  top: 10rem;
  width: 170px;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.re-resume__option-card {
  padding: 1.8rem 1.6rem;
  border: 0.1rem solid #eee;
  border-radius: 1.6rem;
  background: #fff;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.08);
}
.re-resume__option-title {
  display: block;
  margin-bottom: 1.4rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}
.re-resume__option-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.re-resume__option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  color: #666;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: left;
  transition: color 0.2s ease;
}
.re-resume__option-item i {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}
.re-resume__option-item i::before, .re-resume__option-item i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 99.9rem;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.re-resume__option-item i::before {
  width: 1.2rem;
  height: 0.2rem;
}
.re-resume__option-item i::after {
  width: 0.2rem;
  height: 1.2rem;
}
.re-resume__side-btn {
  width: 100%;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.08);
}
.re-resume__side-btn--ghost {
  border: 0.1rem solid #ededed;
  background: #fff;
  color: #333;
}
.re-resume__side-btn--primary {
  background: #e8485a;
  color: #fff;
}
.re-resume__lists {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.re-resume .re-resume-add {
  border: 1px solid #eee;
  border-radius: 1rem;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.re-resume .re-resume-add__input {
  width: 100%;
  min-width: 220px;
  height: 4.5rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  background: #fff;
  color: #333;
  font-size: 1.6rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  padding: 0 1.5rem;
}
.re-resume .re-resume-add__input::placeholder {
  color: #ddd;
}
.re-resume .re-resume-add__input:focus {
  outline: none;
  border-color: rgba(232, 72, 90, 0.55);
  box-shadow: 0 0 0 0.3rem rgba(232, 72, 90, 0.08);
}
.re-resume .re-resume-add__input--disabled {
  width: 100%;
  height: 5rem;
  padding: 0 2rem;
  border: none;
  border-radius: 1rem;
  background-color: #eee;
  color: #666;
  font-size: 1.6rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.re-resume .re-resume-add__in-money {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  min-width: 220px;
  height: 4.5rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  padding: 0 1.5rem;
}
.re-resume .re-resume-add__in-money button {
  flex-shrink: 0;
  color: #666;
  font-size: 1.4rem;
}
@media (hover: hover) and (pointer: fine) {
  .re-resume .re-resume-add__in-money button:hover {
    color: #e8485a;
  }
}
.re-resume .re-resume-add__in-money--jobtype {
  cursor: pointer;
}
.re-resume .re-resume-add__money {
  flex: 1;
  height: 100%;
  border: none;
  width: 100%;
  background-color: transparent;
  cursor: pointer;
}
.re-resume .re-resume-add__money::placeholder {
  color: #ddd;
}
.re-resume .re-resume-add__money:focus {
  outline: none;
}
.re-resume .re-resume-add__select-wrap {
  position: relative;
  width: 100%;
}
.re-resume .re-resume-add__select-wrap:after {
  content: "";
  position: absolute;
  display: block;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 16px;
  height: 16px;
  background: url("/img/recruit/user/icon/right-arrow.png") no-repeat center/contain;
  pointer-events: none;
}
.re-resume .re-resume-add__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.re-resume .re-resume-add__box--date {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
.re-resume .re-resume-add__box--select {
  position: relative;
  width: 100%;
  min-width: 200px;
  height: 4.5rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  font-size: 1.6rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  padding: 0 1.5rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.re-resume .re-resume-add__box--total {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.re-resume .re-resume-add__box--total input {
  max-width: 100px;
  height: 4.5rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  font-size: 1.6rem;
  padding: 0 1.5rem;
}
.re-resume .re-resume-add__box--confirm {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 2rem;
  margin-top: 1rem;
}
.re-resume .re-resume-add__box--confirm button {
  display: inline;
  text-align: center;
  padding: 1.5rem 3rem;
  border-radius: 1rem;
}
.re-resume .re-resume-add__box--cancel {
  border: 1px solid #ddd;
}
.re-resume .re-resume-add__box--save {
  background-color: #e8485a;
  color: #fff;
  border: 1px solid #e8485a;
}
.re-resume .re-resume-add__btn {
  display: inline;
  text-align: center;
  padding: 1rem 0;
  border: 1px solid #e8485a;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .re-resume .re-resume-add__btn:hover {
    background: #e8485a;
    color: #fff;
  }
  .re-resume .re-resume-add__box--cancel:hover {
    background-color: #eee;
  }
  .re-resume .re-resume-add__box--save:hover {
    color: #e8485a;
    background-color: #fff;
  }
}
.re-resume .re-resume-add__work {
  width: 100%;
  cursor: pointer;
  border: 1px solid #ddd;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.2rem;
  padding: 1.2rem 1.6rem;
  text-align: center;
}
.re-resume .re-resume-add__work.is-selected {
  justify-content: flex-start;
  color: #333;
  text-align: left;
}
.re-resume .re-resume-add__textarea {
  border: 1px solid #ddd;
  border-radius: 1rem;
  min-height: 400px;
  padding: 2rem;
  resize: none;
}
.re-resume .re-resume-add__hope {
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 2rem;
  align-items: center;
}
.re-resume .re-resume-add__here {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.re-resume .re-resume-add__here li {
  display: flex;
  align-items: center;
  color: #666;
  gap: 0.5rem;
}
.re-resume .re-resume-add__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.re-resume .re-resume-add__label label {
  color: #aaaaaa;
  cursor: pointer;
}
.re-resume .re-resume-add__label label:hover {
  color: #e8485a;
}
.re-resume .re-resume-add__label .tooltip-wrap {
  position: relative;
  display: inline-block;
}
.re-resume .re-resume-add__label .tooltip-wrap:hover .label-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.re-resume .re-resume-add__label .tooltip-wrap .tooltip-btn {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  background: url("/img/recruit/user/icon/question_icon.png") no-repeat center/contain;
}
.re-resume .re-resume-add__label .tooltip-wrap .label-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 10;
  width: max-content;
  max-width: 300px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.re-resume__block.is-editing .re-resume-add {
  border-color: rgba(232, 72, 90, 0.35);
  box-shadow: 0 0 0 0.3rem rgba(232, 72, 90, 0.08);
}
.re-resume__block.is-editing .re-resume__edit-btn,
.re-resume__block.is-editing .re-resume__item-edit-btn {
  color: #e8485a;
}
.re-resume .re-resume-jobtype-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2.4rem;
}
.re-resume .re-resume-jobtype-modal[hidden] {
  display: none !important;
}
.re-resume .re-resume-jobtype-modal.is-open {
  display: flex;
}
.re-resume .re-resume-jobtype-modal__dim {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.52);
}
.re-resume .re-resume-jobtype-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 76rem;
  max-height: min(80vh, 76rem);
  border-radius: 2rem;
  background-color: #fff;
  box-shadow: 0 2rem 4.8rem rgba(0, 0, 0, 0.2);
  overflow: auto;
}
.re-resume .re-resume-jobtype-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 0.1rem solid #eee;
}
.re-resume .re-resume-jobtype-modal__title {
  font-size: 2rem;
  font-weight: 500;
  color: #333;
}
.re-resume .re-resume-jobtype-modal__close {
  position: relative;
  width: 3.6rem;
  height: 3.6rem;
}
.re-resume .re-resume-jobtype-modal__close::before, .re-resume .re-resume-jobtype-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.8rem;
  height: 0.2rem;
  border-radius: 0.1rem;
  background-color: #666;
}
.re-resume .re-resume-jobtype-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.re-resume .re-resume-jobtype-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.re-resume .re-resume-jobtype-modal__body {
  display: grid;
  grid-template-columns: 22rem minmax(0, 1fr);
  height: min(58vh, 52rem);
  min-height: 36rem;
}
.re-resume .re-resume-jobtype-modal__section {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  min-height: 0;
}
.re-resume .re-resume-jobtype-modal__section:first-child {
  border-right: 0.1rem solid #eee;
  background-color: #fafafa;
}
.re-resume .re-resume-jobtype-modal__label {
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #666;
}
.re-resume .re-resume-jobtype-modal__category-list, .re-resume .re-resume-jobtype-modal__detail-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 0;
  overflow-y: auto;
}
.re-resume .re-resume-jobtype-modal__detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}
.re-resume .re-resume-jobtype-modal__option {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 5.2rem;
  padding: 1.4rem 1.6rem;
  border: 0.1rem solid #e5e5e5;
  border-radius: 1rem;
  background-color: #fff;
  color: #333;
  font-size: 1.5rem;
  text-align: left;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.re-resume .re-resume-jobtype-modal__option.is-active {
  border-color: rgba(232, 72, 90, 0.55);
  background-color: rgba(232, 72, 90, 0.08);
  color: #e8485a;
  font-weight: 600;
}
.re-resume .re-resume-jobtype-modal__selected {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  padding: 2rem 2.8rem;
  border-top: 0.1rem solid #eee;
  background-color: #fff7f8;
}
.re-resume .re-resume-jobtype-modal__selected-label {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #666;
}
.re-resume .re-resume-jobtype-modal__selected-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}
.re-resume .re-resume-jobtype-modal__foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  padding: 2.4rem 2.8rem 2.8rem;
}
.re-resume .re-resume-jobtype-modal__action {
  min-width: 12rem;
  height: 4.8rem;
  padding: 0 1.8rem;
  border: 0.1rem solid transparent;
  border-radius: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}
.re-resume .re-resume-jobtype-modal__action--ghost {
  border-color: #ddd;
  background-color: #fff;
  color: #333;
}
.re-resume .re-resume-jobtype-modal__action--primary {
  border-color: #e8485a;
  background-color: #e8485a;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .re-resume .re-resume-jobtype-modal__option:hover {
    border-color: rgba(232, 72, 90, 0.35);
    color: #e8485a;
  }
  .re-resume .re-resume-jobtype-modal__close:hover::before, .re-resume .re-resume-jobtype-modal__close:hover::after {
    background-color: #e8485a;
  }
  .re-resume .re-resume-jobtype-modal__action--ghost:hover {
    border-color: rgba(232, 72, 90, 0.35);
    color: #e8485a;
  }
  .re-resume .re-resume-jobtype-modal__action--primary:hover {
    background-color: rgba(232, 72, 93, 0.7803921569);
    border-color: rgba(232, 72, 93, 0.7803921569);
  }
}
.re-resume .re-resume-done {
  border: 1px solid #eee;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.re-resume .re-resume-done__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.re-resume .re-resume-done__box--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 0;
}
.re-resume .re-resume-done__box--btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
}
@media (hover: hover) and (pointer: fine) {
  .re-resume .re-resume-done__box--btn .re-resume-done__box--edit:hover {
    background-image: url("/img/recruit/user/icon/edit_active_icon.png");
  }
  .re-resume .re-resume-done__box--btn .re-resume-done__box--close:hover {
    background-image: url("/img/recruit/user/icon/close_active.png");
  }
}
.re-resume .re-resume-done__box--edit {
  display: flex;
  align-items: center;
  width: 1.8rem;
  height: 1.8rem;
  background: url("/img/recruit/user/icon/edit_icon.png") no-repeat center/contain;
}
.re-resume .re-resume-done__box--close {
  display: flex;
  align-items: center;
  width: 1.8rem;
  height: 1.8rem;
  background: url("/img/recruit/user/icon/close.png") no-repeat center/contain;
}
.re-resume .re-resume-done__box--date {
  color: #666;
}
.re-resume .re-resume-done__bottom {
  color: #666;
  margin-top: 1rem;
}
.re-resume .re-resume-done__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.re-resume .re-resume-done__textbox {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.re-resume .re-resume-done__hope {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.re-resume .re-resume-done__hope--inner {
  display: grid;
  grid-template-columns: 20% 80%;
  align-items: center;
}
.re-resume .re-resume-done__hope--tit {
  color: #aaaaaa;
}
.re-resume--job-posting .re-resume__content {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  min-width: 0;
}
.re-resume--job-posting .re-resume__block {
  margin: 0;
}
.re-resume--job-posting .re-resume__block--group {
  padding-top: 1rem;
}
.re-resume--job-posting .re-resume__input, .re-resume--job-posting .re-resume__textarea {
  margin: 0;
}
.re-resume--job-posting .re-resume__field-label--block {
  display: inline-block;
  margin-bottom: 1rem;
}
.re-resume--job-posting .re-resume__field-head, .re-resume--job-posting .re-resume__group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.re-resume--job-posting .re-resume__group-head {
  margin-bottom: 1.8rem;
}
.re-resume--job-posting .re-resume__section-name {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
}
.re-resume--job-posting .re-resume__section-name span {
  color: #e8485a;
}
.re-resume--job-posting .re-resume__sub-label {
  display: block;
  margin-bottom: 0.8rem;
  color: #333;
  font-size: 1.4rem;
  font-weight: 500;
}
.re-resume--job-posting .re-resume__sub-label span {
  color: #e8485a;
}
.re-resume--job-posting .re-resume__select-wrap {
  position: relative;
  width: 100%;
}
.re-resume--job-posting .re-resume__select-wrap::after {
  content: "";
  position: absolute;
  right: 1.6rem;
  top: 50%;
  width: 1.6rem;
  height: 1.6rem;
  background: url("/img/recruit/user/icon/right-arrow.png") no-repeat center/contain;
  transform: translateY(-50%) rotate(90deg);
  pointer-events: none;
}
.re-resume--job-posting .re-resume__select {
  width: 100%;
  height: 5rem;
  padding: 0 4.4rem 0 2rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
  color: #aaaaaa;
  font-size: 1.6rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.re-resume--job-posting .re-resume__select option {
  color: #333;
}
.re-resume--job-posting .re-resume__select {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.re-resume--job-posting .re-resume__select:focus {
  outline: none;
  border-color: rgba(232, 72, 90, 0.55);
  box-shadow: 0 0 0 0.3rem rgba(232, 72, 90, 0.08);
}
.re-resume--job-posting .re-resume__select--filled {
  color: #333;
}
.re-resume--job-posting .re-resume__select--compact {
  height: 4.6rem;
  padding-left: 1.6rem;
  font-size: 1.4rem;
}
.re-resume--job-posting .re-resume__search-field {
  position: relative;
}
.re-resume--job-posting .re-resume__search-field .re-resume__input {
  padding-right: 8.8rem;
}
.re-resume--job-posting .re-resume__text-button {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  padding-left: 1.6rem;
  color: #666;
  font-size: 1.2rem;
  transform: translateY(-50%);
}
.re-resume--job-posting .re-resume__text-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.1rem;
  height: 1.4rem;
  background-color: #e5e5e5;
  transform: translateY(-50%);
}
.re-resume--job-posting .re-resume__selection-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: 8.8rem;
  margin-top: 1rem;
  padding: 1.8rem 2rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
}
.re-resume--job-posting .re-resume__selection-box--large {
  min-height: 9.2rem;
}
.re-resume--job-posting .re-resume__selected-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.re-resume--job-posting .re-resume__selected-chip {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-height: 4rem;
  padding: 0 1.4rem;
  border: 1px solid rgba(232, 72, 90, 0.35);
  border-radius: 1rem;
  background-color: rgba(232, 72, 90, 0.04);
  color: #e8485a;
  font-size: 1.4rem;
}
.re-resume--job-posting .re-resume__selected-chip-remove {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}
.re-resume--job-posting .re-resume__selected-chip-remove::before, .re-resume--job-posting .re-resume__selected-chip-remove::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.2rem;
  height: 0.15rem;
  border-radius: 0.1rem;
  background-color: currentColor;
}
.re-resume--job-posting .re-resume__selected-chip-remove::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.re-resume--job-posting .re-resume__selected-chip-remove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.re-resume--job-posting .re-resume__placeholder-copy {
  color: #b2b2b2;
  font-size: 1.4rem;
  line-height: 1.5;
}
.re-resume--job-posting .re-resume__text-link {
  align-self: flex-end;
  color: #666;
  font-size: 1.2rem;
  text-decoration: underline;
}
.re-resume--job-posting .re-resume__count-row {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.re-resume--job-posting .re-resume__count-box {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  min-width: 15rem;
  height: 5rem;
  padding: 0 1.6rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
}
.re-resume--job-posting .re-resume__count-input {
  width: 3.2rem;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: #333;
  font-size: 1.6rem;
  appearance: textfield;
  -moz-appearance: textfield;
}
.re-resume--job-posting .re-resume__count-input::-webkit-outer-spin-button, .re-resume--job-posting .re-resume__count-input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
.re-resume--job-posting .re-resume__count-input:focus {
  outline: none;
}
.re-resume--job-posting .re-resume__count-unit, .re-resume--job-posting .re-resume__meta-label, .re-resume--job-posting .re-resume__meta-suffix, .re-resume--job-posting .re-resume__unit-copy {
  color: #aaaaaa;
  font-size: 1.4rem;
  white-space: nowrap;
}
.re-resume--job-posting .re-resume__inline-note, .re-resume--job-posting .re-resume__helper-note {
  color: #666;
  font-size: 1.4rem;
  word-break: keep-all;
}
.re-resume--job-posting .re-resume__helper-note--right {
  margin-top: 1rem;
  text-align: right;
}
.re-resume--job-posting .re-resume__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem;
  color: #aaaaaa;
  font-size: 1.4rem;
}
.re-resume--job-posting .re-resume__more-btn.is-active {
  color: #e8485a;
}
.re-resume--job-posting .re-resume__more-btn.is-active .re-resume__chevron {
  transform: rotate(-135deg) translateY(0.1rem);
}
.re-resume--job-posting .re-resume__chevron {
  width: 0.8rem;
  height: 0.8rem;
  border-right: 0.15rem solid currentColor;
  border-bottom: 0.15rem solid currentColor;
  transform: rotate(45deg) translateY(-0.1rem);
}
.re-resume--job-posting .re-resume__career-row, .re-resume--job-posting .re-resume__career-selects {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.re-resume--job-posting .re-resume .mo-add-condition__check-list {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.re-resume--job-posting .re-resume .mo-add-condition__check span {
  min-height: 4.4rem;
  padding: 0 1.6rem 0 3.8rem;
  font-size: 1.4rem;
  color: #666;
}
.re-resume--job-posting .re-resume .mo-add-condition__check span::before {
  left: 1.2rem;
  width: 1.8rem;
  height: 1.8rem;
}
.re-resume--job-posting .re-resume__career-row {
  justify-content: space-between;
}
.re-resume--job-posting .re-resume__career-checks {
  flex: 1;
  min-width: 0;
}
.re-resume--job-posting .re-resume__career-selects {
  flex-shrink: 0;
}
.re-resume--job-posting .re-resume__career-selects .re-resume__select-wrap {
  width: 11rem;
}
.re-resume--job-posting .re-resume__check-label, .re-resume--job-posting .re-resume__privacy-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #666;
  font-size: 1.4rem;
  cursor: pointer;
  user-select: none;
}
.re-resume--job-posting .re-resume__check-label input, .re-resume--job-posting .re-resume__privacy-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.re-resume--job-posting .re-resume__check-label input:checked + .re-resume__check-box, .re-resume--job-posting .re-resume__privacy-toggle input:checked + .re-resume__check-box {
  border-color: #e8485a;
  background-color: #e8485a;
}
.re-resume--job-posting .re-resume__check-label input:checked + .re-resume__check-box::after, .re-resume--job-posting .re-resume__privacy-toggle input:checked + .re-resume__check-box::after {
  opacity: 1;
}
.re-resume--job-posting .re-resume__check-box {
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid #c9c9c9;
  border-radius: 0.5rem;
  background-color: #fff;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.re-resume--job-posting .re-resume__check-box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 0.5rem;
  height: 0.9rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.re-resume--job-posting .re-resume__check-copy {
  word-break: keep-all;
}
.re-resume--job-posting .re-resume__check-label--save {
  margin-left: 0.6rem;
}
.re-resume--job-posting .re-resume__privacy-toggle {
  min-height: 5rem;
  padding: 0 1rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
}
.re-resume--job-posting .re-resume__salary-row {
  display: grid;
  grid-template-columns: 9rem 15rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}
.re-resume--job-posting .re-resume__unit-field.is-disabled, .re-resume--job-posting .re-resume__meta-field.is-disabled, .re-resume--job-posting .re-resume__date-field.is-disabled {
  opacity: 0.45;
}
.re-resume--job-posting .re-resume__unit-field, .re-resume--job-posting .re-resume__meta-field, .re-resume--job-posting .re-resume__date-field {
  display: grid;
  align-items: center;
  height: 5rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
}
.re-resume--job-posting .re-resume__unit-field {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 0 1.6rem;
}
.re-resume--job-posting .re-resume__meta-field {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.2rem;
  padding: 0 1.6rem;
}
.re-resume--job-posting .re-resume__unit-input, .re-resume--job-posting .re-resume__meta-input, .re-resume--job-posting .re-resume__date-input {
  width: 100%;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: #333;
  font-size: 1.6rem;
}
.re-resume--job-posting .re-resume__unit-input:focus, .re-resume--job-posting .re-resume__meta-input:focus, .re-resume--job-posting .re-resume__date-input:focus {
  outline: none;
}
.re-resume--job-posting .re-resume__unit-input, .re-resume--job-posting .re-resume__meta-input {
  text-align: center;
}
.re-resume--job-posting .re-resume__meta-input {
  appearance: textfield;
  -moz-appearance: textfield;
}
.re-resume--job-posting .re-resume__meta-input::-webkit-outer-spin-button, .re-resume--job-posting .re-resume__meta-input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
.re-resume--job-posting .re-resume__location-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}
.re-resume--job-posting .re-resume__inline-btn {
  min-width: 7.6rem;
  height: 5rem;
  padding: 0 1.8rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
  color: #333;
  font-size: 1.4rem;
  white-space: nowrap;
}
.re-resume--job-posting .re-resume__inline-btn--sm {
  min-width: 6.8rem;
}
.re-resume--job-posting .re-resume__location-meta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin-top: 1rem;
}
.re-resume--job-posting .re-resume__map-panel {
  margin-top: 1.6rem;
  padding: 1.8rem;
  border: 1px solid #eee;
  border-radius: 1rem;
  background-color: #fafafa;
}
.re-resume--job-posting .re-resume__map-box {
  min-height: 22rem;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.re-resume--job-posting .re-resume__map-link {
  position: relative;
  padding-left: 1.8rem;
  color: #aaaaaa;
  font-size: 1.4rem;
  white-space: nowrap;
}
.re-resume--job-posting .re-resume__map-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  background: url("/img/recruit/user/icon/location_icon.png") no-repeat center/contain;
  transform: translateY(-50%);
}
.re-resume--job-posting .re-resume__work-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30rem;
  gap: 2rem;
  align-items: center;
}
.re-resume--job-posting .re-resume__weekday-list {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.re-resume--job-posting .re-resume__weekday-btn {
  width: 3.6rem;
  min-width: 3.6rem;
  height: 4.2rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
  color: #333;
  font-size: 1.4rem;
}
.re-resume--job-posting .re-resume__weekday-btn.is-selected {
  border-color: #e8485a;
  background-color: rgba(232, 72, 90, 0.06);
  color: #e8485a;
}
.re-resume--job-posting .re-resume__weekday-btn:disabled {
  opacity: 0.45;
}
.re-resume--job-posting .re-resume__time-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  height: 5rem;
  padding: 0 1.6rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
  color: #333;
  font-size: 1.4rem;
  text-align: left;
}
.re-resume--job-posting .re-resume__time-field.is-filled {
  color: rgba(51, 51, 51, 0.88);
}
.re-resume--job-posting .re-resume__time-field.is-disabled {
  opacity: 0.45;
}
.re-resume--job-posting .re-resume__time-icon {
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  border: 0.15rem solid #bcbcbc;
  border-radius: 50%;
  flex-shrink: 0;
}
.re-resume--job-posting .re-resume__time-icon::before, .re-resume--job-posting .re-resume__time-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #bcbcbc;
  transform-origin: center top;
}
.re-resume--job-posting .re-resume__time-icon::before {
  width: 0.15rem;
  height: 0.5rem;
  transform: translate(-50%, -90%);
}
.re-resume--job-posting .re-resume__time-icon::after {
  width: 0.15rem;
  height: 0.4rem;
  transform: translate(-5%, -45%) rotate(55deg);
}
.re-resume--job-posting .re-resume__time-editor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.re-resume--job-posting .re-resume__time-edit-field {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.5rem;
  padding: 0 1rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
}
.re-resume--job-posting .re-resume__time-edit-label {
  color: #aaaaaa;
  font-size: 1.4rem;
  white-space: nowrap;
}
.re-resume--job-posting .re-resume__time-edit-input {
  width: 100%;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: #333;
  font-size: 1.6rem;
}
.re-resume--job-posting .re-resume__time-edit-input:focus {
  outline: none;
}
.re-resume--job-posting .re-resume__process-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.re-resume--job-posting .re-resume__process-list {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.re-resume--job-posting .re-resume__process-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 4.6rem;
  padding: 0 1.6rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
  color: #aaaaaa;
  font-size: 1.4rem;
  white-space: nowrap;
}
.re-resume--job-posting .re-resume__process-chip.is-final {
  padding-right: 1.6rem;
}
.re-resume--job-posting .re-resume__process-label {
  display: block;
}
.re-resume--job-posting .re-resume__process-remove {
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
}
.re-resume--job-posting .re-resume__process-remove::before, .re-resume--job-posting .re-resume__process-remove::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.2rem;
  height: 0.15rem;
  border-radius: 0.1rem;
  background-color: currentColor;
}
.re-resume--job-posting .re-resume__process-remove::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.re-resume--job-posting .re-resume__process-remove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.re-resume--job-posting .re-resume__process-arrow {
  width: 1rem;
  height: 1rem;
  border-right: 0.2rem solid #c7c7c7;
  border-bottom: 0.2rem solid #c7c7c7;
  transform: rotate(-45deg);
  flex-shrink: 0;
}
.re-resume--job-posting .re-resume__process-divider {
  width: 1rem;
  height: 1rem;
  border-right: 0.2rem solid #c7c7c7;
  border-bottom: 0.2rem solid #c7c7c7;
  transform: rotate(-45deg);
  flex-shrink: 0;
}
.re-resume--job-posting .re-resume__process-divider.is-disabled {
  opacity: 0.35;
}
.re-resume--job-posting .re-resume__process-add {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #333;
  font-size: 1.6rem;
}
.re-resume--job-posting .re-resume__process-add.is-disabled {
  opacity: 0.35;
  cursor: default;
}
.re-resume--job-posting .re-resume__process-plus {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}
.re-resume--job-posting .re-resume__process-plus::before, .re-resume--job-posting .re-resume__process-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.4rem;
  height: 0.2rem;
  border-radius: 0.1rem;
  background-color: currentColor;
  transform: translate(-50%, -50%);
}
.re-resume--job-posting .re-resume__process-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.re-resume--job-posting .re-resume__period-top {
  margin-top: 0.2rem;
  margin-bottom: 1.6rem;
}
.re-resume--job-posting .re-resume__period-select {
  width: 12rem;
}
.re-resume--job-posting .re-resume__contact-field {
  min-width: 0;
}
.re-resume--job-posting .re-resume__manager-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 1rem;
  align-items: center;
}
.re-resume--job-posting .re-resume__dual-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 1.8rem;
}
.re-resume--job-posting .re-resume__privacy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}
.re-resume--job-posting .re-resume__employment-extra {
  margin-top: 1.2rem;
}
.re-resume--job-posting .re-resume__method-detail-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}
.re-resume--job-posting .re-resume__method-static, .re-resume--job-posting .re-resume__method-line {
  display: flex;
  align-items: center;
  min-height: 4.8rem;
  padding: 0 1.6rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
  color: #333;
  font-size: 1.4rem;
}
.re-resume--job-posting .re-resume__selected-list.is-hidden, .re-resume--job-posting .re-resume__time-editor.is-hidden, .re-resume--job-posting .re-resume__method-line.is-hidden {
  display: none !important;
}
.re-resume--job-posting .re-resume__method-input {
  width: 100%;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: #333;
  font-size: 1.4rem;
}
.re-resume--job-posting .re-resume__method-input:focus {
  outline: none;
}
.re-resume--job-posting .re-resume__method-input::placeholder {
  color: #aaaaaa;
}
.re-resume--job-posting .re-resume__notice-card {
  padding: 2.4rem;
  border-radius: 1rem;
  background-color: #f5f5f5;
}
.re-resume--job-posting .re-resume__notice-title {
  display: block;
  margin-bottom: 1.8rem;
  color: #333;
  font-size: 1.6rem;
  font-weight: 600;
}
.re-resume--job-posting .re-resume__option-block {
  margin-top: 2rem;
}
.re-resume--job-posting .re-resume__option-checks .mo-add-condition__check span {
  padding-right: 1.8rem;
}
.re-resume--job-posting .re-resume__check-label--notice .re-resume__check-copy {
  color: #333;
}
.re-resume--job-posting .re-resume__notice-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.4rem;
  margin-top: 2rem;
}
.re-resume--job-posting .re-resume__notice-copy, .re-resume--job-posting .re-resume__notice-list {
  color: #666;
  font-size: 1.2rem;
  line-height: 2;
  word-break: keep-all;
}
.re-resume--job-posting .re-resume__notice-copy {
  margin-left: 2.6rem;
  margin-top: 1rem;
}
.re-resume--job-posting .re-resume__notice-list {
  padding-left: 1.4rem;
  list-style: disc;
}
.re-resume__posting-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 4.5rem;
}
.re-resume__posting-flex--back {
  display: flex;
  align-items: center;
  height: 4.5rem;
  color: #aaaaaa;
  gap: 1rem;
  transition: color 0.2s ease;
}
.re-resume__posting-flex--arrow {
  display: block;
  width: 10px;
  height: 16px;
  background: url("/img/recruit/user/icon/right-arrow.png") no-repeat center/cover;
  transform: rotate(180deg);
}
.re-resume__posting-flex--reset {
  display: flex;
  align-items: center;
  height: 4.5rem;
  gap: 1rem;
  border: 1px solid #aaaaaa;
  border-radius: 1rem;
  color: #aaaaaa;
  font-size: 1.4rem;
  padding: 0 1rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.re-resume__posting-flex--rotate {
  display: block;
  width: 16px;
  height: 16px;
  background: url("/img/recruit/user/icon/reset_icon.png") no-repeat center/cover;
  transform: rotate(45deg);
}
.re-resume__editer {
  height: 70vh;
  width: 100%;
  border: 1px solid #ddd;
  padding: 2rem;
  border-radius: 1rem;
  resize: none;
}
.re-resume__carrboard {
  display: flex;
  align-items: center;
  border-left: 2px solid #aaaaaa;
  padding-left: 2rem;
  gap: 2rem;
}
@media (hover: hover) and (pointer: fine) {
  .re-resume__small-btn.is-muted:hover {
    background: #a6a6a6;
  }
  .re-resume__small-btn.is-point:hover, .re-resume__side-btn--primary:hover {
    background: rgba(232, 72, 93, 0.7803921569);
  }
  .re-resume__bottom-btn--ghost:hover, .re-resume__side-btn--ghost:hover {
    border-color: rgba(232, 72, 90, 0.3);
    color: #e8485a;
  }
  .re-resume__add-btn:hover, .re-resume__option-item:hover, .re-resume__edit-btn:hover {
    color: #e8485a;
  }
  .re-resume__add-btn:hover .re-resume__add-icon::before, .re-resume__add-btn:hover .re-resume__add-icon::after {
    background: #e8485a;
  }
  .re-resume--job-posting .re-resume__text-button:hover, .re-resume--job-posting .re-resume__text-link:hover, .re-resume--job-posting .re-resume__more-btn:hover, .re-resume--job-posting .re-resume__map-link:hover {
    color: #e8485a;
  }
  .re-resume--job-posting .re-resume__text-button:hover::before {
    background-color: rgba(232, 72, 90, 0.35);
  }
  .re-resume--job-posting .re-resume__inline-btn:hover, .re-resume--job-posting .re-resume__weekday-btn:hover, .re-resume--job-posting .re-resume__privacy-toggle:hover, .re-resume--job-posting .re-resume__process-chip:hover, .re-resume--job-posting .re-resume__time-field:hover, .re-resume--job-posting .re-resume__method-line:hover, .re-resume--job-posting .re-resume__method-static:hover {
    border-color: rgba(232, 72, 90, 0.35);
  }
  .re-resume--job-posting .re-resume__process-add:hover {
    color: #e8485a;
  }
  .re-resume--job-posting .re-resume__selected-chip:hover, .re-resume--job-posting .re-resume__process-remove:hover {
    color: #e8485a;
  }
  .re-resume--job-posting .mo-add-condition__check span:hover {
    border-color: rgba(232, 72, 90, 0.35);
  }
  .re-resume__posting-flex--back:hover {
    color: #e8485a;
  }
  .re-resume__posting-flex--back:hover .re-resume__posting-flex--arrow {
    background-image: url("/img/recruit/user/icon/right-arrow_active.png");
  }
  .re-resume__posting-flex--reset:hover {
    color: #e8485a;
    border-color: #e8485a;
  }
  .re-resume__posting-flex--reset:hover .re-resume__posting-flex--rotate {
    background-image: url("/img/recruit/user/icon/reset_active_icon.png");
  }
}

.re-company-recruit {
  width: 100%;
  max-width: 58rem;
  min-height: 100vh;
  margin: 0 auto;
  background-color: #fff;
  color: #333;
}
.re-company-recruit__content {
  padding-bottom: 150px;
  display: none;
}
.re-company-recruit__content.on {
  display: block;
}
.re-company-recruit__hero {
  padding: 2rem;
  background: linear-gradient(180deg, #f25a70 0%, #f06d82 100%);
}
.re-company-recruit__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.re-company-recruit__step {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.35);
  border-radius: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0;
}
.re-company-recruit__step.is-active {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.re-company-recruit__title {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  word-break: keep-all;
}
.re-company-recruit__panel {
  padding: 2rem;
}
.re-company-recruit__panel--location {
  padding-top: 4rem;
}
.re-company-recruit__field {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
}
.re-company-recruit__field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.re-company-recruit__label {
  color: #333;
  font-size: 1.4rem;
  word-break: keep-all;
}
.re-company-recruit__label span {
  color: #e8485a;
}
.re-company-recruit__input {
  width: 100%;
  height: 5rem;
  padding: 0 2rem;
  border: 0.1rem solid #d4d4d4;
  border-radius: 1rem;
  background-color: #fff;
  color: #333;
  font-size: 1.6rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.re-company-recruit__input::placeholder {
  color: #aaaaaa;
}
.re-company-recruit__input:focus {
  outline: none;
  border-color: #e8485a;
  box-shadow: 0 0 0 0.3rem rgba(232, 72, 90, 0.08);
}
.re-company-recruit__inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 9rem;
  gap: 1rem;
  align-items: stretch;
}
.re-company-recruit__check, .re-company-recruit__privacy {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #666;
  font-size: 1.4rem;
  cursor: pointer;
  user-select: none;
}
.re-company-recruit__privacy {
  justify-content: center;
  min-height: 5rem;
  padding: 0 1rem;
  border: 0.1rem solid #d4d4d4;
  border-radius: 1rem;
  background-color: #fff;
}
.re-company-recruit__check input, .re-company-recruit__privacy input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.re-company-recruit__check-box {
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid #bdbdbd;
  border-radius: 0.5rem;
  background-color: #fff;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.re-company-recruit__check-box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.6rem;
  height: 1.2rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  transform: translate(-50%, -60%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.re-company-recruit__check-text {
  word-break: keep-all;
}
.re-company-recruit__check input:checked + .re-company-recruit__check-box, .re-company-recruit__privacy input:checked + .re-company-recruit__check-box {
  border-color: #e8485a;
  background-color: #e8485a;
}
.re-company-recruit__check input:checked + .re-company-recruit__check-box::after, .re-company-recruit__privacy input:checked + .re-company-recruit__check-box::after {
  opacity: 1;
}
.re-company-recruit__manager-btn {
  width: 100%;
  height: 5rem;
  margin-top: 0.8rem;
  border-radius: 1rem;
  background-color: #e8485a;
  color: #fff;
  font-size: 1.6rem;
}
.re-company-recruit__notice {
  margin-top: 4rem;
  padding: 2rem;
  background-color: #f5f5f5;
  color: #333;
  font-size: 1.6rem;
  word-break: keep-all;
}
.re-company-recruit__notice p + p {
  margin-top: 2.8rem;
}
.re-company-recruit__location-fields {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.re-company-recruit__map-wrap {
  margin-top: 5.6rem;
}
.re-company-recruit__map-title {
  color: #666;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.4;
}
.re-company-recruit__map {
  min-height: 22rem;
  margin-top: 2.8rem;
  border-radius: 1rem;
  background-color: #fff;
}
.re-company-recruit__footer {
  position: absolute;
  width: 100%;
  max-width: 58rem;
  bottom: 0;
  z-index: 5;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 18%, #fff 100%);
}
.re-company-recruit__footer--inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.re-company-recruit__footin {
  position: relative;
}
.re-company-recruit__footin:last-child {
  display: flex;
  gap: 1rem;
  position: absolute;
  right: 1rem;
  bottom: 2.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(1rem);
  transition: 0.2s ease;
}
.re-company-recruit__footin.is-active > .re-company-recruit__morebtn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.re-company-recruit__footin.is-active > .re-company-recruit__footin {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.re-company-recruit .re-company-recruit__footin > .re-company-recruit__footin .re-company-recruit__morebtn {
  position: static;
}
.re-company-recruit__morebtn {
  position: absolute;
  right: 1rem;
  bottom: 2.5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.re-company-recruit__morebtn--dot {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  background: url("/img/recruit/user/icon/more_icon.png") no-repeat center/contain;
}
.re-company-recruit__morebtn--home {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: url("/img/recruit/user/icon/home_icon.png") no-repeat center/contain;
}
.re-company-recruit__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  font-size: 1.6rem;
}
.re-company-recruit__nav--save {
  width: 100%;
  height: 4.5rem;
  background-color: #ccc;
  color: #fff;
}
.re-company-recruit__nav--prev {
  width: 100%;
  height: 4.5rem;
  border: 1px solid #aaaaaa;
  color: #aaaaaa;
}
.re-company-recruit__nav--next {
  width: 100%;
  height: 4.5rem;
  background-color: #e8485a;
  color: #fff;
}
.re-company-recruit__nav.off {
  display: none;
}
.re-company-recruit__nav-arrow {
  width: 2rem;
  height: 2rem;
  margin-left: 0.8rem;
  border-left: 0.3rem solid #7b7b7b;
  border-bottom: 0.3rem solid #7b7b7b;
  transform: rotate(45deg);
}

.re-s2__section {
  padding: 2rem;
}
.re-s2__title, .re-s2__subtitle, .re-s2__label {
  color: #333;
  word-break: keep-all;
}
.re-s2__title, .re-s2__label {
  font-size: 1.4rem;
  font-weight: 500;
}
.re-s2__title {
  padding-bottom: 2rem;
}
.re-s2__subtitle {
  margin-top: 5rem;
  font-size: 1.4rem;
  font-weight: 500;
}
.re-s2__search {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.re-s2__search--inner {
  position: relative;
}
.re-s2__search-input, .re-s2__input {
  width: 100%;
  height: 4.6rem;
  padding: 0 1rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
  color: #333;
  font-size: 1.4rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.re-s2__search-input::placeholder, .re-s2__input::placeholder {
  color: #aaaaaa;
}
.re-s2__search-input:focus, .re-s2__input:focus {
  outline: none;
  border-color: #e8485a;
  box-shadow: 0 0 0 0.3rem rgba(232, 72, 90, 0.08);
}
.re-s2__search-input {
  padding-right: 5rem;
  appearance: none;
}
.re-s2__search-btn {
  width: 100%;
  text-align: center;
  border-radius: 1rem;
  border: 1px solid #e8485a;
  color: #e8485a;
  height: 4.6rem;
  margin-top: 2rem;
}
.re-s2__chips, .re-s2__selected-chips {
  display: flex;
  flex-wrap: wrap;
}
.re-s2__chips {
  gap: 1rem 1rem;
  margin-top: 1rem;
}
.re-s2__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.6rem;
  padding: 1.5rem 1rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
  color: #aaaaaa;
  font-size: 1.4rem;
  text-align: center;
  white-space: nowrap;
}
.re-s2__chip--selected {
  gap: 1rem;
  border-color: rgba(232, 72, 90, 0.65);
  color: #e8485a;
}
.re-s2__chip-remove {
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
}
.re-s2__chip-remove::before, .re-s2__chip-remove::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.4rem;
  height: 0.15rem;
  border-radius: 0.1rem;
  background-color: #b2b2b2;
}
.re-s2__chip-remove::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.re-s2__chip-remove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.re-s2__selected-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.re-s2__selected-chips {
  gap: 1rem;
}
.re-s2__inline-action {
  position: relative;
  align-self: flex-end;
  padding-left: 1.6rem;
  color: #aaaaaa;
  font-size: 1.4rem;
}
.re-s2__inline-action::before, .re-s2__inline-action::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.2rem;
  height: 0.15rem;
  border-radius: 0.1rem;
  background-color: currentColor;
  transform: translateY(-50%);
}
.re-s2__inline-action::after {
  transform: translateY(-50%) rotate(90deg);
}
.re-s2__select-wrap, .re-s2__mini-select {
  position: relative;
}
.re-s2__select {
  width: 100%;
  height: 4.6rem;
  padding: 0 2rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
  color: #aaaaaa;
  font-size: 1.6rem;
  appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.re-s2__select:focus {
  outline: none;
  border-color: #e8485a;
  box-shadow: 0 0 0 0.3rem rgba(232, 72, 90, 0.08);
}
.re-s2__select.is-selected {
  color: #333;
}
.re-s2__select-arrow {
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 2.2rem;
  height: 2.2rem;
  transform: translateY(-50%) rotate(90deg);
  background: url("/img/recruit/user/icon/right-arrow.png") no-repeat center/contain;
}
.re-s2__details {
  padding-bottom: 2rem;
}
.re-s2__field-box {
  display: grid;
}
.re-s2__field-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.re-s2__add-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.re-s2__label span {
  color: #e8485a;
}
.re-s2__line-field, .re-s2__count-group {
  position: relative;
  min-width: 0;
  border-bottom: 0.1rem solid #d4d4d4;
}
.re-s2__line-field {
  margin-top: 1rem;
}
.re-s2__line-input {
  width: 100%;
  height: 4rem;
  padding: 0 3rem 0 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: #333;
  font-size: 1.6rem;
}
.re-s2__line-input::placeholder {
  color: #aaaaaa;
}
.re-s2__line-input:focus {
  outline: none;
  border-color: transparent;
}
.re-s2__clear-btn {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  width: 2rem;
  height: 2rem;
  transform: translateY(-50%);
}
.re-s2__clear-btn::before, .re-s2__clear-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.6rem;
  height: 0.15rem;
  border-radius: 0.1rem;
  background-color: #b2b2b2;
}
.re-s2__clear-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.re-s2__clear-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.re-s2__count-group {
  max-width: 20rem;
  display: grid;
  align-items: center;
  grid-template-columns: 40% 30% 30%;
  gap: 0.5rem;
}
.re-s2__count-input {
  height: 4rem;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: #333;
  font-size: 1.6rem;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}
.re-s2__count-input::-webkit-outer-spin-button, .re-s2__count-input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
.re-s2__count-input:focus {
  outline: none;
}
.re-s2__count-unit {
  color: #666;
  font-size: 1.5rem;
  white-space: nowrap;
}
.re-s2__tooltip-wrap {
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
}
.re-s2__tooltip-btn {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  border: 0.1rem solid #b7b7b7;
  border-radius: 50%;
  background-color: #fff;
  color: #a5a5a5;
  font-size: 1.5rem;
  font-weight: 700;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.re-s2__tooltip-btn::before {
  content: "?";
}
.re-s2__tooltip-btn[aria-expanded=true] {
  border-color: rgba(232, 72, 90, 0.5);
  background-color: rgba(232, 72, 90, 0.06);
  color: #e8485a;
}
.re-s2__tooltip {
  position: absolute;
  top: calc(100% + 1rem);
  right: -10px;
  z-index: 10;
  width: 19rem;
  padding: 1.2rem 1.4rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 0.6rem 1.8rem rgba(0, 0, 0, 0.12);
  color: #666;
  font-size: 1.2rem;
  line-height: 1.5;
  word-break: keep-all;
}
.re-s2__tooltip::before {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: calc(100% - 0.5rem);
  width: 1.2rem;
  height: 1.2rem;
  border-top: 0.1rem solid #ddd;
  border-left: 0.1rem solid #ddd;
  background-color: #fff;
  transform: rotate(45deg);
}
.re-s2__career-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.re-s2__career-card {
  padding: 1.4rem 1.6rem;
  border: 0.1rem solid #d4d4d4;
  border-radius: 1rem;
  background-color: #fff;
}
.re-s2__career-top, .re-s2__career-inline {
  display: grid;
  gap: 1.2rem;
}
.re-s2__career-top {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}
.re-s2__career-selects {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
  align-items: center;
}
.re-s2__mini-in {
  justify-self: center;
}
.re-s2__mini-select::after {
  content: "";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border-right: 0.2rem solid #7b7b7b;
  border-bottom: 0.2rem solid #7b7b7b;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.re-s2__mini-select select {
  width: 100%;
  height: 3.6rem;
  padding: 0 2rem 0 0;
  border: 0;
  background-color: transparent;
  color: #333;
  font-size: 1.5rem;
  appearance: none;
}
.re-s2__mini-select select:focus {
  outline: none;
}
.re-s2__career-inline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.re-s2__check-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.re-s2__check-row span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  padding: 0 1.5rem 0 4.5rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  color: #aaaaaa;
  font-size: 1.6rem;
  white-space: nowrap;
}
.re-s2__check-row span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  background-color: #fff;
  transform: translateY(-50%);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.re-s2__check-row input:checked + span {
  border-color: rgba(232, 72, 90, 0.45);
  color: #333;
}
.re-s2__check-row input:checked + span::before {
  border-color: #e8485a;
  background-color: #e8485a;
  box-shadow: inset 0 0 0 0.6rem #fff;
}
.re-s2__check-copy {
  min-width: 0;
  font-size: 1.5rem;
  line-height: 1.4;
  word-break: keep-all;
}
.re-s2__check-row input:checked + .re-s2__checkbox {
  border-color: #e8485a;
  background-color: #e8485a;
}
.re-s2__check-row input:checked + .re-s2__checkbox::after {
  opacity: 1;
}
.re-s2__textarea {
  width: 100%;
  min-height: 19.2rem;
  padding: 1.8rem 2rem;
  border: 0.1rem solid #d4d4d4;
  border-radius: 1rem;
  background-color: #fff;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.6;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.re-s2__textarea::placeholder {
  color: #aaaaaa;
}
.re-s2__textarea:focus {
  outline: none;
  border-color: #e8485a;
  box-shadow: 0 0 0 0.3rem rgba(232, 72, 90, 0.08);
}
.re-s2__textarea--compact {
  min-height: 14.4rem;
}
.re-s2__more-btn {
  position: relative;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 0 auto;
  padding-left: 2rem;
  color: rgba(232, 72, 90, 0.88);
  font-size: 1.4rem;
}
.re-s2__more-btn::before, .re-s2__more-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.2rem;
  height: 0.15rem;
  border-radius: 0.1rem;
  background-color: currentColor;
  transform: translateY(-50%);
}
.re-s2__more-btn::after {
  transform: translateY(-50%) rotate(90deg);
}
.re-s2__extra {
  margin-top: 0.8rem;
}
.re-s2__hint {
  margin-top: 1.8rem;
  color: #666;
  font-size: 1.4rem;
  background-color: #f5f5f5;
  line-height: 1.6;
  word-break: keep-all;
}
.re-s2__mode-panel {
  margin-top: 0.2rem;
}
.re-s2__selection-box {
  border: 1px solid #d4d4d4;
  border-radius: 1rem;
  background-color: #fff;
  overflow: hidden;
}
.re-s2__selection-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.6rem;
  width: 100%;
  padding: 1.8rem 1.6rem;
  background-color: #fff;
  text-align: left;
}
.re-s2__selection-row + .re-s2__selection-row {
  border-top: 0.1rem solid #ebebeb;
}
@media (hover: hover) and (pointer: fine) {
  .re-s2__selection-row:hover {
    background-color: rgba(232, 72, 90, 0.2);
  }
}
.re-s2__selection-label {
  color: #333;
  font-size: 1.4rem;
  font-weight: 600;
}
.re-s2__selection-copy {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.re-s2__selection-value {
  color: #666;
  font-size: 1.4rem;
}
.re-s2__selection-arrow {
  width: 1rem;
  height: 1rem;
  border-right: 0.2rem solid #9d9d9d;
  border-bottom: 0.2rem solid #9d9d9d;
  transform: rotate(-45deg);
  flex-shrink: 0;
}
.re-s2__mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.6rem 0 0 auto;
  font-size: 1.5rem;
}
.re-s2__mode-toggle[data-mode=direct], .re-s2__mode-toggle.is-direct {
  color: #a7a7a7;
}
.re-s2__mode-toggle[data-mode=select], .re-s2__mode-toggle.is-select {
  color: #e8485a;
}
.re-s2__mode-toggle-arrow {
  width: 0.8rem;
  height: 0.8rem;
  border-right: 0.2rem solid currentColor;
  border-bottom: 0.2rem solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.re-s2__mode-toggle[data-mode=select] .re-s2__mode-toggle-arrow, .re-s2__mode-toggle.is-select .re-s2__mode-toggle-arrow {
  transform: rotate(-135deg);
}

.re-company-recruit--step3 {
  position: relative;
}

.re-s3__section {
  padding: 2rem;
}
.re-s3__section--summary {
  padding-top: 0.8rem;
}
.re-s3__title {
  color: #333;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.45;
  word-break: keep-all;
}
.re-s3__title--sub {
  margin-top: 2.8rem;
}
.re-s3__employment-list, .re-s3__employment-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.re-s3__employment-list {
  margin-top: 1.6rem;
}
.re-s3__employment-list--extra {
  margin-top: 1.6rem;
}
.re-s3__employment-card {
  padding: 1.6rem 1.8rem;
  border: 0.1rem solid #e0e0e0;
  border-radius: 1rem;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.re-s3__employment-card.is-selected {
  border-color: rgba(232, 72, 90, 0.22);
  box-shadow: 0 0.8rem 1.8rem rgba(232, 72, 90, 0.04);
}
.re-s3__employment-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
  user-select: none;
}
.re-s3__employment-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.re-s3__employment-box, .re-s3__checkbox {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  border: 0.1rem solid #bdbdbd;
  border-radius: 0.6rem;
  background-color: #fff;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.re-s3__employment-box::after, .re-s3__checkbox::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 0.6rem;
  height: 1.2rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  transform: translate(-50%, -60%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.re-s3__employment-input:checked + .re-s3__employment-box, .re-s3__check-row input:checked + .re-s3__checkbox {
  border-color: #e8485a;
  background-color: #e8485a;
}
.re-s3__employment-input:checked + .re-s3__employment-box::after, .re-s3__check-row input:checked + .re-s3__checkbox::after {
  opacity: 1;
}
.re-s3__employment-name, .re-s3__check-copy {
  min-width: 0;
  color: rgba(51, 51, 51, 0.82);
  font-size: 1.6rem;
  line-height: 1.45;
  word-break: keep-all;
}
.re-s3__employment-detail {
  margin-top: 2.2rem;
  padding: 0 0.6rem 0.4rem;
}
.re-s3__under-field, .re-s3__line-field, .re-s3__amount-field {
  border-bottom: 0.1rem solid #b7b7b7;
}
.re-s3__under-field {
  padding-bottom: 1rem;
}
.re-s3__under-input, .re-s3__line-input, .re-s3__amount-input, .re-s3__time-input {
  width: 100%;
  border: 0;
  background-color: transparent;
  color: #333;
  appearance: none;
}
.re-s3__under-input:focus, .re-s3__line-input:focus, .re-s3__amount-input:focus, .re-s3__time-input:focus {
  outline: none;
}
.re-s3__under-input::-webkit-outer-spin-button, .re-s3__under-input::-webkit-inner-spin-button, .re-s3__line-input::-webkit-outer-spin-button, .re-s3__line-input::-webkit-inner-spin-button, .re-s3__amount-input::-webkit-outer-spin-button, .re-s3__amount-input::-webkit-inner-spin-button, .re-s3__time-input::-webkit-outer-spin-button, .re-s3__time-input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
.re-s3__under-input {
  height: 3.2rem;
  font-size: 1.6rem;
}
.re-s3__under-input::placeholder {
  color: #b7b7b7;
}
.re-s3__detail-check {
  margin-top: 1.8rem;
}
.re-s3__check-row {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
}
.re-s3__check-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.re-s3__choice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.re-s3__choice-btn, .re-s3__weekday-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid #b7b7b7;
  border-radius: 1rem;
  background-color: #fff;
  color: #b3b3b3;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.re-s3__choice-btn {
  min-height: 4.6rem;
  padding: 0 1.2rem;
  font-size: 1.4rem;
}
.re-s3__choice-btn.is-selected {
  border-color: #e8485a;
  background-color: rgba(232, 72, 90, 0.04);
  color: #e8485a;
}
.re-s3__info-copy {
  color: rgba(51, 51, 51, 0.9);
  font-size: 1.4rem;
  line-height: 1.45;
  word-break: keep-all;
}
.re-s3__more-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 1.8rem;
  padding-left: 1.8rem;
  color: #b5b5b5;
  font-size: 1.4rem;
  line-height: 1.4;
}
.re-s3__more-btn::before, .re-s3__more-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.2rem;
  height: 0.15rem;
  border-radius: 0.1rem;
  background-color: currentColor;
  transform: translateY(-50%);
}
.re-s3__more-btn::after {
  transform: translateY(-50%) rotate(90deg);
}
.re-s3__more-btn.is-active {
  color: #e8485a;
}
.re-s3__conditions {
  padding-bottom: 4rem;
}
.re-s3__summary-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.4rem;
}
.re-s3__summary-chip {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.8rem;
  padding: 0 1.6rem;
  border: 0.1rem solid rgba(232, 72, 90, 0.8);
  border-radius: 1rem;
  background-color: #fff;
  color: #e8485a;
  font-size: 1.4rem;
}
.re-s3__summary-remove {
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
}
.re-s3__summary-remove::before, .re-s3__summary-remove::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.4rem;
  height: 0.15rem;
  border-radius: 0.1rem;
  background-color: #b7b7b7;
}
.re-s3__summary-remove::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.re-s3__summary-remove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.re-s3__notice {
  padding: 2rem;
  background-color: #f5f5f5;
  color: #333;
  font-size: 1.4rem;
  line-height: 1.45;
  word-break: keep-all;
}
.re-s3__notice strong {
  display: block;
  margin: 0.4rem 0 0.2rem;
  color: #e8485a;
  font-size: 1.4rem;
  font-weight: 600;
}
.re-s3__notice--guide p + p {
  margin-top: 0.4rem;
}
.re-s3__field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 17rem);
  gap: 1.8rem;
  align-items: end;
  margin-top: 1.8rem;
}
.re-s3__select-wrap {
  position: relative;
}
.re-s3__select-wrap::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border-right: 0.2rem solid #7d7d7d;
  border-bottom: 0.2rem solid #7d7d7d;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.re-s3__select {
  width: 100%;
  height: 4.4rem;
  padding: 0 2.6rem 1rem 0;
  border: 0;
  border-bottom: 0.1rem solid #b7b7b7;
  border-radius: 0;
  background-color: transparent;
  color: #333;
  font-size: 1.6rem;
  appearance: none;
}
.re-s3__select:focus {
  outline: none;
}
.re-s3__amount-field, .re-s3__line-field {
  display: grid;
  align-items: center;
  padding-bottom: 1rem;
}
.re-s3__amount-field.is-disabled, .re-s3__line-field.is-disabled {
  opacity: 0.45;
}
.re-s3__amount-field {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
}
.re-s3__amount-input {
  padding: 0;
  font-size: 2rem;
  text-align: center;
}
.re-s3__amount-unit, .re-s3__line-prefix, .re-s3__line-suffix, .re-s3__time-label {
  color: #a9a9a9;
  font-size: 1.6rem;
  line-height: 1.4;
  white-space: nowrap;
}
.re-s3__line-field {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  margin-top: 1.8rem;
}
.re-s3__line-input {
  padding: 0;
  font-size: 1.6rem;
  text-align: center;
}
.re-s3__checkline {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.8rem;
}
.re-s3__weekday-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1.8rem;
}
.re-s3__weekday-btn {
  min-height: 4.6rem;
  color: #333;
  font-size: 1.6rem;
}
.re-s3__weekday-btn.is-selected {
  border-color: #e8485a;
  background-color: rgba(232, 72, 90, 0.06);
  color: #e8485a;
}
.re-s3__weekday-btn:disabled {
  opacity: 0.45;
}
.re-s3__time-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  min-height: 5.6rem;
  margin-top: 1.8rem;
  padding: 0 1.8rem;
  border: 0.1rem solid #d4d4d4;
  border-radius: 1rem;
  background-color: #fff;
  color: #9f9f9f;
  font-size: 1.6rem;
  text-align: left;
  transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.re-s3__time-trigger.is-filled {
  color: rgba(51, 51, 51, 0.88);
}
.re-s3__time-trigger.is-disabled {
  opacity: 0.45;
}
.re-s3__time-icon {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  border: 0.2rem solid #b7b7b7;
  border-radius: 50%;
  flex-shrink: 0;
}
.re-s3__time-icon::before, .re-s3__time-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 0.1rem;
  background-color: #b7b7b7;
  transform-origin: center top;
}
.re-s3__time-icon::before {
  width: 0.2rem;
  height: 0.7rem;
  transform: translate(-50%, -92%);
}
.re-s3__time-icon::after {
  width: 0.2rem;
  height: 0.6rem;
  transform: translate(-8%, -52%) rotate(55deg);
}
.re-s3__time-editor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.re-s3__time-field {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.6rem;
  padding: 0 1.4rem;
  border: 0.1rem solid #d4d4d4;
  border-radius: 1rem;
  background-color: #fff;
}
.re-s3__time-label {
  font-size: 1.3rem;
}
.re-s3__time-input {
  padding: 0;
  font-size: 1.5rem;
}

.re-company-recruit--step4 {
  position: relative;
}

.re-s4 {
  padding-bottom: 10rem;
}
.re-s4__section {
  padding: 2rem;
}
.re-s4__section--tight, .re-s4__section--policy {
  padding-top: 0;
}
.re-s4__title {
  color: #333;
  font-size: 1.4rem;
  font-weight: 600;
  word-break: keep-all;
}
.re-s4__date-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1rem;
  align-items: end;
  margin-top: 2rem;
}
.re-s4__date-row .is-disabled .re-s4__date-input {
  color: #aaaaaa;
}
.re-s4__date-field, .re-s4__line-field, .re-s4__static-line, .re-s4__method-toggle {
  border-bottom: 0.1rem solid #ddd;
}
.re-s4__date-field, .re-s4__static-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5rem;
}
.re-s4__line-field {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5rem;
}
.re-s4__line-field.is-hidden {
  display: none;
}
.re-s4__date-field {
  justify-content: space-between;
}
.re-s4__date-input, .re-s4__line-input {
  width: 100%;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: #333;
  font-size: 1.6rem;
}
.re-s4__date-input::placeholder, .re-s4__line-input::placeholder {
  color: #aaaaaa;
}
.re-s4__date-input:focus, .re-s4__line-input:focus {
  outline: none;
}
.re-s4__date-input {
  cursor: pointer;
}
.re-s4__date-btn {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
}
.re-s4__date-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  background: url("/img/recruit/user/icon/calender_icon.png") no-repeat center/contain;
}
.re-s4__date-dash {
  align-self: center;
  color: #333;
  font-size: 2rem;
}
.re-s4__period {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}
.re-s4__period-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.re-s4__period-list .re-s4__period-btn.is-disabled {
  background-color: #aaaaaa !important;
  color: #fff;
}
.re-s4__period-btn {
  min-width: 5rem;
  min-height: 5rem;
  padding: 0 1.5rem;
  border-radius: 1rem;
  background-color: #eee;
  color: #aaaaaa;
  font-size: 1.4rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.re-s4__period-btn.is-active {
  background-color: #e8485a;
  color: #fff;
}
.re-s4__method {
  margin-top: 2rem;
}
.re-s4__method.is-open .re-s4__method-toggle {
  border-color: #e8485a;
}
.re-s4__method.is-open .re-s4__method-label {
  color: #e8485a;
}
.re-s4__method.is-open .re-s4__method-arrow {
  border-color: #e8485a;
}
.re-s4__method-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 5rem;
  text-align: left;
}
.re-s4__method-label, .re-s4__static-line {
  color: #333;
  font-size: 1.6rem;
  word-break: keep-all;
}
.re-s4__method-arrow {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.4rem;
  border-right: 0.2rem solid #ddd;
  border-bottom: 0.2rem solid #ddd;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.re-s4__method-options {
  display: grid;
  gap: 1.6rem;
  margin-top: 1.5rem;
}
.re-s4__method-detail-list {
  display: grid;
  gap: 1rem;
}
.re-s4__method-option, .re-s4__policy-check {
  position: relative;
  display: flex;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
}
.re-s4__method-option input, .re-s4__policy-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.re-s4__method-option {
  align-items: center;
  min-height: 5rem;
  padding: 0 1.5rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
}
.re-s4__checkbox {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  border: 0.1rem solid #ddd;
  border-radius: 0.5rem;
  background-color: #fff;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.re-s4__checkbox::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 0.6rem;
  height: 1.2rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  transform: translate(-50%, -60%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.re-s4__method-option input:checked + .re-s4__checkbox, .re-s4__policy-check input:checked + .re-s4__checkbox {
  border-color: #e8485a;
  background-color: #e8485a;
}
.re-s4__method-option input:checked + .re-s4__checkbox::after, .re-s4__policy-check input:checked + .re-s4__checkbox::after {
  opacity: 1;
}
.re-s4__method-copy {
  color: #666;
  font-size: 1.6rem;
  word-break: keep-all;
}
.re-s4__field-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.re-s4__policy-copy {
  color: #666;
  font-size: 1.4rem;
  word-break: keep-all;
}
.re-s4__process-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin: 2rem 0;
}
.re-s4__process-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-width: 5rem;
  min-height: 5rem;
  padding: 0 1rem 0;
  border: 0.1rem solid #eee;
  border-radius: 1rem;
  background-color: #fff;
  color: #aaaaaa;
  font-size: 1.4rem;
  white-space: nowrap;
}
.re-s4__process-chip.is-final {
  padding-right: 1.5rem;
  color: #ddd;
}
.re-s4__process-label {
  display: block;
}
.re-s4__process-remove {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}
.re-s4__process-remove::before, .re-s4__process-remove::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.4rem;
  height: 0.15rem;
  border-radius: 0.1rem;
  background-color: #aaaaaa;
}
.re-s4__process-remove::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.re-s4__process-remove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.re-s4__process-arrow, .re-s4__process-divider {
  width: 1.2rem;
  height: 1.2rem;
  border-right: 0.2rem solid #aaaaaa;
  border-bottom: 0.2rem solid #aaaaaa;
  transform: rotate(-45deg);
  flex-shrink: 0;
}
.re-s4__process-divider {
  margin-right: 0.2rem;
}
.re-s4__process-divider.is-disabled {
  opacity: 0.4;
}
.re-s4__process-add-wrap {
  position: relative;
  min-width: 9rem;
  border-bottom: 0.1rem solid #ddd;
}
.re-s4__process-add-wrap.is-disabled {
  opacity: 0.4;
}
.re-s4__process-add {
  width: 100%;
  min-height: 5rem;
  padding: 0 2rem 0 0;
  border: 0;
  background-color: transparent;
  color: #333;
  font-size: 1.6rem;
  appearance: none;
}
.re-s4__process-add:focus {
  outline: none;
}
.re-s4__process-add:disabled {
  cursor: default;
}
.re-s4__process-select-arrow {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  border-right: 0.2rem solid #aaaaaa;
  border-bottom: 0.2rem solid #aaaaaa;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.c-done-box {
  display: grid;
  height: 100vh;
  padding: 3rem 3rem 10rem;
}
.c-done-box__btn {
  align-self: end;
}
.c-done-box__btn button {
  width: 100%;
  color: #fff;
  display: inline-block;
  border-radius: 1rem;
  text-align: center;
  background-color: #e8485a;
  height: 4.5rem;
}

.c-done {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.c-done__tit {
  font-size: 2.4rem;
  font-weight: 700;
}
.c-done__txt {
  text-align: center;
}
.c-done__img {
  width: 80%;
}

.recruit-news {
  padding: 0 2rem;
}

.news-page__search-select-icon, .news-page__types-icon {
  display: block;
  width: 1.8rem;
  height: 1.6rem;
  background: url("/img/recruit/user/icon/right-arrow.png") no-repeat center/contain;
}
.news-page__search-icon {
  display: block;
  width: 2.2rem;
  height: 2.4rem;
  background: url("/img/recruit/user/icon/search_icon.png") no-repeat center/contain;
}

.faq-page__inners {
  padding: 0 2rem;
}
.faq-page__search-select-icon, .faq-page__load-more-icon {
  display: block;
  width: 1.8rem;
  height: 1.6rem;
  background: url("/img/recruit/user/icon/right-arrow.png") no-repeat center/contain;
}

.faq-card__icon {
  display: block;
  width: 1.8rem;
  height: 1.6rem;
  background: url("/img/recruit/user/icon/right-arrow.png") no-repeat center/contain;
}

.re-job {
  padding: 0 2rem 3rem;
}
.re-job__summary {
  margin-top: 3rem;
  padding: 3rem;
  border: 0.1rem solid #eee;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.re-job__summary--main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 17rem;
  gap: 2rem;
}
.re-job__summary--content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.re-job__summary--company {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.re-job__summary--scrap {
  width: 4.5rem;
  height: 4.5rem;
  background: url("/img/recruit/user/icon/star.png") no-repeat center/2.3rem 2.3rem;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-image 0.2s ease, box-shadow 0.2s ease;
}
.re-job__summary--scrap.is-scrap {
  background-image: url("/img/recruit/user/icon/star_active.png");
}
.re-job__summary--company-name {
  font-size: 1.6rem;
  color: #333;
}
.re-job__summary--title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  word-break: keep-all;
}
.re-job__summary--meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
}
.re-job__summary--meta-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.6rem;
  color: #666;
  word-break: keep-all;
}
.re-job__summary--meta-icon {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.re-job__summary--meta-icon.re-job__summary--meta-icon-bag {
  background-image: url("/img/recruit/user/icon/bag_active_icon.png");
}
.re-job__summary--meta-icon.re-job__summary--meta-icon-calendar {
  background-image: url("/img/recruit/user/icon/building_icon.png");
}
.re-job__summary--details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}
.re-job__summary--detail {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.re-job__summary--detail-head {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.re-job__summary--detail-title {
  flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: #e8485a;
}
.re-job__summary--detail-line {
  width: 100%;
  height: 0.2rem;
  background-color: rgba(232, 72, 90, 0.75);
}
.re-job__summary--detail-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.re-job__summary--detail-row {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 1.8rem;
  align-items: start;
}
.re-job__summary--detail-row dt {
  font-size: 1.6rem;
  color: #666;
}
.re-job__summary--detail-row dd {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  word-break: keep-all;
}
.re-job__summary--aside {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.re-job__summary--action {
  width: 100%;
  height: 5rem;
  padding: 1.6rem 1.8rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.6rem;
  font-weight: 400;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.re-job__summary--action:focus-visible, .re-job__summary--action:active {
  outline: none;
  transform: translateY(0.1rem);
}
@media (hover: hover) and (pointer: fine) {
  .re-job__summary--action:hover {
    transform: translateY(-0.2rem);
  }
}
.re-job__summary--shareicon {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  color: #fff;
}
.re-job__summary--action-apply {
  background-color: #e8485a;
  color: #fff;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.re-job__summary--action-share {
  background-color: #aaaaaa;
  color: #fff;
}
.re-job__summary--report {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  align-self: flex-end;
  color: #aaaaaa;
  font-size: 1.6rem;
}
@media (hover: hover) and (pointer: fine) {
  .re-job__summary--report:hover {
    color: #e8485a;
  }
  .re-job__summary--report:hover .re-job__summary--repoticon {
    background-image: url("/img/recruit/user/icon/report_active_icon.png");
  }
}
.re-job__summary--repoticon {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  background: url("/img/recruit/user/icon/report_icon.png") no-repeat center/contain;
}
.re-job__summary--asides {
  display: flex;
  gap: 4rem;
  justify-content: flex-end;
  padding-top: 2rem;
}
.re-job__summary--asides .re-job__summary--action-share,
.re-job__summary--asides .re-job__summary--action-apply {
  max-width: 35rem;
}
.re-job__description {
  margin-top: 4rem;
}
.re-job__description--copy {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.6rem;
  color: #000;
  word-break: keep-all;
}
.re-job__description--copy p {
  line-height: 2;
}
.re-job__description--title, .re-job__contact--title, .re-job__company--title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}
.re-job__box {
  margin-top: 2.6rem;
  padding: 2.8rem;
  border: 0.1rem solid #ececec;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}
.re-job__box--section {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.re-job__box--section + .re-job__box--section {
  padding-top: 2.4rem;
  border-top: 0.1rem solid #ececec;
}
.re-job__box--head {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.re-job__box--title {
  flex-shrink: 0;
  font-size: 1.8rem;
  font-weight: 600;
  color: #e8485a;
}
.re-job__box--line {
  width: 100%;
  height: 0.2rem;
  background-color: rgba(232, 72, 90, 0.75);
}
.re-job__box--grid {
  display: grid;
  gap: 2rem;
}
.re-job__box--grid-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.re-job__box--grid-summary .re-job__box--grid-row:last-child {
  grid-column: 2/span 2;
}
.re-job__box--grid-row {
  display: grid;
  grid-template-columns: 8.6rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
.re-job__box--grid-row dt {
  font-size: 1.6rem;
  color: #666;
}
.re-job__box--grid-row dd {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  word-break: keep-all;
}
.re-job__box--table {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.re-job__box--table-row {
  display: grid;
  grid-template-columns: 13rem minmax(0, 1fr);
  gap: 2.4rem;
  align-items: start;
}
.re-job__box--table-row dt {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
}
.re-job__box--table-row dd {
  font-size: 1.6rem;
  color: #666;
  word-break: keep-all;
}
.re-job__box--table-rows {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.re-job__box--table-rows dt {
  min-width: 6rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  word-break: keep-all;
}
.re-job__box--table-rows dd {
  font-size: 1.6rem;
  color: #666;
  word-break: keep-all;
}
.re-job__box--table-compact {
  display: flex;
  flex-direction: row;
  gap: 1.8rem 2.4rem;
}
.re-job__box--table-compact .re-job__box--table-row {
  gap: 1.8rem;
}
.re-job__box--note {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.re-job__box--note-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
}
.re-job__box--copy, .re-job__box--note-copy {
  font-size: 1.6rem;
  color: #666;
  word-break: keep-all;
}
.re-job__contact {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.re-job__contact--table {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.re-job__contact--row {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr) 8rem minmax(0, 1fr);
  gap: 1.8rem 2.8rem;
  align-items: start;
}
.re-job__contact--row dt {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  word-break: keep-all;
}
.re-job__contact--row dd {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.8rem 1.4rem;
  font-size: 1.6rem;
  color: #666;
  word-break: keep-all;
}
.re-job__contact--row dd small {
  font-size: 1.4rem;
  color: #aaaaaa;
}
.re-job__company {
  margin-top: 4.8rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.re-job__company--card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.6rem 4rem;
  align-items: start;
}
.re-job__company--brand {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.re-job__company--logo {
  width: 14rem;
  height: 5rem;
  padding: 1rem;
  border: 0.1rem solid #eee;
  border-radius: 1rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.re-job__company--logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.re-job__company--name {
  color: #333;
  word-break: keep-all;
}
.re-job__company--meta, .re-job__company--info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.re-job__company--meta-row, .re-job__company--info-row {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
}
.re-job__company--meta-row dt, .re-job__company--info-row dt {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
}
.re-job__company--meta-row dd, .re-job__company--info-row dd {
  font-size: 1.6rem;
  color: #666;
  word-break: keep-all;
}
.re-job__company--meta-row a, .re-job__company--info-row a {
  color: #333;
  text-decoration: none;
}
.re-job__company--meta-row a:focus-visible, .re-job__company--meta-row a:active, .re-job__company--info-row a:focus-visible, .re-job__company--info-row a:active {
  color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .re-job__company--meta-row a:hover, .re-job__company--info-row a:hover {
    color: #e8485a;
  }
}
.re-job__company--link {
  align-self: end;
  justify-self: start;
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  align-self: end;
}
.re-job__company--link:focus-visible, .re-job__company--link:active {
  color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .re-job__company--link:hover {
    color: #e8485a;
  }
}
.re-job .re-apply-sheet {
  position: fixed;
  inset: 0;
  z-index: 10;
  height: 100%;
  display: none;
}
.re-job .re-apply-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
}
.re-job .re-apply-sheet__flex {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.re-job .re-apply-sheet__dialog {
  z-index: 20;
  padding: 3rem;
  border-radius: 1rem;
  background: #fff;
}
.re-job .re-apply-sheet__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  margin-bottom: 1rem;
}
.re-job .re-apply-sheet__title {
  color: #333;
  font-size: 2rem;
  font-weight: 600;
}
.re-job .re-apply-sheet__close {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  transform: translateY(-50%);
}
.re-job .re-apply-sheet__close span {
  width: 2.2rem;
  height: 2.2rem;
  background: url("/img/recruit/user/icon/close.png") no-repeat center/contain;
}
@media (hover: hover) and (pointer: fine) {
  .re-job .re-apply-sheet__close:hover span {
    background-image: url("/img/recruit/user/icon/close_active.png");
  }
}
.re-job .re-apply-sheet__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.re-job .re-apply-sheet__category, .re-job .re-apply-sheet__job-title, .re-job .re-apply-sheet__label, .re-job .re-apply-sheet__value, .re-job .re-apply-sheet__summary, .re-job .re-apply-sheet__submit {
  word-break: keep-all;
}
.re-job .re-apply-sheet__category, .re-job .re-apply-sheet__job-title {
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
}
.re-job .re-apply-sheet__field {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.re-job .re-apply-sheet__label {
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
}
.re-job .re-apply-sheet__value {
  display: flex;
  align-items: center;
  min-height: 5.8rem;
  padding: 1rem 1.8rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  color: #333;
  font-size: 1.6rem;
}
.re-job .re-apply-sheet__summary {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  color: #666;
  font-size: 1.6rem;
  border-radius: 1rem;
  border: 1px solid #ddd;
}
.re-job .re-apply-sheet__summary-arrow {
  position: relative;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.re-job .re-apply-sheet__summary-arrow::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 0.9rem;
  height: 0.9rem;
  border-right: 0.2rem solid #666;
  border-bottom: 0.2rem solid #666;
  transform: translate(-50%, -50%) rotate(45deg);
}
.re-job .re-apply-sheet__resume {
  margin-top: 0.6rem;
}
.re-job .re-apply-sheet__resume .re-my-content__list--flex {
  display: none;
}
.re-job .re-apply-sheet__resume .re-my__list {
  box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.04);
}
.re-job .re-apply-sheet__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5.8rem;
  margin-top: 2.8rem;
  border-radius: 1rem;
  background: #e8485a;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (hover: hover) and (pointer: fine) {
  .re-job .re-apply-sheet__submit:hover {
    background: rgba(232, 72, 93, 0.7803921569);
  }
}
.re-job .re-my-content {
  display: none;
  width: 100%;
}
.re-job .re-my-content__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 2rem;
}
.re-job .re-my-content__top--box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.re-job .re-my-content__top--btn {
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #666;
  gap: 2rem;
}
@media (hover: hover) and (pointer: fine) {
  .re-job .re-my-content__top--btn:hover {
    color: #e8485a;
  }
  .re-job .re-my-content__top--btn:hover .re-my-content__top--icon {
    background-image: url("/img/recruit/user/icon/delete_active_icon.png");
  }
}
.re-job .re-my-content__top--icon {
  width: 1.8rem;
  height: 1.8rem;
  background: url("/img/recruit/user/icon/delete_icon.png") no-repeat center/contain;
}
.re-job .re-my-content__tit {
  font-size: 2.4rem;
  font-weight: 600;
  color: #333;
}
.re-job .re-my-content__count {
  color: #666;
}
.re-job .re-my-content__btn {
  width: 350px;
  display: inline;
  color: #fff;
  background-color: #e8485a;
  text-align: center;
  padding: 1.5rem 0;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
}
.re-job .re-my-content__middle {
  border-top: 1px solid #ddd;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.re-job .re-my-content__middle--apply {
  border-top: 0;
  padding-top: 2.4rem;
  gap: 3rem;
}
.re-job .re-my-content__apply-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.re-job .re-my-content__apply-summary {
  display: inline-flex;
  align-items: center;
  height: 5.5rem;
  padding: 2rem 3rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.re-job .re-my-content__apply-summary--item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: transparent;
  color: #666;
  font-size: 1.4rem;
  white-space: nowrap;
}
.re-job .re-my-content__apply-summary--item:first-child {
  padding-left: 0;
}
.re-job .re-my-content__apply-summary--item:last-child {
  padding-right: 0;
}
.re-job .re-my-content__apply-summary--item:last-child::after {
  display: none;
}
.re-job .re-my-content__apply-summary--item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.1rem;
  height: 4rem;
  background: #ddd;
  transform: translateY(-50%);
}
.re-job .re-my-content__apply-summary--item.is-active {
  color: #e8485a;
}
.re-job .re-my-content__apply-summary--label {
  line-height: 1;
}
.re-job .re-my-content__apply-summary--count {
  font-size: 1.6rem;
  font-weight: 500;
}
.re-job .re-my-content__apply-sort {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
  padding-top: 2rem;
  flex-shrink: 0;
}
.re-job .re-my-content__apply-sort--btn {
  background: transparent;
  color: #666;
  font-size: 1.4rem;
}
.re-job .re-my-content__apply-sort--btn.is-active {
  color: #e8485a;
}
.re-job .re-my-content__apply-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.re-job .re-my-content__apply-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
  padding: 2rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.re-job .re-my-content__apply-card--top {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}
.re-job .re-my-content__apply-card--badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4.5rem;
  padding: 1rem;
  border-radius: 1rem;
  font-size: 1.4rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.re-job .re-my-content__apply-card--badge-ended {
  border: 1px solid #eee;
  color: #aaaaaa;
  background: #fff;
}
.re-job .re-my-content__apply-card--badge-ongoing {
  color: #fff;
  background: #e8485a;
}
.re-job .re-my-content__apply-card--titlebox {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  padding-top: 0.5rem;
}
.re-job .re-my-content__apply-card--title {
  color: #333;
  font-size: 1.6rem;
  font-weight: 600;
  word-break: keep-all;
}
.re-job .re-my-content__apply-card--date {
  color: #666;
  font-size: 1.4rem;
}
.re-job .re-my-content__apply-card--actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.re-job .re-my-content__apply-card--action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 4.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background: #fff;
  color: #666;
  font-size: 1.4rem;
  text-align: center;
  word-break: keep-all;
}
.re-job .re-my-content__apply-card--action:focus-visible, .re-job .re-my-content__apply-card--action:active {
  color: #e8485a;
  border-color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .re-job .re-my-content__apply-card--action:hover {
    color: #e8485a;
    border-color: #e8485a;
  }
}
.re-job .re-my-content__apply-card--action-danger {
  color: #e8485a;
  border-color: #e8485a;
}
.re-job .re-my-content__apply-card--action-danger:focus-visible, .re-job .re-my-content__apply-card--action-danger:active {
  color: #fff;
  background: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .re-job .re-my-content__apply-card--action-danger:hover {
    color: #fff;
    background: #e8485a;
  }
}
.re-job .re-my-content__apply-card--select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  min-height: 4.5rem;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background: #fff;
  color: #333;
  font-size: 1.6rem;
  word-break: keep-all;
}
.re-job .re-my-content__apply-card--select:focus-visible, .re-job .re-my-content__apply-card--select:active {
  color: #e8485a;
  border-color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .re-job .re-my-content__apply-card--select:hover {
    color: #e8485a;
    border-color: #e8485a;
  }
}
.re-job .re-my-content__apply-card--select-disabled {
  border-color: #ddd;
  background: #ddd;
  color: #aaaaaa;
  cursor: default;
  pointer-events: none;
}
.re-job .re-my-content__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 2rem 2rem;
  background: #fff;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  border: 0.1rem solid #ddd;
}
.re-job .re-my-content__list--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.re-job .re-my-content__list--info {
  display: flex;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
  font-size: 1.4rem;
  gap: 0.5rem;
  color: #666;
}
.re-job .re-my-content__list--txt {
  color: #666;
}
.re-job .re-my-content__list--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}
.re-job .re-my-content__list--tit {
  width: 100%;
  color: #333;
  font-weight: 700;
  white-space: normal;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.re-job .re-my-content__list--name {
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
}
.re-job .re-my-content__list--edit {
  flex-shrink: 0;
  color: #aaaaaa;
  font-size: 1.4rem;
  border: 1px solid #aaa;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  padding: 1rem;
}
.re-job .re-my-content__list--badge {
  flex-shrink: 0;
  color: #e8485a;
  font-size: 1.4rem;
}
.re-job .re-my-content__list--flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.re-job .re-my-content__more {
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}
.re-job .re-my-content__more span {
  width: 1.8rem;
  height: 1.8rem;
  background: url("/img/recruit/user/icon/more_icon.png") no-repeat center/contain;
}
.re-job .re-my-content__more:focus-visible span, .re-job .re-my-content__more:active span {
  background-image: url("/img/recruit/user/icon/more_active_icon.png");
}
.re-job .re-my-content__menu {
  position: absolute;
  top: 2.4rem;
  right: 1rem;
  z-index: 5;
  display: none;
  flex-direction: column;
  min-width: 17rem;
  padding: 1rem;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.08);
  transform-origin: top right;
}
.re-job .re-my-content__menu-item {
  width: 100%;
  padding: 1rem;
  color: #666;
  font-size: 1.6rem;
  text-align: left;
  white-space: nowrap;
}
.re-job .re-my-content__menu-item:focus-visible, .re-job .re-my-content__menu-item:active {
  color: #e8485a;
  background: rgba(232, 72, 90, 0.05);
}
@media (hover: hover) and (pointer: fine) {
  .re-job .re-my-content__menu-item:hover {
    color: #e8485a;
    background: rgba(232, 72, 90, 0.05);
  }
}
.re-job .re-my-content__actions {
  position: relative;
  flex-shrink: 0;
}
.re-job .re-my-content__actions.is-open .re-my-content__menu {
  display: flex;
}
.re-job .re-my-content__actions.is-open .re-my-content__more span {
  background-image: url("/img/recruit/user/icon/more_active_icon.png");
}
.re-job .re-my-content__more {
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}
.re-job .re-my-content__more span {
  width: 1.8rem;
  height: 1.8rem;
  background: url("/img/recruit/user/icon/more_icon.png") no-repeat center/contain;
}
.re-job .re-my-content__more:focus-visible span, .re-job .re-my-content__more:active span {
  background-image: url("/img/recruit/user/icon/more_active_icon.png");
}
.re-job .re-my-content .re-bg-eee {
  background-color: #eee;
  font-weight: 600;
  min-height: 5rem;
}
.re-job .re-my-content .re-bord-eee {
  border: 1px solid #ddd;
  min-height: 10rem;
  margin-bottom: 1rem;
}
.re-job .re-my-content__lists {
  display: grid;
  grid-template-columns: 55px 120px 1fr 120px 100px 100px;
  align-items: center;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
}
.re-job .re-my-content__lists--check {
  cursor: pointer;
}
.re-job .re-my-content__lists--check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.re-job .re-my-content__lists--check span {
  width: 55px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
}
.re-job .re-my-content__lists--check span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 35%;
  width: 2rem;
  height: 2rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  background-color: #fff;
  transform: translateY(-50%);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.re-job .re-my-content__lists--check input:checked + span {
  border-color: rgba(232, 72, 90, 0.45);
  color: #333;
}
.re-job .re-my-content__lists--check input:checked + span::before {
  border-color: #e8485a;
  background-color: #e8485a;
  box-shadow: inset 0 0 0 0.6rem #fff;
}
.re-job .re-my-content__lists--date, .re-job .re-my-content__lists--end, .re-job .re-my-content__lists--status {
  font-size: 1.4rem;
}
.re-job .re-my-content__lists--btn button {
  color: #aaaaaa;
  font-size: 1.4rem;
  border: 1px solid #aaaaaa;
  padding: 1rem;
  border-radius: 1rem;
}
@media (hover: hover) and (pointer: fine) {
  .re-job .re-my-content__lists--btn button:hover {
    color: #333;
    border: 1px solid #333;
  }
}
.re-job .re-my-content__lists--apply-btn button {
  color: #e8485a;
  border: 1px solid #e8485a;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  padding: 1rem;
}
@media (hover: hover) and (pointer: fine) {
  .re-job .re-my-content__lists--apply-btn button:hover {
    color: #fff;
    background-color: #e8485a;
  }
}
.re-job .re-my-content__lists .re-my-justify-self {
  justify-self: center;
}
.re-job .re-my-content__lists--scrab {
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  justify-self: center;
}
.re-job .re-my-content__lists--scrab button {
  width: 2rem;
  height: 2rem;
  background: url("/img/recruit/user/icon/star_active.png") no-repeat center/contain;
}
.re-job .re-my-content__infopage {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.re-job .re-my-content__infopage[hidden] {
  display: none !important;
}
.re-job .re-my-content .my-info-page {
  width: 430px;
  min-height: 650px;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
}
.re-job .re-my-content .my-info-page .mo-notice-style {
  padding: 0;
}
.re-job .re-my-content .my-info-page .mo-mail-txt {
  padding: 1rem 0;
}
.re-job .re-my-content__setting-back {
  width: 100%;
  padding: 2rem 0;
  border-bottom: 1px solid #ddd;
  color: #666;
  text-align: left;
}
.re-job .re-my-content__setting-back-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.8rem;
}
.re-job .re-my-content__combox {
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9rem;
}
.re-job .re-my-content__combox--textbox {
  padding-bottom: 3rem;
}
.re-job .re-my-content__combox--txt {
  font-size: 2.4rem;
  font-weight: 600;
  padding-top: 40px;
}
.re-job .re-my-content__combox--btnbox {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.re-job .re-my-content__job-btn {
  height: 8rem;
  border-radius: 1rem;
  width: 230px;
  background-color: #e8485a;
  color: #fff;
}
.re-job .re-my-content__job-btn:focus-visible, .re-job .re-my-content__job-btn:active {
  color: #e8485a;
  background-color: #fff;
  border: 1px solid #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .re-job .re-my-content__job-btn:hover {
    color: #e8485a;
    background-color: #fff;
    border: 1px solid #e8485a;
  }
}
.re-job .re-my-content__move-apply {
  height: 8rem;
  border-radius: 1rem;
  width: 230px;
  border: 1px solid #e8485a;
  color: #e8485a;
}
.re-job .re-my-content__move-apply:focus-visible, .re-job .re-my-content__move-apply:active {
  background-color: rgba(232, 72, 93, 0.5);
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .re-job .re-my-content__move-apply:hover {
    background-color: rgba(232, 72, 93, 0.5);
    color: #fff;
  }
}
.re-job .re-my-content.is-open {
  display: block;
}

.jobapply {
  width: 100%;
  border-top: 0.1rem solid #ddd;
  background-color: #fff;
}
.jobapply__layout {
  max-width: 128rem;
  min-height: calc(100vh - 22rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 22rem minmax(0, 1fr);
}
.jobapply__sidebar {
  border: 1px solid #ddd;
  border-top: 0;
  background-color: #fff;
}
.jobapply__sidebar--search {
  height: 5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  border-bottom: 0.1rem solid #ddd;
}
.jobapply__sidebar--search-icon {
  width: 4rem;
  height: 4rem;
  background: url("/img/recruit/user/icon/search_icon.png") no-repeat center/2.3rem 2.3rem;
}
.jobapply__sidebar--search-input {
  width: 100%;
  border: 0;
  background-color: transparent;
  color: #333;
  font-size: 1.4rem;
}
.jobapply__sidebar--search-input::placeholder {
  color: #aaaaaa;
}
.jobapply__sidebar--search-input:focus {
  outline: none;
}
.jobapply__sidebar--body {
  padding: 2rem;
}
.jobapply__sidebar--title {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
}
.jobapply__sidebar--list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.jobapply__sidebar--item button {
  font-size: 1.4rem;
  color: #333;
  text-align: left;
  word-break: keep-all;
}
.jobapply__sidebar--item.is-active button {
  color: #e8485a;
  font-weight: 600;
}
@media (hover: hover) and (pointer: fine) {
  .jobapply__sidebar--item:hover button {
    color: #e8485a;
  }
}
.jobapply__content {
  padding: 2rem;
}
.jobapply__content--head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.jobapply__content--title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #333;
  word-break: keep-all;
}
.jobapply__toolbar {
  margin-top: 2.8rem;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.jobapply__toolbar--actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
  flex: 1 1 auto;
}
.jobapply__toolbar--sort, .jobapply__toolbar--delete {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  color: #666;
  white-space: nowrap;
  border: none;
}
.jobapply__toolbar--sort:focus-visible, .jobapply__toolbar--sort:active, .jobapply__toolbar--delete:focus-visible, .jobapply__toolbar--delete:active {
  color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .jobapply__toolbar--sort:hover, .jobapply__toolbar--delete:hover {
    color: #e8485a;
  }
  .jobapply__toolbar--sort:hover .jobapply__toolbar--deleteicon, .jobapply__toolbar--delete:hover .jobapply__toolbar--deleteicon {
    background-image: url("/img/recruit/user/icon/delete_active_icon.png");
  }
}
.jobapply__toolbar--deleteicon {
  width: 2.2rem;
  height: 2.2rem;
  background: url("/img/recruit/user/icon/delete_icon.png") no-repeat center/1.6rem 1.8rem;
}
.jobapply__summary {
  display: inline-flex;
  align-items: center;
  padding: 0 1.2rem;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.jobapply__summary--item {
  position: relative;
  min-width: 10.8rem;
  height: 5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1.8rem;
  font-size: 1.6rem;
  color: #666;
}
.jobapply__summary--item + .jobapply__summary--item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.1rem;
  height: 3.2rem;
  background-color: #ddd;
  transform: translateY(-50%);
}
.jobapply__summary--item.is-active .jobapply__summary--label,
.jobapply__summary--item.is-active .jobapply__summary--count {
  color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .jobapply__summary--item:hover .jobapply__summary--label,
  .jobapply__summary--item:hover .jobapply__summary--count {
    color: #e8485a;
  }
}
.jobapply__summary--label {
  color: #666;
}
.jobapply__summary--count {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
}
.jobapply__table {
  margin-top: 1.2rem;
}
.jobapply__table--head {
  display: grid;
  grid-template-columns: minmax(20rem, 26rem) minmax(26rem, 1fr) 17rem 9rem 5rem;
  align-items: center;
  column-gap: 1rem;
  min-height: 5rem;
  padding: 0 2rem;
  border-radius: 1rem;
  background-color: #eee;
}
.jobapply__table--row {
  display: grid;
  grid-template-columns: 1fr 5rem;
  align-items: center;
  column-gap: 1rem;
  min-height: 10.6rem;
  padding: 1.8rem 2.2rem;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (hover: hover) and (pointer: fine) {
  .jobapply__table--row:hover {
    box-shadow: 0 0 10px rgba(232, 72, 90, 0.3);
  }
}
.jobapply__table--inner {
  display: grid;
  grid-template-columns: minmax(20rem, 26rem) minmax(26rem, 1fr) 17rem 9rem;
  align-items: center;
  column-gap: 1rem;
  cursor: pointer;
}
.jobapply__table--head-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
}
.jobapply__table--body {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.jobapply__table--check {
  width: 2rem;
  height: 2rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.jobapply__table--check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.jobapply__table--check span {
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid #ddd;
  border-radius: 0.6rem;
  background-color: #fff;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.jobapply__table--check span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.6rem;
  height: 1.1rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  transform: translate(-50%, -60%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.jobapply__table--check input:checked + span {
  border-color: #e8485a;
  background-color: #e8485a;
}
.jobapply__table--check input:checked + span::after {
  opacity: 1;
}
.jobapply__table--candidate {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.jobapply__table--thumb {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 1rem;
  background-color: rgba(0, 0, 0, 0.04);
  overflow: hidden;
  flex-shrink: 0;
}
.jobapply__table--thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jobapply__table--person {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 0;
}
.jobapply__table--name {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
}
.jobapply__table--meta {
  font-size: 1.4rem;
  color: #666;
}
.jobapply__table--resume {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.jobapply__table--resume-text, .jobapply__table--date, .jobapply__table--status {
  font-size: 1.4rem;
  color: #666;
  word-break: keep-all;
}
.jobapply__table--date {
  white-space: nowrap;
}
.jobapply__table--status {
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}
.jobapply__table--status.is-unread {
  color: #e8485a;
}
.jobapply__table--bookmark {
  position: relative;
  width: 1.8rem;
  height: 2.4rem;
  justify-self: center;
}
.jobapply__table--bookmarkicon {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  background: url("/img/recruit/user/icon/bookmark_icon.png") no-repeat center/2rem 2.2rem;
}
.jobapply__table--bookmarkicon.is-active {
  background-image: url("/img/recruit/user/icon/bookmark_active_icon.png");
}
.jobapply__pagination {
  margin-top: 7.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}
.jobapply__pagination--arrow, .jobapply__pagination--link {
  min-width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #666;
}
.jobapply__pagination--arrow:focus-visible, .jobapply__pagination--arrow:active, .jobapply__pagination--link:focus-visible, .jobapply__pagination--link:active {
  color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .jobapply__pagination--arrow:hover, .jobapply__pagination--link:hover {
    color: #e8485a;
  }
}
.jobapply__pagination--arrow i {
  font-size: 2.4rem;
}
.jobapply__pagination--link.is-active {
  color: #e8485a;
}
.jobapply__blank {
  height: 35rem;
  margin-top: 2.4rem;
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  line-height: 2;
}
.jobapply__blank p {
  color: #666;
  font-size: 1.8rem;
}
.jobapply__blank a {
  color: #aaaaaa;
}
@media (hover: hover) and (pointer: fine) {
  .jobapply__blank a:hover {
    color: #e8485a;
  }
}

.mo-job {
  padding: 2rem 0;
}
.mo-job__filter {
  padding: 0 2rem;
}
.mo-job__filter--twrap {
  width: 100%;
  border-radius: 1rem;
  background-color: #fff;
  border: 1px solid #eee;
  padding: 1rem;
  display: flex;
  align-items: center;
}
.mo-job__filter--trigger {
  min-height: 4.5rem;
  width: 98%;
  border: none;
  gap: 1rem;
  text-align: left;
  outline: none;
}
.mo-job__filter--label {
  flex-shrink: 0;
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 1rem;
}
.mo-job__toolbar {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.mo-job__toolbar--sort {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  color: #666;
  white-space: nowrap;
  border: none;
}
.mo-job__toolbar--sort:focus-visible, .mo-job__toolbar--sort:active {
  color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .mo-job__toolbar--sort:hover {
    color: #e8485a;
  }
}
.mo-job__list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mo-job__card {
  position: relative;
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  padding: 2rem;
  gap: 2rem;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.mo-job__card--bookmark {
  position: relative;
  width: 1.8rem;
  height: 2.4rem;
  justify-self: center;
}
.mo-job__card--bookmark:focus-visible .mo-job__card--bookmarkicon, .mo-job__card--bookmark:active .mo-job__card--bookmarkicon {
  background-image: url("/img/recruit/user/icon/bookmark_active_icon.png");
}
.mo-job__card--bookmark:focus-visible .mo-job__card--bookmarkicon.is-active, .mo-job__card--bookmark:active .mo-job__card--bookmarkicon.is-active {
  background-image: url("/img/recruit/user/icon/bookmark_icon.png");
}
@media (hover: hover) and (pointer: fine) {
  .mo-job__card--bookmark:hover .mo-job__card--bookmarkicon {
    background-image: url("/img/recruit/user/icon/bookmark_active_icon.png");
  }
  .mo-job__card--bookmark:hover .mo-job__card--bookmarkicon.is-active {
    background-image: url("/img/recruit/user/icon/bookmark_icon.png");
  }
}
.mo-job__card--bookmarkicon {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  background: url("/img/recruit/user/icon/bookmark_icon.png") no-repeat center/2rem 2.2rem;
}
.mo-job__card--bookmarkicon.is-active {
  background-image: url("/img/recruit/user/icon/bookmark_active_icon.png");
}
.mo-job__card--body {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.mo-job__card--thumb {
  width: 6.6rem;
  height: 6.6rem;
  border-radius: 1rem;
  overflow: hidden;
  flex-shrink: 0;
}
.mo-job__card--thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mo-job__card--content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mo-job__card--head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.mo-job__card--name {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
}
.mo-job__card--meta, .mo-job__card--spec, .mo-job__card--company, .mo-job__card--date, .mo-job__card--status {
  font-size: 1.4rem;
  color: #666;
  word-break: keep-all;
}
.mo-job__card--company span {
  color: #333;
}
.mo-job__card--foot {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.mo-job__card--date {
  white-space: nowrap;
}
.mo-job__card--status {
  white-space: nowrap;
}
.mo-job__card--status.is-unread {
  color: #e8485a;
}

.applicant-page {
  background-color: rgba(0, 0, 0, 0.02);
}

.applicant__resume--head {
  min-height: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.applicant__resume--back {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  color: #aaaaaa;
}
.applicant__resume--back:focus-visible, .applicant__resume--back:active {
  color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .applicant__resume--back:hover {
    color: #e8485a;
  }
  .applicant__resume--back:hover .applicant__resume--larrow {
    background-image: url("/img/recruit/user/icon/right-arrow_active.png");
  }
}
.applicant__resume--larrow {
  display: block;
  width: 4rem;
  height: 4rem;
  background: url("/img/recruit/user/icon/right-arrow.png") no-repeat center/2rem 2rem;
  transform: rotate(180deg);
}
.applicant__resume--rarrow {
  display: block;
  width: 4rem;
  height: 4rem;
  background: url("/img/recruit/user/icon/right-arrow.png") no-repeat center/2rem 2rem;
}
.applicant__resume--here {
  color: #333;
  cursor: default;
}
.applicant__resume--pager {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 1.6rem;
  white-space: nowrap;
}
.applicant__resume--pager button {
  color: inherit;
  font-size: 1.6rem;
  color: #aaaaaa;
}
.applicant__resume--pager button:focus-visible, .applicant__resume--pager button:active {
  color: #e8485a;
}
.applicant__resume--summary {
  border-top: 0.1rem solid #ddd;
  border-bottom: 0.1rem solid #ddd;
  background-color: #fff;
}
.applicant__resume--summary-inner {
  position: relative;
  min-height: 10.4rem;
  display: grid;
  grid-template-columns: minmax(19rem, 22rem) minmax(0, 1fr) auto;
  gap: 2.8rem;
  align-items: center;
}
.applicant__resume--headline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.applicant__resume--bookmark {
  position: relative;
  width: 1.8rem;
  height: 2.4rem;
  justify-self: center;
}
.applicant__resume--bookmarkicon {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  background: url("/img/recruit/user/icon/bookmark_icon.png") no-repeat center/2rem 2.2rem;
}
.applicant__resume--bookmarkicon.is-active {
  background-image: url("/img/recruit/user/icon/bookmark_active_icon.png");
}
.applicant__resume--person {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.applicant__resume--person div {
  font-size: 2.4rem;
  font-weight: 600;
}
.applicant__resume--meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 0.5rem;
}
.applicant__resume--meta-mobile, .applicant__resume--meta-envelope, .applicant__resume--meta-home {
  display: block;
  width: 2rem;
  height: 2rem;
}
.applicant__resume--meta-mobile {
  background: url("/img/recruit/user/icon/phone_icon.png") no-repeat center/contain;
}
.applicant__resume--meta-envelope {
  background: url("/img/recruit/user/icon/mail_icon.png") no-repeat center/contain;
}
.applicant__resume--meta-home {
  background: url("/img/recruit/user/icon/home_icon.png") no-repeat center/contain;
}
.applicant__resume--meta-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  color: #666;
  word-break: keep-all;
}
.applicant__resume--actions {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.applicant__resume--actions button {
  min-height: 4.4rem;
  border: 1px solid #ddd;
  padding: 0 1rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  color: #666;
  background-color: #fff;
}
.applicant__resume--actions button:last-child {
  width: 5.8rem;
  padding: 0;
}
.applicant__resume--actions button:focus-visible, .applicant__resume--actions button:active {
  border-color: #e8485a;
  color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .applicant__resume--actions button:hover {
    box-shadow: 0 0 5px rgba(232, 72, 90, 0.2);
  }
}
.applicant__resume--print {
  display: block;
  width: 2rem;
  height: 2rem;
  background: url("/img/recruit/user/icon/print_icon.png") no-repeat center/contain;
}
.applicant__resume--body {
  padding-top: 3rem;
}
.applicant__resume--more {
  display: block;
  width: 2rem;
  height: 2rem;
  background: url("/img/recruit/user/icon/more_icon.png") no-repeat center/contain;
}
.applicant__resume--tit {
  padding: 1rem 0;
  font-size: 2.2rem;
  font-weight: 600;
}
.applicant__panel {
  padding: 3rem;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.applicant__panel--topline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  font-size: 1.4rem;
  color: #666;
}
.applicant__hero {
  display: grid;
  grid-template-columns: 12.8rem minmax(0, 1fr);
  gap: 3rem;
  padding: 2rem 0;
  border-bottom: 0.1rem solid #ddd;
}
.applicant__hero--photo {
  width: 12.8rem;
  height: 16.4rem;
  border-radius: 1rem;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.04);
}
.applicant__hero--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.applicant__hero--content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
.applicant__hero--name-row {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.applicant__hero--name-row h3 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #333;
}
.applicant__hero--name-row span {
  font-size: 1.6rem;
  font-weight: 600;
  color: #e8485a;
}
.applicant__hero--meta {
  font-size: 1.4rem;
  color: #666;
}
.applicant__hero--info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.6rem;
}
.applicant__hero--info-item, .applicant__hero--address {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  color: #666;
  word-break: keep-all;
}
.applicant__hero--info-item strong, .applicant__hero--address strong {
  color: #333;
  font-weight: 600;
}
.applicant__hero--info-item-email {
  min-width: 30rem;
}
.applicant__hero--address {
  flex-wrap: wrap;
}
.applicant__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
  padding: 2.2rem 0;
  border-bottom: 0.2rem solid #333;
}
.applicant__stats--item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  color: #666;
  word-break: keep-all;
}
.applicant__stats--briefcase {
  display: block;
  width: 2rem;
  height: 2rem;
  background: url("/img/recruit/user/icon/bag_icon.png") no-repeat center/contain;
}
.applicant__stats--bill {
  display: block;
  width: 2rem;
  height: 2rem;
  background: url("/img/recruit/user/icon/money_icon.png") no-repeat center/contain;
}
.applicant__section + .applicant__section {
  margin-top: 3rem;
  border-top: 0.2rem solid #333;
}
.applicant__section--head {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 2rem 0;
  border-bottom: 0.1rem solid #ddd;
}
.applicant__section--head h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #333;
}
.applicant__section--head span {
  font-size: 1.6rem;
  color: #666;
}
.applicant__timeline--item {
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr);
  gap: 4rem;
  padding: 2rem 0;
  border-bottom: 0.1rem solid #ddd;
}
.applicant__timeline--period {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.applicant__timeline--period span {
  font-size: 1.6rem;
  color: #666;
}
.applicant__timeline--content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.applicant__timeline--heading {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.applicant__timeline--heading strong,
.applicant__timeline--heading span {
  font-size: 1.6rem;
}
.applicant__timeline--heading strong {
  color: #333;
  font-weight: 600;
}
.applicant__timeline--heading span {
  color: #666;
}
.applicant__timeline--copy {
  font-size: 1.6rem;
  color: #666;
  word-break: keep-all;
}
.applicant__timeline--meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.applicant__timeline--meta span {
  font-size: 1.6rem;
  color: #666;
}
.applicant__records--item {
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr);
  gap: 4rem;
  padding: 2rem 0;
  border-bottom: 0.1rem solid #ddd;
}
.applicant__records--period {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.applicant__records--period span {
  font-size: 1.6rem;
  color: #666;
}
.applicant__records--content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.applicant__records--content strong,
.applicant__records--content span {
  font-size: 1.6rem;
}
.applicant__records--content strong {
  color: #333;
  font-weight: 600;
}
.applicant__records--content span {
  color: #666;
}
.applicant__records--content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 21rem;
  gap: 2.4rem;
}
.applicant__records--content-grid > div {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.applicant__table--row {
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr);
  gap: 4rem;
  padding: 2rem 0;
  border-bottom: 0.1rem solid #ddd;
}
.applicant__table--row div {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.applicant__table--row span,
.applicant__table--row strong {
  font-size: 1.6rem;
  color: #666;
}
.applicant__table--row strong {
  color: #333;
  font-weight: 600;
}
.applicant__activity {
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr);
  gap: 4rem;
  padding: 2rem 0;
}
.applicant__activity--heading strong, .applicant__activity--heading span, .applicant__activity--content p {
  font-size: 1.6rem;
}
.applicant__activity--period span, .applicant__activity--heading span, .applicant__activity--content p {
  color: #666;
}
.applicant__activity--heading {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.6rem;
}
.applicant__activity--heading strong {
  color: #333;
  font-weight: 400;
}
.applicant__activity--content p {
  word-break: keep-all;
}
.applicant__narrative--item {
  padding: 2rem 0;
  border-bottom: 0.1rem solid #ddd;
}
.applicant__narrative--item strong,
.applicant__narrative--item p {
  font-size: 1.6rem;
}
.applicant__narrative--item strong {
  display: block;
  color: #333;
  font-weight: 600;
  margin-bottom: 1.6rem;
}
.applicant__narrative--item p {
  color: #666;
  word-break: keep-all;
}
.applicant__confirm {
  margin: 5rem 0 2rem;
  text-align: center;
}
.applicant__confirm p {
  font-size: 1.6rem;
  color: #666;
}
.applicant__notice {
  width: 100%;
  max-width: 80rem;
  margin: 3rem auto 0;
  text-align: center;
}
.applicant__notice p {
  font-size: 1.4rem;
  color: #666;
  word-break: keep-all;
}
.applicant__small {
  position: absolute;
  width: 14rem;
  top: 6rem;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  z-index: 20;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s ease;
}
.applicant__small.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.applicant__small--flex {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.applicant__small--btn, .applicant__small--close {
  color: #666;
}
@media (hover: hover) and (pointer: fine) {
  .applicant__small--btn:hover, .applicant__small--close:hover {
    color: #e8485a;
  }
}
.applicant__small--close {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  background: url("/img/recruit/user/icon/close.png") no-repeat center/cover;
}
@media (hover: hover) and (pointer: fine) {
  .applicant__small--close:hover {
    background-image: url("/img/recruit/user/icon/close_active.png");
  }
}

@media screen and (max-width: 767px) {
  .re-login__depth--join {
    max-width: 100%;
  }
  .re-join {
    gap: 3rem;
  }
  .re-join__steps {
    gap: 1rem;
    padding: 2rem;
  }
  .re-join__step-icon {
    width: 6.4rem;
    height: 6.4rem;
    background-size: 3rem 3rem;
  }
  .re-join__step-icon--done {
    background-size: 2rem 2rem;
  }
  .re-join__step-label {
    font-size: 1.4rem;
  }
  .re-join__terms {
    gap: 3rem;
  }
  .re-join__item {
    gap: 2rem;
  }
  .re-join__check--headline .re-join__check-copy {
    font-size: 1.6rem;
  }
  .re-join__check-copy {
    font-size: 1.6rem;
  }
  .re-company-join {
    gap: 2.2rem;
  }
  .re-company-join__required {
    font-size: 1.4rem;
  }
  .re-company-join__title {
    font-size: 2.2rem;
  }
  .re-company-join__group {
    padding-top: 1.6rem;
  }
  .re-company-join__label {
    font-size: 1.6rem;
  }
  .re-company-join__hint {
    font-size: 1.2rem;
  }
  .re-company-join__row {
    grid-template-columns: minmax(0, 1fr) 10.8rem;
    gap: 1rem;
  }
  .re-company-join__input, .re-company-join__action, .re-company-join__upload, .re-company-join__actions-btn {
    height: 5.2rem;
    font-size: 1.6rem;
  }
  .re-company-join__actions {
    gap: 1.4rem;
  }
  .pc-only {
    display: none;
  }
  .re-search {
    width: 100%;
  }
  .re-search__move {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 4.6rem;
    padding: 0 1rem;
    border: 0.1rem solid rgba(232, 72, 90, 0.5);
    border-radius: 1rem;
    background-color: #fff;
    font-size: 1.4rem;
    color: #aaaaaa;
  }
  .re-search .search-in {
    margin-top: 2rem;
  }
  .re-job {
    position: relative;
    padding: 0 2rem;
  }
  .re-job__summary {
    margin-top: 2rem;
    padding: 2.2rem;
  }
  .re-job__summary--content {
    gap: 2rem;
  }
  .re-job__summary--company {
    gap: 1rem;
  }
  .re-job__summary--scrap {
    width: 4rem;
    height: 4rem;
  }
  .re-job__summary--company-name {
    font-size: 1.6rem;
  }
  .re-job__summary--title {
    font-size: 1.8rem;
  }
  .re-job__summary--meta {
    gap: 1.2rem;
  }
  .re-job__summary--detail-row {
    grid-template-columns: 5.4rem minmax(0, 1fr);
    gap: 1rem;
  }
  .re-job__summary--asides {
    gap: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .re-job__summary--action {
    min-height: 5rem;
    font-size: 1.4rem;
  }
  .re-job__summary--report {
    font-size: 1.4rem;
    width: 100%;
  }
  .re-job__summary--main, .re-job__summary--details, .re-job__company--card {
    grid-template-columns: minmax(0, 1fr);
  }
  .re-job__summary--meta-item, .re-job__summary--detail-row dt, .re-job__summary--detail-row dd, .re-job__description--copy, .re-job__box--grid-row dt, .re-job__box--grid-row dd, .re-job__box--table-row dt, .re-job__box--table-row dd, .re-job__box--note-title, .re-job__box--copy, .re-job__box--note-copy, .re-job__contact--row dt, .re-job__contact--row dd, .re-job__company--name, .re-job__company--meta-row dt, .re-job__company--meta-row dd, .re-job__company--info-row dt, .re-job__company--info-row dd, .re-job__company--link {
    font-size: 1.5rem;
  }
  .re-job__description--title, .re-job__contact--title, .re-job__company--title {
    font-size: 1.8rem;
  }
  .re-job__box--title, .re-job__summary--detail-title {
    font-size: 1.6rem;
  }
  .re-job__box--grid-row, .re-job__box--table-row, .re-job__box--table-compact .re-job__box--table-row, .re-job__company--meta-row, .re-job__company--info-row {
    grid-template-columns: 8.8rem minmax(0, 1fr);
    gap: 1.2rem;
  }
  .re-job__description {
    margin-top: 3rem;
  }
  .re-job__description--copy {
    margin-top: 1rem;
    font-size: 1.6rem;
    gap: 2rem;
  }
  .re-job__box {
    margin-top: 2rem;
    padding: 2.2rem;
    gap: 2rem;
  }
  .re-job__box--compact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .re-job__box--section {
    gap: 1.4rem;
  }
  .re-job__box--section + .re-job__box--section {
    padding-top: 2rem;
  }
  .re-job__box--head {
    gap: 1rem;
  }
  .re-job__box--table-compact {
    flex-direction: column;
  }
  .re-job__box--grid, .re-job__box--grid-summary {
    grid-template-columns: minmax(0, 1fr);
  }
  .re-job__box--grid-summary .re-job__box--grid-row:last-child {
    grid-column: auto;
  }
  .re-job__contact {
    margin-top: 3.6rem;
    gap: 1.8rem;
  }
  .re-job__contact--table {
    gap: 1.8rem;
  }
  .re-job__contact--row {
    grid-template-columns: 6.4rem minmax(0, 1fr);
    gap: 1rem 1.4rem;
  }
  .re-job__contact--row dd {
    gap: 0.6rem 1rem;
  }
  .re-job__contact--row dd small {
    font-size: 1.4rem;
  }
  .re-job__company {
    margin-top: 3.6rem;
    gap: 1.8rem;
  }
  .re-job__company--brand {
    gap: 1.4rem;
  }
  .re-job__company--logo {
    width: 11rem;
    height: 5rem;
    border-radius: 1rem;
  }
  .re-job__company--meta, .re-job__company--info {
    gap: 1.2rem;
    grid-column: auto;
  }
  .re-main__hero {
    margin-top: 2rem;
  }
  .re-section__card {
    display: flex;
  }
  .re-section__card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .re-section__card, .re-section__card-grid {
    overflow: auto;
    gap: 2rem;
  }
  .re-section__card .re-company, .re-section__card-grid .re-company {
    width: 26rem;
    gap: 1rem;
  }
  .re-section__card .re-company__box, .re-section__card-grid .re-company__box {
    display: flex;
    justify-content: space-between;
  }
  .applicant {
    padding: 0 0 2rem;
  }
  .applicant__resume {
    padding: 0 2rem;
  }
  .applicant__resume--meta-mobile, .applicant__resume--meta-envelope, .applicant__resume--meta-home {
    display: block;
    width: 1.8rem;
    height: 1.8rem;
  }
  .applicant__resume--tit {
    font-size: 1.8rem;
  }
  .applicant__resume--mobile-bg {
    padding: 2rem;
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  }
  .applicant__panel {
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
  }
  .applicant__panel--mtopline {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .applicant__panel--topline {
    flex-direction: column;
  }
  .applicant__hero {
    grid-template-columns: 7rem minmax(0, 1fr);
    gap: 2rem;
    border-bottom: 0;
  }
  .applicant__hero--photo {
    width: 7rem;
    height: 8rem;
  }
  .applicant__hero--name-row h3 {
    font-size: 1.8rem;
  }
  .applicant__mhero {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .applicant__mhero--info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .applicant__mhero--info-item, .applicant__mhero--address {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.4rem;
    color: #666;
    word-break: keep-all;
  }
  .applicant__mobile {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
  }
  .applicant__mobile--actions {
    position: fixed;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 1rem;
  }
  .applicant__mobile--actions-cancel, .applicant__mobile--actions-call {
    height: 4.5rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
  }
  .applicant__mobile--actions-cancel {
    border: 0.1rem solid #ddd;
    background-color: #fff;
    color: #666;
  }
  .applicant__mobile--actions-call {
    background-color: #e8485a;
    color: #fff;
  }
  .applicant__section {
    margin: 1rem 0;
    padding: 2rem;
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  }
  .applicant__section + .applicant__section {
    margin-top: 0;
    border-top: none;
  }
  .applicant__section--head {
    justify-content: space-between;
    padding: 0 0 2rem;
  }
  .applicant__section h2 {
    font-size: 1.6rem;
    font-weight: 400;
  }
  .applicant__section span {
    font-size: 1.4rem;
  }
  .applicant__timeline--item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .applicant__timeline--period {
    display: flex;
    flex-direction: row;
  }
  .applicant__records--item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .applicant__records--period {
    display: flex;
    flex-direction: row;
  }
  .applicant__records--content-grid {
    grid-template-columns: minmax(0, 1fr) 12rem;
    gap: 2rem;
  }
  .applicant__table--row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .applicant__activity {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0 0;
  }
  .applicant__confirm {
    margin: 1rem 0;
    padding: 2rem;
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  }
  .applicant__confirm p {
    font-size: 1.4rem;
  }
  .notice-panel {
    width: 100%;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
  }
  .notice-panel__setting {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0;
    gap: 0.5rem;
    color: #666;
  }
  .notice-panel__setting span {
    color: #666;
    font-size: 1.2rem;
  }
  .notice-panel__setting:focus-visible span, .notice-panel__setting:active span {
    color: #e8485a;
  }
  .notice-panel__setting:focus-visible .setting, .notice-panel__setting:active .setting {
    transform: rotate(90deg);
    background-image: url("/img/recruit/user/icon/setting_active.png");
  }
  .notice-panel__setting:focus-visible .home, .notice-panel__setting:active .home {
    background-image: url("/img/recruit/user/icon/home_active_icon.png");
  }
  .notice-panel__setting-flex:focus-visible .reset, .notice-panel__setting-flex:active .reset {
    background-image: url("/img/recruit/user/icon/reset_active_icon.png");
  }
  .sub-menu {
    padding: 0 2rem;
  }
  .sub-menu__box {
    padding: 1rem 0;
  }
  .sub-menu__company {
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
  }
  .sub-menu__company .company {
    display: inline-flex;
    height: 4rem;
    color: #666;
  }
  .sub-menu__btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #333;
    font-weight: 600;
    padding: 1rem 0;
    font-size: 1.8rem;
  }
  .sub-menu__btn .my-icon {
    background: url("/img/recruit/user/icon/my_icon.png") no-repeat center/contain;
  }
  .sub-menu__btn .reinfo-icon {
    background: url("/img/recruit/user/icon/recruit_info_icon.png") no-repeat center/contain;
  }
  .sub-menu__btn .call-icon {
    background: url("/img/recruit/user/icon/call_icon.png") no-repeat center/contain;
  }
  .sub-menu__icon {
    width: 2rem;
    height: 2rem;
  }
  .sub-menu__part {
    min-height: 16rem;
  }
  .sub-menu__part .menu-btn {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: flex-start;
    gap: 2rem;
    padding: 1rem;
  }
  .sub-menu__part .menu-btn button, .sub-menu__part .menu-btn a {
    height: 40px;
    color: #666;
  }
  .sub-menu__part .menu-btn a {
    display: flex;
    align-items: center;
  }
  .re-apply-sheet__dialog, .re-my-content__dialog {
    width: 80%;
  }
  .m-re-footer {
    display: block;
    margin-top: 4rem;
    padding: 2rem;
    border-top: 0.1rem solid #ddd;
  }
  .m-re-footer__links {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .m-re-footer__links button, .m-re-footer__links a {
    display: block;
    height: 2.5rem;
    color: #666;
    cursor: pointer;
    line-height: 2;
  }
  .m-re-footer__links button:focus-visible, .m-re-footer__links a:focus-visible {
    color: #e8485a;
  }
  .m-re-footer__links button:active, .m-re-footer__links a:active {
    color: #e8485a;
  }
  .m-re-footer__contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin: 2rem 0;
  }
  .m-re-footer__contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    background-color: #eee;
    text-align: center;
    font-size: 1.4rem;
    color: #666;
  }
  .m-re-footer__contact-btn:focus-visible {
    color: #e8485a;
    background-color: #FFD6DA;
  }
  .m-re-footer__contact-btn:active {
    color: #e8485a;
    background-color: #FFD6DA;
  }
  .m-re-footer__company {
    min-width: 0;
  }
  .m-re-footer__company.is-open .m-re-footer__summary svg {
    transform: rotate(180deg);
  }
  .m-re-footer__top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    text-align: center;
  }
  .m-re-footer__summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #666;
  }
  .m-re-footer__summary svg {
    flex-shrink: 0;
    color: #666;
    transition: transform 0.2s ease;
  }
  .m-re-footer__summary:focus-visible, .m-re-footer__summary:focus-visible svg {
    color: #e8485a;
  }
  .m-re-footer__summary:active, .m-re-footer__summary:active svg {
    color: #e8485a;
  }
  .m-re-footer__privacy {
    color: #666;
  }
  .m-re-footer__privacy:focus-visible {
    color: #e8485a;
  }
  .m-re-footer__privacy:active {
    color: #e8485a;
  }
  .m-re-footer__company-panel {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 1rem;
    background-color: #eee;
  }
  .m-re-footer__policy {
    padding-bottom: 10rem;
  }
  .m-re-footer__company-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.6rem;
  }
  .m-re-footer__company-info li {
    font-size: 1.4rem;
    word-break: keep-all;
  }
  .m-re-footer__biz-btn {
    min-width: 13rem;
    padding: 1rem 1.5rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.5rem;
    background-color: #fff;
    box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.08);
    font-size: 1.4rem;
    color: #666;
  }
  .m-re-footer__biz-btn:focus-visible, .m-re-footer__biz-btn:focus-visible svg {
    color: #e8485a;
    background-color: #FFD6DA;
  }
  .m-re-footer__biz-btn:active, .m-re-footer__biz-btn:active svg {
    color: #e8485a;
    background-color: #FFD6DA;
  }
  .pc-re-footer {
    display: none;
  }
  .re-resume {
    padding-bottom: 100px;
  }
  .re-resume__layout {
    display: flex;
    flex-direction: column;
  }
  .re-resume__input {
    padding: 0 1rem;
  }
  .re-resume__basic-top {
    display: grid;
    grid-template-columns: 13rem minmax(0, 1fr);
  }
  .re-resume__block {
    width: 100%;
  }
  .re-resume .re-resume-add {
    padding: 20px;
  }
  .re-resume .re-resume-add__input {
    min-width: 100%;
  }
  .re-resume .re-resume-add__input::placeholder {
    font-size: 1.4rem;
  }
  .re-resume .re-resume-add__input--disabled {
    font-size: 1.4rem;
  }
  .re-resume .re-resume-add__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .re-resume .re-resume-add__box--select {
    min-width: 100%;
    font-size: 1.4rem;
  }
  .re-resume .re-resume-add__box--eidt {
    display: flex;
    width: 100%;
    gap: 1rem;
  }
  .re-resume .re-resume-add__hope {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .re-resume .re-resume-add .tooltip-wrap .label-tooltip {
    left: -62px;
  }
  .re-resume__section-caption {
    font-size: 1.4rem;
  }
  .re-resume .re-resume-done__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .re-resume .re-resume-done__motext {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.4rem;
  }
  .re-resume__section-head {
    margin: 1rem 0;
  }
  .re-resume .re-resume-jobtype-modal__body {
    display: flex;
    flex-direction: column;
    min-height: 30rem;
  }
}
@media screen and (min-width: 768px) {
  .m-only {
    display: none;
  }
  .notice-panel__inner {
    max-height: 70vh;
    overflow: auto;
  }
  .recruit-header {
    position: relative;
  }
  .recruit-header .search-box {
    position: absolute;
    top: 1rem;
    left: 18rem;
  }
  .recruit-header .search-box .re-search {
    position: relative;
    margin-bottom: 1rem;
    z-index: 5;
  }
  .recruit-header .search-box .re-search__input {
    width: 60rem;
  }
  .recruit-header .search-box .re-search .search-in {
    display: none;
    max-width: 600px;
    padding: 1rem 2rem;
    border: 0.1rem solid rgba(232, 72, 90, 0.5);
    border-radius: 1rem;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
    margin-top: 10px;
  }
  .recruit-header .search-box .re-search .search-in__close {
    height: 4.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    color: #aaaaaa;
  }
  .recruit-header .search-box .re-search .search-in__close span {
    width: 1.4rem;
    height: 1.4rem;
    background: url("/img/recruit/user/icon/close.png") no-repeat top/contain;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .recruit-header .search-box .re-search .search-in__close:hover {
    color: #e8485a;
  }
  .recruit-header .search-box .re-search .search-in__close:hover span {
    background-image: url("/img/recruit/user/icon/close_active.png");
  }
}
@media screen and (min-width: 768px) {
  .recruit-header .rehead {
    position: relative;
  }
  .recruit-header .rehead__before {
    display: flex;
    align-items: center;
  }
  .recruit-header .rehead__after {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .recruit-header .rehead__after .notice {
    width: 4.5rem;
    height: 4.5rem;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .recruit-header .rehead__after .notice:hover svg {
    color: #e8485a;
  }
}
@media screen and (min-width: 768px) {
  .recruit-header .rehead__after .user-my {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .recruit-header .rehead__after .user-my:hover svg, .recruit-header .rehead__after .user-my:hover {
    color: #e8485a;
  }
}
@media screen and (min-width: 768px) {
  .recruit-header .rehead__after .user-my__company {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .recruit-header .rehead__after .user-my__comimg {
    display: block;
    width: 4rem;
    height: 4rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #eee;
    border-radius: 1rem;
  }
  .recruit-header .rehead__login, .recruit-header .rehead__join {
    font-weight: 400;
    color: #333;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .recruit-header .rehead__login:hover, .recruit-header .rehead__join:hover {
    color: #e8485a;
  }
}
@media screen and (min-width: 768px) {
  .sub-pcmenu {
    position: relative;
    width: 100%;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 3rem;
  }
  .sub-pcmenu .sub-menu {
    padding: 0 2rem;
    height: 55px;
  }
  .sub-pcmenu .sub-menu__box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6rem;
    padding: 0.5rem 0;
  }
  .sub-pcmenu .sub-menu .re-menus {
    transition: color 0.2s ease;
  }
  .sub-pcmenu .sub-menu .re-menus:focus-visible, .sub-pcmenu .sub-menu .re-menus:active, .sub-pcmenu .sub-menu .re-menus[aria-current=page] {
    color: #e8485a;
  }
  .sub-pcmenu .sub-menu .re-menus {
    display: grid;
    justify-items: center;
    align-items: center;
    font-weight: 400;
    color: #666;
    font-size: 1.2rem;
    height: 4.5rem;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .sub-pcmenu .sub-menu .re-menus:hover {
    color: #e8485a;
  }
}
@media screen and (min-width: 768px) {
  .sub-pcmenu .sub-menu .re-menus__icon {
    position: relative;
    width: 2.6rem;
    height: 2rem;
  }
  .sub-pcmenu .sub-menu .re-menus__line {
    position: absolute;
    left: 50%;
    width: 100%;
    height: 0.3rem;
    border-radius: 99.9rem;
    background-color: currentColor;
    transform: translateX(-50%) translateY(0) rotate(0deg);
    transform-origin: center;
    transition: transform 0.28s ease, opacity 0.2s ease, background-color 0.2s ease;
  }
  .sub-pcmenu .sub-menu .re-menus__line--top {
    top: 0;
  }
  .sub-pcmenu .sub-menu .re-menus__line--middle {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  .sub-pcmenu .sub-menu .re-menus__line--bottom {
    bottom: 0;
  }
  .sub-pcmenu .sub-menu .re-menus[aria-expanded=true] {
    color: #e8485a;
  }
  .sub-pcmenu .sub-menu .re-menus[aria-expanded=true] .re-menus__line--top {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  .sub-pcmenu .sub-menu .re-menus[aria-expanded=true] .re-menus__line--middle {
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) scaleX(0.2);
  }
  .sub-pcmenu .sub-menu .re-menus[aria-expanded=true] .re-menus__line--bottom {
    bottom: auto;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  .sub-pcmenu .sub-menu__btn {
    min-width: 80px;
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
  }
  .sub-pcmenu .sub-menu__btn .my-icon {
    background: url("/img/recruit/user/icon/my_icon.png") no-repeat center/contain;
  }
  .sub-pcmenu .sub-menu__btn .reinfo-icon {
    background: url("/img/recruit/user/icon/recruit_info_icon.png") no-repeat center/contain;
  }
  .sub-pcmenu .sub-menu__btn .call-icon {
    background: url("/img/recruit/user/icon/call_icon.png") no-repeat center/contain;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .sub-pcmenu .sub-menu__btn:hover .my-icon {
    background-image: url("/img/recruit/user/icon/my_icon_active.png");
  }
  .sub-pcmenu .sub-menu__btn:hover .reinfo-icon {
    background-image: url("/img/recruit/user/icon/recruit_info_icon_active.png");
  }
  .sub-pcmenu .sub-menu__btn:hover .call-icon {
    background-image: url("/img/recruit/user/icon/call_icon_active.png");
  }
  .sub-pcmenu .sub-menu__btn:hover div {
    color: #e8485a;
  }
}
@media screen and (min-width: 768px) {
  .sub-pcmenu .sub-menu__icon {
    width: 2rem;
    height: 2rem;
  }
  .sub-pcmenu .sub-menu__part .menu-box {
    display: none;
    position: absolute;
    top: 55px;
    left: -2rem;
    z-index: 2;
    width: 1280px;
    background-color: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding-left: 90px;
  }
  .sub-pcmenu .sub-menu__part .menu-btn {
    width: 100%;
    display: flex;
    padding: 1rem 2rem;
    gap: 5rem;
  }
  .sub-pcmenu .sub-menu__part .menu-btn button, .sub-pcmenu .sub-menu__part .menu-btn a {
    height: 44px;
    color: #666;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .sub-pcmenu .sub-menu__part .menu-btn button:hover, .sub-pcmenu .sub-menu__part .menu-btn a:hover {
    color: #e8485a;
  }
}
@media screen and (min-width: 768px) {
  .sub-pcmenu .sub-menu__part .menu-btn a {
    display: flex;
    align-items: center;
  }
  .sub-pcmenu .sub-all {
    display: none;
    position: absolute;
    top: 56px;
    width: 100%;
    height: 400px;
    background-color: #fff;
    z-index: 10;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  }
  .sub-pcmenu .sub-all__inner {
    display: flex;
    justify-content: space-between;
    padding: 3rem;
  }
  .sub-pcmenu .sub-all__inner .company {
    height: 45px;
    color: #666;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .sub-pcmenu .sub-all__inner .company:hover {
    color: #e8485a;
  }
}
@media screen and (min-width: 768px) {
  .sub-pcmenu .sub-all__list {
    display: flex;
    gap: 0.6rem;
  }
  .sub-pcmenu .sub-all__none {
    width: 4rem;
  }
  .sub-pcmenu .sub-all__menu {
    width: 145px;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #ddd;
    padding-left: 2rem;
    gap: 1rem;
  }
  .sub-pcmenu .sub-all__menu .menu-tit {
    height: 45px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #666;
  }
  .sub-pcmenu .sub-all__menu .menu-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .sub-pcmenu .sub-all__menu .menu-btn button, .sub-pcmenu .sub-all__menu .menu-btn a {
    height: 44px;
    color: #666;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .sub-pcmenu .sub-all__menu .menu-btn button:hover, .sub-pcmenu .sub-all__menu .menu-btn a:hover {
    color: #e8485a;
  }
}
@media screen and (min-width: 768px) {
  .sub-pcmenu .sub-all__menu .menu-btn a {
    display: flex;
    align-items: center;
  }
  .re-main__hero .swiper-wrapper {
    align-items: stretch;
  }
  .re-main__hero .swiper-slide {
    width: calc(100% - 4.8rem);
    max-width: 36rem;
  }
  .re-main[aria-expanded=true] {
    color: #e8485a;
  }
  .re-main[aria-expanded=true] .re-menu__line--top {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  .re-main[aria-expanded=true] .re-menu__line--middle {
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) scaleX(0.2);
  }
  .re-main[aria-expanded=true] .re-menu__line--bottom {
    bottom: auto;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  .re-main .re-banner {
    height: 100px;
  }
  .re-main .re-section__article {
    margin-top: 1rem;
    padding: 1rem 2rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .re-main .re-section__article h2 {
    text-align: center;
    padding: 3rem 0;
    font-size: 2rem;
    font-weight: 600;
  }
  .re-main .re-section__article .re-company {
    width: 35rem;
    gap: 1rem;
  }
  .re-main .re-section__card .re-company {
    width: 39rem;
    gap: 1.5rem;
  }
  .re-main .re-section__card, .re-main .re-section__card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    gap: 1rem;
  }
  .re-main .re-section__card .re-company, .re-main .re-section__card-grid .re-company {
    cursor: pointer;
  }
  .re-main .re-section__card .re-company__scrap, .re-main .re-section__card-grid .re-company__scrap {
    position: absolute;
    top: 2rem;
    right: 2rem;
  }
  .re-main .re-section__card .re-company__logo, .re-main .re-section__card-grid .re-company__logo {
    width: 70%;
    height: 2.6rem;
  }
  .re-main .re-section__card .re-company, .re-main .re-section__card-grid .re-company {
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }
  .re-main .re-section__card .re-company:focus-within, .re-main .re-section__card .re-company:active, .re-main .re-section__card-grid .re-company:focus-within, .re-main .re-section__card-grid .re-company:active {
    border-color: rgba(232, 72, 90, 0.35);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.08);
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .re-main .re-section__card .re-company:hover, .re-main .re-section__card-grid .re-company:hover {
    border-color: rgba(232, 72, 90, 0.25);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.08);
    transform: translateY(-0.2rem);
  }
}
@media screen and (min-width: 768px) {
  .find-info-page {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .find-info-page__wrap {
    width: min(100%, 56rem);
    padding: 3.6rem;
    border-radius: 2.4rem;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  }
  .find-info-page__description {
    font-size: 1.5rem;
  }
  .find-info-form__actions {
    flex-direction: row;
  }
  .find-info-form__submit, .find-info-form__link {
    width: 50%;
  }
  .re-notice {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
  }
  .re-notice__card {
    width: 38rem;
    height: 24rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }
  .re-notice__card:focus-within, .re-notice__card:active {
    border-color: rgba(232, 72, 90, 0.35);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.08);
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .re-notice__card:hover {
    border-color: rgba(232, 72, 90, 0.25);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.08);
    transform: translateY(-0.2rem);
  }
}
@media screen and (min-width: 768px) {
  .re-s3__employment-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .re-s3__detail-check {
    margin-top: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .re-s3__choice-list {
    margin-top: 0;
  }
  .re-apply-sheet__dialog, .re-my-content__dialog {
    width: 40%;
  }
  .m-re-footer {
    display: none;
  }
  .pc-re-footer {
    display: block;
    margin-top: 4rem;
    padding: 2rem;
    border-top: 0.1rem solid #ddd;
  }
  .pc-re-footer__links {
    display: flex;
    justify-content: space-between;
  }
  .pc-re-footer__links a, .pc-re-footer__links button {
    display: block;
    color: #666;
    cursor: pointer;
    font-size: 1.4rem;
    border: none;
  }
  .pc-re-footer__links a:focus-visible, .pc-re-footer__links button:focus-visible {
    color: #e8485a;
  }
  .pc-re-footer__links a:active, .pc-re-footer__links button:active {
    color: #e8485a;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .pc-re-footer__links a:hover, .pc-re-footer__links button:hover {
    color: #e8485a;
  }
}
@media screen and (min-width: 768px) {
  .pc-re-footer__top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    text-align: center;
  }
  .pc-re-footer__summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #666;
  }
  .pc-re-footer__summary svg {
    flex-shrink: 0;
    color: #666;
    transition: transform 0.2s ease;
  }
  .pc-re-footer__summary:focus-visible, .pc-re-footer__summary:focus-visible svg {
    color: #e8485a;
  }
  .pc-re-footer__summary:active, .pc-re-footer__summary:active svg {
    color: #e8485a;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .pc-re-footer__summary:hover, .pc-re-footer__summary:hover svg {
    color: #e8485a;
  }
}
@media screen and (min-width: 768px) {
  .pc-re-footer__policy {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0 3rem;
    padding: 3rem;
    border-radius: 1rem;
    background-color: #eee;
    color: #666;
  }
  .pc-re-footer__company-name {
    font-size: 2rem;
    font-weight: 600;
  }
  .pc-re-footer__company-info li {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    word-break: keep-all;
  }
  .pc-re-footer__biz-btn {
    max-height: 4.5rem;
    padding: 1rem 1.5rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.5rem;
    background-color: #fff;
    box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.08);
    font-size: 1.4rem;
    color: #666;
  }
  .pc-re-footer__biz-btn:focus-visible, .pc-re-footer__biz-btn:focus-visible svg {
    color: #e8485a;
    background-color: #FFD6DA;
  }
  .pc-re-footer__biz-btn:active, .pc-re-footer__biz-btn:active svg {
    color: #e8485a;
    background-color: #FFD6DA;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .pc-re-footer__biz-btn:hover, .pc-re-footer__biz-btn:hover svg {
    color: #e8485a;
    background-color: #FFD6DA;
  }
}
@media screen and (min-width: 768px) {
  .site-content {
    min-height: 800px;
  }
  .rehead-notice.is-open {
    display: block;
  }
  .re-info__list .re-company {
    cursor: pointer;
  }
  .re-info__list .re-company__scrap {
    position: absolute;
    top: 2rem;
    right: 2rem;
  }
  .re-info__list .re-company__logo {
    width: 80%;
    height: 2.6rem;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .re-info__list .re-company:hover {
    border-color: rgba(232, 72, 90, 0.25);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.08);
    transform: translateY(-0.2rem);
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .re-info__list .re-company__button:hover {
    background-color: #e8485a;
    color: #fff;
  }
}
.accent {
  color: #e8485a;
  font-weight: 500;
  border: none !important;
}

.done-btn {
  color: #666 !important;
  border: 1px solid #666 !important;
  cursor: default;
}
.done-btn:focus-within, .done-btn:active {
  background-color: #fff !important;
  color: #666 !important;
}
@media (hover: hover) and (pointer: fine) {
  .done-btn:hover {
    background-color: #fff !important;
  }
}

/*# sourceMappingURL=recruit.css.map */
