/* ======================
   About Info Section
   ====================== */
.about-info-section {
  background: #fff;
  padding: 80px 0;
}

.about-table-wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.about-table {
  flex: 1;
  width: 50%;
  border-collapse: collapse;
}

.about-table th,
.about-table td {
  font-size: 14px;
  padding: 22px 24px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #E5E7EB;
}

.about-table tr:first-child th,
.about-table tr:first-child td {
  border-top: 1px solid #E5E7EB;
}

.about-table th {
  background: #F9FAFB;
  color: #364153;
  font-weight: 400;
  width: 140px;
  white-space: nowrap;
}

.about-table td {
  background: #fff;
  color: #101828;
}

.about-table td a {
  color: inherit;
  text-decoration: none;
}

.about-table td a:hover {
  text-decoration: underline;
}

/* ======================
   Access Section
   ====================== */
.access-section {
  background: #F9FAFB;
  padding: 80px 0;
}

.access-desc {
  font-size: 18px;
  color: #364153;
  line-height: 1.8;
  margin: 0 0 12px;
}

.access-desc:last-of-type {
  margin-bottom: 40px;
}

.access-map {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
  margin-bottom: 0;
}

.access-address {
  font-size: 16px;
  color: #101828;
  margin: 0;
  padding: 1.5rem;
}

.access-box {
  box-shadow: 0 5px 10px rgb(0 0 0/.25);
  border-radius: 10px;
  overflow: hidden;
}

/* ======================
   CTA Section
   ====================== */
.cta-section {
  background: #1C5C9A;
  padding: 72px 0;
  text-align: center;
}

.cta-label {
  font-size: 30px;
  color: #fff;
  font-weight: 400;
  margin: 0 0 20px;
  line-height: 1.4;
}

.cta-phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 20px;
}

.cta-phone-icon {
  width: 40px;
  height: 40px;
  fill: #fff;
  flex-shrink: 0;
}

.cta-phone-number {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.cta-sub {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin: 0 0 8px;
}

.cta-hours {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin: 0;
}

/* ======================
   Responsive (SP)
   ====================== */
@media (max-width: 767px) {
  .about-info-section {
    padding: 48px 0;
  }

  .about-table-wrap {
    flex-direction: column;
    gap: 0;
  }

  .about-table {
    width: 100%;
  }

  .about-table:first-child tr:last-child th,
  .about-table:first-child tr:last-child td {
    border-bottom: none;
  }

  .about-table th {
    width: 110px;
    white-space: normal;
    padding: 14px 12px;
    font-size: 13px;
  }

  .about-table td {
    padding: 14px 12px;
    font-size: 13px;
  }

  .access-section {
    padding: 48px 0;
  }

  .access-desc {
    font-size: 15px;
  }

  .access-map {
    height: 260px;
  }

  .access-address {
    font-size: 14px;
  }

  .cta-section {
    padding: 48px 0;
  }

  .cta-label {
    font-size: 18px;
  }

  .cta-phone-icon {
    width: 28px;
    height: 28px;
  }

  .cta-phone-number {
    font-size: 32px;
  }

  .cta-sub {
    font-size: 16px;
  }

  .cta-hours {
    font-size: 14px;
  }
}