/* ========================================
   プライバシーポリシー ページ固有CSS
   v1 - 2026.03.20
======================================== */

/* ページヒーロー */
.page-hero--privacy {
  padding: 120px 2rem 60px;
  background: var(--bg-light);
  text-align: center;
}

.page-hero--privacy .page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero--privacy .section-label { margin-bottom: 1rem; }

.page-hero--privacy h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.page-hero--privacy .page-hero-lead {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 2;
  font-weight: 500;
}

/* 本文セクション */
.policy-section {
  padding: 60px 2rem 80px;
  background: var(--bg-white);
}

.policy-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* 冒頭文 */
.policy-intro {
  background: var(--bg-blue-light);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  border-left: 5px solid var(--primary-blue);
}

.policy-intro p {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 2;
  color: var(--text-dark);
  margin: 0;
}

/* 各項目 */
.policy-block {
  margin-bottom: 2.5rem;
}

.policy-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-number {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-blue);
  min-width: 2rem;
}

.policy-block p {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.policy-block p:last-child { margin-bottom: 0; }

/* リスト */
.policy-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.policy-list li {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 2;
  color: var(--text-dark);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.3rem;
}

.policy-list li::before {
  content: "●";
  color: var(--primary-blue);
  font-size: 0.5rem;
  position: absolute;
  left: 0.3rem;
  top: 0.15rem;
}

/* カード形式（収集情報） */
.policy-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 0.75rem;
  border-left: 4px solid var(--primary-blue);
}

.policy-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.policy-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.8;
}

/* お問い合わせ先 */
.policy-contact {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-top: 1rem;
}

.policy-contact p {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.policy-contact strong {
  font-weight: 800;
  color: var(--text-dark);
}

/* リンク */
.policy-link {
  color: var(--primary-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s;
}

.policy-link:hover { opacity: 0.7; }

/* 制定日 */
.policy-date {
  text-align: right;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.policy-date p {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .page-hero--privacy {
    padding: 100px 1.5rem 40px;
  }

  .page-hero--privacy h1 {
    font-size: 1.5rem;
  }

  .policy-intro {
    padding: 1.5rem;
  }

  .policy-contact {
    padding: 1.25rem 1.5rem;
  }
}
