@charset "UTF-8";


.table-scroll{
  overflow: auto; /*スクロールさせる*/
  white-space: nowrap; /*文字の折り返しを禁止*/
  width:375px; /*今回の設置を分かりやすくするためワザと狭い幅を指定。本来は不必要な指定です。*/
}

/* 以下、スクロールバーを追加 */
.table-scroll::-webkit-scrollbar{　　
 height: 5px;
}
.table-scroll::-webkit-scrollbar-track{
 background: #333;
}
.table-scroll::-webkit-scrollbar-thumb {
 background: #999;
}

/* 以下、tableの指定 */
.table-scroll table{
    border-collapse:collapse;
    border-spacing:0;
  border-top:none;
  border-left:none;
}
.table-scroll table th,
.table-scroll table td{
  padding:10px 20px;
  font-weight:normal;
  border-right:none;
  border-bottom:none;
  font-size:12px;
}
.table-scroll table th{
  background:#eee;
  width:80px;
}

img.scroll-max{
width: 750px;
}