.fv {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.fv__title {
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  z-index: 100;
  width: 100%;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .fv__title {
    top: unset;
    left: 24px;
    bottom: 13px;
    font-size: 8.5333333333vw;
    text-align: left;
    line-height: 1.4;
  }
}
.fv__slider {
  height: 100vh;
}
.fv .swiper-slide {
  height: 100%;
}
.fv .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.15);
  transition: 7s ease;
}
.fv .swiper-slide.swiper-slide-active img {
  transform: scale(1);
}

.wafuku {
  padding: 40px 20px;
}
@media screen and (max-width: 768px) {
  .wafuku {
    padding: 0 5.3333333333vw 17.0666666667vw;
  }
  .wafuku__inner {
    border-top: 1px solid #D93924;
    padding-top: 8.5333333333vw;
  }
}
.wafuku__titleArea {
  text-align: center;
}
.wafuku__titleArea h2 {
  color: #D93924;
}
.wafuku .title__logo {
  margin-bottom: 24px;
}
.wafuku__text {
  margin-top: 32px;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .wafuku__text {
    font-size: 3.7333333333vw;
  }
}

.loading {
  background: url(../img/common/about-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease;
}

.loading__logoWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.loading__logo,
.loading__bar {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1s ease, filter 1s ease;
}

.loading__logo.active,
.loading__bar.active {
  opacity: 1;
  filter: blur(0);
}

.loading__bar {
  width: 124px;
  height: 4px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.loading__barInner {
  height: 100%;
  width: 0%;
  background-color: #920783;
  transition: width 2s ease;
}

.loading__barInner.animate {
  width: 100%;
}

.loading.fadeout {
  opacity: 0;
  pointer-events: none;
}/*# sourceMappingURL=top.css.map */