/* 法的ページ用スタイル */
.legal-content {
  padding: 120px 0 60px;
  background: var(--white);
  min-height: calc(100vh - 200px);
}

.legal-content h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-color);
}

.legal-content .last-updated {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.legal-content .intro {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  padding: 20px;
  background: var(--bg-color);
  border-radius: 8px;
}

.legal-content section {
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary-dark);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-color);
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content .contact-email {
  background: var(--bg-color);
  padding: 16px;
  border-radius: 8px;
  display: inline-block;
}

.legal-content .contact-email a {
  color: var(--primary-dark);
  font-weight: 500;
}

.legal-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  text-align: center;
}

.legal-footer .company {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
}

.simple-footer {
  padding: 30px 0;
}

.simple-footer .footer-bottom {
  border-top: none;
  padding-top: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .legal-content {
    padding: 100px 0 40px;
  }

  .legal-content h1 {
    font-size: 24px;
  }

  .legal-content h2 {
    font-size: 18px;
  }
}
