@charset "UTF-8";

#lifeFlow01 + .contents_box01 .list_wrap {
  display: flex;
  gap: 4rem;
  justify-content: center;
}
#lifeFlow01 + .contents_box01 ul {
  margin: 0;
  padding: 0;
}
#lifeFlow01 + .contents_box01 ul li {
  list-style: none !important;
  position: relative;
  padding-left: 1.5rem;   /* 点+線のスペース */
  padding-bottom: 1.2em;  /* 行間 = 線の長さ */
  line-height: 1.5;
}
/* 点（マーカー） */
#lifeFlow01 + .contents_box01 ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;             /* 文字の高さに合わせて微調整 */
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
  z-index: 1;
}
/* 点と点を繋ぐ線 */
#lifeFlow01 + .contents_box01 ul li::after {
  content: "";
  position: absolute;
  left: 3.5px;            /* 点の中心に合わせる（幅8px÷2 - 線幅0.5相当） */
  top: calc(0.4em + 8px);
  bottom: -1.2em;          /* 次のliのpadding-bottomと連動 */
  width: 1px;
  background: #ccc;
}
/* 最後の項目には線を出さない */
#lifeFlow01 + .contents_box01 ul li:last-child::after {
  content: none;
}
#lifeFlow01 + .contents_box01 ul li:last-child {
  padding-bottom: 0;
}