/* =========================================
   Privacy Policy Page
   ========================================= */
.wrap {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 44px);
}

.tk {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.tk b { color: var(--cyn); font-weight: 600; }

/* ---- Page Head band ---- */
.page-head {
  position: relative;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(48px, 7vw, 88px);
  overflow: clip;
}
.page-head__grid {
  position: absolute;
  inset: 0;
  opacity: .5;
  pointer-events: none;
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0/100% 40px,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0/40px 100%;
  mask: linear-gradient(180deg, #000, transparent 85%);
}
.page-head .wrap { position: relative; }
.page-head__eyebrow { margin-bottom: 14px; }
.page-head__title {
  font-weight: 800;
  font-size: clamp(28px, 5vw, 46px);
  letter-spacing: .04em;
  line-height: 1.2;
  text-wrap: balance;
  font-family: var(--jp);
  color: var(--ink);
}
.page-head__title .en {
  font-family: var(--en);
  font-weight: 700;
  font-size: .62em;
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--line-ink);
  margin-left: 14px;
  display: inline-block;
  vertical-align: baseline;
}
.page-head__rule {
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: var(--grad-h);
  margin-top: 18px;
}
.page-head__lead {
  color: var(--muted);
  font-size: 14px;
  margin-top: 16px;
  max-width: 60ch;
}
.page-head__crumbs {
  position: absolute;
  right: clamp(20px, 4vw, 44px);
  top: 20px;
}

/* ---- Main ---- */
.privacy-main {
  background: var(--paper);
  min-height: calc(100vh - 251px);
  padding: clamp(48px, 7vw, 84px) 0 clamp(80px, 10vw, 120px);
  width: 100%;
}

.privacy-inner {
  margin: 0 auto;
  max-width: 760px;
  width: 100%;
}

/* ---- legal 様式（TYPE4） ---- */
.privacy-body,
.legal { display: flex; flex-direction: column; }

.privacy-body {
  gap: 38px;
}

.privacy-section,
.legal__section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.privacy-section__heading,
.legal__h2 {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .02em;
  line-height: 1.6;
  padding-left: 13px;
  border-left: 4px solid;
  border-image: var(--grad) 1;
  color: var(--ink);
  font-family: var(--jp);
  overflow-wrap: break-word;
  max-width: 100%;
}

.privacy-section__text,
.legal__text {
  color: var(--muted);
  font-family: var(--jp);
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.95;
  max-width: 70ch;
  overflow-wrap: break-word;
}

/* ---- Subsections ---- */
.privacy-subsection {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 16px;
  margin-top: 4px;
}

.privacy-subsection__heading,
.legal__h3 {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  line-height: 1.6;
  color: var(--ink);
  font-family: var(--jp);
}

/* ---- List ---- */
.privacy-list,
.legal__list {
  list-style: none;
  padding: 0;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy-list__item,
.legal__list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-family: var(--jp);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.9;
  list-style: none;
  overflow-wrap: break-word;
  max-width: 100%;
}

.privacy-list__item::before,
.legal__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--mag), var(--cyn));
}

/* =========================================
   RESPONSIVE - TABLET
   ========================================= */
@media screen and (max-width: 840px) {
  .privacy-inner { max-width: 100%; }
}

/* =========================================
   RESPONSIVE - MOBILE (max 540px)
   ========================================= */
@media screen and (max-width: 540px) {
  .privacy-main       { padding: clamp(32px, 8vw, 48px) 0 60px; }
  .privacy-body        { gap: 30px; }
  .privacy-subsection  { padding-left: 8px; }
  .page-head__crumbs   { display: none; }
}
