.sc-job-posting {
  padding: 48px 0 0;
}
@media screen and (max-width: 560px) {
  .sc-job-posting {
    padding: 18px 0 0;
  }
}

/* ---------------------------
set1
------------------------------ */
@media screen and (min-width: 561px) {
  .sc-job-posting__set1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .sc-job-posting__set1__content {
    width: 508px;
  }
  .sc-job-posting__set1__img {
    width: 478px;
    height: 289px;
  }
}
.sc-job-posting__set1__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 45px;
  margin: 0 0 18px;
}

.sc-job-posting__set1__txt {
  line-height: 30px;
}

@media screen and (max-width: 560px) {
  .sc-job-posting__set1__title {
    font-size: 32px;
    line-height: 52px;
    margin-bottom: 15px;
  }
  .sc-job-posting__set1__txt {
    line-height: 39px;
    margin-bottom: 39px;
  }
}
/* ---------------------------
set2 (legacy - kept for compatibility)
------------------------------ */
.sc-job-posting__set2 {
  padding: 80px 0 0;
}

.sc-job-posting__set2__title {
  margin-bottom: 47px;
}

.sc-job-posting__set2__text {
  margin: 0 auto 33px;
  width: 858px;
  max-width: 100%;
  line-height: 30px;
}

.sc-job-posting__set2__item {
  padding: 30px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.sc-job-posting__set2__item + .sc-job-posting__set2__item {
  margin-top: 37px;
}

.sc-job-posting__set2__item__content__stt {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: uppercase;
}

.sc-job-posting__set2__item__content h3 {
  font-size: 27px;
  line-height: 33px;
  font-weight: 700;
  margin-bottom: 14px;
}

.sc-job-posting__set2__item__content__txt {
  line-height: 30px;
}

@media screen and (min-width: 561px) {
  .sc-job-posting__set2__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .sc-job-posting__set2__item:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .sc-job-posting__set2__item__content {
    width: 470px;
  }
  .sc-job-posting__set2__item__img {
    width: 448px;
    height: 282px;
  }
}
@media screen and (max-width: 560px) {
  .sc-job-posting__set2 {
    padding: 65px 0 0;
  }
  .sc-job-posting__set2__title {
    margin-bottom: 20px;
  }
  .sc-job-posting__set2__text {
    line-height: 39px;
    margin-bottom: 40px;
  }
  .sc-job-posting__set2__item {
    padding: 30px 20px;
  }
  .sc-job-posting__set2__item__content__stt {
    font-size: 26px;
    line-height: 38px;
  }
  .sc-job-posting__set2__item__content h3 {
    font-size: 35px;
    line-height: 40px;
  }
  .sc-job-posting__set2__item__content__txt {
    line-height: 39px;
    margin-bottom: 22px;
  }
}

/* ---------------------------
reason (5つの理由カード)
------------------------------ */
.sc-job-posting__reason {
  padding: 80px 0 0;
}

.sc-job-posting__reason__title {
  margin-bottom: 50px;
}

.sc-job-posting__reason__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}

.sc-job-posting__reason__card {
  position: relative;
  width: 300px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  box-sizing: border-box;
  overflow: hidden;
}

.sc-job-posting__reason__card__corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 40px 0 0;
  border-color: var(--primary-color) transparent transparent transparent;
}

.sc-job-posting__reason__card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.sc-job-posting__reason__card__check {
  flex-shrink: 0;
  display: inline-block;
  width: 24px;
  height: 20px;
  background-color: var(--primary-color);
  -webkit-mask-image: url('../img/job/icon-check.svg');
  mask-image: url('../img/job/icon-check.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.sc-job-posting__reason__card__label {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.sc-job-posting__reason__card__label span {
  font-size: 21px;
  font-weight: 500;
}

.sc-job-posting__reason__card__title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.sc-job-posting__reason__card__text {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

@media screen and (max-width: 560px) {
  .sc-job-posting__reason {
    padding: 60px 0 0;
  }

  .sc-job-posting__reason__title {
    margin-bottom: 60px;
  }

  .sc-job-posting__reason__grid {
    flex-direction: column;
    gap: 40px;
  }

  .sc-job-posting__reason__card {
    width: 100%;
    padding: 30px;
  }

  .sc-job-posting__reason__card__corner {
    border-width: 40px 40px 0 0;
  }

  .sc-job-posting__reason__card__header {
    gap: 8px;
    margin-bottom: 10px;
  }

  .sc-job-posting__reason__card__check {
    width: 24px;
    height: 20px;
  }

  .sc-job-posting__reason__card__label {
    font-size: 23px;
  }

  .sc-job-posting__reason__card__label span {
    font-size: 26px;
  }

  .sc-job-posting__reason__card__title {
    font-size: 25px;
    margin-bottom: 15px;
  }

  .sc-job-posting__reason__card__text {
    font-size: 21px;
    line-height: 1.8;
  }
}
/* ---------------------------
process (人材紹介の流れ)
------------------------------ */
.sc-job-posting__process {
  padding: 80px 0 0;
}

.sc-job-posting__process__title {
  margin-bottom: 50px;
}

.sc-job-posting__process__list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sc-job-posting__process__item {
  display: flex;
  align-items: center;
  gap: 70px;
  width: 100%;
  max-width: 893px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 40px 50px;
  box-sizing: border-box;
}

.sc-job-posting__process__item__icon {
  flex-shrink: 0;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-job-posting__process__item__icon img {
  width: 100%;
  height: auto;
}

.sc-job-posting__process__item__content {
  flex: 1;
}

.sc-job-posting__process__item__title {
  display: flex;
  align-items: baseline;
  gap: 15px;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.sc-job-posting__process__item__num {
  font-family: "Barlow", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #333;
}

.sc-job-posting__process__item__text {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}

.sc-job-posting__process__connector {
  width: 90px;
  height: 30px;
  background: var(--primary-lighter);
  margin: 0 auto;
}

@media screen and (max-width: 560px) {
  .sc-job-posting__process {
    padding: 60px 0 0;
  }

  .sc-job-posting__process__title {
    margin-bottom: 60px;
  }

  .sc-job-posting__process__item {
    flex-direction: column;
    gap: 40px;
    padding: 30px;
    border-radius: 10px;
  }

  .sc-job-posting__process__item__icon {
    width: 150px;
    margin: 0 auto;
  }

  .sc-job-posting__process__item__content {
    text-align: center;
  }

  .sc-job-posting__process__item__title {
    flex-direction: column;
    align-items: center;
    font-size: 28px;
    gap: 14px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .sc-job-posting__process__item__num {
    font-size: 37px;
  }

  .sc-job-posting__process__item__text {
    font-size: 21px;
    text-align: left;
  }

  .sc-job-posting__process__connector {
    width: 90px;
    height: 30px;
  }
}

/* ---------------------------
faq (よくある質問)
------------------------------ */
.sc-job-posting__faq {
  padding: 80px 0 0;
}

.sc-job-posting__faq__title {
  margin-bottom: 50px;
}

.sc-job-posting__faq__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sc-job-posting__faq__item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 35px 40px;
  border-left: 4px solid #ddd;
}

.sc-job-posting__faq__item__question {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.sc-job-posting__faq__item__icon {
  font-family: "Barlow", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  flex-shrink: 0;
  line-height: 1;
}

.sc-job-posting__faq__item__answer {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}

.sc-job-posting__faq__item__answer a {
  color: #0066cc;
  text-decoration: underline;
}

@media screen and (max-width: 560px) {
  .sc-job-posting__faq {
    padding: 60px 0 0;
  }

  .sc-job-posting__faq__title {
    margin-bottom: 60px;
  }

  .sc-job-posting__faq__list {
    gap: 40px;
  }

  .sc-job-posting__faq__item {
    border-radius: 10px;
    padding: 30px;
    border-left-width: 4px;
  }

  .sc-job-posting__faq__item__question {
    font-size: 28px;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .sc-job-posting__faq__item__icon {
    font-size: 37px;
  }

  .sc-job-posting__faq__item__answer {
    font-size: 21px;
  }
}

/* ---------------------------
set3
------------------------------ */
.sc-job-posting__set3 {
  padding: 80px 0 0;
}

.sc-job-posting__set3__title {
  margin-bottom: 40px;
}

.sc-job-posting__set3__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 37px 52px;
}

.sc-job-posting__set3__list__item {
  width: 473px;
  color: var(--primary-color);
  border: 5px solid;
  border-radius: 5px;
  padding: 26px 28px 30px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.sc-job-posting__set3__list__item__title {
  font-size: 26px;
  line-height: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sc-job-posting__set3__list__item__number {
  margin: -23px 0 0;
  line-height: 1.45;
  font-size: 80px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.sc-job-posting__set3__list__item__number small {
  font-size: 24px;
}

.sc-job-posting__set3__list__item__text {
  line-height: 30px;
  font-weight: 500;
  text-align: left;
}

@media screen and (max-width: 560px) {
  .sc-job-posting__set3 {
    padding-top: 87px;
  }
  .sc-job-posting__set3__list__item {
    width: 100%;
    padding: 30px 25px 23px;
  }
  .sc-job-posting__set3__list__item__icon {
    width: 238px;
    margin: 0 auto;
  }
  .sc-job-posting__set3__list__item__title {
    font-size: 35px;
  }
  .sc-job-posting__set3__list__item__number {
    font-size: 109px;
  }
  .sc-job-posting__set3__list__item__number small {
    font-size: 32.5px;
  }
}
/* ---------------------------
comments
------------------------------ */
.sc-job-posting__comments {
  padding-top: 80px;
}

.sc-job-posting__comments__title {
  margin-bottom: 40px;
}

.sc-job-posting__comments__slide__item {
  width: 276px;
  margin: 5px 18px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: #fff;
  box-sizing: border-box;
  padding: 25px 25px 33px;
  box-sizing: content-box;
}

.sc-job-posting__comments__slide__item__img {
  height: 187px;
}

.sc-job-posting__comments__slide__item__company-name {
  margin: 10px 0 3px;
  line-height: 20px;
  font-size: 14px;
  color: #939393;
}

.sc-job-posting__comments__slide__item__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 33px;
}

.sc-job-posting__comments__slide__item__txt {
  line-height: 30px;
}

@media screen and (max-width: 560px) {
  .sc-job-posting__comments__slide__item {
    width: 392px;
    padding: 25px 25px 16px;
  }
  .sc-job-posting__comments__slide__item__img {
    height: auto;
  }
  .sc-job-posting__comments__slide__item__company-name {
    font-size: 18px;
    line-height: 26px;
    margin: 15px 0 2px;
  }
  .sc-job-posting__comments__slide__item__title {
    font-size: 29px;
    line-height: 33px;
  }
}
/* ---------------------------
flow
------------------------------ */
.sc-job-posting__flow {
  padding-top: 100px;
}

.sc-job-posting__flow__title {
  margin: 0 0 40px;
}

.sc-job-posting__flow__list {
  display: flex;
  justify-content: center;
  gap: 41px;
}

.sc-job-posting__flow__list__item {
  min-width: 216px;
  position: relative;
}
.sc-job-posting__flow__list__item + .sc-job-posting__flow__list__item::before {
  content: "";
  background: url("../img/job/arrow.svg") no-repeat center/100% auto;
  width: 28px;
  left: -33.5px;
  top: 0;
  bottom: 0;
  position: absolute;
}

.sc-job-posting__flow__list__item__title {
  font-size: 23px;
  line-height: 34px;
  font-weight: 700;
  color: #101010;
  text-align: center;
}
.sc-job-posting__flow__list__item__title span {
  display: block;
  font-size: 36px;
  line-height: 43px;
  font-family: "Barlow";
}

.sc-job-posting__flow__list__item__img {
  text-align: center;
  margin: 24px 0 46px;
}

.sc-job-posting__flow__list__item__txt {
  width: 216px;
  margin: 0 auto;
  line-height: 27px;
  letter-spacing: 0.05em;
}

.sc-job-posting__flow__list__item__note {
  font-size: 12px;
  text-align: left;
  margin-top: 20px;
}
@media screen and (max-width: 560px) {
  .sc-job-posting__flow {
    padding: 112px 0 0;
  }
  .sc-job-posting__flow__list {
    flex-direction: column;
    gap: 71px;
  }
  .sc-job-posting__flow__list__item {
    padding: 0 0 0 161px;
  }
  .sc-job-posting__flow__list__item__title {
    text-align: left;
    font-size: 28px;
    line-height: 31px;
    margin: 0 0 5px;
  }
  .sc-job-posting__flow__list__item__title span {
    display: inline-block;
    margin-right: 10px;
    font-size: 37px;
    vertical-align: text-top;
  }
  .sc-job-posting__flow__list__item__img {
    position: absolute;
    top: 0;
    left: 20px;
    margin: 0;
    width: 114px;
  }
  .sc-job-posting__flow__list__item__txt {
    margin: 0;
    width: 100%;
  }
  .sc-job-posting__flow__list__item + .sc-job-posting__flow__list__item::before {
    top: -48px;
    left: 0;
    right: 0;
    height: 31px;
    width: 100%;
    background: url("../img/job/arrow_sp.svg") no-repeat center bottom/auto 100%;
  }
}
.sc-job-posting__form {
  padding: 80px 0 124px;
}

.sc-job-posting__form__title {
  margin-bottom: 40px;
}

.sc-job-posting__form__txt {
  text-align: center;
  margin-bottom: 40px;

}

@media screen and (max-width: 560px) {
  .sc-job-posting__form {
    padding: 180px 0 139px;
  }
}