/* ============================================================
   プライバシーポリシーページ - スタイルシート
============================================================ */
:root {
  --navy: #1a2e56;
  --pink: #ec4d7f;
  --pink-dark: #d63369;
  --bg-cream: #fff8ee;
  --text-dark: #333;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  background: var(--bg-cream);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
}

.pp-header {
  background: linear-gradient(160deg, #1a2e56 0%, #0f1d3a 100%);
  padding: 22px 20px 30px;
  text-align: center;
  position: relative;
}

.pp-back {
  position: absolute;
  left: 20px;
  top: 22px;
  color: #c7d0e6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pp-back:hover { color: #fff; }

.pp-title {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  margin: 20px 0 0;
}

.pp-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.pp-updated {
  color: #999;
  font-size: 13px;
  margin-bottom: 24px;
  text-align: right;
}

.pp-lead {
  font-size: 15px;
  margin-bottom: 36px;
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid #f0e2d0;
}

.pp-section {
  margin-bottom: 32px;
}

.pp-section h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  border-left: 5px solid var(--pink);
  padding-left: 12px;
  margin-bottom: 14px;
}

.pp-section p,
.pp-section ul {
  font-size: 14.5px;
  color: #444;
}

.pp-section ul {
  padding-left: 22px;
}
.pp-section li {
  margin-bottom: 6px;
}

.pp-company-box {
  background: #fff;
  border: 1px solid #f0e2d0;
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 16px;
  font-size: 14px;
}

.pp-company-name {
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 15px;
}

.pp-footer {
  text-align: center;
  padding: 30px 20px 50px;
}

.pp-footer-link {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 32px;
  border-radius: 999px;
  transition: filter 0.2s ease;
}
.pp-footer-link:hover { filter: brightness(1.08); }

@media (max-width: 480px) {
  .pp-title { font-size: 20px; }
  .pp-back { font-size: 12px; left: 14px; top: 20px; }
  .pp-main { padding: 32px 16px 50px; }
}
