/* フッターの規約リンク用スタイル */
.footer-legal-links {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.footer-legal-links a {
  color: #ffffff;
  opacity: 0.7;
  transition: opacity var(--transition-duration);
  font-size: 14px !important;
  text-decoration: none;
}

.footer-legal-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-legal-links .separator {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 5px;
}

/* プライバシーポリシーと特定商取引法ページ用スタイル */
.privacy-policy-section,
.legal-section {
  padding: 60px 0;
}

.privacy-policy-content,
.legal-content {
  max-width: 900px;
  margin: 30px auto;
  line-height: 1.8;
}

.privacy-policy-content .intro-text {
  margin-bottom: 30px;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.policy-section p {
  margin-bottom: 15px;
}

.policy-section ol {
  padding-left: 25px;
  margin: 15px 0;
}

.policy-section ol li {
  margin-bottom: 10px;
}

.policy-section address {
  margin-top: 15px;
  font-style: normal;
}

/* 特定商取引法ページ用テーブルスタイル */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.legal-table th, 
.legal-table td {
  padding: 15px;
  border: 1px solid #ddd;
}

.legal-table th {
  width: 200px;
  background-color: #f5f5f5;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .legal-table th {
    width: 35%;
  }
  
  .policy-section h2 {
    font-size: 18px;
  }
}
