/* ============================================
   PRIVACY POLICY ページ固有スタイル
   ============================================ */

/* コンテンツ幅ラッパー */
.privacy-wrap {
  max-width: 820px;
  margin: 0 auto;
}

/* カード */
.privacy-card {
  padding: 48px 40px;
}

/* 本文エリア */
.privacy-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-main);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-brand);
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  margin-bottom: 16px;
}

.privacy-content ul,
.privacy-content ol {
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-main);
  margin: 0 0 16px 24px;
}
.privacy-content ul { list-style: disc; }
.privacy-content ol { list-style: decimal; }

.privacy-content li {
  margin-bottom: 6px;
}

.privacy-content a:not(.sl-btn) {
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 最終改定日 */
.privacy-meta {
  font-size: 13px;
  color: var(--color-muted);
  text-align: right;
  margin-top: 40px;
  margin-bottom: 0;
}

/* ボタン */
.privacy-actions {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .privacy-card {
    padding: 32px 20px;
  }
}
