@charset "UTF-8";
/**
 * ViewPort Mixin and setting rem to pixel.
 */
/** ここでデザインファイルのサイズを入力 */
/**
 * mixin
 */
/**
 * pxをvwで返す関数
 */
/** デスクトップ上でpxをvwを返す */
/** モバイル上でpxをvwを返す */
/** largeDisplay（1536px以上）でウィンドウサイズサイズに追従するための関数 */
/**
 * Colors
 */
.top-sticky-wrap {
  position: relative;
}

.firstview {
  position: sticky;
  top: 0;
  z-index: -1;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
@media (max-width: 768px) {
  .firstview {
    margin-top: 72rem;
    min-height: 100vw;
  }
}
.firstview .swiper {
  position: relative;
  z-index: 1;
}
.firstview .firstview-images, .firstview .swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.firstview .firstview-images img, .firstview .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .firstview .firstview-images img, .firstview .swiper-slide img {
    height: auto;
    -o-object-fit: unset;
       object-fit: unset;
  }
}
.firstview .firstview-images.swiper-slide-active, .firstview .swiper-slide.swiper-slide-active {
  z-index: 1;
  opacity: 1 !important;
}
.firstview .text {
  position: absolute;
  bottom: 48rem;
  left: 48rem;
  z-index: 2;
  color: var(--White, #FFF);
  font-size: 120rem;
  font-weight: 700;
  line-height: 110%;
  text-align: left;
  /* 24-12 */
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.12);
  font-style: normal;
  pointer-events: none;
}
@media (max-width: 768px) {
  .firstview .text {
    display: none;
  }
}
.firstview .heading1 {
  position: relative;
  z-index: 2;
  width: 84%;
  margin: 82vw auto 60rem;
}