.page-hero {
  position: relative;
  width: 100%;
  height: 653px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.page-hero__inner {
  position: relative;
  max-width: var(--layout-section-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 216px var(--layout-padding-desktop) 60px;
  height: 100%;
}

.page-hero__content {
  display: flex;
  flex-direction: column;
  gap: 21px;
  color: var(--color-white);
  max-width: 825px;
}

.page-hero__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-xl);
  letter-spacing: 2px;
}

.page-hero__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: var(--font-size-6xl);
  letter-spacing: 10.88px;
  line-height: var(--line-height-tight);
}

.page-hero__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-xl);
  letter-spacing: 2px;
}

.page-hero__bottom {
  position: static;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-lg-plus);
  letter-spacing: 2.1px;
  color: var(--color-white);
}

.page-hero--recruit {
  background-image: url(../../images/r2026/recruit/mid-career/recruit-hero.webp);
}

.page-hero--recruit::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 43%, rgba(0, 0, 0, 0.5) 92%);
}

.page-section {
  background-color: var(--color-white);
  padding: 60px var(--layout-padding-desktop) 80px;
}

.page-section--blue {
  background-color: var(--color-blue-blue02);
}

.page-section--gradient {
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
}

.page-section--gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #005bac 0%, #00478b 40%);
  clip-path: polygon(100% 0, 0 0, 0 53%);
  z-index: 0;
}

.page-section__inner {
  max-width: var(--layout-content-width);
  margin: 0 auto;
}

.page-section__inner--z-index-1 {
  position: relative;
  z-index: 1;
}

.page-section__title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--color-black);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-black);
  margin-bottom: 0;
}

.page-section__title--white {
  color: var(--color-white);
  border-bottom-color: var(--color-white);
}

.page-section__title-icon {
  display: inline-block;
  width: 36px;
  height: 17.229px;
  background-image: url(../../images/r2026/common/icon-1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .page-hero {
    height: 500px;
  }

  .page-hero__inner {
    padding: 120px var(--layout-padding-tablet) 40px;
  }

  .page-hero__title {
    font-size: var(--font-size-5xl);
    letter-spacing: 6px;
  }

  .breadcrumb {
    padding: var(--breadcrumb-padding-tablet);
  }

  .breadcrumb__inner {
    padding: 0;
    margin: 0;
  }

  .page-section {
    padding: 40px var(--layout-padding-tablet);
  }
}

@media screen and (max-width: 768px) {
  .page-hero {
    height: 400px;
  }

  .page-hero__inner {
    padding: 80px var(--layout-padding-mobile) 30px;
  }

  .page-hero__lead,
  .page-hero__sub {
    font-size: var(--font-size-sm);
  }

  .page-hero__title {
    font-size: var(--font-size-3xl);
    letter-spacing: 3px;
  }

  .page-hero__bottom {
    font-size: var(--font-size-sm);
  }

  .breadcrumb {
    padding: var(--breadcrumb-padding-mobile);
    overflow-x: auto;
  }

  .breadcrumb__inner {
    width: max-content;
    font-size: var(--font-size-sm);
  }

  .page-hero__content {
    padding: 30px var(--layout-padding-mobile) 50px;
  }

  .page-section {
    padding: 40px var(--layout-padding-mobile);
  }

  .page-section__title {
    font-size: var(--font-size-2xl);
    gap: 12px;
  }

  .page-section__title-icon {
    width: 28px;
    height: 13px;
  }
}

.recruit-business__accent {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 40%;
}
.recruit-business-cards {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  align-items: stretch;
}

.recruit-business-card {
  background-color: var(--color-white);
  border-radius: var(--space-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.recruit-business-card__image {
  margin: 0;
  width: 100%;
  height: 16.5rem;
}

.recruit-business-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-business-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  padding: 0 var(--space-lg) var(--space-lg);
  margin-top: var(--space-md);
}

.recruit-business-card__heading {
  display: flex;
  flex-direction: column;
}

.recruit-business-card__title {
  margin: 0;
  font-family: var(--font-main);
  font-size: var(--font-size-xl);
  font-weight: 700;
  line-height: 2.55;
  color: var(--color-blue-blue02);
}

.recruit-business-card__lead {
  margin: 0;
  font-family: var(--font-main);
  font-size: var(--font-size-md);
  font-weight: 700;
  line-height: var(--line-height-wide-plus);
  color: var(--color-black);
}

.recruit-business-card__text {
  margin: 0;
  font-family: var(--font-main);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: var(--line-height-wide-plus);
  color: var(--color-black);
}

@media screen and (max-width: 1024px) {
  .recruit-business-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .recruit-business-cards {
    margin-top: var(--space-lg);
    grid-template-columns: 1fr;
  }

  .recruit-business-card__image {
    height: 15rem;
  }

  .recruit-business-card__title {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-normal-plus);
  }

  .recruit-business-card__body {
    padding: 0 var(--space-md) var(--space-md);
    gap: var(--space-lg);
  }
}
