/*スクロールバー全体*/
::-webkit-scrollbar{
	width: 4px;
	height: 8px;
}
/*スクロールバーの軌道*/
::-webkit-scrollbar-track{
	border-radius:6px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb{
	background-color: rgba(0, 0, 50, .5);
	border-radius: 6px;
	box-shadow:0 0 0 0px rgba(255, 255, 255, .3);
}
