/* ===================================================
   privacy.css — プライバシーポリシーページ
   =================================================== */

.privacy-main {
  padding: 60px 0 80px;
  background: var(--bg);
}

/* ---------- ページタイトル ---------- */
.privacy-hero {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--border);
}
.privacy-title {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 8px;
}
.privacy-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ---------- 本文エリア ---------- */
.privacy-body {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 48px 56px;
}

.privacy-intro {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

/* ---------- 各セクション ---------- */
.privacy-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.privacy-section:last-of-type {
  border-bottom: none;
}
.privacy-section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.privacy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--corp);
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
}
.privacy-section p {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 12px;
}
.privacy-section ul {
  margin: 12px 0 12px 8px;
}
.privacy-section ul li {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.85;
  padding: 4px 0 4px 18px;
  position: relative;
}
.privacy-section ul li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--corp);
}

/* ---------- お問い合わせ窓口ボックス ---------- */
.privacy-contact-box {
  background: var(--corp-lt);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 14px;
}
.privacy-contact-box p {
  font-size: 0.9rem;
  color: var(--text-sub);
  margin-bottom: 6px !important;
}
.privacy-contact-box p strong {
  color: var(--text-main);
  font-weight: 700;
}
.privacy-contact-box i {
  color: var(--corp);
  margin-right: 8px;
  width: 16px;
}
.privacy-contact-box a {
  color: var(--corp);
}
.privacy-contact-box a:hover { text-decoration: underline; }

/* ---------- 制定日 ---------- */
.privacy-date {
  text-align: right;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ---------- 戻るボタン ---------- */
.privacy-back {
  text-align: center;
  margin-top: 32px;
}

/* ===================================================
   レスポンシブ
   =================================================== */
@media (max-width: 640px) {
  .privacy-body {
    padding: 28px 20px;
    border-radius: var(--radius);
  }
  .privacy-title { font-size: 1.5rem; }
}
