@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-ltt */
/* 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
------------------------------------------------------------*/
.serif {
	font-family: "Noto Serif JP", serif;
}
.content {
	margin: 0 auto;
	max-width: 85.4rem;
}
@media all and (max-width: 896px) {
	.content {
		margin: 0 1.5rem;
	}
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 2.3rem;
	color: #C9CACA;
	font-weight: 700;
	line-height: 1.75;
	text-align: center;
	font-family: "Noto Serif JP", serif;
}
.headLine01 .en {
	margin-bottom: 0.3rem;
	display: block;
	font-size: 3.8rem;
	letter-spacing: 0.01em;
	line-height: 1;
}
@media all and (max-width: 896px) {
	.headLine01 .en {
		font-size: 3.2rem;
	}
}
/*------------------------------------------------------------
	fade
------------------------------------------------------------*/
.fadeInUp {
	opacity: 0;
	transform: translateY(5rem);
	transition: .8s;
}
.fadeInUp.on {
	opacity: 1;
	transform: none;
}