/* 全体のスタイル */
body {
  font-family: Arial, sans-serif;
  line-height: 1.8;
  color: #333;
  background-color: #000; /* フォーム以外の背景を黒に */
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center; /* 垂直方向に中央寄せ */
  min-height: 100vh; /* ビューポートの高さを100%に */
}

/* コンテンツエリア */
.privacy-container {
  max-width: 800px;
  width: 100%;
  background: #fff; /* フォーム部分の背景を白に */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* 境界をはっきりさせる */
  line-height: 1.8;
  color: #333;
  margin: auto; /* 上下左右中央配置 */
}

/* 見出しスタイル */
h1 {
  font-size: 28px;
  color: #444;
  margin-bottom: 20px;
  text-align: center;
}

h2 {
  font-size: 22px;
  color: #444;
  margin-top: 30px;
  margin-bottom: 10px;
  border-left: 4px solid #ff4747;
  padding-left: 10px;
}

/* テキストスタイル */
p {
  margin-bottom: 10px;
  color: #666;
}

/* 番号付きリスト */
ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* 箇条書きリスト */
ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style: disc; /* デフォルトのディスク型に変更 */
}

ul li {
  margin-bottom: 10px;
  color: #444;
  position: relative;
  padding-left: 0; /* 左余白をリセット */
}

ul li:before {
  content: none; /* 赤い点を削除 */
}

/* 引用のスタイル */
blockquote {
  background: #f1f1f1;
  border-left: 4px solid #ff4747;
  margin: 20px 0;
  padding: 10px 20px;
  color: #444;
  font-style: italic;
}
