@charset "UTF-8";
body.noscroll {
  overflow-y: scroll;
  height: 100vh;
}

:root {
  --windowh: 100vh;
}

html,
body {
  height: 100%;
  min-height: 100%;
}

body::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

.cvBnr {
  z-index: 10;
}

/* エリア外（before / out）のときは絶対配置にして画面に追従させない */
.scrollstoparea.before .navigator,
.scrollstoparea.out .navigator {
  position: absolute;
}

/* エリア上部（before）に抜けたらエリア最上部に配置 */
.scrollstoparea.before .navigator {
  top: 50vh;
  bottom: auto;
  transform: translate(0, -50%);
}

/* エリア内にいる時（in）のみ画面に固定 */
.scrollstoparea.in .navigator {
  position: fixed;
  top: 50%;
  bottom: auto;
  transform: translate(0, -50%);
}

/* エリア下部（out）に抜けたらエリア最下部に配置 */
.scrollstoparea.out .navigator {
  top: auto;
  bottom: 50vh;
  transform: translate(0, 50%);
}

.navigator {
  z-index: 10;
  right: 20px;
}

.navigator li {
  width: 1px;
  height: 10px;
  display: block;
  background: #fff;
  margin: 0 0 7px;
  transition: height 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.navigator .n_active {
  height: 100px;
  display: block;
  border-radius: 5px;
  margin: 0 0 9px;
}

@media (max-width: 768px) {
  .navigator li {
    margin: 0 0 9px;
  }
}
.tu_dots {
  display: none;
  position: absolute;
  width: 9px;
  height: 137px;
  background-image: url("../imgs/obj_dots.svg");
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  background-size: 100%;
  right: 10px;
  z-index: 3;
}

.tu_dots_w {
  display: none;
  position: absolute;
  width: 9px;
  height: 137px;
  background-image: url("../imgs/obj_dots_w.svg");
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  background-size: 100%;
  right: 10px;
  z-index: 3;
}

@media (max-width: 768px) {
  .tu_dots {
    display: block;
    position: absolute;
    width: 9px;
    height: 137px;
    background-image: url("../imgs/obj_dots.svg");
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    background-size: 100%;
    right: 10px;
    z-index: 3;
  }
  .tu_dots_w {
    display: block;
    position: absolute;
    width: 9px;
    height: 137px;
    background-image: url("../imgs/obj_dots_w.svg");
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    background-size: 100%;
    right: 10px;
    z-index: 3;
  }
}
@-webkit-keyframes ball-scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes ball-scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.loading {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f1f0e7;
  gap: 70px;
}
.loading .loader {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  height: auto;
  align-items: center;
  justify-content: center;
}
.loading .loader .ball-scale-random {
  width: 20px;
  height: 40px;
  transform: scale(3);
}
.loading .loader .ball-scale-random > div {
  background-color: rgba(178, 177, 164, 0.5);
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  display: inline-block;
  height: 30px;
  width: 30px;
  transform: scale(0);
  -webkit-animation: ball-scale 2s 0s ease-in-out infinite;
  animation: ball-scale 2s 0s ease-in-out infinite;
}
.loading .loader .ball-scale-random > div:nth-child(1) {
  margin-left: -14px;
  -webkit-animation: ball-scale 2s 0.4s ease-in-out infinite;
  animation: ball-scale 2s 0.4s ease-in-out infinite;
}
.loading .loader .ball-scale-random > div:nth-child(3) {
  margin-left: -2px;
  margin-top: 9px;
  -webkit-animation: ball-scale 2s 1s ease-in-out infinite;
  animation: ball-scale 2s 1s ease-in-out infinite;
}
.loading .progressbar_wrapper {
  width: 120px;
  height: 3px;
  background: #fff;
  position: relative;
}
.loading .progressbar_wrapper .progressbar {
  background: #d9d9d9;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .loading {
    padding-bottom: 40px;
  }
}

.scrollassist {
  position: absolute;
  bottom: 0;
  left: 50%;
  background: rgba(170, 152, 87, 0.3);
  width: 1px;
  height: 100px;
  z-index: 1000;
  overflow: hidden;
}
.scrollassist:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #aa9857;
  position: absolute;
  top: -1px;
  left: 0;
  -webkit-animation: scrollassistmotion 3s cubic-bezier(0.9, -0.01, 0.31, 1.01) 0s infinite normal forwards;
          animation: scrollassistmotion 3s cubic-bezier(0.9, -0.01, 0.31, 1.01) 0s infinite normal forwards;
  transform-origin: top;
}
@media (max-width: 767px) {
  .scrollassist {
    left: 16.5%;
  }
}

@-webkit-keyframes scrollassistmotion {
  0% {
    transform: scaleY(0);
  }
  50% {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes scrollassistmotion {
  0% {
    transform: scaleY(0);
  }
  50% {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.scene_first {
  position: relative;
  z-index: 1;
}
.scene_first .mvf_main {
  transition: transform 5s;
}
.scene_first .scene_first_txt {
  filter: blur(2vw) brightness(1000%);
  transform: scale(1.2) translateY(-50%);
  transition: 1s 0.5s;
  opacity: 0;
}
.scene_first.on .mvf_main {
  transform: scale(1.1);
}
.scene_first.on .scene_first_txt {
  filter: none;
  transform: scale(1) translateY(-50%);
  opacity: 1;
  transition: filter 0.8s 0s, opacity 0.3s 0s, transform 5s linear;
}

.scene_end {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
.scene_end .scene_end_txt {
  filter: blur(2vw) brightness(1000%);
  transform: scale(1.2);
  transition: 1s 0.5s;
  opacity: 0;
  width: auto;
}
@media (max-width: 767px) {
  .scene_end .scene_end_txt {
    transform: scale(1.2);
    transform-origin: left center;
  }
}
.scene_end .mainVisual__picture {
  transform: scale(1.1);
  transition: 3s ease-out;
}
.scene_end.on {
  opacity: 1;
  transition: 2s;
}
.scene_end.on .scene_end_txt {
  filter: none;
  transform: scale(1);
  opacity: 1;
  transition: filter 0.8s 1s, opacity 0.3s 1s, transform 5s 1s linear;
}
@media (max-width: 767px) {
  .scene_end.on .scene_end_txt {
    transform: scale(1.25);
  }
}
.scene_end.on .mainVisual__picture {
  transform: scale(1);
}
@media (max-width: 767px) {
  .scene_end .mainVisual__picture {
    transform: scale(1);
  }
  .scene_end img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left bottom;
       object-position: left bottom;
    transition: 2s 1.2s ease-in-out;
    width: 100%;
    height: 100%;
    transform: scale(1);
  }
  .scene_end.on img {
    -o-object-position: 82% bottom;
       object-position: 82% bottom;
    transition: 5s ease-in-out;
  }
}

/* 366行目からの差し替え */
.scrollstoparea {
  height: 400vh;
  height: calc(var(--windowh) * 4);
  position: relative;
  box-sizing: border-box;
}
.scrollstoparea .scrollstop_swiper {
  width: 100%;
  height: 100vh;
  height: var(--windowh) !important; /* Swiperのインラインstyleを強制上書き */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 5;
  overflow: hidden;
}
html.windows-touch .scrollstoparea .scrollstop_swiper {
  touch-action: pan-y;
}
.scrollstoparea .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.scrollstoparea .swiper-slide {
  width: 100%;
  height: 100vh;
  height: var(--windowh) !important; /* Swiperのインラインstyleを強制上書き */
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.scrollstoparea .scene {
  width: 100%;
  height: var(--windowh) !important;
  overflow: hidden;
}
.scrollstoparea .scene .bg {
  height: 100lvh;
}
.scrollstoparea .scene .sceneinner {
  top: 0;
  left: 0;
  width: 100%;
  height: var(--windowh);
  position: relative;
  position: absolute;
  z-index: 10;
}
.scrollstoparea .scene h2 {
  transition: opacity 1s 0.3s, transform 1s 0.3s;
}
.scrollstoparea .scene h3 {
  transition: opacity 1s 0.4s, transform 1s 0.4s;
}
.scrollstoparea .scene .topusptxt03 {
  transition: opacity 1.3s 0.9s, transform 1.3s 0.9s;
}
.scrollstoparea .scene:not(.current) h2,
.scrollstoparea .scene:not(.current) h3,
.scrollstoparea .scene:not(.current) .topusptxt03 {
  opacity: 0;
  transform: translateX(-80px);
}
.scrollstoparea .scene.current h2,
.scrollstoparea .scene.current h3,
.scrollstoparea .scene.current .topusptxt03 {
  opacity: 1;
  transform: translateX(0);
}
/*# sourceMappingURL=scrollstop.css.map */