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



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

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




/*================================
共通パーツ
================================*/

/*heading*/
/*-----------------------------*/
.u-heading01 {
	translate: 0 -50%;
	margin: -20px 0 0;
	padding: 0 10px;
	background: #c6ad97;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
	letter-spacing: 0.05em;
	color: #fff;
}
.u-heading02 {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: calc(1.8rem*1.6*2);
	margin-bottom: 10px;
	font-size: 1.8rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.6;
	color: #f2a5ab;
}

/*point*/
/*-----------------------------*/
.u-point_group {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px 40px;
}
.u-point_label {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 12rem;
	height: 12rem;
	background: #f2a5ab;
	border-radius: 50%;
	text-align: center;
	color: #fff;
}
.u-point_label_en {
	font-size: 2.2rem;
	line-height: 1;
}
.u-point_label_num {
	font-size: 5rem;
	line-height: 1;
}
.u-point_cont {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
	width: calc(100% - (10rem + 40px));
}
.u-point_cont_title {
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.6;
	text-align: left;
	letter-spacing: 0.05em;
	color: #98785b;
}
.u-point_cont_text {
	text-align: left;
}


/*================================
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 {
		min-height: auto;
	}

	/*point*/
	/*-----------------------------*/
	.u-point_group {
		flex-direction: column;
	}
	.u-point_label {}
	.u-point_label_en {}
	.u-point_label_num {}
	.u-point_cont {
		width: 100%;
	}
	.u-point_cont_title {}
	.u-point_cont_text {}

}

















