/* ============================================================
   PRIVACY page — extends shared chassis (service.css)
   個人情報の取扱いについて
   ============================================================ */

.pp-hero {
  background: var(--white);
  padding: 200px 0 100px;
  border-bottom: 1px solid var(--ink-200);
  position: relative;
}
.pp-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--is-orange);
}
.pp-breadcrumb {
  font-family: var(--font-latin);
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--ink-500);
  text-transform: uppercase;
  margin-bottom: 56px;
  display: flex; align-items: center; gap: 14px;
}
.pp-breadcrumb a { color: var(--ink-500); text-decoration: none; transition: color 200ms; }
.pp-breadcrumb a:hover { color: var(--is-orange); }
.pp-breadcrumb .sep { color: var(--ink-300); }

.pp-hero-eyebrow {
  font-family: var(--font-latin);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--is-orange);
  text-transform: uppercase;
  padding-top: 24px;
  border-top: 2px solid var(--is-orange);
  display: inline-block;
  margin-bottom: 32px;
}
.pp-hero-title {
  font-family: var(--font-jp);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 32px 0;
  color: var(--is-navy);
}
.pp-hero-lede {
  font-family: var(--font-jp);
  font-size: 16px; line-height: 1.95;
  color: var(--ink-700);
  max-width: 760px;
  margin: 0;
}

/* ----- Body shell ----- */
.pp-body {
  background: var(--paper);
  padding: 100px 0 160px;
}
.pp-body .wrap { max-width: 1200px; }
.pp-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

/* TOC sidebar */
.pp-toc {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--font-jp);
}
.pp-toc-tag {
  font-family: var(--font-latin);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--is-orange);
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 2px solid var(--is-orange);
  margin-bottom: 12px;
}
.pp-toc-group {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-500);
  text-transform: uppercase;
  margin: 24px 0 6px;
  font-family: var(--font-latin);
}
.pp-toc-group:first-of-type { margin-top: 0; }
.pp-toc a {
  display: block;
  font-size: 13px; line-height: 1.5;
  color: var(--ink-700);
  text-decoration: none;
  padding: 6px 0 6px 14px;
  border-left: 2px solid var(--ink-200);
  transition: color 180ms, border-color 180ms;
}
.pp-toc a:hover {
  color: var(--is-orange);
  border-left-color: var(--is-orange);
}

/* Article */
.pp-article {
  font-family: var(--font-jp);
  color: var(--ink-800);
  font-size: 15px;
  line-height: 2.0;
  max-width: 820px;
}
.pp-section-major {
  font-family: var(--font-jp);
  font-size: 28px; font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--is-navy);
  margin: 0 0 8px;
  padding-top: 80px;
  border-top: 4px solid var(--is-navy);
  scroll-margin-top: 100px;
}
.pp-article > .pp-section-major:first-child { padding-top: 32px; border-top: 4px solid var(--is-navy); }
.pp-section-major-num {
  display: block;
  font-family: var(--font-latin);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--is-orange);
  font-weight: 700;
  margin-bottom: 8px;
}
.pp-section-major + p,
.pp-section-major + .pp-section-lead {
  font-size: 14px;
  color: var(--ink-600);
  margin: 16px 0 32px;
  line-height: 1.9;
}

.pp-section {
  margin: 56px 0 0;
  scroll-margin-top: 100px;
}
.pp-section-num {
  display: inline-block;
  font-family: var(--font-latin);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--is-orange);
  margin-bottom: 8px;
}
.pp-section h3 {
  font-family: var(--font-jp);
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--is-navy);
  line-height: 1.4;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink-300);
}
.pp-section h4 {
  font-family: var(--font-jp);
  font-size: 15px; font-weight: 700;
  color: var(--is-navy);
  margin: 28px 0 8px;
}
.pp-section p {
  font-size: 15px;
  line-height: 2.0;
  color: var(--ink-800);
  margin: 0 0 18px;
}
.pp-section ul,
.pp-section ol {
  margin: 0 0 20px;
  padding-left: 0;
  list-style: none;
  counter-reset: pp-li;
}
.pp-section ul li,
.pp-section ol li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-800);
  margin-bottom: 8px;
}
.pp-section ul li::before {
  content: '';
  position: absolute;
  left: 8px; top: 14px;
  width: 6px; height: 6px;
  background: var(--is-orange);
  border-radius: 50%;
}
.pp-section ol li {
  counter-increment: pp-li;
}
.pp-section ol li::before {
  content: counter(pp-li);
  position: absolute;
  left: 0; top: 4px;
  font-family: var(--font-latin);
  font-size: 11px; font-weight: 700;
  color: var(--white);
  background: var(--is-navy);
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0;
}

/* Info card (contact / business info) */
.pp-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-left: 3px solid var(--is-orange);
  padding: 28px 32px;
  margin: 16px 0 24px;
}
.pp-card-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--ink-200);
  font-size: 14px;
  line-height: 1.8;
}
.pp-card-row:last-child { border-bottom: 0; }
.pp-card-row dt {
  font-weight: 700;
  color: var(--is-navy);
  font-size: 12px;
  letter-spacing: 0.05em;
}
.pp-card-row dd {
  margin: 0;
  color: var(--ink-800);
}
.pp-card-row dd a { color: var(--is-orange); border-bottom: 1px solid transparent; }
.pp-card-row dd a:hover { border-bottom-color: var(--is-orange); }

/* Purpose table */
.pp-table-wrap {
  margin: 16px 0 28px;
  overflow-x: auto;
  border: 1px solid var(--ink-200);
  background: var(--white);
}
.pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  font-family: var(--font-jp);
  min-width: 680px;
}
.pp-table thead th {
  background: var(--is-navy);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 14px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.pp-table thead th:last-child { border-right: 0; text-align: center; width: 110px; }
.pp-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--ink-200);
  border-right: 1px solid var(--ink-100);
  vertical-align: top;
  line-height: 1.7;
  color: var(--ink-800);
}
.pp-table tbody td:first-child {
  font-weight: 700;
  color: var(--is-navy);
  white-space: nowrap;
  background: var(--ink-050);
  width: 200px;
}
.pp-table tbody td:last-child {
  text-align: center;
  border-right: 0;
  font-family: var(--font-latin);
  font-size: 18px;
  color: var(--is-orange);
  font-weight: 700;
}
.pp-table tbody tr:last-child td { border-bottom: 0; }
.pp-table-note {
  font-size: 12px;
  color: var(--ink-600);
  line-height: 1.8;
  margin-top: 4px;
}

/* Notice block (highlight) */
.pp-notice {
  background: var(--ink-050);
  border: 1px solid var(--ink-200);
  padding: 20px 24px;
  margin: 16px 0 24px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-800);
}
.pp-notice strong { color: var(--is-navy); }

/* Sub list (a/b/c style) */
.pp-sub-list {
  margin: 0 0 20px;
  padding-left: 0;
  list-style: none;
}
.pp-sub-list li {
  position: relative;
  padding-left: 36px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-800);
  margin-bottom: 10px;
}
.pp-sub-list li .pp-sub-mark {
  position: absolute;
  left: 0; top: 2px;
  font-family: var(--font-latin);
  font-size: 11px; font-weight: 700;
  color: var(--is-navy);
  background: var(--ink-100);
  border: 1px solid var(--ink-300);
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

/* End mark */
.pp-end {
  text-align: right;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 700;
  color: var(--is-navy);
  margin: 80px 0 0;
  padding-top: 32px;
  border-top: 2px solid var(--is-navy);
  letter-spacing: 0.5em;
}

/* Meta block (revision date if any — kept ready) */
.pp-meta {
  margin-top: 16px;
  font-family: var(--font-latin);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-500);
  text-transform: uppercase;
}

/* ----- Mobile ----- */
@media (max-width: 920px) {
  .pp-hero { padding: 140px 0 64px; }
  .pp-body { padding: 60px 0 100px; }
  .pp-grid { grid-template-columns: 1fr; gap: 40px; }
  .pp-toc { position: static; }
  .pp-section-major { font-size: 22px; padding-top: 56px; }
  .pp-section h3 { font-size: 17px; }
  .pp-card-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .pp-article { font-size: 14px; }
}
