/* ===== Company Info ===== */
.company-info {
  position: relative;
  padding: 100px 0;
  background-color: var(--background, #fff);
}

.company-info__bg {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.company-info__container {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.company-info__logo {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.company-info__title {
  background: linear-gradient(90deg, rgba(122,200,240,1) 0%, rgba(0,123,199,1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3.64px;
  margin: 0 0 30px 0;
  color: transparent; /* グラデ文字以外の環境のため */
}

.company-info__divider {
  display: block;
  width: min(839px, 100%);
  height: 1px;
  background-color: #b2e0f8;
  margin: 0 auto 60px;
}

.company-info__table {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 40px;
  text-align: left;
}

.company-info__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 20px 0;
  border-bottom: 1px solid #b2e0f8;
  align-items: start;
}
.company-info__row:last-child {
  border-bottom: none;
}

.company-info__label,
.company-info__value {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text-primary, #0e2a3f);
  line-height: 30px;
  word-break: break-word;
}

.google-map {
  width: 100%;
}

@media (max-width: 1024px) {
  .company-info__table { padding: 30px 20px; }
  .company-info__row {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
  .company-info__label {
    font-weight: 700;
    color: var(--primary, #2d5ea3);
  }
}

@media (max-width: 768px) {
  .company-info__title { font-size: 24px; letter-spacing: 2px; }
  .company-info__label,
  .company-info__value { font-size: 16px; letter-spacing: 1px; line-height: 28px; }
}
