.table-scroll::before {
  display: none;
}
.table-scroll {
  position: relative;
  margin-top: .3rem;
}
.table-scroll th {
  position: sticky;
  left: 0;
}
.table-scroll th,
.table-scroll td {
  word-break: keep-all;
  white-space: nowrap;
}
.table-scroll__wrap {
  overflow-x: auto;
  margin-top: 1em;
}
.table-scroll__wrap::before {
  content: '※右にスクロールできます';
  font-size: 80%;
}
.table-scroll__wrap::-webkit-scrollbar {
  height: 5px;
}
.table-scroll__wrap::-webkit-scrollbar-track {
  background: #F1F1F1;
}
.table-scroll__wrap::-webkit-scrollbar-thumb {
  background: #BCBCBC;
  }
