/* ==============================================
   legal.css — プライバシーポリシー・特商法ページ共通スタイル
   ============================================== */

/* ---------- Page Header（contact.cssと共有） ---------- */
.page-header {
  background: var(--gray-bg);
  text-align: center;
  padding: 56px 24px 48px;
  border-bottom: 1px solid var(--border);
}
.page-header-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.page-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}

/* ---------- Main Wrapper ---------- */
.legal-wrap {
  max-width: 760px;
  margin: 56px auto 96px;
  padding: 0 24px;
}

/* ---------- Lead ---------- */
.legal-lead {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.9;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

/* ---------- Sections ---------- */
.legal-section {
  margin-bottom: 48px;
}
.legal-section h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}
.legal-section h2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.legal-section p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.9;
  margin-bottom: 12px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section p a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-section ul,
.legal-section ol {
  padding-left: 1.4em;
  margin: 12px 0 16px;
}
.legal-section li {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.9;
  margin-bottom: 4px;
}

/* ---------- Contact Box ---------- */
.legal-contact {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
  margin-top: 16px;
}
.legal-contact dl {}
.legal-contact-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.legal-contact-row:last-child { border-bottom: none; }
.legal-contact-row dt {
  font-weight: 600;
  color: #555;
}
.legal-contact-row dd {
  color: #333;
}
.legal-contact-row dd a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Footer Date ---------- */
.legal-date {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: #999;
  text-align: right;
  line-height: 1.8;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .page-header h1 { font-size: 1.6rem; }
  .legal-wrap { margin: 40px auto 64px; }
  .legal-contact { padding: 20px; }
  .legal-contact-row { grid-template-columns: 80px 1fr; }
}
