/* ==========================================================================
   privacy-style.css
   プライバシーポリシーページ（page-privacy-policy.php）専用スタイル
   デザイントークン：ネイビー #004183／コーラル #C63031
   フォント：Zen Old Mincho（見出し）／Zen Kaku Gothic New（本文）
   company-style.css / line-consult-style.css の構成に準拠
   2026-07-30新規作成：SWELLデフォルトテンプレートからの全面刷新に伴う専用スタイル
   ========================================================================== */

.pp-page {
  --pp-navy: #004183;
  --pp-coral: #C63031;
  --pp-bg-soft: #F7F9FB;
  --pp-text: #262626;
  --pp-border: #E5E9ED;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--pp-text);
  line-height: 1.9;
}

.pp-page h1,
.pp-page h2 {
  font-family: "Zen Old Mincho", serif;
  color: var(--pp-navy);
}

.pp-hero__inner,
.pp-toc__inner,
.pp-body__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- ヒーロー（他ページとメインビジュアル高さ統一・写真なし簡潔版） ---------- */
.pp-hero {
  background: linear-gradient(180deg, #EAF4FF 0%, #fff 100%);
  padding: 88px 0;
  min-height: 300px;
  display: flex;
  align-items: center;
  text-align: center;
}
.pp-hero__eyebrow {
  color: var(--pp-navy);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
}
.pp-hero__title {
  font-size: 2rem;
  margin: 0 0 14px;
}
.pp-hero__sub {
  font-size: 1rem;
  color: #555;
  margin: 0;
}

/* ---------- 目次 ---------- */
.pp-toc {
  background: var(--pp-bg-soft);
  border-bottom: 1px solid var(--pp-border);
  padding: 28px 0;
}
.pp-toc__label {
  font-family: "Zen Old Mincho", serif;
  color: var(--pp-navy);
  font-weight: 700;
  font-size: 0.98rem;
  margin: 0 0 12px;
}
.pp-toc__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 24px;
  margin: 0;
  padding: 0 0 0 1.4em;
  font-size: 0.92rem;
}
.pp-toc__list a {
  color: var(--pp-navy);
  text-decoration: none;
}
.pp-toc__list a:hover {
  text-decoration: underline;
}

/* ---------- 本文 ---------- */
.pp-body {
  padding: 56px 0 72px;
}
.pp-block {
  padding-top: 44px;
  margin-top: 44px;
  border-top: 1px solid var(--pp-border);
}
.pp-block:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}
.pp-block__title {
  font-size: 1.32rem;
  margin: 0 0 18px;
  padding-left: 14px;
  border-left: 4px solid var(--pp-coral);
  scroll-margin-top: 24px;
}
.pp-block__body p {
  font-size: 0.98rem;
  margin: 0 0 16px;
}
.pp-block__body p:last-child {
  margin-bottom: 0;
}
.pp-list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.pp-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.96rem;
}
.pp-list li:last-child {
  margin-bottom: 0;
}
.pp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pp-coral);
}
.pp-block__body a {
  color: var(--pp-navy);
  text-decoration: underline;
}

.pp-established {
  margin: 48px 0 0;
  font-size: 0.86rem;
  color: #888;
  text-align: right;
}

@media (min-width: 768px) {
  .pp-hero {
    padding: 110px 0;
    min-height: 380px;
  }
  .pp-hero__title {
    font-size: 2.6rem;
  }
  .pp-toc__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
