/* ============================================================
   privacy.css — プライバシーポリシー（F規約型・2026-07-09再設計）
   目次アンカー＋条文。Article幅720px・装飾最小・読みやすさ最優先
   ※style.cssは編集禁止のためページ固有分をここに定義
   ============================================================ */

/* ---------- 文書コンテナ（Article 720px） ---------- */
.doc-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.doc {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.doc + .doc {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

/* ---------- 文書見出し（日本語主・英字は金の眉ラベル） ---------- */
.doc__head {
  margin-bottom: 36px;
}

.doc__sub {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.doc__sub::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.doc__title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.doc__org {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-sub);
}

/* ---------- 条文タイポグラフィ ---------- */
/* 見出し装飾：金縦バーは全廃→グレー下罫線（2026-07-12） */
.doc h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.doc h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 26px 0 10px;
}

.doc p {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.doc a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.doc ul {
  list-style: none;
  margin: 0 0 18px;
}

.doc ul li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.doc ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ---------- 連絡先ボックス・番号ブロック ---------- */
.doc-contactbox {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px 24px;
  margin: 18px 0 24px;
}

.doc-contactbox p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 4px;
}

.doc-contactbox__title {
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px !important;
  color: var(--secondary);
}

.doc-numblock {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px 20px;
  margin-bottom: 12px;
}

.doc-numblock__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px !important;
}

.doc-numblock__num {
  flex: none;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--secondary);
  color: var(--text-inverse);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
}

.doc-numblock ul {
  margin-bottom: 0;
}

.doc-numblock ul li:last-child {
  margin-bottom: 0;
}

/* ---------- 制定日メタ・末尾導線 ---------- */
.doc-meta {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.doc-meta p {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 4px;
}

.doc-foot {
  margin-top: 64px;
  padding: 48px 24px;
  background: var(--surface);
  border-radius: 6px;
  text-align: center;
}

.doc-foot__note {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.doc-foot__org {
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.9;
  color: var(--text-sub);
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 767px) {
  .doc + .doc {
    margin-top: 48px;
    padding-top: 56px;
  }

  .doc__title {
    font-size: 22px;
  }

  .doc-foot {
    padding: 36px 18px;
  }
}
