.fv {
  z-index: 1;
  position: relative;
  width: 100%;
}

.fv__image {
  position: relative;
  width: 100%;
  z-index: -1;
}

.fv__image::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  content: "";
  z-index: 1;
}

.fv__slider_image {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition: 8s ease-out;
  transition: 8s ease-out;
}

/* ==========================
    ページネーション
  ========================== */

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  width: 250px;
  bottom: 0;
  padding: 8px 0;
  line-height: 1;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 3px;
}

.fv__pagination {
  position: absolute;
  top: calc(50% - 10rem);
  right: 6.5rem;
}

@media screen and (max-width: 767px) {
  .fv__pagination {
    top: 10rem;
    right: 5.5rem;
  }
}

.circle-pagination {
  position: relative;
  width: 48px;
  height: inherit;
  z-index: 1;
  text-align: center;
  cursor: pointer;
  opacity: 1;
  display: inline-block;
  outline: none;
}

.circle-pagination .circle-pagination__inner {
  position: relative;
}

.circle-pagination .circle-pagination__inner::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-pagination__inner svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-pagination__inner circle {
  fill: transparent;
  stroke: #fff;
  stroke-width: 1.5;
  animation: circle 5s linear forwards;
}

@keyframes circle {
  0% {
    stroke-dasharray: 0 141;
  }

  99.9%,
  to {
    stroke-dasharray: 141 141;
  }
}

.circle-pagination:not(.swiper-pagination-bullet-active) .circle-pagination__inner svg {
  display: none;
}

.circle-pagination.swiper-pagination-bullet-active .circle-pagination__inner::after {
  content: "";
  width: 45px;
  height: 45px;
  border: solid 1.5px #fff;
  border-radius: 4rem;
  opacity: 0.45;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fv__pagination .swiper-pagination .swiper-pagination-bullet {
  width: 45px;
  height: 45px;
  background: unset;
}

.fv__pagination .swiper-pagination .swiper-pagination-bullet-active {
  background: unset;
}

/* ==========================
    ページネーション END
  ========================== */

.fv__content {
  width: fit-content;
  height: 100%;
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.fv__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 12vw;
  text-transform: uppercase;
  line-height: 5rem;
  letter-spacing: 0.05em;
  padding-bottom: 1.5rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 5vw;
    line-height: 9rem;
    letter-spacing: 0.04rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .fv__title {
    font-size: 2.8rem;
    line-height: 1.5;
    letter-spacing: 0.2em;
  }
}

.fv__ja {
  width: 100%;
  font-weight: 400;
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.12em;
  text-align: center;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .fv__ja {
    width: fit-content;
    margin-top: 2rem;
    font-size: 1.6vw;
    line-height: 2.1428571429;
  }
}

.fv_labels {
  position: absolute;
  bottom: -5vw;
  left: 0;
  width: 73vw;
  display: flex;
  gap: 8px;
}

@media screen and (min-width: 768px) {
  .fv_labels {
    width: 33vw;
    bottom: 0;
    position: static;
    margin-top: 5rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .fv_labels {
    position: static;
    max-width: 36rem;
    margin-top: 2rem;
  }
}

.fv__scroll {
  position: absolute;
  left: 1.2rem;
  bottom: 25vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .fv__scroll {
    left: 2vw;
    bottom: 5vw;
  }
}

.fv__scroll_text {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.2rem;
  margin-bottom: 1.5rem;
}

.fv__scroll_line {
  display: block;
  width: 1px;
  height: 95px;
  background-color: #fff;
  position: relative;
}

.fv__scroll_line::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 2rem;
  background-color: #fff;
  position: absolute;
  transform: translateX(-50%);
  top: 0;
  left: 0;
  animation: scroll 5s linear infinite;
}

@keyframes scroll {
  from {
    top: 0;
  }
  to {
    top: 100%;
  }
}

.fvSub {
  position: relative;
}

.fvSub__image {
  position: relative;
  height: 16rem;
}

.fvSub__image::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  content: "";
}

.fvSub__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.fvSub__title {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.fvSub__title::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: attr(data-en);
  color: rgba(255, 255, 255, 0.15);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: 400;
  font-size: 5rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.fvSub__en {
  font-weight: 300;
  font-size: 1.2rem;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fvSub__jp {
  font-family: "Noto Serif JP", serif;
  width: 100%;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.11em;
}

.fv__slider_image {
  width: 100%;
  height: auto;
}

.splide__arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin-inline: auto;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.splide__arrow {
  background: transparent;
  opacity: 1;
}

.splide__arrow--prev,
.splide__arrow--next {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #4ab2f8;
}

.splide__arrow--prev {
  left: 3%;
}

.splide__arrow--next {
  right: 3%;
}

.splide__arrow--prev::before,
.splide__arrow--next::after {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  content: "";
}

.splide__arrow--prev::before {
  background: url(../img/arrow_prev.png) no-repeat center center/cover;
}

.splide__arrow--next::after {
  background: url(../img/arrow_next.png) no-repeat center center/cover;
}

.fvBanner {
  background-color: #fafafa;
  padding: 3rem 0;
}

.fv_name__sideScroll {
  display: flex;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  overflow: hidden;
  margin-top: -6rem;
}

@media screen and (min-width: 768px) {
  .fv_name__sideScroll {
    -webkit-column-gap: min(2.36vw, 3.4rem);
    -moz-column-gap: min(2.36vw, 3.4rem);
    column-gap: min(2.36vw, 3.4rem);
    margin-top: -8rem;
  }
}

.fv_name__sideScrollImg {
  z-index: 1;
  position: relative;
  flex-shrink: 0;
  width: 330rem;
  animation: loopSlide 80s infinite linear;
}

@media screen and (min-width: 768px) {
  .fv_name__sideScrollImg {
    width: 490rem;
  }
}

.fv_name__sideScrollImg::before {
  padding-top: 5.2933392148%;
}

@keyframes loopSlide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@media screen and (min-width: 768px) {
  .fvSub__image {
    height: 100%;
    margin-left: auto;
  }

  .fvSub__title::after {
    font-size: 11rem;
  }

  .fvSub__en {
    font-size: 5rem;
  }

  .fvSub__jp {
    font-size: 1.8rem;
  }

  .splide__arrow--prev,
  .splide__arrow--next {
    width: 7rem;
    height: 7rem;
  }

  .splide__arrow--prev {
    left: 11%;
  }

  .splide__arrow--next {
    right: 11%;
  }
}
