@charset "UTF-8";
.mv01 {
  position: relative;
}

.swiper {
  min-height: 100%;
  margin: 0 auto 200px;
}

/*.swiper {
    width: 100%;
    height: 100%;
}*/
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-property: opacity, transform !important;
  pointer-events: none;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination {
  position: absolute;
  z-index: 10;
  bottom: -30px !important;
}

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: -56px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #F00;
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: #F0F;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.mv01 {
  /* アクティブ時 */
}
.mv01 .swiper-slide img {
  transition: 7s 1s ease-out;
}
.mv01 .swiper-slide[class*=-active] {
  /*.slide-title {
    animation: mv01-fadeIn 2s .5s ease-out both;
  }*/
}
.mv01 .swiper-slide[class*=-active] img {
  transition-delay: 0s;
  transform: scale(1.2);
}

@-webkit-keyframes mv01-fadeIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
    filter: blur(300px);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes mv01-fadeIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
    filter: blur(300px);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.swiper-pagination-bullet {
  /*ドットのサイズを変更*/
  width: 6px;
  height: 6px;
}

.swiper-pagination-bullet-active {
  background-color: #e9420a;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  width: 16px;
  height: 16px;
  left: -30px;
  border-left: solid 1px #000;
  border-bottom: solid 1px #000;
  transform: rotateZ(45deg);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  width: 16px;
  height: 16px;
  right: -30px;
  border-right: solid 1px #000;
  border-top: solid 1px #000;
  transform: rotateZ(45deg);
}

/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

/*.vertical-slider {
    width: 100%;
    height: 90vh;
}
.swiper-wrapper{
    transition-timing-function:ease-in-out;
    position: relative;
    z-index: 2;
}

.vertical-slider__slide {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10rem;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    color: #fff;

    position: relative;
    z-index: 3;
}
.swiper-pagination-bullet {
    outline: none !important;
    background-color: transparent;
    width: 14px;
    height: 14px;
    margin: 16px 0;
    border: solid white 1.75px;
    -webkit-transition-property: border-color;
    transition-property: border-color;
    -webkit-transition-duration: .8s;
    transition-duration: .8s;
    opacity: 1;
    position: relative;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.swiper-pagination-bullet::after {
    content: "";
    display: inline-block;
    width: 125%;
    height: 125%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    -webkit-transition-property: -webkit-transform background-color;
    transition-property: -webkit-transform background-color;
    transition-property: transform background-color;
    transition-property: transform background-color, -webkit-transform background-color;
    -webkit-transition-duration: .8s;
    transition-duration: .8s;
    background-color: white;
    border-radius: 14px;
}

.HomeScene-bg{
    width: 100vw;
    height: 100vh;
    overflow: hidden;

    position: fixed;
    top: 0;
    left: 0;

    visibility: hidden;
}
.ccc{
    background-color: #ccc;
}
.crimson{
    background-color: crimson;
}
.skyblue{
    background-color: skyblue;
}
.HomeScene-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    position: absolute;
    z-index: 6;
}

.swiper-slide-prev .HomeScene-bg,.swiper-slide-active .HomeScene-bg,.swiper-slide-next .HomeScene-bg{
    visibility: inherit;
    z-index: 4;
}

.slash{
    width: 3px;
    height: 122vh;
    background-color: #fff;

    position: fixed;
    top: -5%;
    left: 42%;
    transform: rotate(20deg);
    transform-origin: 50% 50%;
    z-index: 2;
}*/