@charset "utf-8";
/*==================================================
	【サブ】ページ固有のスタイル
==================================================*/
#outpatient .bg_txt::after {
	content: "OUTPATIENT CLINIC";
}
#outpatient .ttl h3.sub {
	margin-bottom: 0;
}
#outpatient .box {
	padding: 20px 30px;
	background: #fff;
	border-radius: 20px;
}
#outpatient .box+.box {
	margin-top: 60px;
}
#outpatient .box+p {
	margin-top: 20px;
}
#outpatient dl {
	/* フレックス */
	display: flex;
}
#outpatient dt {
	padding-right: 1.5em;
	color: var(--color-primary);
	font-size: 110%;
	white-space: nowrap;
}
#outpatient dd {
	/* フレックス */
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
#outpatient dd span {
	padding: 5px 20px;
	background: #f9f4a7;
	border-radius: 999px;
}
#outpatient .tbl {
	margin-top: 20px;
}
#outpatient .tbl th,
#outpatient .tbl td {
	text-align: center;
	vertical-align: middle;
	line-height: 1.3;
}
#outpatient .tbl th+th {
	width: 13%;
}
#outpatient .tbl td .fs {
	font-size: 12px;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#outpatient .tbl th,
	#outpatient .tbl td {
		font-size: 85%;
	}
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#outpatient .tbl th,
	#outpatient .tbl td {
		padding: 10px 5px;
	}
}
@media only screen and (max-width: 768px) and (min-width: 641px){ /* タブレットのみ */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
}
@media only screen and (max-width: 640px){ /* スマホ */
	#outpatient .box {
		padding: 15px;
	}
	#outpatient .box+.box {
		margin-top: 30px;
	}
	#outpatient dt {
		margin-bottom: 6px;
	}
	#outpatient dd {
		gap: 6px;
	}
	#outpatient dd span {
		padding: 5px 15px;
	}
	#outpatient .tbl th,
	#outpatient .tbl td {
		padding: 6px;
	}
	#outpatient .tbl th+th {
		width: 5em;
	}
}