/* ============================================
   Legal Pages — Stylesheet
   ============================================ */

.legal {
  padding: 120px 0 80px;
  min-height: 60vh;
}

.legal__title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--color-text);
}

.legal__updated {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 48px;
}

.legal__section {
  margin-bottom: 36px;
}

.legal__section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.legal__section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 16px;
  margin-bottom: 8px;
}

.legal__section p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal__section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.legal__section ul li {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.legal__section ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* ---------- 特定商取引法テーブル ---------- */

.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.legal__table th,
.legal__table td {
  font-size: 0.92rem;
  line-height: 1.8;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.legal__table th {
  width: 200px;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-bg-gray);
  white-space: nowrap;
}

.legal__table td {
  color: var(--color-text-secondary);
}

/* ---------- お問い合わせカード ---------- */

.contact-card {
  max-width: 520px;
  margin: 48px auto 0;
  text-align: center;
  background: var(--color-bg-gray);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.contact-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.contact-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.contact-card__desc {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-card__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact-card__or {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin: 8px 0 4px;
}

.contact-card__note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .legal {
    padding: 100px 0 60px;
  }

  .legal__title {
    font-size: 1.4rem;
  }

  .legal__table th {
    width: 120px;
    font-size: 0.85rem;
    padding: 12px;
  }

  .legal__table td {
    font-size: 0.85rem;
    padding: 12px;
  }

  .contact-card {
    padding: 32px 24px;
  }
}
