@charset "UTF-8";
/* CSS Document */
/* ループスライダー */
#loopSlider{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	width: 100%;
	overflow: hidden;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	-webkit-animation: sliderDelay 1s ease both ;
	        animation: sliderDelay 1s ease both ;
	-webkit-animation-delay: 1.5s;
	        animation-delay: 1.5s;
}
@-webkit-keyframes sliderDelay{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
@keyframes sliderDelay{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
.loop{
	padding: 0;
	width: calc(744px * 5);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.loop:first-child{
	-webkit-animation: slide1 40s -20s linear infinite;
	        animation: slide1 40s -20s linear infinite;
}
.loop:last-child{
	-webkit-animation: slide2 40s linear infinite;
	        animation: slide2 40s linear infinite;
}
.loop > .box{
	display: block;
	width: 100%;
	min-width: 744px;
	height: auto;
}
.loop > .box > img{
	display: block;
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	   object-fit: cover;
}
/* ループアニメーション */
@-webkit-keyframes slide1 {
    0% {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
    }
}
@keyframes slide1 {
    0% {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
    }
}
@-webkit-keyframes slide2 {
    0% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-200%);
                transform: translateX(-200%);
    }
}
@keyframes slide2 {
    0% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-200%);
                transform: translateX(-200%);
    }
}



/*------------------*/
/*タブレット以下*/
/*------------------*/
@media(max-width:959px){
/* ループスライダー */
#loopSlider{
	bottom: 42px;
}
.loop{
	width: calc(720px * 5);
}
.loop > .box{
	min-width: 720px;
}
}/* ここまでタブレット以下 */



/*------------------*/
/*スマホ以下*/
/*------------------*/
@media(max-width:559px){
/* ループスライダー */
#loopSlider{
	bottom: calc(32% / 6);
}
.loop{
	width: calc(480px * 5);
}
.loop > .box{
	min-width: 480px;
}
}/* ここまでスマホ以下 */
