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



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

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




/*-------------------------------
ページタイトル
-------------------------------*/
.page-title {
	background-image: url(img/page_icon.png);
}

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

/*タイトル*/
/*-----------------------------*/
.u-title01 {
	margin-bottom: 1rem;
	padding: 0 2rem;
	font-size: 2.2rem;
	text-align: left;
	line-height: 1.4;
	color: #fff;
}
.u-title01.-type01 {
	background: #00b9d4;
}
.u-title01.-type02 {
	background: #e96281;
}

/*flex box*/
/*-----------------------------*/
.u-flex01 {
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-flow: row wrap;
	gap: 1rem;
}
.u-flex01_item {
	width: calc(100%/2 - 1rem/2);
}

/*================================
こんな症状があったらご相談ください
================================*/
.u-symptom_group {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-flow: row wrap;
	gap: 2rem;
}
.u-symptom_item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc(100%/3 - 2rem*2/3);
	padding: 1.2rem;
	background: #cddf7a;
	border-radius: 1rem;
	font-size: 1.8rem;
	text-align: center;
	line-height: 1.4;
	color: var(--theme-color01);
}

/*================================
さくらこどもクリニックの取り組み
================================*/
.u-attempt_group {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-flow: row wrap;
	gap: 3rem;
}
.u-attempt_item {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	width: calc(100%/4 - 3rem*3/4);
	aspect-ratio: 1/1;
	padding: 6rem 1rem 1rem;
	border-radius: 1rem;
}
.u-attempt_item:nth-child(1),
.u-attempt_item:nth-child(3),
.u-attempt_item:nth-child(6),
.u-attempt_item:nth-child(8) {
	background: url(img/attempt_deco01.png)left top/28.8% auto no-repeat #80c269;
}
.u-attempt_item:nth-child(2),
.u-attempt_item:nth-child(4),
.u-attempt_item:nth-child(5),
.u-attempt_item:nth-child(7) {
	background: url(img/attempt_deco02.png)right bottom/28.8% auto no-repeat #f29c9f;
}
.u-attempt_item::before {
	position: absolute;
	z-index: -1;
	content: "";
	left: 1rem;
	top: 1rem;
	width: calc(100% - 2rem);
	height: calc(100% - 2rem);
	border-radius: 1rem;
	border: 1px solid #fff;
	background-image: url(img/attempt_check.png);
	background-position: top center;
	background-size: 23% auto;
}
.u-attempt_title {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: calc(2.4rem*1.7*2);
	font-size: 2.4rem;
	text-align: center;
	color: #fff;
}
.u-attempt_icon {
	margin-top: auto;
}

/*================================
さくらこどもクリニックの診療方針
================================*/
.u-plan_group {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-flow: row wrap;
	gap: 1rem 1rem;
	margin-bottom: 1rem;
}
.u-plan_num {
	width: 6rem;
}
.u-plan_letter {
	width: calc(100% - (6rem + 1rem));
}
.u-plan_speech {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	font-size: 2rem;
	text-align: left;
	line-height: 1.4;
	color: #8a7257;
}
.u-plan_speech::before {
	content: "＼";
	margin-right: 0.2em;
}
.u-plan_speech::after {
	content: "／";
	margin-left: 0.2em;
}
.u-plan_title {
	font-size: 2.6rem;
	text-align: left;
	line-height: 1.4;
	color: #6eb92b;
	text-decoration: underline;
	text-decoration-thickness: 0.7em;
	text-decoration-color: #fff799;
	text-underline-offset: -0.3em;
	text-decoration-skip-ink: none;
}


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


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

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

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

	/*flex box*/
	/*-----------------------------*/
	.u-flex01 {}
	.u-flex01_item {
		width: 100%;
	}

	/*================================
	こんな症状があったらご相談ください
	================================*/
	.u-symptom_group {}
	.u-symptom_item {}

	/*================================
	さくらこどもクリニックの取り組み
	================================*/
	.u-attempt_group {}
	.u-attempt_item {
		width: calc(100%/3 - 3rem*2/3);
	}
	.u-attempt_item:nth-child(odd) {
		background: url(img/attempt_deco01.png)left top/28.8% auto no-repeat #80c269;
	}
	.u-attempt_item:nth-child(even) {
		background: url(img/attempt_deco02.png)right bottom/28.8% auto no-repeat #f29c9f;
	}
	.u-attempt_title {}
	.u-attempt_icon {}

	/*================================
	さくらこどもクリニックの診療方針
	================================*/
	.u-plan_group {}
	.u-plan_num {}
	.u-plan_letter {}
	.u-plan_speech {}
	.u-plan_title {}

}


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

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

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

	/*flex box*/
	/*-----------------------------*/
	.u-flex01 {}
	.u-flex01_item {}

	/*================================
	こんな症状があったらご相談ください
	================================*/
	.u-symptom_group {
		gap: 1rem;
	}
	.u-symptom_item {
		padding: 6px;
		width: calc(100%/2 - 1rem/2);
		font-size: 1.6rem;
	}

	/*================================
	さくらこどもクリニックの取り組み
	================================*/
	.u-attempt_group {
		gap: 2rem;
	}
	.u-attempt_item {
		width: calc(100%/2 - 2rem/2);
		padding: 5rem 1rem 1rem;
	}
	.u-attempt_item:nth-child(1),
	.u-attempt_item:nth-child(4),
	.u-attempt_item:nth-child(5),
	.u-attempt_item:nth-child(8) {
		background: url(img/attempt_deco01.png)left top/28.8% auto no-repeat #80c269;
	}
	.u-attempt_item:nth-child(2),
	.u-attempt_item:nth-child(3),
	.u-attempt_item:nth-child(6),
	.u-attempt_item:nth-child(7) {
		background: url(img/attempt_deco02.png)right bottom/28.8% auto no-repeat #f29c9f;
	}
	.u-attempt_title {
		min-height: calc(1.8rem*1.7*2);
		font-size: 1.8rem;
	}
	.u-attempt_icon {
		width: 60%;
	}

	/*================================
	さくらこどもクリニックの診療方針
	================================*/
	.u-plan_group {
		justify-content: center;
	}
	.u-plan_num {
		width: 40px;
	}
	.u-plan_letter {
		width: 100%;
	}
	.u-plan_speech {
		font-size: 1.8rem;
	}
	.u-plan_title {
		font-size: 2.2rem;
	}

}

















