@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
------------------------------------------------------------*/
.nsj {
	font-family: 'Noto Serif JP', serif;
}
.comBtn a {
	padding: 41px 90px 36px;
	width: 420px;
	display: block;
	color: #333333;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1;
	box-sizing: border-box;
	position: relative;
	background: linear-gradient(#FFFFFF, #E2E2E2);
	border-radius: 12px;
}
.comBtn a small {
	margin-top: 7px;
	display: block;
	font-size: 1.2rem;
	font-weight: normal;
}
.comBtn a::before {
	width: 42px;
	height: 42px;
	position: absolute;
	top: 50%;
	left: 32px;
	transform: translateY(-50%);
	content: '';
	background: url(../img/common/icon01.png) no-repeat left center / 42px;
}
.comBtn a::after {
	width: 16px ;
	height: 13px;
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
	content: '';
	background: url(../img/common/arrow.png) no-repeat center right / 16px;
}
.comBtn a:hover {
	opacity: 0.7;
}
.headLine01 {
	margin-bottom: 32px;
	font-size: 2rem;
}
.headLine01 span {
	margin-top: 5px;
	display: block;
	font-weight: bold;
	font-size: 3.6rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	font-family: 'Noto Serif JP', serif;
}
@media all and (max-width: 896px) {
	.headLine01 {
		margin-bottom: 22px;
		font-size: 1.8rem;
	}
	.headLine01 span {
		font-size: 2.5rem;
	}
	.comBtn a {
		padding: 34px 73px 28px;
		width: auto;
		font-size: 1.9rem;
		margin: 0 auto;
		max-width: 400px;
	}
	.comBtn a small {
		font-size: 0.9rem;
	}
	.comBtn a::before {
		width: 34px;
		height: 34px;
		left: 26px;
		background-size: 34px;
	}
	.comBtn a::after {
		width: 14px;
		height: 11px;
		right: 19px;
		background-size: 14px;
	}
}
@media all and (max-width: 374px) {
	.headLine01 span {
		font-size: 2.6rem;
	}
	.comBtn a {
		padding: 34px 38px 28px 73px;
		font-size: 1.7rem;
	}
}


/* headLine02 */
.headLine02 {
	color: #490C0F;
	font-size: 3.2rem;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	letter-spacing: 0.1em;
}
.headLine02 .small {
	display: block;
	font-size: 1.2rem;
}
.headLine02 .inner {
	display: inline-block;
	vertical-align: top;
	text-align: left;
}


/*fadeIn*/
.fadeIn {
	opacity: 0;
	-webkit-transition: all 1s;
	transition: all 1s;
}

.fadeIn.on {
	opacity: 1;
}

/* fadeInUp */
.fadeInUp {
	transform: translate(0,150px);
	-webkit-transition: all 1s;
	transition: all 1s;
}

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