/* WOOVE - privacy.css */

/* ===== HERO ===== */
.pp-hero {
  padding: 160px 60px 72px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.pp-hero-inner { max-width: 800px; }
.hero-label {
  font-size: 10px; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeUp 0.9s 0.2s forwards;
}
.hero-label::before { content: ''; width: 36px; height: 2px; background: var(--brand); }
.pp-hero-title {
  font-weight: 700; font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.35; margin-bottom: 20px; color: var(--ink);
  opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
}
.pp-hero-meta {
  font-size: 12px; color: var(--ink-light); letter-spacing: 0.05em;
  opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
}

/* ===== MAIN LAYOUT ===== */
.pp-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  padding: 72px 60px 120px;
  align-items: start;
}

/* ===== 目次（左サイドバー） ===== */
.pp-toc {
  position: sticky;
  top: 100px;
  padding-right: 40px;
  border-right: 1px solid var(--border);
}
.pp-toc-title {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brand); font-weight: 500; margin-bottom: 20px;
}
.pp-toc-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.pp-toc-list a {
  font-size: 12px; color: var(--ink-light); text-decoration: none;
  padding: 6px 10px; display: block;
  border-left: 2px solid transparent;
  transition: all 0.2s; line-height: 1.6;
}
.pp-toc-list a:hover { color: var(--brand); border-left-color: var(--brand); background: var(--brand-pale); }
.pp-toc-list a.active { color: var(--brand); border-left-color: var(--brand); font-weight: 500; }

/* ===== 本文（右） ===== */
.pp-content {
  padding-left: 56px;
}

.pp-section {
  margin-bottom: 64px;
  scroll-margin-top: 100px;
}
.pp-section:last-child { margin-bottom: 0; }

.pp-section-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 0.2em;
  color: var(--brand); margin-bottom: 8px;
}
.pp-section-title {
  font-size: 20px; font-weight: 700; color: var(--ink);
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 2px solid var(--brand-pale);
}
.pp-text {
  font-size: 14px; line-height: 2.4; color: var(--ink-mid);
  margin-bottom: 16px;
}
.pp-text:last-child { margin-bottom: 0; }
.pp-text a { color: var(--brand); text-decoration: underline; }
.pp-text strong { font-weight: 500; color: var(--ink); }

.pp-list {
  list-style: none; margin: 16px 0;
  display: flex; flex-direction: column; gap: 10px;
}
.pp-list li {
  font-size: 14px; line-height: 2; color: var(--ink-mid);
  display: flex; align-items: flex-start; gap: 12px;
}
.pp-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--brand); margin-top: 10px; flex-shrink: 0;
}

.pp-note {
  margin: 20px 0;
  padding: 16px 20px;
  background: var(--bg-tint);
  border-left: 3px solid var(--brand);
  font-size: 13px; line-height: 2; color: var(--ink-light);
}
.pp-note a { color: var(--brand); }

.pp-updated {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--ink-light); text-align: right;
  letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav, nav.scrolled { padding: 16px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .pp-hero { padding: 120px 24px 56px; }
  .pp-layout { grid-template-columns: 1fr; padding: 48px 24px 80px; }
  .pp-toc { display: none; }
  .pp-content { padding-left: 0; }
  footer { grid-template-columns: 1fr; padding: 40px 24px; }
  .footer-right { text-align: left; }
}
@media (max-width: 599px) {
  footer { padding: 36px 20px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}