
#topMainImage {
  margin-top: 150px !important;
  position: relative;
}
.consept {
  margin-top: 50px !important;
}
.topSlide-container {
  width: 1200px;
  height: 480px;
  margin: 0 auto 0;
  position: relative;
}

.topSlide-copy {
  position: absolute;
  left: 50px;
  top: 50px;
  transform: translateX(-20px);
  transition: opacity 3s, transform ease-out 3s;
  opacity: 0;
  z-index: 10;
  font-size: 1rem;
  line-height: 1;
}
.topSlide-copy img {
  width: 588px;
}

.is-mv-init .topSlide-copy {
  opacity: 1;
  transform: translateX(0.1px);
}
.topSlide-wrapper,
.topSlide-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.topSlide-slide {
  opacity: 0;
  transition: opacity 3s;
}

.topSlide-slide img {
  height: 100%;
  width: calc(100% + 100px);
  object-fit: cover;
  position: absolute;
  object-position: center center;
}

.topSlide-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.topSlide-slide.is-active img,
.topSlide-slide.is-prev img {
  animation: slideMove 12s 1 forwards;
}

.topSlide-scroll {
  display: block;
  position: absolute;
  right: 35px;
  padding-bottom: 84px;
  bottom: 0;
  z-index: 10;
}

.topSlide-scroll::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 80px;
  background: #fff;
  left: calc(50% - 1px);
  bottom: 0;
  animation: scroll 3s infinite backwards;
}

@keyframes slideMove {
  0% {
    transform: translateX(0);
    animation-timing-function: linear;
  }
  100% {
    transform: translateX(-100px);
  }
}

@keyframes scroll {
  0% {
    transform: scaleY(0);
    transform-origin: center top;
    animation-timing-function: cubic-bezier(.22,0,.47,.98);
  }
  25% {
    transform: scaleY(1);
    transform-origin: center top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(.6,0,1,1);
  }
  75% {
    transform: scaleY(0);
    transform-origin: center bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: center bottom;
  }
}

@media screen and (max-width: 768px) {
  #topMainImage {
    margin-top: 76px !important;
  }
  .consept {
    margin-top: 60px !important;
  }
  .topSlide-copy {
    left: -12px;
    top: 8px;
  }
  .topSlide-copy img {
    width: 315px;
  }
  .topSlide-container {
    width: auto;
    height: calc(100vh - 70px);
    max-height: 592px;
  }
  .topSlide-slide img {
    height: 100%;
    width: calc(100% + 100px);
    object-fit: cover;
    position: absolute;
    object-position: center center;
  }
}