/* === セクション全体 === */
.privacy-policy {
  max-width: 800px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
}

.privacy-policy h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

.preface {
  margin-bottom: 40px;
  text-align: center;
  color: #666;
  line-height: 1.35;
}

/* === リストのスタイル === */
.policy-list {
  list-style: none;
  padding: 0;
  position: relative; /* 縦線の基準点 */
}

/* === 縦のライン === */
.policy-list::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 20px;
  width: 3px;
  background-color: #e0e0e0;
}

.policy-list li {
  margin-bottom: 30px;
  padding-left: 60px; /* テキストの開始位置を調整 */
  position: relative; /* 丸い点の基準点 */
}

/* === 各項目の丸い点 === */
.policy-list li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 3px solid #1abc9c;
  border-radius: 50%;
  z-index: 1; /* 縦線より手前に表示 */
}

/* === 各項目の見出しと本文 === */
.policy-list h3 {
  margin: 0 0 8px 0;
  font-size: 1.3em;
  color: #1abc9c;
}

.policy-list p {
  margin: 0;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #eee;
  line-height: 1.45;
}
