@charset "utf-8";



/*------------------------------
.u-〇〇 …… 下層ページ固有のclass名
--
lower.cssにあるclass名と被らないよう
接頭文字として "u-" を付けてます。
uniqueの略。
------------------------------*/


/*================================
ここから全サイズ適用
================================*/

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

/*タイトル*/
/*-----------------------------*/
/*u-heading01*/
.u-heading01 {
	min-height: calc(2rem*1.5*2);
	margin-bottom: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Zen Old Mincho", serif;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	color: var(--theme-color02);
}
.u-heading01.-type02 {
	min-height: calc(2rem*1.5*2);
}
/*u-heading02*/
.u-heading02 {
	margin-bottom: 2rem;
	padding: 0.5rem 1rem;
	background: #52b98c;
	font-family: "Zen Old Mincho", serif;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	color: #fff;
}
/*u-heading03*/
.u-heading03 {
	margin-bottom: 1rem;
	padding: 0.2rem 1rem;
	background: #baebe2;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	color: var(--theme-color01);
}

/*u-dl*/
/*-----------------------------*/
.u-dl01 {}
.u-dl01_dt {
	position: relative;
	z-index: 1;
	padding-left: 1.2em;
	text-align: left;
	font-weight: 700;
	color: var(--theme-color01);
}
.u-dl01_dt::before {
	position: absolute;
	z-index: 1;
	content: "";
	left: 0;
	top: 0.6em;
	width: 0.8em;
	height: 0.8em;
	background: var(--theme-color01);
	border-radius: 50%;
}
.u-dl01_dd {
	text-align: left;
}
.u-dl01_dd:not(:last-child) {
	margin-bottom: 1rem;
}


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


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

	/*タイトル*/
	/*-----------------------------*/
	/*u-heading01*/
	.u-heading01 {}
	/*u-heading02*/
	.u-heading02 {}
	/*u-heading03*/
	.u-heading03 {}

	/*u-dl*/
	/*-----------------------------*/
	.u-dl01 {}
	.u-dl01_dt {}
	.u-dl01_dt::before {}
	.u-dl01_dd {}

}


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

	/*タイトル*/
	/*-----------------------------*/
	/*u-heading01*/
	.u-heading01 {
		min-height: 0;
	}
	/*u-heading02*/
	.u-heading02 {}
	/*u-heading03*/
	.u-heading03 {}

	/*u-dl*/
	/*-----------------------------*/
	.u-dl01 {}
	.u-dl01_dt {}
	.u-dl01_dt::before {}
	.u-dl01_dd {}
	
}

















