@charset "utf-8";
/* CSS Document */
.slideshow {
  position: relative;
  width: 100%;
  padding-top: 55%;
  overflow: hidden;
  margin: 0 auto;
}
.slideshow .item {
  width: 100%;
  position: absolute;
  top: 0;
  display: none;
}
.in {
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 2;
}
.out {
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
  -webkit-transition: 6s;
  transition: 6s;
  z-index: 1;
 }
/* mobile */
.slideshow02 {
  position: relative;
  width: 100%;
  padding-top: 140%;
  overflow: hidden;
  margin: 0 auto;
}
.slideshow02 .item {
  width: 100%;
  position: absolute;
  top: 0;
  display: none;
}
.in {
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 2;
}
.out {
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
  -webkit-transition: 6s;
  transition: 6s;
  z-index: 1;
 }