/*-------------------------
  表の行1行固定　ここから
-------------------------*/
.fixed01{
  position: sticky;
  &:before{
    content: "";
    position: absolute;
  }
}
/*-------------------------
  表の行1行固定　ここまで
-------------------------*/

/*-------------------------
  表上にスクロールを促すカスタマイズ　ここかから
-------------------------*/
@media screen and (max-width : 480px){
.tableScroll:before {
	content: "scroll >>>";
	font-size:80%;
	font-weight:800;
	color:#0268b7;
	position: relative;
	position: -webkit-sticky;
	position: sticky;
	left: 0;
	animation: yokoSC 1.5s ease-in-out infinite alternate;
}
}
@keyframes yokoSC{
	0% {opacity:.2;}
	100% {opacity:1;}
}
@-webkit-keyframes yokoSC{
	0% {opacity:.2;}
	100% {opacity:1;}
}
@-moz-keyframes yokoSC{
	0% {opacity:.2;}
	100% {opacity:1;}
}
/*-------------------------
  表上にスクロールを促すカスタマイズ　ここまで
-------------------------*/