/* privacy.css — プライバシーポリシーページ固有のスタイル */

.page-content__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.page-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
}

/* ── 本文（固定ページのDB本文: p / h2 / ul をそのまま表示する）──
   base.cssのリセットで段落の余白・見出しサイズ・箇条書きの点が消えるため、
   ここで読みやすく整える（行間を広く＝クライアント要望 2026-07-07） */
.privacy-body {
  font-size: 14.5px;
  line-height: 2.1;
  color: #1d2327;
}

.privacy-body p {
  margin: 0 0 1.5em;
}

.privacy-body h2 {
  font-size: 17px;
  font-weight: 700;
  margin: 2.4em 0 1em;
  padding-bottom: 8px;
  border-bottom: 2px solid #00a63e;
}

.privacy-body ul {
  list-style: disc;
  padding-left: 1.6em;
  margin: 0 0 1.5em;
}

.privacy-body li {
  margin: 0.5em 0;
}

.privacy-body a {
  color: #008236;
  text-decoration: underline;
}

.policy-page__updated {
  font-size: 13px;
  color: #6a7282;
  margin-bottom: 32px;
}

.policy-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.policy-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-section__heading {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 2px solid #00a63e;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
  list-style: disc;
}

.policy-list li {
  font-size: 15px;
  line-height: 1.7;
  color: #364153;
}

.policy-contact {
  background: #f3f4f6;
  padding: 16px;
  font-size: 15px;
  line-height: 2;
}

.policy-contact a {
  color: #008236;
  text-decoration: underline;
}
