@charset "utf-8";
/* CSS Document */
.slider {
  width: 100%;
  height: 500px;
  margin: 0 auto ;
  position: relative;
  overflow: hidden;
}
.slider ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.slider ul li {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation-iteration-count: infinite;
  animation-duration: 20s;
}
.slider ul li img{
	width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: inherit;
}
.slider ul li:nth-child(1) {
  animation-name: slider;
  animation-delay: 0s;
}
.slider ul li:nth-child(2) {
  animation-name: slider;
  animation-delay: 5s;
  opacity: 0;
}
.slider ul li:nth-child(3) {
  animation-name: slider;
  animation-delay: 10s;
  opacity: 0;
}
.slider ul li:nth-child(4) {
  animation-name: slider;
  animation-delay: 15s;
  opacity: 0;
}
.slider ul li:nth-child(5) {
  animation-name: slider;
  animation-delay: 20s;
  opacity: 0;
}
@keyframes slider {
  0% {
    opacity: 0;
  }
  20.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  45.83% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#loop1 {
  background: url(/Contents/ImagesPkg/page/bag/loop1.png);
  background-size: inherit;
  width: 100%;
  height: 100px;
  -moz-animation: loop 50s linear infinite;
  animation: loop 50s linear infinite;
	background-repeat: repeat-x;
}
@keyframes loop {
  0% {
    background-position: 2000px 0;
  }
  25% {
    background-position: 1500px 0;
  }
  50% {
    background-position: 1000px 0;
  }
  75% {
    background-position: 500px 0;
  }
  100% {
    background-position: 0 0;
  }
}
@-moz-keyframes loop {
  0% {
    background-position: 2000px 0;
  }
  25% {
    background-position: 1500px 0;
  }
  50% {
    background-position: 1000px 0;
  }
  75% {
    background-position: 500px 0;
  }
  100% {
    background-position: 0 0;
  }
}
#loop2 {
  background: url(/Contents/ImagesPkg/page/bag/loop2.png);
  background-size: inherit;
  width: 100%;
  height: 100px;
  -moz-animation: loop2 50s linear infinite;
  animation: loop2 50s linear infinite;
   background-repeat: repeat-x;
}
@keyframes loop2 {
  0% {
    background-position: 0 0;
  }
  25% {
    background-position: 500px 0;
  }
  50% {
    background-position: 1000px 0;
  }
  75% {
    background-position: 1500px 0;
  }
  100% {
    background-position: 2000px 0;
  }
}
@-moz-keyframes loop2 {
  0% {
    background-position: 0 0;
  }
  25% {
    background-position: 500px 0;
  }
  50% {
    background-position: 1000px 0;
  }
  75% {
    background-position: 1500px 0;
  }
  100% {
    background-position: 2000px 0;
  }
}
@media screen and (max-width: 767px) {
  .slider {
    width: 100%;
    height: 500px;
    margin: 0 auto;
    position: relative;
  }
	.slider ul li img{
		/*max-width: -moz-available;*/
		max-width: 100%;
	}
	#loop1,#loop2{
		height: 70px;
		background-size: cover;
	}
}
