@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_wrap {
	margin-bottom: 1rem;
	min-height: 11.3rem;
	background: url(../common/img/bg_logo02.png)center/11.5rem auto no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
}
.u-heading01 {
	font-size: 2.2rem;
	font-weight: 400;
	text-align: center;
	line-height: 1.6;
	color: var(--theme-color01);
}

/*矢印*/
/*-----------------------------*/
.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-pic_group01 {
	position: relative;
	z-index: 1;
	padding: 0 4rem 12rem;
}
.u-pic_group01 .add {
	position: absolute;
	z-index: 1;
	right: 0;
	bottom: 0;
	width: 25%;
}




/*================================
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_wrap {}
	.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-pic_group01 {
		padding: 0;
	}
	.u-pic_group01 .add {
		position: static;
		width: 140px;
	}
	
}

















