@charset "utf-8";
/*================================
ここから全サイズ適用
================================*/



/*------------------------------
.u-〇〇 …… 下層ページ固有のclass名

lower.cssにあるclass名と被らないよう
接頭文字として "u-" を付けてます。
uniqueの略。
------------------------------*/




/*================================
共通パーツ
================================*/
/*heading*/
/*-----------------------------*/
.u-heading01 {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: calc(2rem*1.6*2);
	margin-bottom: 10px;
	font-size: 2rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.6;
	color: #f2a5ab;
}
.u-heading02 {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px 20px;
	margin-bottom: 20px;
}
.u-heading02_num {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 6rem;
	height: 6rem;
	background: #c6ad97;
	border: 3px solid #c6ad97;
	box-shadow: 0 0 0 1px #fff inset;
	font-size: 3rem;
	line-height: 1;
	text-align: center;
	color: #fff;
}
.u-heading02_title {
	width: calc(100% - (6rem + 20px));
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.6;
	text-align: left;
	letter-spacing: 0.05em;
	color: #98785b;
}

/*border*/
/*-----------------------------*/
.u-border {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #e2e2e2;
}



/*================================
TABLET横 1080px～0px
================================*/
@media (max-width: 1080px) {}


/*================================
TABLET縦 834px～0px
================================*/
@media (max-width: 834px) {}


/*================================
SP表示 667px～0px
================================*/
@media (max-width: 667px) {

	/*================================
	共通パーツ
	================================*/
	/*heading*/
	/*-----------------------------*/
	.u-heading01 {}
	.u-heading02 {}
	.u-heading02_num {}
	.u-heading02_title {}

	/*border*/
	/*-----------------------------*/
	.u-border {}

}

















