.fv {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 50rem;
  margin-top: 4.8rem;
  padding-bottom: 9rem;
}

@media screen and (min-width: 768px) {
  .fv {
    margin-top: 8rem;
    padding-bottom: 4.96rem;
    height: auto;
  }
}

.fv::after {
  z-index: -1;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 70%;
  background: -webkit-gradient(linear, left top, right top, from(#188a3c), to(#01ba3b));
  background: linear-gradient(to right, #188a3c 0%, #01ba3b 100%);
  content: "";
}

@media screen and (min-width: 768px) {
  .fv::after {
    height: 27.25vw;
  }
}

.fv__image {
  position: relative;
  width: calc(100% - 4.8rem);
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .fv__image {
    width: 86.4583333333%;
    margin-bottom: 5rem;
  }
}

.fv__image::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(56, 33, 33, 0.12);
  content: "";
}

.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;
}

@media screen and (max-width: 480px) {
  .fv .swiper-slide {
    height: 46rem;
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  position: absolute;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  bottom: unset;
  left: unset;
  top: 2.5rem;
  right: 1.2rem;
}

@media screen and (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    gap: 4rem;
    top: 5vw;
    right: 2vw;
  }
}

.swiper-pagination-bullet {
  opacity: 1;
  width: 2.5px;
  height: 2.5px;
}

@media screen and (min-width: 768px) {
  .swiper-pagination-bullet {
    width: 3.6px;
    height: 3.6px;
  }
}

/* 円形のプログレスバー */
.swiper-pagination-bullet.swiper-pagination-bullet-active.circle {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  background: #000;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  margin: auto;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .swiper-pagination-bullet.swiper-pagination-bullet-active.circle {
    width: 4rem;
    height: 4rem;
  }
}

.swiper-pagination-bullet.swiper-pagination-bullet-active.circle::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  background: #d3d3d3;
  transform-origin: right 1.25rem;
  z-index: 2;
  animation: circleBefore 5s linear forwards;
}

@media screen and (min-width: 768px) {
  .swiper-pagination-bullet.swiper-pagination-bullet-active.circle::before {
    left: -2rem;
    width: 4rem;
    height: 4rem;
    transform-origin: right 2rem;
  }
}

.swiper-pagination-bullet.swiper-pagination-bullet-active.circle::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  background: #d3d3d3;
  transform-origin: left 1.25rem;
  z-index: 3;
  animation: circleAfter 5s linear forwards;
}

@media screen and (min-width: 768px) {
  .swiper-pagination-bullet.swiper-pagination-bullet-active.circle::after {
    left: 2rem;
    width: 4rem;
    height: 4rem;
    transform-origin: left 2rem;
  }
}

.swiper-pagination-bullet.swiper-pagination-bullet-active.circle .circle_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.3rem;
  height: 2.3rem;
  background: #fff;
  border-radius: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .swiper-pagination-bullet.swiper-pagination-bullet-active.circle .circle_inner {
    width: 3.8rem;
    height: 3.8rem;
  }
}

.swiper-pagination-bullet.swiper-pagination-bullet-active.circle .circle_inner span {
  content: "";
  display: block;
  width: 2.5px;
  height: 2.5px;
  background: #000;
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  .swiper-pagination-bullet.swiper-pagination-bullet-active.circle .circle_inner span {
    width: 3.6px;
    height: 3.6px;
  }
}

@keyframes circleAfter {
  0% {
    transform: rotate(0deg);
    background: #d3d3d3;
  }
  50% {
    transform: rotate(180deg);
    background: #d3d3d3;
  }
  50.1% {
    transform: rotate(360deg);
    background: #000;
  }
  100% {
    transform: rotate(360deg);
    background: #000;
  }
}

@keyframes circleBefore {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

.fv__content {
  width: 28rem;
  height: 70%;
  z-index: 5;
  position: absolute;
  top: 4rem;
  left: 1.5rem;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .fv__content {
    width: 100%;
    height: auto;
    top: 5vw;
    left: 5vw;
  }
}

.fv__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #fff;
  padding-bottom: 1.5rem;
  width: fit-content;
}

@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 2.3vw;
    line-height: 1.5;
    letter-spacing: 0.2em;
  }
}

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

.fv__en {
  width: 100%;
  font-weight: 400;
  margin-top: 1.5rem;
  font-size: 1.2rem;
  line-height: 1.5;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.12em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .fv__en {
    width: fit-content;
    margin-top: 2.5rem;
    font-size: 1.1vw;
    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;
  right: 1.2rem;
  bottom: 25vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

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

@media (min-width: 768px) and (max-width: 1024px) {
  .fv__scroll {
    bottom: 6vw;
  }
}

.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;
  margin-top: 4.8rem;
}

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

.fvSub__image::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  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: 500;
  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 {
    margin-top: 6.4rem;
  }

  .fvSub__image {
    height: 100%;
    margin-left: auto;
  }

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

  .fvSub__en {
    font-size: 1.5rem;
  }

  .fvSub__jp {
    font-size: 3.4rem;
  }

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

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

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