/* タイムラインのコネクタを明示的に定義 */
.timeline-connector {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background-color: #444444; /* ダークグレーに変更 */
  z-index: 0;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(68, 68, 68, 0.3); /* 影もダークグレー系に変更 */
}

/* 2013-2014セクション用の特別なスタイル */
.timeline-item:nth-child(5) {
  z-index: 5;
  position: relative;
}

.timeline-item:nth-child(5):after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: #444444; /* ダークグレーに変更 */
  z-index: 0;
  top: -40px; /* 上部に長く伸ばす */
  bottom: -40px; /* 下部に長く伸ばす */
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(68, 68, 68, 0.3); /* ダークグレー系の影に変更 */
}

/* アニメーション後にタイムラインがきれいに見えるように調整 */
.animate-on-scroll.fade-in-up + .animate-on-scroll.fade-in-up {
  margin-top: -20px; /* 少し重なるようにする */
}

/* タイムラインのドットをさらに強調 */
.timeline-item::before {
  display: none !important;
  content: none !important;
}
