@charset "UTF-8";

/* bannerArea */
.bannerArea {
  background-color: #fbf4f4;
  overflow: hidden;
}

/* .bannerArea .stage .layer{
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 90%;

} */
.bannerArea .bannerBox {
  min-height: 100vh;
}

.bannerArea .text .titleBox {
  display: flex;
}

.bannerArea .text .titleBox .title {
  font-size: 6rem;
}

.bannerArea .text img {
  height: inherit;
}

.bannerArea .text h1 {
  padding-right: 10%;
}

.bannerArea .text h1:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  background-image: url(../images/home/logo.svg);
  background-size: auto 60%;
  background-position: left center;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .bannerArea .stage .layer {
    background-position: 63% center;
    background-size: 215%;
  }

  .bannerArea .text .titleBox .title {
    font-size: 3rem;
    padding: 0;
  }

  .bannerArea .text h1:after {
    top: auto;
    bottom: 100%;
    transform: none;
    background-position: right bottom;
    left: 0;
  }

  .bannerArea .text h3 {
    font-size: 1.2rem;
  }
}

/* page01 */
.page {
  min-height: 100vh;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.page01 {
  background-image: url(../images/home/page01-bg.jpg);

  color: #fff;
}

.stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.stage .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  opacity: 0;
}

/* videoSwiper */
.VideoList .item {
  color: #fff;
  font-size: 0.9rem;
  padding: 10px;
  display: block;
}
.VideoList .slick-dots li button:before{
color: #fff;
}

.VideoList .item .Txt{
  padding: 10px 0;
}
.VideoList .item .innerImg .image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
  transition: all 0.5s;
}

.VideoList .item:hover .innerImg .image::after {
  opacity: 0;
  transition: all 0.5s;
}

.VideoList .item .innerImg::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15%;
  padding-top: 15%;
  background-image: url(../images/F/icon-play.svg);
  background-size: contain;
  opacity: 0.8;
  transition: all 0.5s;
}

.VideoList .item:hover .innerImg::after {
  opacity: 0;
  transition: all 0.5s;
}

@media (max-width: 991px) {
  .page {
    padding-top: 10%;
    justify-content: flex-start;
  }

  .page .text {
    padding: 5%;
  }

  .page .text h1 {
    font-size: 2.6rem;
  }

  .page02.page {
    text-align: right;
    justify-content: inherit;
  }

  .page02.page .stage .layer {
    background-position: 80% bottom;
    background-size: 275%;
  }

  .page02.page .display-1 {
    font-size: 4.5rem;
  }

  .page03.page {
    justify-content: flex-end;
    padding-bottom: 20%;
  }

  .page03.page .stage .layer {
    background-position: 68% -50%;
    background-size: 284%;
  }

  .page04.page {
    padding-top: 20%;
  }

  .page04.page .stage .layer {
    background-position: 60% bottom;
    background-size: 300%;
  }

  .page05.page .stage .layer {
    background-size: cover;
  }

  .page05.page {
    justify-content: center;
  }


  .page06.page .stage .layer {
    background-position: 70% bottom;
    background-size: 230%;
  }

}


@media (max-width: 400px) {
  .bannerArea .text .titleBox .title {
    font-size: 2.5rem;
  }

  .bannerArea .text h3 {
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  .bannerArea .text .titleBox .title {
    font-size: 2.2rem;
  }

  .bannerArea .text h3 {
    font-size: 1rem;
  }
}