/* =========================
   Privacy Page
========================= */
/* ===== HERO ===== */
#pp-hero{ position: relative; min-height: 38vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--navy2);
}
#pp-hero::before{ content: ''; position: absolute; inset: 0;
  background: linear-gradient(130deg, rgba(15,30,66,.95) 0%, rgba(27,45,94,.80) 55%, rgba(40,176,210,.15) 100%);
}
#pp-hero::after{ content: ''; position: absolute; top: -120px; right: -120px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(40,176,210,.22) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-grid-lines{ position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-grid-lines::before{ content: ''; position: absolute; top: 0; left: 50%; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, rgba(40,176,210,.12), transparent); }
.hero-grid-lines::after{ content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(40,176,210,.12), transparent); }
.pp-hero-content{ position: relative; z-index: 2; width: 100%; padding: 110px 0 64px; }
.pp-hero-eyebrow{ display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.pp-hero-eyebrow-bar{ width: 40px; height: 2px; background: var(--blue); flex-shrink: 0; }
.pp-hero-eyebrow-text{ font-size: 11px; font-weight: 700; letter-spacing: .22em; color: var(--blue); text-transform: uppercase; }
.pp-hero-title{ font-size: clamp(32px, 5vw, 60px); font-weight: 900; color: #fff; line-height: 1.2; letter-spacing: -.02em; }
/* ===== POLICY CONTENT ===== */
#pp-body{ padding: 80px 0 100px; background: #fff; }
.pp-intro{ font-size: 15px; color: var(--gray700); line-height: 2;
  margin-bottom: 64px; padding-bottom: 48px;
  border-bottom: 1px solid var(--gray100);
}
.pp-article{ margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--gray100);
}
.pp-article:last-of-type{ border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.pp-article-heading{ font-size: 18px; font-weight: 900; color: var(--navy);
  margin-bottom: 20px; letter-spacing: -.01em;
  display: flex; align-items: baseline; gap: 12px;
}
.pp-article-heading::before{ content: ''; display: block; width: 4px; height: 18px;
  background: var(--blue); flex-shrink: 0; margin-top: 2px;
  align-self: center;
}
.pp-article p{ font-size: 14.5px; color: var(--gray700); line-height: 2; margin-bottom: 16px;
}
.pp-article p:last-child{ margin-bottom: 0; }
.pp-ol{ counter-reset: pp-counter;
  display: flex; flex-direction: column; gap: 12px;
}
.pp-ol > li{ counter-increment: pp-counter;
  font-size: 14.5px; color: var(--gray700); line-height: 1.9;
  display: grid; grid-template-columns: 24px 1fr; gap: 8px; align-items: start;
}
.pp-ol > li::before{ content: counter(pp-counter) ".";
  font-weight: 700; color: var(--blue); font-size: 13px;
  padding-top: 2px;
}
/* 入れ子リスト */
.pp-ol-nest{ counter-reset: pp-nest-counter;
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 12px; padding-left: 4px;
}
.pp-ol-nest > li{ counter-increment: pp-nest-counter;
  font-size: 14px; color: var(--gray500); line-height: 1.85;
  display: grid; grid-template-columns: 28px 1fr; gap: 6px; align-items: start;
}
.pp-ol-nest > li::before{ content: "(" counter(pp-nest-counter) ")";
  font-weight: 600; color: var(--gray500); font-size: 12.5px;
  padding-top: 2px;
}
/* 連絡先ボックス */
.pp-contact-box{ background: var(--gray50); border-left: 4px solid var(--blue);
  padding: 28px 32px; margin-top: 20px;
}
.pp-contact-box dl{ display: flex; flex-direction: column; gap: 10px; }
.pp-contact-box dt{ font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 2px;
}
.pp-contact-box dd{ font-size: 14.5px; color: var(--gray700); line-height: 1.7; margin-bottom: 14px;
}
.pp-contact-box dd:last-child{ margin-bottom: 0; }
.pp-contact-box a{ color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.pp-contact-box a:hover{ opacity: .75; }
.pp-closing{ text-align: right; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--gray100);
  font-size: 13px; color: var(--gray500); font-weight: 600; letter-spacing: .04em;
}
.pp-ol-spaced { margin-top: 16px; }
.pp-ol-nest-spaced { margin-top: 8px; }
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) { .pp-contact-box{ padding: 20px; }
}
