/* 法的ページ共通スタイル（terms, privacy, specified-commercial-transaction） */

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.legal-content {
  flex: 1;
  background: #fff;
  padding: 16px;
}

.last-updated {
  padding: 12px;
  background-color: rgba(247, 200, 220, 0.1);
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 24px;
}

.legal-section {
  margin-bottom: 24px;
}

.legal-section h2 {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-primary-text);
  margin-bottom: 8px;
}

.legal-section p,
.legal-section .section-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-foreground);
  white-space: pre-line;
}

/* 特商法ページ専用 */
.sct-section {
  margin-bottom: 24px;
}

.sct-section .sct-title {
  padding: 12px 16px;
  margin-bottom: 8px;
  background-color: rgba(247, 200, 220, 0.1);
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-primary-text);
}

.sct-section .sct-body {
  padding-left: 16px;
  padding-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-foreground);
  white-space: pre-line;
}

/* 関連リンクボックス */
.related-links {
  padding: 16px;
  border: 1px solid var(--color-light-gray);
  border-radius: 8px;
  margin-top: 32px;
  margin-bottom: 48px;
}

.related-links h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}

.related-links ul {
  list-style: none;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-foreground);
}

.related-links ul li::before {
  content: "• ";
}

.related-links a {
  color: #2563eb;
  text-decoration: underline;
}

.related-links a:hover {
  color: #1d4ed8;
}

/* 法的ページフッター */
.legal-footer {
  padding: 16px;
  background-color: var(--color-background);
  text-align: center;
  font-size: 14px;
  color: var(--color-foreground);
}
