/* CSS Document */


/* Jam 写真 loop*/

#jam-loop{
	position: relative;
	z-index: 4;
	overflow: hidden;
	padding: 50px 0;
	background: #fff;
}

@keyframes infinity-scroll-left {

	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
	
.scroll-infinity__wrap {
	display: flex;
	overflow: hidden;
}

.scroll-infinity__list {
	display: flex;
	list-style: none;
	padding: 0
}

.scroll-infinity__list--left {
	animation: infinity-scroll-left 90s infinite linear both;
}

.scroll-infinity__item {
	width: calc(150vw / 1);
}

.scroll-infinity__item>img {
	width: 100%;
}


@media(max-width: 1000px){
	
	.scroll-infinity__item {
		width: calc(250vw / 1);
	}
	
}


/* Jam 写真 loop ///*/