@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;}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
.comBox {
	margin: 0 auto;
	max-width: 1000px;
}
.headLine01 {
	margin-bottom: 27px;
	font-size: 5.6rem;
	font-family: 'EB Garamond', serif;;
	font-weight: 500;
}
.fadeTxt span {
	display: inline-block;
	transform: translateX(10px);
	opacity: 0;
	transition: .3s;
}
.fadeTxt.on span {
	transform: translateX(0);
	opacity: 1;
	min-width: 0.3em;
}
@media all and (max-width: 896px) {
	.comBox {
		margin: 0 25px;
	}
}