.company-profile {
  background: #f7fbff;
  padding: 70px 20px;
  font-family: "Noto Sans JP", "Inter", sans-serif;
  color: #0b2545;
}

.profile-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 45px;
}

.profile-head span {
  color: #0057ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.profile-head h2 {
  margin: 10px 0 22px;
  font-size: 36px;
  font-weight: 900;
}

.profile-head p {
  font-size: 15px;
  line-height: 2;
  color: #334155;
}

.profile-table {
  max-width: 1120px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.row {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-bottom: 1px solid #dbe5ef;
}

.row:last-child {
  border-bottom: none;
}

.label {
  background: #eaf4ff;
  color: #00468b;
  font-weight: 800;
  padding: 28px 32px;
  font-size: 15px;
}

.value {
  padding: 28px 32px;
  font-size: 15px;
  line-height: 1.9;
}

.value p {
  margin: 0 0 8px;
}

.value ul {
  margin: 0;
  padding-left: 20px;
}

.map-box {
  margin-top: 18px;
  width: 100%;
  max-width: 760px;
  height: 260px;
  border-radius: 12px;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 58px;
}

/* Tablet */
@media (max-width: 900px) {
  .company-profile {
    padding: 55px 16px;
  }

  .profile-head h2 {
    font-size: 30px;
  }

  .row {
    grid-template-columns: 220px 1fr;
  }

  .label,
  .value {
    padding: 24px;
  }

  .map-box {
    height: 220px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .profile-head h2 {
    font-size: 28px;
  }

  .profile-head p {
    font-size: 14px;
    text-align: left;
  }

  .profile-table {
    border-radius: 12px;
  }

  .row {
    grid-template-columns: 1fr;
  }

  .label {
    padding: 16px 20px;
    border-bottom: 1px solid #dbe5ef;
  }

  .value {
    padding: 20px;
    font-size: 14px;
  }

  .map-box {
    height: 190px;
    font-size: 44px;
  }
}