/* ============================================================
   relyon-privacy-policy.css – プライバシーポリシー専用スタイル
   ============================================================ */

:root {
  --c-accent: #009DE6;
  --c-accent-deep: #00489D;
  --c-text: #333333;
  --c-text-mid: #555555;
  --c-border: #E5E5E5;
}

body.page-privacy-policy {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  color: var(--c-text);
}

.rpp-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   セクション
   ============================================================ */
.rpp-section {
  padding: 120px 0 160px;
}

/* ============================================================
   ページタイトル
   ============================================================ */
.rpp-title {
  margin: 0 0 64px;
  text-align: center;
  font-family: 'Zen Old Mincho', 'Yu Mincho', serif;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.rpp-title__text {
  color: var(--c-accent-deep);
  background: linear-gradient(90deg, var(--c-accent-deep) 0%, var(--c-accent) 100%);
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .rpp-title__text {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

/* ============================================================
   本文（管理画面のリッチテキストから出力される要素）
   ============================================================ */
.rpp-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--c-text);
}

.rpp-body > *:first-child {
  margin-top: 0;
}

.rpp-body > *:last-child {
  margin-bottom: 0;
}

.rpp-body p {
  margin: 0 0 16px;
}

.rpp-body h2 {
  margin: 48px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-accent);
  font-family: 'Zen Old Mincho', 'Yu Mincho', serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--c-accent-deep);
  line-height: 1.5;
}

.rpp-body h3 {
  margin: 32px 0 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.6;
}

.rpp-body ul,
.rpp-body ol {
  margin: 0 0 16px;
  padding-left: 1.5em;
}

.rpp-body li {
  margin-bottom: 4px;
}

.rpp-body li:last-child {
  margin-bottom: 0;
}

.rpp-body a {
  color: var(--c-accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rpp-body a:hover,
.rpp-body a:focus-visible {
  color: var(--c-accent);
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 767px) {
  .rpp-section {
    padding: 60px 0 100px;
  }

  .rpp-container {
    padding: 0 20px;
  }

  .rpp-title {
    margin-bottom: 40px;
    font-size: 26px;
  }

  .rpp-body {
    font-size: 14px;
  }

  .rpp-body h2 {
    margin-top: 36px;
    font-size: 18px;
  }

  .rpp-body h3 {
    margin-top: 24px;
    font-size: 15px;
  }
}
