@charset "utf-8";

/*左から右にフェードイン*/
.left-to-right {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 1s;
    transition-delay: .3s;
}
.left-to-right.inview {
    opacity: 1;
    transform: translate(0);
}

/*右から左にフェードイン*/
.right-to-left {
    opacity: 0;
    transform: translateX(20px);
    transition: all 1s;
    transition-delay: .3s;
}
.right-to-left.inview {
    opacity: 1;
    transform: translate(0);
}

/*下から上にフェードイン*/
.down-to-top {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s;
    transition-delay: .3s;
}
.down-to-top.inview {
    opacity: 1;
    transform: translateY(0);
}

/*フェードイン*/
.fade-in {
    opacity: 0;
    transition: all 1s;
    transition-delay: .3s;
}
.fade-in.inview {
    opacity: 1;
}


.down-to-top_parent > .down-to-top_child {
	opacity: 0;
	transform: translateY(20px);
	transition: all 1s;
    transition-delay: .3s;
}
.down-to-top_parent.inview > .down-to-top_child {
	opacity: 1;
	transform: translate(0);
}
.down-to-top_parent > .down-to-top_child:nth-child(2) {
    transition-delay: .4s;
}
.down-to-top_parent > .down-to-top_child:nth-child(3) {
    transition-delay: .5s;
}
.down-to-top_parent > .down-to-top_child:nth-child(4) {
    transition-delay: .6s;
}
.down-to-top_parent > .down-to-top_child:nth-child(5) {
    transition-delay: .7s;
}
.down-to-top_parent > .down-to-top_child:nth-child(6) {
    transition-delay: .8s;
}
.down-to-top_parent > .down-to-top_child:nth-child(7) {
    transition-delay: .9s;
}
.down-to-top_parent > .down-to-top_child:nth-child(8) {
    transition-delay: 1s;
}
.down-to-top_parent > .down-to-top_child:nth-child(9) {
    transition-delay: 1.1s;
}
.down-to-top_parent > .down-to-top_child:nth-child(10) {
    transition-delay: 1.2s;
}
.down-to-top_parent > .down-to-top_child:nth-child(11) {
    transition-delay: 1.3s;
}
.down-to-top_parent > .down-to-top_child:nth-child(12) {
    transition-delay: 1.4s;
}

/*　Anime Delay
-----------------------------*/
.delay_time02 {
    transition-delay: 0.2s;
}
. {
    transition-delay: 0.4s;
}
.delay_time06 {
    transition-delay: 0.6s;
}
.delay_time08 {
    transition-delay: 0.8s;
}
.delay_time10 {
    transition-delay: 1s;
}
.delay_time12 {
    transition-delay: 1.2s;
}