/* ══════════════════════════════════════════════════
   LEGAL PAGES — legal.css
══════════════════════════════════════════════════ */

/* ── Legal List ─────────────────────────────────── */
.legal-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.legal-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-row:last-child { border-bottom: none; }

.legal-row dt {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--teal);
  text-transform: uppercase;
}
.legal-row dt::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 14px;
  background: var(--teal);
  margin-right: 8px;
  vertical-align: middle;
}
.legal-row dd {
  font-size: 13px;
  color: var(--navy);
  line-height: 2;
  letter-spacing: 0.04em;
  white-space: pre-line;
}
.legal-row dd small {
  display: block;
  font-size: 11px;
  color: var(--gray);
  margin-top: 4px;
  line-height: 1.8;
}

/* ── PC ─────────────────────────────────────────── */
@media (min-width: 768px) {
  .legal-row {
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
  }
  .legal-row dt {
    flex-shrink: 0;
    width: 200px;
    padding-top: 6px;
  }
  .legal-row dd { flex: 1; }
}

/* ── Legal Section (privacy page) ────────────────── */
.legal-lead {
  font-size: 13px;
  color: var(--navy);
  line-height: 2;
  padding: 20px 24px;
  background: var(--gray-bg);
  border-radius: var(--rd);
  margin-top: 32px;
}
.legal-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.legal-section:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 32px;
}
.legal-section h3 {
  font-size: 15px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.legal-section p {
  font-size: 13px;
  color: var(--navy);
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.legal-section ul {
  padding-left: 1.5em;
  margin-bottom: 12px;
}
.legal-section ul li {
  font-size: 13px;
  color: var(--navy);
  line-height: 2;
  letter-spacing: 0.04em;
}
.legal-section a {
  color: var(--teal);
  word-break: break-all;
}
.legal-section a:hover { opacity: 0.75; }
.legal-effective {
  font-size: 12px;
  color: var(--gray);
  text-align: right;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--en);
  letter-spacing: 0.1em;
}

/* ===== Section Padding ===== */
/* coding / design / movie / retouch / intro / contact と統一 */
.sec { padding-top: 44px; padding-bottom: 44px; }
@media (min-width: 768px) {
  .sec { padding-top: 68px; padding-bottom: 68px; }
}
@media (min-width: 1200px) {
  .sec { padding-top: 80px; padding-bottom: 80px; }
}
@media (max-width: 767px) {
  .sec { padding-top: 32px; padding-bottom: 32px; }
}

/* ── Address link & copy-protect ────────────────── */
.no-copy {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.legal-address-link {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.2);
  text-underline-offset: 3px;
}
.legal-address-link:hover { opacity: 0.75; }
