/* ===== 規約系ページ（プライバシー・特商）共通スタイル ===== */
.legal-page {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 100px;
  background: #fbfbfc;
  min-height: calc(100vh - 200px);
}
@media (max-width: 768px) {
  .legal-page {
    padding-top: calc(var(--header-h) + 32px);
    padding-bottom: 64px;
  }
}
.legal-page .container {
  max-width: 880px;
}
.legal-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.legal-lead {
  font-size: 17px;
  line-height: 1.95;
  color: var(--text);
  margin: 24px 0 48px;
}
.legal-section {
  margin-bottom: 56px;
}
.legal-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 3px solid #B23A3A;
  line-height: 1.4;
}
.legal-section p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 12px;
}
.legal-section ul {
  padding-left: 26px;
  margin: 10px 0 14px;
}
.legal-section ul li {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text);
  list-style: disc;
  margin-bottom: 6px;
}
.legal-dl {
  margin: 24px 0 48px;
}
.legal-dl dt {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  padding: 20px 0 10px;
  border-top: 1px solid var(--border);
  position: relative;
  padding-left: 16px;
}
.legal-dl dt::before {
  content: '';
  position: absolute;
  left: 0;
  top: 26px;
  width: 4px;
  height: 18px;
  background: #B23A3A;
  border-radius: 2px;
}
.legal-dl dt:first-of-type {
  border-top: none;
}
.legal-dl dd {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text);
  padding: 0 0 20px 16px;
  margin: 0;
}
.legal-dl dd ul {
  padding-left: 24px;
  margin: 8px 0 12px;
}
.legal-dl dd ul li {
  list-style: disc;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.95;
}
.legal-dl dd p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.95;
}
.legal-date {
  font-size: 15px;
  color: var(--text-light);
  text-align: right;
  margin-top: 56px;
  line-height: 1.8;
}
.legal-back {
  text-align: center;
  margin-top: 56px;
}
.legal-back a {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: all .2s;
}
.legal-back a:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

@media (max-width: 768px) {
  .legal-title {
    font-size: 24px;
  }
  .legal-section h2 {
    font-size: 19px;
  }
  .legal-dl dt {
    font-size: 17px;
  }
}
