/*　スクロールバーの実装 */
.table_sticky {
    overflow-y: scroll;
    border-collapse: collapse;
}
.table_sticky  th {
    position: sticky;
    top: 50px;
    z-index: 1;
    background: white;
}
.table_sticky tr:nth-child(1) th {
  top: 50px;
}.table_sticky tr:nth-child(2) th {
  top:83px;
}

.table_sticky th:first-child {
  /* 横スクロールを固定 */
  position: sticky;
}
.table_sticky th:first-child {
  /* 一番左端のthead thが横スクロール時に隠れない様に */
  z-index: 2;
  
}