/* Legal Pages CSS — Updated for new design system */

.legal-page {
  padding: 0 0 100px;
  min-height: 100vh;
}
.legal-page__header {
  text-align: center;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.legal-page__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.legal-page__body {
  max-width: 800px;
  margin: 0 auto;
}
.legal-section { margin-bottom: 40px; }
.legal-section__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
  padding-left: 14px;
  border-left: 3px solid var(--blue);
}
.legal-section__text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 12px;
}
.legal-section p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 12px;
}
.legal-section ul,
.legal-section__list { list-style: none; padding: 0; margin: 12px 0; }
.legal-section ul li,
.legal-section__list li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  padding: 4px 0 4px 20px;
  position: relative;
}
.legal-section ul li::before,
.legal-section__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.5;
}
.legal-hero {
  padding: calc(var(--header-h) + 60px) 0 40px;
  text-align: center;
  background: var(--bg-alt);
}
.legal-hero__title {
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
}
.legal-body {
  padding: 60px 0 100px;
}
.legal-date {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 40px;
  text-align: right;
}
.legal-info-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.legal-info-table tr + tr { border-top: 1px solid var(--border); }
.legal-info-table th {
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  background: var(--bg-alt);
  padding: 20px 24px;
  width: 200px;
  vertical-align: top;
  white-space: nowrap;
}
.legal-info-table td {
  font-size: 14px;
  color: var(--text);
  padding: 20px 24px;
  line-height: 1.8;
}
.legal-info-table td a {
  color: var(--blue);
  text-decoration: none;
}
.legal-info-table td a:hover {
  text-decoration: underline;
}
.legal-info-table td ul { list-style: none; padding: 0; }
.legal-info-table td ul li { padding: 4px 0 4px 16px; position: relative; }
.legal-info-table td ul li::before { content: '・'; position: absolute; left: 0; }

@media (max-width: 768px) {
  .legal-hero { padding: calc(var(--header-h) + 40px) 0 30px; }
  .legal-hero__title { font-size: 24px; }
  .legal-page { padding: calc(var(--header-h) + 40px) 0 80px; }
  .legal-page__title { font-size: 28px; }
  .legal-body { padding: 40px 0 80px; }
  .legal-info-table th, .legal-info-table td { display: block; width: 100%; padding: 12px 20px; }
  .legal-info-table th { background: transparent; padding-bottom: 0; font-size: 13px; }
  .legal-info-table td { padding-top: 4px; }
}
