@charset "UTF-8";
/**** 共通カラー ****/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #ffffff;
  text-align: center;
  color: #fff;
  font-family: "CormorantGaramond-Regular";
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
  width: 120px;
  height: 105px;
  overflow: hidden;
}

/* Loading アイコンの大きさ設定　*/
#splash_logo p {
  font-family: "NotoSansJP-Regular";
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  margin: auto;
  max-width: 100px;
}

#splash_logo p span {
  display: block;
}

.slide_IN {
  animation-name: slide_IN;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes slide_IN {
  from {
    transform: translateY(40px);
  }
  to {
    transform: translateY(-50%);
  }
}
.Catch_IN h1 .move_item {
  transform: translateY(150%);
}

.Catch_IN.show h1 .move_item {
  display: block;
  animation-name: Catch_IN;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-delay: 1s;
}

@keyframes Catch_IN {
  from {
    transform: translateY(150%);
  }
  to {
    transform: translateY(0);
  }
}
/* ループテキスト */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes lineGrowDown {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}
.Fade_IN {
  opacity: 0;
  will-change: transform, opacity;
  transform: translateY(40px);
  visibility: hidden;
}

.Fade_IN.show {
  animation: Fade_In 0.6s ease-out 0.2s forwards;
}

@keyframes Fade_In {
  from {
    opacity: 0;
    transform: translateY(60px);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
.Fade_View {
  opacity: 0;
}

.Fade_View.show {
  animation-name: Fade_View;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

@keyframes Fade_View {
  from {
    opacity: 0;
    visibility: visible;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
.Fade_List_IN {
  opacity: 0;
  will-change: transform, opacity;
  transform: translateY(40px);
  visibility: hidden;
}

.Fade_List_IN.show {
  animation: Fade_List_IN 0.6s ease-out 0.2s forwards;
}

.Fade_List_IN.show:nth-child(1) {
  animation-delay: 0.2s;
}

.Fade_List_IN.show:nth-child(2) {
  animation-delay: 0.4s;
}

.Fade_List_IN.show:nth-child(3) {
  animation-delay: 0.6s;
}

.Fade_List_IN.show:nth-child(4) {
  animation-delay: 0.8s;
}

.Fade_List_IN.show:nth-child(5) {
  animation-delay: 1s;
}

.Fade_List_IN.show:nth-child(6) {
  animation-delay: 1.2s;
}

@keyframes Fade_List_IN {
  from {
    opacity: 0;
    transform: translateY(60px);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
.move_top {
  animation: moveUpPc 0.6s ease-out forwards;
  animation-delay: 2s;
  top: -70px;
}
@media screen and (max-width: 768px) {
  .move_top {
    animation: moveUp 0.6s ease-out forwards;
    animation-delay: 2s;
    top: -60px;
  }
}

@keyframes moveUpPc {
  from {
    top: -70px;
    visibility: visible;
  }
  to {
    top: 0;
    visibility: visible;
  }
}
@keyframes moveUp {
  from {
    top: -60px;
    visibility: visible;
  }
  to {
    top: 0;
    visibility: visible;
  }
}
.move_RL {
  animation: moveRL 0.6s ease-out forwards;
  animation-delay: 2s;
  right: -40px;
}

@keyframes moveRL {
  from {
    right: -40px;
    visibility: visible;
  }
  to {
    right: 0;
    visibility: visible;
  }
}
.section-mv .sp_mv-frame {
  animation: pc_mv 0.6s ease-out forwards;
  animation-delay: 2s;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .section-mv .sp_mv-frame {
    animation: sp_mv 0.6s ease-out forwards;
    animation-delay: 2s;
    padding-top: 10px;
  }
}
@keyframes pc_mv {
  from {
    padding-top: 10px;
    visibility: visible;
  }
  to {
    padding-top: 70px;
    visibility: visible;
  }
}
@keyframes sp_mv {
  from {
    padding-top: 10px;
    visibility: visible;
  }
  to {
    padding-top: 60px;
    visibility: visible;
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=animation.css.map */