@charset "utf-8";

.slide-animation{
  animation: fadezoom 12s 0s forwards;
}

@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}





.slideMv .slick-prev{
  background: url("../common/icon_slide_arrow_left_02.png") no-repeat center;
  top: inherit;
  bottom: 30px;
  z-index: 9;
  width: 41px;
  height: 10px;
  left: 38%;
  right: inherit;
}

.slideMv .slick-next{
  background: url("../common/icon_slide_arrow_right_02.png") no-repeat center;
  top: inherit;
  bottom: 30px;
  z-index: 9;
  width: 41px;
  height: 10px;
  right: 38%;
}

.slideMv .slick-dots{
  bottom: 32px;
}
.slideMv .slick-dots li{
  width: 10px;
  height: 10px;
  margin: 0 15px;
}
.slideMv .slick-dots li button{
  width: 10px;
  height: 10px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 100%;
}
.slideMv .slick-dots li button:before{
  content: none;
}
.slideMv .slick-dots li.slick-active button{
  background: transparent; 
}


@media screen and (max-width: 750px) {
  .slideMv .slick-dots{
    bottom: 3rem;
  }
  .slideMv .slick-dots li{
    width: 1.8rem;
    height: 1.8rem;
    margin: 0 1.5rem;
  }
  .slideMv .slick-dots li button{
    width: 1.8rem;
    height: 1.8rem;
    padding: .5rem;
  }
  .slideMv .slick-prev{
    left: 23rem;
    bottom: 3rem;
    width: 4.1rem;
    height: 1.4rem;
    background-size: 100%;
  }
  .slideMv .slick-next{
    right: 23rem;
    bottom: 3rem;
    width: 4.1rem;
    height: 1.4rem;
    background-size: 100%;
  }
}

@media screen and (max-width: 500px) {
  
  
}



