﻿*{
		margin:0px;
		padding:0px;
		}

#stage{
		position: relative;
		background:#ccc;
/*		max-width: 600px; */
		max-width: 1000px;
		margin: 0 auto;
		overflow:hidden;
		}

/*全サムネイルのコンテナー animation設定*/
#thumbs{
/*		width: 200%; */
		width: 200%;
/*		left: -45%;*/
		left: -45%;
		animation:recipro ease 12s infinite;
		}

/*サムネイルのマウスオーバーでポインターを手のひら*/
#thumbs:hover {
		animation-play-state:paused;
		}

#thumbs img{
/*		width:9.6%; */
		width:9.7%;
		}


/* サムネイル群の左右往復animation */
@keyframes recipro{
		0% { margin-left:0%; }
/*		50% { margin-left:-98%; } */
		50% { margin-left:-19%; }
		100% { margin-left:0%; }
		}


