.main-visual {
    background-color: #eeeeee;
    color: #000;
  }
  
  .breadcrumb {
    background-color: transparent; /* 背景を透明にする（デフォルトは白） */
  }
  
  .breadcrumb a {
    color: #000; /* リンクの色を黒に変更 */
  }
  
  .breadcrumb-item.active {
    color: #555; /* 現在のページを少し薄い色に */
  }
  
  .card-img-top {
    width: 100%;
    height: 250px;
    object-fit: scale-down;
  }

/* タイムラインの縦線のスタイル */
.timeline-line {
    position: relative;
    padding-left: 20px;
  }
  
  .timeline-line .line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #333;
  }
  
  .time {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: right;
  }
  
  .timeline-item {
    margin-bottom: 2rem;
  }
  
  .card {
    border: 1px solid #ddd;
  }
  
  @media (min-width: 768px) {
    .time {
      text-align: right;
    }
  }
  