@charset "UTF-8";
/*	cmn-color
------------------------------------ */
/*	transition,hover
------------------------------------ */
/*	media-screen
------------------------------------ */
/*	font
------------------------------------ */
/*	layout
------------------------------------ */
/* MV  PC
------------------------------------ */
.top .headline, .top .sidebar {
  animation: mvFade 0.5s linear forwards;
  opacity: 0;
  animation-delay: 2.5s;
}

.mv {
  /* 表示中のスライドだけアニメーション */
}
.mv li img {
  animation: mvZoom 6s linear infinite;
}
.mv-catch01 {
  animation: mvFade 0.5s linear forwards;
  opacity: 0;
  animation-delay: 1s;
}
.mv-catch02 {
  animation: mvFade 0.5s linear forwards;
  opacity: 0;
  animation-delay: 1.3s;
}
.mv-catch03 {
  animation: mvFade 0.5s linear forwards;
  opacity: 0;
  animation-delay: 1.6s;
}

@keyframes mvZoom {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes mvFade {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}/*# sourceMappingURL=animation.css.map */