.workflow{
    width: 635px;
    line-height: 30px;
    margin: 100px auto 100px;
  }
  
  
  .workflow h3{
    /* font-weight: inherit; */
    -webkit-text-stroke:0.3px #333;
  }

.workflow .text{
    margin: 40px auto 100px;
  }
  
  .workflow_list{
    margin: 0px auto;
    padding: 0px 0 50px 0px;
  }
  
  
  
  
  .workflow_list:first-child{
    margin: 50px auto 0;
  }
  
  .workflow_list h3{
    margin: 0 0 20px;
  }
  
  /* 全体レイアウト */
  .i_sk {
    position: relative;
    /* 疑似要素の配置のため */
    margin: 50px auto 100px;
    padding-left: 20px;
    /* タイムラインの背景やマーカー分のスペース */
    /* -webkit-margin-bottom-collaps; */
  }
  
  /* 背景の縦線（全体のガイドライン） */
  .i_sk::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    /* 各マーカーの中心位置に合わせる */
    width: 2px;
    background: #ccc;
    /* 背景色とのコントラストを考慮 */
  }
  
  /* 進捗（スクロールに合わせて伸びる線） */
  /* CSS変数 --progress-height で高さを制御 */
  .i_sk::after {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: 2px;
    background: #000;
    height: var(--progress-height, 0);
    transition: height 0.3s ease-out;
  }
  
  /* 各タイムライン項目 */
  .workflow_list {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
    /* 左側にマーカー用の余白 */
  }
  
  /* ステップタイトル（h3）の設定 */
  .workflow_list h3 {
    position: relative;
    padding-left: 0px;
    /* 左側に円形マーカー表示スペースを確保 */
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  /* h3の左側に配置する円形マーカー（初期状態は縮小） */
  .workflow_list h3::before {
    content: "";
    position: absolute;
    left: -57px;
    /* h3の左側に配置 */
    top: 25%;
    transform: translateY(-50%) scale(0);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #000;
    transition: transform 0.3s ease-out;
  }
  
  /* 進捗が到達したらマーカーが拡大表示（JSで .in-view クラスを追加） */
  .workflow_list.in-view h3::before {
    transform: translateY(-50%) scale(1);
  }
  
  /* 説明部分の設定（説明テキストが<p>タグの場合） */
  .workflow_list p {
    margin-top: 10px;
    padding: 10px 15px;
    background: #dcdcdc;
    border-radius: 5px;
  }
  
  
  
  

  
    
  @media (max-width: 1280px) {

.workflow{
    margin: 50px auto 100px;
  }
   }

  @media (max-width: 768px)  { 



.workflow{
    width: 80%;
    line-height: 25px;
    font-size: 15px;
  }
   }
  @media (max-width: 600px)  {
    .workflow{
        width: 90%;
        line-height: 25px;
        font-size: 15px;
      }

   }