@charset "utf-8";



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


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

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

/*タイトル*/
/*-----------------------------*/
.u-heading03 {}
.u-heading04 {
	padding: 1rem 1rem;
	background: var(--theme-color01);
	font-family: "Zen Old Mincho", serif;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	color: #fff;
}

/*u-text01*/
/*-----------------------------*/
.u-text01 {
	font-family: "Zen Old Mincho", serif;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
}

/*新時代の予防歯科*/
/*-----------------------------*/
.u-plus {
	position: relative;
	z-index: 1;
}
.u-plus::before {
	position: absolute;
	z-index: 1;
	content: "";
	top: 50%;
	right: 0;
	translate: calc(7rem/2 + 4rem/2) -50%;
	background: url(img/icon_plus.png)center/contain;
	width: 7rem;
	aspect-ratio: 1/1;
}

/*CAPシステムの3つの効果*/
/*-----------------------------*/
.u-CAP-sys_frame {
	position: relative;
	z-index: 1;
	padding: 1rem;
	background: #ddd;
	border-radius: 1rem;
}
.u-CAP-sys_num {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 5rem;
	height: 5rem;
	background: var(--theme-color02);
	border-radius: 1rem 0 1rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Zen Old Mincho", serif;
	font-size: 2rem;
	text-align: center;
	line-height: 1.5;
	color: #fff;
}
.u-CAP-sys_heading {
	margin-bottom: 3rem;
	font-family: "Zen Old Mincho", serif;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	color: var(--theme-color01);
}


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


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

	/*タイトル*/
	/*-----------------------------*/
	.u-heading04 {}

	/*u-text01*/
	/*-----------------------------*/
	.u-text01 {}

	/*新時代の予防歯科*/
	/*-----------------------------*/
	.u-plus {}
	.u-plus::before {}

	/*CAPシステムの3つの効果*/
	/*-----------------------------*/
	.u-CAP-sys_frame {}
	.u-CAP-sys_num {}
	.u-CAP-sys_heading {}

	
}


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

	/*タイトル*/
	/*-----------------------------*/
	.u-heading04 {}

	/*u-text01*/
	/*-----------------------------*/
	.u-text01 {}

	/*新時代の予防歯科*/
	/*-----------------------------*/
	.u-plus {}
	.u-plus::before {
		width: 3rem;
		top: auto;
		right: 50%;
		bottom: 0;
		translate: 50% calc(3rem/2 + 5rem/2);
	}

	/*CAPシステムの3つの効果*/
	/*-----------------------------*/
	.u-CAP-sys_frame {}
	.u-CAP-sys_num {}
	.u-CAP-sys_heading {
		margin-bottom: 1rem;
	}

}

















