/* ── privacy ── */
/* ── LEGAL PAGE LAYOUT ── */
.legal-wrap {
  background: var(--white);
  padding: 80px 0 120px;
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-section {
  margin-bottom: 56px;
}
.legal-section:last-child {
  margin-bottom: 0;
}
.legal-h2 {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.legal-h2-num {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--amber);
  display: block;
  margin-bottom: 6px;
}
.legal-p {
  font-size: 15px;
  color: var(--mid);
  line-height: 2;
  margin-bottom: 14px;
}
.legal-p:last-child { margin-bottom: 0; }
.legal-ul {
  list-style: none;
  padding: 0;
  margin: 14px 0;
}
.legal-ul li {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.9;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.legal-ul li:first-child { border-top: 1px solid var(--line); }
.legal-ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.6;
}
.legal-ul--nested {
  margin: 12px 0 0;
}
.legal-ul--nested li {
  padding-left: 18px;
  font-size: 14px;
}
.legal-ul--nested li::before {
  width: 4px;
  height: 4px;
  opacity: 0.45;
}
.legal-p a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.legal-p a:hover { opacity: 0.75; }
.legal-date {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 52px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.legal-contact-box {
  background: var(--off-white);
  border: 1px solid var(--line);
  padding: 32px 36px;
  border-radius: 3px;
  margin-top: 16px;
}
.legal-contact-box p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.9;
}
.legal-contact-box a {
  color: var(--amber);
  transition: opacity 0.2s;
}
.legal-contact-box a:hover { opacity: 0.75; }

/* ── tokusho ── */
/* ── TOKUSHO TABLE LAYOUT ── */
.legal-wrap {
  background: var(--white);
  padding: 80px 0 120px;
}
.legal-inner {
  max-width: 820px;
  margin: 0 auto;
}
.legal-date {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 52px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.legal-lead {
  font-size: 15px;
  color: var(--mid);
  line-height: 2;
  margin-bottom: 52px;
}
.tokusho-table {
  width: 100%;
  border-collapse: collapse;
}
.tokusho-table tr {
  border-bottom: 1px solid var(--line);
}
.tokusho-table tr:first-child {
  border-top: 1px solid var(--line);
}
.tokusho-table th {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
  text-align: left;
  vertical-align: top;
  padding: 22px 24px 22px 0;
  width: 240px;
  min-width: 200px;
  line-height: 1.6;
}
.tokusho-table td {
  font-size: 14px;
  color: var(--mid);
  line-height: 2;
  padding: 22px 0;
  vertical-align: top;
}
.tokusho-table td a {
  color: var(--amber);
  transition: opacity 0.2s;
}
.tokusho-table td a:hover { opacity: 0.75; }
.tokusho-note {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 3px;
}
.tokusho-note p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.9;
}
.tokusho-note p + p { margin-top: 8px; }

@media (max-width: 640px) {
  .tokusho-table th,
  .tokusho-table td {
    display: block;
    width: 100%;
  }
  .tokusho-table th {
    padding-bottom: 4px;
    border-bottom: none;
    white-space: normal;
    color: var(--amber);
    font-family: var(--display);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
  }
  .tokusho-table td {
    padding-top: 0;
    padding-bottom: 18px;
  }
}