@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;}

.montserrat {
	font-family: 'Montserrat', sans-serif;
}
.pro {
	font-family: 'KozMinPro-Regular';
}
.std {
	font-family: 'こぶりなゴシック Std W6';
}
.stdn {
	font-family: 'こぶりなゴシック StdN W3';
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 15px;
}
@media all and (max-width: 896px) {
	.content {
		max-width: inherit;
		margin: 0 27px;
		padding: 0 !important;
	}
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	max-width: 1330px;
	margin: 0 auto;
	padding-bottom: 66px;
	font-size: 1.6rem;
	font-weight: 300;
	letter-spacing: 0.06em;
	font-family: 'Montserrat', sans-serif;
	text-align: center;
	border-bottom: 1px solid #C8C8C8;
}
.headLine01 .en {
	margin-bottom: 11px;
	display: block;
	font-weight: 400;
	letter-spacing: 0.11em;
	font-size: 3.5rem;
}
@media all and (max-width: 896px) {
	.headLine01 {
		margin: 0 30px;
		padding-bottom: 36px;
		font-size: 1.3rem;
		letter-spacing: 0.2em;
	}
	.headLine01 .en {
		margin-bottom: 3px;
		font-size: 2.6rem;
	}
}
/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
	font-size: 3rem;
	font-weight: 300;
	letter-spacing: 0.11em;
	font-family: 'Montserrat', sans-serif;
}
@media all and (max-width: 896px) {
	.headLine02 {
		font-size: 2.3rem;
		text-align: center;
	}
}

.fadeIn {
	opacity: 0;
	transition: opacity 1s;
}
.fadeIn.on {
	opacity: 1;
}

.fadeInUp {
	opacity: 0;
	transform: translateY(10px);
	filter: blur(10px);
	transition: all 1s;
}
.fadeInUp.on {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}
.delay {
	transition-delay: 0.5s;
}

.animation span.fadeTxt,
.animation span.fadeUp {
	display: inline-block;
}
.animation .fadeUp {
	opacity: 0;
	transform: translateY(10px);
	filter: blur(10px);
	transition: all 1s;
}
.animation.on .fadeUp {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}
.animation .fadeTxt {
	opacity: 0;
	transform: translateY(10px);
	filter: blur(10px);
	transition: all 0.6s;
}
.animation.on .fadeTxt {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}
.animation .delay {
	transition-delay: 0.5s;
}
.animation .delay01 {
	transition-delay: 0.2s;
}
.animation .delay02 {
	transition-delay: 0.4s;
}
.animation .delay03 {
	transition-delay: 0.6s;
}
.animation .delay04 {
	transition-delay: 0.8s;
}
.animation .delay05 {
	transition-delay: 1s;
}
.animation .delay06 {
	transition-delay: 1.2s;
}
.fadeTtl span {
	display: inline-block;
	transform: translate(-20px);
	opacity: 0;
	transition: all 0.3s;
}
.fadeTtl.on span {
	opacity: 1;
	transform: translate(0);
}