@charset 'UTF-8';

.clp{
	background:fixed center/cover url('bg.webp');

	padding:0 0 120px;

	position:relative;
}

.clp-s1{
	padding-bottom:150px;
}

.clp-s1__hv{
	position: absolute;
    right: 0;
    top: -100px;
    width: 21%;
}
.clp-s1__hv img{
	opacity:0;
	filter: grayscale(1) blur(10px);
	transition:all .3s ease;
}
.clp-s1__hv.scrollin img{
	opacity:1;
	filter:none;
}

.clp-s1__title{
	text-align:center;
}

.clp-s1__flex{
	display:flex;
	justify-content:space-between;
	gap:150px;
	align-items:flex-end;

	width:100%;
	max-width:970px;
}

.clp-s1__flex__title{
	width:257px;
}

.clp-s1__flex__content{
	width:calc(100% - 407px);
}
.clp-s1__flex__content__text{
	color:#FFF;
}

.clp-s2{
	position:relative;
	z-index:3;
	color:#FFF;
	background:linear-gradient(94deg, #00ffff, #00b8ff, #0000ff);
	padding-bottom:77px;
}

.clp-s2__contents{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:30px;
	transform:translateY(-90px);
}

.clp-s2__title{
	position:relative;
	margin-bottom:30px;
}
.clp-s2__title--img{
	text-align:center;
	position: relative;
    z-index: 1;
}

.clp-s2__title__hv{
	position: absolute;
    z-index: 0;
    bottom: 0;
    left: calc(50% + 76px);

    animation:clps2-hero-floating infinite forwards 5s linear;
}

.clp-s2__maintext{
	width:100%;
	max-width:540px;
	margin:0 auto;
}

.clp-s2__bannerlink__banner{
	text-align:center;
	margin-top:30px;
}
.clp-s2__bannerlink__banner img{
	width:100%;
	max-width:373px;
}

.clp-s2__hv{
	position:absolute;
	z-index:1;
}

.clp-s2__hv.hv01{
	top:305px;
	right:calc(50% + 380px);

	animation:clps2-hero-floating-h1 infinite forwards 4.2s linear;
}

.clp-s2__hv.hv02{
	bottom:-72px;
	right:calc(50% + 350px);

	animation:clps2-hero-floating infinite forwards 3s linear;
}

.clp-s2__hv.hv03{
	bottom:30px;
	left:calc(50% + 430px);

	animation:clps2-hero-floating infinite forwards 2.5s linear;
}

@keyframes clps2-hero-floating{
	0%{
		transform:translateY(0px);
	}
	25%{
		transform:translateY(-20px);
	}
	50%{
		transform:translateY(0px);
	}
	75%{
		transform:translateY(20px);
	}
	100%{
		transform:translateY(0px);
	}
}

@keyframes clps2-hero-floating-h1{
	0%{
		transform:translateY(0px) scaleX(1);
	}
	25%{
		transform:translateY(-20px) scaleX(-1);
	}
	50%{
		transform:translateY(0px) scaleX(-1);
	}
	75%{
		transform:translateY(20px) scaleX(1);
	}
	100%{
		transform:translateY(0px) scaleX(1);
	}
}


.clp-s3{
	padding-top:90px;
	color:#FFF;
}

.clp-s3__title{
	text-align:center;
}

.clp-s3__content{
	position: relative;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

.clp-s3__text{
	font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.clp-s3__logo{
	text-align: center;
    margin-top: 30px;
}
.clp-s3__logo img{
	width:300px;
}

/*
.clp-s3__logo{
	position: absolute;
    width: 250px;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}
*/


@media only screen and (max-width:991px){

	.clp-s1__flex{
		gap:50px;
	}
	.clp-s1__flex__title{
		width:30%;
	}
	.clp-s1__flex__content{
		width:calc(70% - 50px);
	}

	.clp-s2__contents{
		grid-template-columns:1fr;
	}
	.clp-s2__content{
		text-align:center;
	}
	.clp-s2__content img{
		width:100%;
		max-width:380px;
	}

	.clp-s2__hv{
		display:none;
	}

	.clp-s3__logo {
	    position: relative;
	    left: 0;
	    top: 0;
	    transform: none;
	    margin: 0 auto;
	}
}


@media only screen and (max-width:767px){

	.clp{
		padding-bottom:50px;
	}

	.clp-s1__hv{
		top:-30px;
	}

	.clp-s1__flex{
		flex-wrap:wrap;
	}
    .clp-s1__flex__title {
        width: 100%;
        text-align: center;
        margin-top: 30px;
    }
    .clp-s1__flex__content {
        width: 100%;
    }

    .clp-s3{
    	padding-top:50px;
    }
    .clp-s3__text{
    	font-size:16px;
    }

}