@charset "utf-8";

#img-slider1 .gallery1{
	height:260px;
	overflow:hidden;
}
@media only screen and (max-width: 768px) {
#img-slider1 .gallery1{
	height:200px;
}
}
#img-slider1 .gallery1 .gallery_area {
display:flex;
width:calc(390px * );
height:100%;
}
@media only screen and (max-width: 768px) {
#img-slider1 .gallery1 .gallery_area {
width:calc(300px * ) ;
}
}

#img-slider1 .gallery1 .gallery_list {
display:flex;
height:100%;
animation:g1 60s infinite linear ;
}

@keyframes g1{
from{
transform:translateX(0) ;
}
to{
transform:translateX(-px);
}
}
@media only screen and (max-width: 768px) {
#img-slider1 .gallery1 .gallery_list{
animation:g1SP 60s infinite linear;
}
}

@keyframes g1SP{
from{
transform:translateX(0);
}
to{
transform:translateX(-px)
}
}
#img-slider1 .gallery1 li {
width:auto;
height:100%;
}
#img-slider1 .gallery1 li img{
width:390px;
height:260px;
vertical-align: bottom;
}
@media only screen and (max-width: 768px) {
#img-slider1 .gallery1 li img{
width:300px;
height:200px;
}
