@charset "UTF-8";
.swiper-pagination-bullet-active {
  background-color: #242840;
}

.swiper {
  width: 100%;
  height: calc(100dvh - 60px);
}
@media screen and (min-width: 769px) {
  .swiper {
    height: calc(100dvh - 120px);
  }
}
.swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.swiper .swiper-slide .hero,
.swiper .swiper-slide .container {
  height: 100%;
}
@media screen and (min-width: 1216px) {
  .swiper .swiper-slide .container {
    max-width: 1152px;
  }
}
.swiper .swiper-slide img.slider-bg {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  min-width: 100%;
}
@media screen and (min-width: 769px) {
  .swiper .swiper-slide img.slider-bg.is-mobile {
    display: none;
  }
}
@media screen and (max-width: calc(769px - 1px)) {
  .swiper .swiper-slide img.slider-bg.is-desktop {
    display: none;
  }
}
.swiper .swiper-slide .title,
.swiper .swiper-slide .subtitle,
.swiper .swiper-slide .is-slide-up {
  opacity: 0; /* 初期状態を透明にする */
  pointer-events: none; /* 初期状態でのクリックを無効化 */
}
.swiper .swiper-slide-active .title,
.swiper .swiper-slide-active .subtitle {
  opacity: 1; /* アクティブスライド時に表示 */
  animation-duration: 3s;
  animation-timing-function: ease;
  animation-fill-mode: both;
}
.swiper .swiper-slide-active .title {
  animation-name: slide-down;
}
.swiper .swiper-slide-active .subtitle {
  animation-name: slide-up;
}
.swiper .swiper-slide-active .content[data-slide="1"] {
  position: absolute;
  top: 20dvh;
}
@media screen and (max-width: calc(769px - 1px)) {
  .swiper .swiper-slide-active .content[data-slide="1"] {
    top: 5dvh;
  }
}
.swiper .swiper-slide-active .content[data-slide=top-right] {
  position: absolute;
  top: 0;
  right: 0;
}
.swiper .swiper-slide-active .content[data-slide=top-left] {
  position: absolute;
  top: 0;
  left: 0;
}
.swiper .swiper-slide-active .content[data-slide=bottom-right] {
  position: absolute;
  bottom: 0;
  right: 0;
}
.swiper .swiper-slide-active .content[data-slide=bottom-left] {
  position: absolute;
  bottom: 0;
  left: 0;
}
.swiper .swiper-slide-active .is-slide-up {
  position: relative;
  opacity: 1; /* アクティブスライド時に表示 */
  animation-name: slide-up;
  animation-duration: 4s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  pointer-events: auto; /* アクティブスライド時にクリック可能にする */
}

.insta-swiper {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
.insta-swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.insta-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.insta-swiper .swiper-pagination {
  top: calc(100% + 1rem);
}

.swiper-plan,
.swiper-plan-thumbnail {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-plan .swiper-slide,
.swiper-plan-thumbnail .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
  text-align: center;
  cursor: pointer;
}
.swiper-plan .swiper-slide p,
.swiper-plan-thumbnail .swiper-slide p {
  margin-bottom: 1.6rem;
  line-height: 1.8;
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-up {
  0% {
    transform: translateY(5%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*# sourceMappingURL=swiper.css.map */
