@charset "utf-8";


/************************************************************
                動き
************************************************************/

/*==============menu===============*/
.animate {
  opacity: 0;
  flex: 0 1 30%;
  transform: translateY(10px);
  transition: all 1.5s;
}
.animate:not(:nth-child(3n+1)) {
  margin-left: 20px;
}
.animate:not(:nth-child(-n+3)) {
  margin-top: 20px;
}
.animate.show {
  opacity: 1;
  transform: translateY(0);
}
.animate.show:nth-of-type(1) {
  transition-delay: 0s;
}
.animate.show:nth-of-type(2) {
  transition-delay: 0.2s;
}
.animate.show:nth-of-type(3) {
  transition-delay: 0.4s;
}
.animate.show:nth-of-type(4) {
  transition-delay: 0.6s;
}

.mv_up1{
	opacity: 0;
	transition: 0.8s 0s;
	-moz-transform: scale(1) translate(0,30px);
    -webkit-transform: scale(1) translate(0,30px);
    -o-transform: scale(1) translate(0,30px);
    -ms-transform: scale(1) translate(0,30px);
	transform: scale(1) translate(0,30px);
}
.mv_up2{
	opacity: 0;
	transition: 0.8s 0.2s;
	-moz-transform: scale(1) translate(0,30px);
    -webkit-transform: scale(1) translate(0,30px);
    -o-transform: scale(1) translate(0,30px);
    -ms-transform: scale(1) translate(0,30px);
	transform: scale(1) translate(0,30px);
}
.ac_up{
	opacity: 1.0;
	-moz-transform: scale(1) translate(0);
    -webkit-transform: scale(1) translate(0);
    -o-transform: scale(1) translate(0);
    -ms-transform: scale(1) translate(0);
	transform: scale(1) translate(0);
}
.mv_fade1{
    opacity: 0;
	transition: 1s all 0s ease;
}
.mv_fade2{
    opacity: 0;
	transition: 1s all 0.2s ease;
}
.mv_fade3{
    opacity: 0;
	transition: 1s all 0.4s ease;
}
.mv_fade4{
    opacity: 0;
	transition: 1s all 0.6s ease;
}

.ac_fade{
    opacity: 1;
}
.fade {
	opacity: 0;
	transition: 1.2s all 0s ease;
}
.fade.ac {
	opacity: 1;
}
.img-animation {
  animation: img-opacity 1s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
  position: relative;
    
}
.img-animation:before {
  animation: img-animation 1s cubic-bezier(.4, 0, .2, 1) forwards;
  background:#000000;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;

}
@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}
@keyframes img-animation {
  100% {
    transform: translateX(100%);
  }
}
