.company-page {
  --company-navy: #121a2c;
  --company-navy-soft: #1d2a3f;
  --company-text: #1f2937;
  --company-muted: #64748b;
  --company-orange: #f7931e;
  --company-orange-dark: #ea7600;
  --company-bg: #f7fafc;
  --company-line: #e5eaf0;
  --company-card: #ffffff;
  --company-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  background: #fff;
  color: var(--company-text);
  overflow-x: hidden;
}

.company-page * {
  box-sizing: border-box;
}

.company-container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.company-eyebrow {
  margin: 0 0 14px;
  color: var(--company-orange);
  font-family: Montserrat, "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.company-hero {
  position: relative;
  padding: 72px 0 98px;
  background-color: var(--company-bg);
  background-image:
    linear-gradient(90deg, rgba(247, 250, 252, 0.98) 0%, rgba(247, 250, 252, 0.92) 42%, rgba(247, 250, 252, 0.52) 100%),
    url("../about/about-cityline.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}

.company-hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
  align-items: center;
}

.company-hero-copy {
  position: relative;
  z-index: 1;
}

.company-hero h1 {
  margin: 0;
  color: var(--company-navy);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.18;
}

.company-lead {
  margin-top: 24px;
  max-width: 480px;
}

.company-lead p,
.company-text p,
.company-map-body p {
  margin: 0 0 16px;
  color: #334155;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.95;
}

.company-lead p:last-child,
.company-text p:last-child,
.company-map-body p:last-child {
  margin-bottom: 0;
}

.company-hero-image {
  margin: 0;
  min-height: 330px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
}

.company-hero-image img,
.company-message-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-feature-strip {
  position: relative;
  z-index: 2;
  margin-top: -50px;
  padding-bottom: 46px;
}

.company-feature-card-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.company-feature-card {
  min-height: 132px;
  padding: 24px 22px;
  background: var(--company-card);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 8px;
  box-shadow: var(--company-shadow);
}

.company-feature-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--company-orange);
  font-size: 25px;
}

.company-feature-card h2 {
  margin: 0 0 8px;
  color: var(--company-navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.company-feature-card p {
  margin: 0;
  color: var(--company-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
}

.company-message {
  padding: 48px 0 86px;
}

.company-message-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.company-section-copy h2,
.company-profile-block h2,
.company-history h2 {
  margin: 0 0 24px;
  color: var(--company-navy);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.35;
}

.company-text {
  max-width: 520px;
}

.company-message-image {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.company-profile-section {
  padding: 6px 0 74px;
}

.company-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.company-profile-block {
  min-width: 0;
}

.company-profile-table {
  width: 100%;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--company-line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.company-profile-table th,
.company-profile-table td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--company-line);
  font-size: 14px;
  line-height: 1.75;
  text-align: left;
  vertical-align: top;
}

.company-profile-table th {
  width: 132px;
  color: #475569;
  background: #f8fafc;
  font-weight: 800;
}

.company-profile-table td {
  color: #334155;
  font-weight: 600;
}

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

.company-profile-table a {
  color: var(--company-orange-dark);
  font-weight: 800;
  text-decoration: none;
}

.company-profile-table a:hover {
  text-decoration: underline;
}

.company-map-card {
  position: relative;
  min-height: 382px;
  padding: 42px 40px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--company-line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.company-map-logo {
  display: block;
  width: 178px;
  max-width: 58%;
  height: auto;
  margin-bottom: 26px;
}

.company-map-body {
  position: relative;
  z-index: 2;
  max-width: 320px;
}

.company-map-visual {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(58%, 340px);
  min-height: 245px;
  pointer-events: none;
}

.company-map-image {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.82;
}

.company-map-circle-image {
  position: absolute;
  right: 8px;
  bottom: 2px;
  display: block;
  width: 132px;
  height: 132px;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}

.company-history {
  padding: 0 0 66px;
}

.company-history h2 {
  margin-bottom: 28px;
}

.company-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 32px 0 0;
  list-style: none;
}

.company-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--company-line);
}

.company-timeline li {
  position: relative;
  min-width: 0;
  text-align: center;
}

.company-timeline li::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--company-orange);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(247, 147, 30, 0.18);
  transform: translateX(-50%);
}

.company-timeline time {
  display: block;
  margin-bottom: 8px;
  color: var(--company-navy);
  font-family: Montserrat, "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
}

.company-timeline span {
  display: block;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.company-cta {
  padding: 0 0 82px;
}

.company-cta-panel {
  padding: 48px 36px;
  color: #fff;
  text-align: center;
  background-color: var(--company-navy);
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.company-cta-panel h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.45;
}

.company-cta-panel p {
  max-width: 660px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.company-cta-button {
  display: inline-flex;
  min-height: 48px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 30px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  background: linear-gradient(90deg, var(--company-orange), var(--company-orange-dark));
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(234, 118, 0, 0.32);
}

.company-cta-button:hover {
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 1020px) {
  .company-hero-grid,
  .company-message-grid,
  .company-profile-grid {
    grid-template-columns: 1fr;
  }

  .company-hero {
    padding: 58px 0 88px;
  }

  .company-hero-image {
    min-height: 280px;
  }

  .company-feature-card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-message-grid {
    gap: 36px;
  }

  .company-profile-grid {
    gap: 34px;
  }

  .company-map-card {
    min-height: 340px;
  }
}

@media (max-width: 720px) {
  .company-container {
    width: min(100% - 24px, 1120px);
  }

  .company-hero {
    padding: 42px 0 78px;
  }

  .company-hero-grid {
    gap: 30px;
  }

  .company-hero h1 {
    font-size: 36px;
  }

  .company-lead p,
  .company-text p,
  .company-map-body p {
    font-size: 14px;
    line-height: 1.85;
  }

  .company-hero-image {
    min-height: 220px;
  }

  .company-feature-strip {
    margin-top: -42px;
    padding-bottom: 34px;
  }

  .company-feature-card-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .company-feature-card {
    min-height: 0;
    padding: 20px;
  }

  .company-message {
    padding: 34px 0 58px;
  }

  .company-section-copy h2,
  .company-profile-block h2,
  .company-history h2 {
    font-size: 26px;
  }

  .company-profile-section {
    padding-bottom: 56px;
  }

  .company-profile-table th,
  .company-profile-table td {
    display: block;
    width: 100%;
    padding: 13px 16px;
  }

  .company-profile-table th {
    border-bottom: 0;
  }

  .company-profile-table td {
    padding-top: 0;
  }

  .company-map-card {
    min-height: 0;
    padding: 28px 22px 24px;
  }

  .company-map-logo {
    width: 150px;
  }

  .company-map-body {
    max-width: none;
  }

  .company-map-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 360px);
    min-height: 0;
    margin: 22px auto 0;
  }

  .company-map-circle-image {
    width: 104px;
    height: 104px;
    border-width: 6px;
  }

  .company-timeline {
    display: block;
    padding: 0 0 0 24px;
  }

  .company-timeline::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 6px;
    width: 3px;
    height: 100%;
  }

  .company-timeline li {
    padding: 0 0 24px;
    text-align: left;
  }

  .company-timeline li:last-child {
    padding-bottom: 0;
  }

  .company-timeline li::before {
    top: 2px;
    left: -18px;
    transform: none;
  }

  .company-cta {
    padding-bottom: 58px;
  }

  .company-cta-panel {
    padding: 34px 20px;
  }

  .company-cta-panel h2 {
    font-size: 23px;
  }

  .company-cta-button {
    width: 100%;
    min-height: 50px;
    padding-inline: 18px;
  }
}
