@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-YH */
/* 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 */
.notoSans {
	font-family: "Noto Sans JP", sans-serif;
}
/* fade */
.fadeUp {
	opacity: 0;
	transform: translateY(4rem);
	transition: .5s;
}
.fadeUp.on {
	opacity: 1;
	transform: translateY(0);
}
.fadeLeft {
	opacity: 0;
	transform: translateX(-2rem);
	transition: all 1s ease-out;
}
.fadeLeft.on {
	opacity: 1;
	transform: translateX(0);
}
.fadeRight {
	opacity: 0;
	transform: translateX(2rem);
	transition: all 1s ease-out;
}
.fadeRight.on {
	opacity: 1;
	transform: translateX(0);
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	width: 100rem;
}
@media all and (max-width: 960px) {
	.content {
		margin: 0 1rem;
		width: auto !important;
	}
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 1.2rem;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 500;
	color: #BA546A;
	line-height: 1.5625;
}
.headLine01 img {
	width: 35.2rem;
}
.headLine01 .txt {
	margin-top: 1.7rem;
	display: block;
	letter-spacing: -0.1em;
}
@media all and (max-width: 960px) {
	.headLine01 {
		margin-bottom: 1.8rem;
		line-height: 1.25;
	}
	.headLine01 img {
		width: 27.6rem;
	}
	.headLine01 .txt {
		margin-top: 1.4rem;
	}
}