.survey-explanation > * {
    margin-top: 12px;
}

.survey-explanation h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #5FC3DB;
  /* border-bottom: 3px solid #5FC3DB;
  padding-bottom: 0.3em; */
  border-left: 6px solid #5FC3DB; 
  padding-left: 0.5em;
  margin-bottom: 1em;
}

.survey-explanation h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #5FC3DB;
  border-bottom: 2px solid #5FC3DB;
  padding-bottom: 0.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  padding-left: 0.5em;
}

.survey-explanation button {
    background-color: #5FC3DB;
    color: white;
    font-weight: bold;
    border-radius: 9999px;
    padding: 15px 20px;
    margin-left: 12px;
    margin-bottom: 24px;
}

.timeline {
  list-style: none; /* デフォルトの箇条書きスタイルを無効化 */
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline > li {
  position: relative;
  padding-left: 30px; /* 点と線の分だけ余白 */
  margin-bottom: 20px;
}

.timeline > li::before {
  content: "";
  position: absolute;
  left: 10px;       /* 横位置調整 */
  top: 0.4em;       /* 行の中央に合わせる（調整ポイント） */
  width: 10px;
  height: 10px;
  background-color: #5FC3DB;
  border-radius: 50%;
  z-index: 1;
}

.timeline > li::after {
  content: "";
  position: absolute;
  left: 13px;         /* 丸の中心位置 */
  top: calc(0.4em + 10px); /* 丸の下端から線を出す */
  height: calc(100% - 0.4em - 10px + 30px); /* 丸の分＋次の余白分を補う */
  width: 4px;
  background-color: #EFF9FC;
  z-index: 0;
}

.timeline > li:last-child::after {
  content: none; /* 最後の項目の線は非表示 */
}