@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-PSP */
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
content
------------------------------------------------------------*/
.content {
	position: relative;
	z-index: 2;
	margin: 0 auto;
	max-width: 152rem;
	padding: 0 2rem;
}
@media all and (max-width: 896px) {
}


/*------------------------------------------------------------
mainBox
------------------------------------------------------------*/
.mainBox {
	max-width: 124.5rem;
	margin: 0 auto;
	padding: 0 2rem;
}
@media all and (max-width: 896px) {
}


/*------------------------------------------------------------
headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 1.3rem;
	font-size: 5.7rem;
	font-weight: 700;
	line-height: 1.4;
	text-shadow: 5px 5px 20px rgba(111, 209, 223, 0.5),-5px 5px 20px rgba(111, 209, 223, 0.5),5px -5px 20px rgba(111, 209, 223, 0.5),-5px -5px 20px rgba(111, 209, 223, 0.5);
}
.headLine02 {
	letter-spacing: 0;
	margin-bottom: 2rem;
	text-shadow: 1px 1px 1px #fff,-1px 1px 1px #fff,5px 5px 20px rgba(111, 209, 223, 0.7),-5px 5px 20px rgba(111, 209, 223, 0.7),5px -5px 20px rgba(111, 209, 223, 0.7),-5px -5px 20px rgba(111, 209, 223, 0.7);
}

@media all and (max-width: 896px) {
	.headLine01 {
		margin-bottom: 1.1rem;
		margin-right: -2rem;
		font-size: 2.25rem;
		line-height: 1.42;
		text-shadow: 3px 3px 10px rgba(111, 209, 223, 0.7),-3px 3px 10px rgba(111, 209, 223, 0.7),3px -3px 10px rgba(111, 209, 223, 0.7),-3px -3px 10px rgba(111, 209, 223, 0.7);
	}
}

/*------------------------------------------------------------
headLine03
------------------------------------------------------------*/
.headLine03 {
	margin: 0 2rem 4.4rem;
	font-size: 8rem;
	font-weight: 900;
	color: #FFFF00;
	line-height: 1.375;
	font-style: italic;
	text-align: center;
	padding: 9rem 0 10.6rem;
	border-top: 2px solid #FFFFFF;
	border-bottom: 2px solid #FFFFFF;
}
@media all and (max-width: 896px) {
	.headLine03 {
		padding: 4rem 1rem 4.6rem;
		font-size: 3.535rem;
		margin: 0 -2rem 5.4rem;
		border-width: 1px;
	}
}

/*------------------------------------------------------------
comBtn
------------------------------------------------------------*/
.comBtn {
	position: relative;
}
.comBtn::before {
	width: 27.2rem;  
	height: 1rem;
	background: url(../img/index/line01.webp) no-repeat;
	background-size: 100% auto;
	position: absolute;  
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	content: ""; 
}
.comBtn::after {
	width: 27.2rem;  
	height: 1rem;
	background: url(../img/index/line02.webp) no-repeat;
	background-size: 100% auto;
	position: absolute;  
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	content: ""; 
}
.comBtn a {
	font-weight: 700;
	font-size: 4.3rem;
	min-height: 8.6rem;
	width: 48.5rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 2px solid #fff;
	outline: 2px solid #F39800;
	border-radius: 1rem;
	background: linear-gradient(to bottom, #FFB633 50%, #EA5514 50%);
}
.comBtn a:hover {
	opacity: 0.7;
}
.comBtn a span {
	display: inline-block;
	padding: 0 7rem 0.5rem 9.5rem;
	background: url(../img/common/icon01.webp) no-repeat left center;
	background-size: 5.1rem auto;
}
@media all and (max-width: 896px) {
	.comBtn {
		margin: 0 -2rem;
	}
	.comBtn a {
		width: auto;
		max-width: 24.2rem;
		min-height: 4.3rem;
		font-size: 2.15rem;
		border-radius: 0.5rem;
		border-width: 1px;
		outline-width: 1px;
	}
	.comBtn a span {
		display: block;
		padding: 0 4rem 0 4.5rem;
		background-size: 2.5rem auto;
	}
	.comBtn::before {
		height: 0.5rem;
		width: calc(50% - 14rem);
		background-repeat: repeat-x;
		background-size: auto 0.5rem;
		background-position: right center;
	}
	.comBtn::after {
		height: 0.5rem;
		width: calc(50% - 14rem);
		background-repeat: repeat-x;
		background-size: auto 0.5rem;
	}
}

/*------------------------------------------------------------
	common
------------------------------------------------------------*/
@media all and (max-width: 896px) {
}
.fadeInUp {
    opacity: 0;
	transform: translate(0,50px);
    transition: all ease-in-out 0.8s;
}

.fadeInUp.on {
    opacity: 1;
	transform: translate(0, 0);
}