@charset "utf-8";

.page-hero {
  position: relative;
  padding: 90px 0 72px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-soft));
  color: #fff;
}

.page-hero::after {
  position: absolute;
  right: -100px;
  bottom: -170px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(211, 160, 79, 0.35);
  border-radius: 50%;
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
}

.page-kicker,
.company-section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.page-hero p:last-child {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  width: min(1040px, calc(100% - 48px));
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.company-main-section {
  padding: 68px 0 110px;
  background: var(--ivory);
}

.company-container {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
}

.company-card {
  padding: 38px 42px 42px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 12px 34px rgba(4, 28, 51, 0.06);
}

.company-section-heading {
  margin-bottom: 26px;
}

.company-section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.4;
}

.company-table-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
}

.company-profile {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.company-profile th,
.company-profile td {
  padding: 19px 22px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.8;
  vertical-align: top;
}

.company-profile tr:last-child th,
.company-profile tr:last-child td {
  border-bottom: 0;
}

.company-profile th {
  width: 230px;
  background: #f4f7fa;
  color: var(--navy);
  font-weight: 700;
  text-align: left;
}

.company-profile td {
  color: #20252b;
}

.company-profile a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(8, 42, 74, 0.35);
  text-underline-offset: 4px;
}

.business-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-list li {
  position: relative;
  padding-left: 1.25em;
}

.business-list li + li {
  margin-top: 5px;
}

.business-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  content: "・";
  font-weight: 700;
}



@media (max-width: 700px) {
  .page-hero {
    padding: 70px 0 56px;
  }

  .page-hero-inner,
  .breadcrumb,
  .company-container {
    width: min(100% - 32px, 1040px);
  }

  .page-hero p:last-child {
    line-height: 1.8;
  }

  .company-main-section {
    padding: 44px 0 78px;
  }

  .company-card {
    padding: 26px 22px;
  }

  .company-table-wrap {
    border: 0;
  }

  .company-profile,
  .company-profile tbody,
  .company-profile tr,
  .company-profile th,
  .company-profile td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .company-profile tr {
    border: 1px solid var(--border);
    border-bottom: 0;
  }

  .company-profile tr:last-child {
    border-bottom: 1px solid var(--border);
  }

  .company-profile th,
  .company-profile td {
    border: 0;
  }

  .company-profile th {
    padding: 12px 16px;
  }

  .company-profile td {
    padding: 15px 16px 18px;
  }

}
