@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 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 {
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
}
@media all and (max-width: 896px) {
}

/*------------------------------------------------------------
	mainBox
------------------------------------------------------------*/
.mainBox {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}
@media all and (max-width: 896px) {
	.mainBox {
		max-width: inherit;
	}
}

/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	font-size: 2rem;
	margin-bottom: 20px;
}
@media all and (max-width: 896px) {
}


/*------------------------------------------------------------
	comLink
------------------------------------------------------------*/
.comLink {
	width: 393px;
	margin: 75px auto 76px;
}
.comLink a {
	font-size: 2rem;
	font-weight: bold;
	color: white;
	display: flex;
	min-height: 85px;
	align-items: center;
	justify-content: center;
	background: url(../img/common/bg.png) no-repeat center;
	background-size: 100% 100%;
}
.comLink a:hover {
	opacity: 0.7;
}
@media all and (max-width: 896px) {
	.comLink {
		width: auto;
		max-width: 280px;
	}
	.comLink a {
		font-size: 1.8rem;
	}
}



.fadeInUp {
    opacity: 0;
	transform: translate(0,30px);
	-webkit-transition: all ease-in-out 0.8s;
    transition: all ease-in-out 0.8s;
}

.fadeInUp.on {
    opacity: 1;
	transform: translate(0, 0);
}


@media all and (max-width: 374px) {
	.headLine01 {
		font-size: 1.8rem;
	}
}