@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;
}

/*モノクロ→カラー*/
.gray-color img {
    filter: grayscale(100%);
	transition-delay: 1.3s!important;
}
.gray-color.inview img {
    filter:grayscale(0);
}


.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: .5s;
}
.down-to-top_parent .down-to-top_child:nth-child(3) {
	transition-delay: .7s;
}
.down-to-top_parent .down-to-top_child:nth-child(4) {
	transition-delay: .9s;
}
.down-to-top_parent .down-to-top_child:nth-child(5) {
	transition-delay: 1.1s;
}
.down-to-top_parent .down-to-top_child:nth-child(6) {
	transition-delay: 1.4s;
}


.fade-in_parent .fade-in_child {
    opacity: 0;
    transition: all 1s;
    transition-delay: .3s;
}
.fade-in_parent.inview .fade-in_child {
    opacity: 1;
}
.fade-in_parent .fade-in_child:nth-child(2) {
	transition-delay: .5s;
}
.fade-in_parent .fade-in_child:nth-child(3) {
	transition-delay: .7s;
}
.fade-in_parent .fade-in_child:nth-child(4) {
	transition-delay: .9s;
}
.fade-in_parent .fade-in_child:nth-child(5) {
	transition-delay: 1.1s;
}
.fade-in_parent .fade-in_child:nth-child(6) {
	transition-delay: 1.4s;
}

/*アニメーションdelay*/
.animation_delay2 {
	transition-delay: .5s;
}
.animation_delay4 {
	transition-delay: .8s;
}
.animation_delay6 {
	transition-delay: 1.1s;
}

.for_pc {
	display: none;
}
.for_sp {
	display: block;
}

