.recruit-hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #edf3f7;
}

.recruit-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.58) 42%, rgba(255, 255, 255, 0.12) 100%);
}

.recruit-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 130px 43px 70px;
}

.recruit-hero__eyebrow,
.section-header__eyebrow,
.message__eyebrow {
  margin: 0 0 18px;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.recruit-hero__title {
  margin: 0;
  font-size: clamp(34px, 3.3vw, 40px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.recruit-hero__lead {
  max-width: 620px;
  margin: 24px 0 0;
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.intro,
.jobs,
.requirements,
.message {
  padding: 96px 43px;
}

.intro__inner,
.jobs__inner,
.requirements__inner,
.message__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.intro {
  padding-top: 64px;
  background: #f3f7fa;
}

.intro__inner {
  max-width: 1080px;
}

.intro__statement {
  position: relative;
  padding-left: 34px;
}

.intro__statement::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 3px;
  height: calc(100% - 18px);
  background: #2d7fa3;
}

.intro__title {
  margin: 0;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
}

.intro__text {
  max-width: 760px;
  margin: 36px 0 0 92px;
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  font-size: 15px;
  line-height: 2.1;
}

.intro__text p {
  margin: 0;
}

.intro__text p + p {
  margin-top: 20px;
}

.intro__text strong {
  color: var(--navy);
  font-weight: 700;
}

.jobs {
  color: var(--white);
  background: #2d7fa3;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.section-header__title {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.job-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.job-card {
  min-height: 260px;
  padding: 34px 30px 32px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
}

.job-card__number {
  display: block;
  color: #2d7fa3;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.job-card__title {
  margin: 34px 0 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
}

.job-card__text {
  margin: 18px 0 0;
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  font-size: 13px;
  line-height: 2;
}

.requirements {
  background: #f5f8fa;
}

.requirements .section-header {
  color: var(--navy);
}

.requirement-table {
  margin: 0;
  border-top: 1px solid rgba(8, 36, 72, 0.18);
}

.requirement-table__row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  border-bottom: 1px solid rgba(8, 36, 72, 0.18);
}

.requirement-table dt,
.requirement-table dd {
  margin: 0;
  padding: 24px 28px;
}

.requirement-table dt {
  font-weight: 600;
  background: rgba(8, 36, 72, 0.05);
}

.requirement-table dd {
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  line-height: 2;
}

.message {
  background: #f5f8fa;
}

.message__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.message__title {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
}

.message__text {
  margin: 0;
  padding: 30px 34px;
  border-top: 1px solid rgba(8, 36, 72, 0.18);
  border-bottom: 1px solid rgba(8, 36, 72, 0.18);
  background: rgba(8, 36, 72, 0.03);
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  line-height: 2.1;
  text-align: left;
}

.message__text p {
  margin: 0;
}

.message__text p + p {
  margin-top: 18px;
}

.message .button {
  margin-top: 36px;
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
}

@media (max-width: 900px) {
  .recruit-hero__content {
    padding: 130px 43px 70px;
  }

  .intro,
  .jobs,
  .requirements,
  .message {
    padding: 78px 28px;
  }

  .intro__inner {
    max-width: 100%;
  }

  .intro {
    padding-top: 56px;
  }

  .intro__statement {
    padding-left: 26px;
  }

  .intro__text {
    margin-left: 0;
  }

  .job-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .recruit-hero {
    min-height: 250px;
  }

  .recruit-hero__content {
    padding: 112px 24px 42px;
  }

  .recruit-hero__title {
    font-size: 40px;
  }

  .intro__title,
  .section-header__title,
  .message__title {
    font-size: 29px;
  }

  .intro__statement::before {
    top: 7px;
    height: calc(100% - 14px);
  }

  .intro {
    padding-top: 48px;
  }

  .section-header {
    display: block;
  }

  .requirement-table__row {
    grid-template-columns: 1fr;
  }

  .requirement-table dt,
  .requirement-table dd {
    padding: 18px 20px;
  }

  .requirement-table dd {
    padding-top: 0;
  }
}

@media (max-width: 520px) {
  .recruit-hero__content {
    padding: 112px 20px 42px;
  }

  .intro,
  .jobs,
  .requirements,
  .message {
    padding: 64px 20px;
  }

  .intro {
    padding-top: 48px;
  }

  .recruit-hero__lead,
  .intro__text,
  .job-card__text,
  .requirement-table dd,
  .message__text {
    font-size: 13px;
  }

  .intro__statement {
    padding-left: 20px;
  }

  .job-card {
    min-height: auto;
    padding: 28px 24px;
  }
}
