/* ズーム */
.splide__slide img {
  transition: 8s ease-out;
}
.splide__slide.is-active img {
  transform: scale(1.15);
  transition-delay: 0s;
}
/* スライドのサイズ調整 */
.splide__slide img {
  height: auto;
  width: 100%;
}

/* 再生停止ボタン */
.mv .stopbtn {
  display: block;
  width: 28px;
  height: 28px;
  padding: 10px 20px;
  color: #333;
  background-color: #fff;
  border: none;
  padding: 5px 10px;
  position: absolute;
  left: -152px;
  top: auto;
  bottom: 5px;
  right: 0;
  margin: auto;
}
.mv .stopbtn::before,
.mv .stopbtn::after{
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.mv .stopbtn:not(.is-active)::before{
  content: '';
  display: inline-block;
  width: 10px;
  height: 14px;
  background-color: #cc0000;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  left: 10px;
}
.mv .stopbtn:not(.is-active)::after{
  display: none;
}
.mv .stopbtn.is-active::before,
.mv .stopbtn.is-active::after{
  width: 3px;
  height: 14px;
  background-color: #333;
}
.mv .stopbtn.is-active::before{
  left: 8px;
}
.mv .stopbtn.is-active::after{
  display: block;
  right: 8px;
}
.mv .splide__pagination{
  bottom: 11px;
  left: -40px;
}
.mv .splide__pagination__page{
  background: #fff;
  opacity: 1;
}
.mv .splide__pagination__page.is-active{
  background: #cc0000;
}
@media screen and (max-width: 768px) {
  .mv .splide__pagination{
    left: 0;
  }
  .mv .stopbtn{
    left: 50%;
    right: auto;
    transform: translateX(calc(-50% - 56px));
  }
}