@charset "utf-8";



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


/*------------------------------
font-weight設定について
--------------------------------
〇Noto Serif JP（日本語）
通常　　　：font-weight: 300;
見出しなど：font-weight: 400;
太字　　　：font-weight: 700;
--
〇Mrs Saint Delafield（英語）
font-weight: 400;
（他の太さは使用していません）
------------------------------*/


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

/*================================
メインビジュアル
===============================*/
.mv {
	background-image: url(img/mv_img.jpg);
}

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

/*見出し*/
/*-----------------------------*/
/*u-heading01*/
.u-heading01 {}

/*矢印*/
/*-----------------------------*/
.u-arrow {
	position: relative;
	z-index: 1;
	margin-bottom: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid #dedede;
}
.u-arrow::before {
	position: absolute;
	z-index: -1;
	content: "";
	bottom: -1px;
	left: 0;
	height: 1px;
	width: 8rem;
	background: var(--theme-color01);
}
.u-arrow::after {
	position: absolute;
	z-index: 1;
	content: "";
	left: 50%;
	bottom: 0;
	translate: -50% 50%;
	width: 4rem;
	height: 2rem;
	background: var(--theme-color01);
	clip-path: polygon(0 0,100% 0,50% 100%);
}

/*矯正治療のメリット*/
/*-----------------------------*/
.u-merit_group {}
.u-merit_item {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 2rem 4rem;
}
.u-merit_item:not(:last-child) {
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #c9c2bd;
}
.u-merit_head {
	width: 15rem;
	aspect-ratio: 1/1;
	padding: 1rem;
	background: var(--theme-color01);
	border: 1px solid var(--theme-color01);
	border-radius: 50%;
	box-shadow: 0 0 0 4px #fff inset;
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-direction: column;
}
.u-merit_head_en {
	font-family: "Mrs Saint Delafield", cursive;
	font-size: 2.2rem;
	font-weight: 400;
	text-align: center;
	letter-spacing: 0;
	line-height: 1.2;
	color: #fff;
}
.u-merit_head_jp {
	font-size: 2.2rem;
	font-weight: 400;
	text-align: center;
	line-height: 1.6;
	color: #fff;
}
.u-merit_body {
	width: calc(100% - (15rem + 4rem));
	min-height: 15rem;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.u-merit_txt {}

/*当院で扱う矯正治療*/
/*-----------------------------*/
.u-tbl01 {}
.u-tbl01_th {
	width: 28%;
	padding: 3rem 2rem;
	background: #fff;
	border: 1px solid #d3ccc7;
	text-align: center;
	vertical-align: middle;
}
.u-tbl01_td {
	padding: 3rem 2rem;
	background: #fff;
	border: 1px solid #d3ccc7;
	text-align: left;
	vertical-align: middle;
	font-size: 1.6rem;
}
.u-panel {
	padding: 2px 1rem;
	margin-inline: auto;
	max-width: 15rem;
	border-radius: 4px;
	font-size: 1.6rem;
	font-weight: 400;
	text-align: center;
	line-height: 1.6;
	color: #fff;
}
.u-panel.-hoken {
	background: #b29a89;
}
.u-panel.-jihi {
	background: #eea591;
}


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


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


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

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

	/*見出し*/
	/*-----------------------------*/
	/*u-heading01*/
	.u-heading01 {}

	/*矢印*/
	/*-----------------------------*/
	.u-arrow {}
	.u-arrow::before {}
	.u-arrow::after {}


	/*矯正治療のメリット*/
	/*-----------------------------*/
	.u-merit_group {}
	.u-merit_item {
		align-items: center;
		flex-direction: column;
	}
	.u-merit_item:not(:last-child) {}
	.u-merit_head {}
	.u-merit_head_en {}
	.u-merit_head_jp {}
	.u-merit_body {
		width: 100%;
	}
	.u-merit_txt {}

	/*当院で扱う矯正治療*/
	/*-----------------------------*/
	.u-tbl01 {}
	.u-tbl01_th {
		display: block;
		width: 100%;
	}
	.u-tbl01_td {
		display: block;
		width: 100%;
		border-top: none;
		font-size: 1.75rem;
	}
	.u-panel {}


}

















