.legal-page *,
.legal-page *::before,
.legal-page *::after { box-sizing: border-box; }

.legal-page {
  padding: 104px 0 104px;
}

.legal__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(13,38,64,.1);
}

.legal__title {
  font-family: 'Abril Fatface', serif;
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #0d2640;
  margin: 0;
}

.legal__date {
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(13,38,64,.4);
  white-space: nowrap;
  flex-shrink: 0;
}

.legal__body {
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #1a3050;
}

.legal__body p {
  margin: 0 0 16px;
}

.legal__body h2 {
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0d2640;
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
}

.legal__body h2:first-child {
  margin-top: 0;
}

.legal__body h3 {
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #0d2640;
  margin: 28px 0 12px;
}

.legal__body ul {
  margin: 0 0 16px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal__body ul li {
  font-size: 15px;
  line-height: 1.65;
  color: #1a3050;
}

.legal__body strong {
  font-weight: 700;
  color: #0d2640;
}

.legal__body a {
  color: #0d2640;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.legal__body a:hover {
  color: #3a7cc5;
}

@media (max-width: 640px) {
  .legal-page {
    padding: 48px 0 48px;
  }

  .legal__header {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
    padding-bottom: 20px;
  }

  .legal__title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .legal__body h2 {
    font-size: 19px;
    margin-top: 36px;
  }

  .legal__body h3 {
    font-size: 16px;
  }
}