/* 利用規約・プライバシーポリシーページ用スタイル */
body {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Yu Gothic', YuGothic, Verdana, Meiryo,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

h1 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
  color: #333;
}

h2 {
  font-size: 18px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-top: 30px;
  color: #333;
}

p {
  margin-bottom: 15px;
  font-size: 14px;
}

a {
  color: #007aff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.language-toggle {
  text-align: right;
  margin-bottom: 20px;
}

.language-toggle a {
  color: #007aff;
  text-decoration: none;
  font-size: 14px;
}

.language-toggle a:hover {
  text-decoration: underline;
}

/* プライバシーポリシー用 連絡先情報 */
.contact-info {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

/* ダークモード対応 */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #1a1a1a;
    color: #e0e0e0;
  }

  h1,
  h2 {
    color: #ffffff;
  }

  h2 {
    border-bottom-color: #404040;
  }

  a {
    color: #0a84ff;
  }

  .language-toggle a {
    color: #0a84ff;
  }

  .contact-info {
    background: #2a2a2a;
    border-color: #404040;
  }
}
