/* ========== 会社概要 ========== */

.company-profile {
  padding: 80px 16px 120px;
  background: #f9fafb;
}

.company-profile__inner {
  max-width: 960px;
  margin: 0 auto;
}

.company-profile__title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.company-profile__table {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.company-profile__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 20px 24px;
  border-top: 1px solid #e5e7eb;
}

.company-profile__row:first-child {
  border-top: none;
}

.company-profile__row dt {
  font-size: 14px;
  font-weight: 600;
  color: #4b5563;
}

.company-profile__row dd {
  font-size: 14px;
  color: #111827;
  line-height: 1.8;
}

/* Map */
.company-profile__map {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

/* SP レイアウト調整 */
@media (max-width: 768px) {
  .company-profile {
    padding: 56px 16px 80px;
  }

  .company-profile__title {
    font-size: 22px;
  }

  .company-profile__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 16px;
  }

  .company-profile__row dt {
    font-size: 13px;
  }

  .company-profile__row dd {
    font-size: 13px;
  }
}

/* プライバシーポリシー　*/


.policy {
  padding: 80px 16px 120px;
  background: #f9fafb;
}

.policy__inner {
  max-width: 960px;
  margin: 0 auto;
}

.policy__title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.policy__lead {
  margin-bottom: 32px;
  line-height: 1.9;
  color: #374151;
}

.policy__block+.policy__block {
  margin-top: 28px;
}

.policy__heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.policy__text {
  font-size: 14px;
  line-height: 1.9;
  color: #374151;
}

.policy__list {
  margin-top: 4px;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 1.9;
  color: #374151;
}

.policy__footer {
  margin-top: 40px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .policy {
    padding: 56px 16px 80px;
  }

  .policy__title {
    font-size: 22px;
  }
}