.about-hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--navy);
  background: #edf3f7;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.66) 48%, rgba(255, 255, 255, 0.2) 100%);
}

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

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

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

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

.about-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;
}

.company-profile {
  padding: 64px 43px 96px;
  background: #ffffff;
}

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

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

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

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

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

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

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

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

.profile-table small {
  color: rgba(8, 36, 72, 0.62);
  font-size: 12px;
}

.profile-note {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.8;
}

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

  .company-profile {
    padding: 56px 28px 78px;
  }
}

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

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

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

  .section-header {
    display: block;
  }

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

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

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

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

  .company-profile {
    padding: 48px 20px 64px;
  }
}

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

  .company-profile {
    padding: 48px 20px 64px;
  }

  .about-hero__lead,
  .profile-table dd {
    font-size: 13px;
  }
}
