@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-LYX */
/* 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;}
/*------------------------------------------------------------
	font
------------------------------------------------------------*/
.roboto {
	font-family: "Roboto", sans-serif;
}
.oswald {
	font-family: "Oswald", sans-serif;
}
@media all and (max-width: 896px) {
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	padding: 0 2rem;
	max-width: 150rem;
}
@media all and (max-width: 896px) {
	.content {
		max-width: 100%;
	}
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 5.3rem;
	font-weight: 500;
}
.headLine01 .en {
	font-family: "Roboto", sans-serif;
	display: block;
	font-size: 6.5rem;
	line-height: 1.32;
	letter-spacing: 0.06em;
}
.headLine01 .jp {
	font-size: 1.4rem;
	letter-spacing: 0.14em;
}
@media all and (max-width: 896px) {
	.headLine01 {
		margin-bottom: 4rem;
	}
	.headLine01 .en {
		font-size: 4rem !important;
	}
}
/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn {
	width: 22rem;
}
.comBtn a {
	padding: 1.4rem 1rem;
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	color: #1a2e51;
	letter-spacing: 0.1em;
	background-color: #D78716;
}
.comBtn a:hover {
	opacity: 0.7;
}
/*------------------------------------------------------------
	fadeInUp
------------------------------------------------------------*/
.fadeInUp {
	opacity: 0;
	-webkit-transform: translateY(40px);
	transform: translateY(40px);
	transition: all .5s ease;
}
.fadeInUp.on {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0); 
}