.schedule-timeline {
  position: relative;
  margin: 20px 0;
  padding-left: 40px;
  --last-time-height: 0px; /* JSで上書きされる */
}

/* 全体を貫通する縦の線 */
.schedule-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: var(--last-time-height);
  left: 70px; /* 時間ラベルの中央に合わせる */
  width: 2px;
  border-left: 2px dotted #888;
  z-index: 0;
}

.timeline-entry-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 30px;
  position: relative;
}

.timeline-time-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1; /* 点線より前に出す */
}
.timeline-time-wrapper:last-child {
  margin-bottom: 0; /* 最後の要素の下マージンを削除 */
}

.timeline-time {
  width: 70px;
  height: 30px;
  font-size: 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(95,96,97);
  color: #fff;
}

.timeline-details {
  width: 90%;
  display: flex;
  flex-direction: column;
}

div.timeline-title {
  text-align: left;
  margin-left: 10px;
  font-size: 18px;
  font-weight: bold;
}

.timeline-location {
  text-align: left;
  margin-left: 30px;
}

.location-url {
  text-decoration: none;
  color: rgb(95,96,97);
}