@charset "UTF-8";
/* --------------------------------------------------
ブレイクポイント管理
-------------------------------------------------- */
/**********
* min-width
**********/
/**********
* max-width
**********/
.table-scroll {
  overflow: auto;
  max-height: 80vh;
  position: relative;
}
.table-scroll table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.table-scroll table th {
  min-width: 80px;
}
.table-scroll table th.wide-cell {
  min-width: 185px;
}
@media screen and (min-width: 769px) {
  .table-scroll table th {
    min-width: 160px;
  }
  .table-scroll table th.wide-cell {
    min-width: 320px;
  }
}
.table-scroll table tr:first-child th {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}
.table-scroll table .sticky {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 5;
}
.table-scroll table tr:first-child .sticky {
  z-index: 15;
}