@charset "utf-8";
/*	===============================================================
	● 診療部CSS
	---------------------------------------------------------------
	Release 2025.07.01                               Powerd by TDR
	=============================================================== */

	/*============================
	レイアウト
	============================*/
	.flex_auto { display:flex; align-items:center; }

	/*============================
	テーブル
	============================*/
	.tbl_1 { font-size:1.4rem; width:60%; }
	.tbl_1 tr:nth-child( odd ) { background:#f4f4f4; }
	.tbl_1 td:nth-child( 1 ) { white-space:nowrap; }
	.tbl_1 td:nth-child( 2 ) { width:10%; }

	/*============================
	アイテム
	============================*/
	dt { margin-bottom:0.5rem; font-weight:900; }
	dd { padding-left:1rem; }

	/*============================
	ボタン
	============================*/
	.btn_blue
	{
		width:fit-content;
		margin-right:30px;
		padding:4px 24px 2px 24px;
		border-radius:5px;
		background:#e8effb;
		font-size:1.4rem;
		color:black !important;
		text-decoration:none !important;
		display:flex;
		align-items:center;
	}

	.btn_blue::after
	{
		content:'▶';
		margin-left:30px;
		color:#a4b0da;
		font-size:2rem;
	}

	.btn_blue:last-child { margin-right:0px; }

	.btn_blue:hover { background:#6FB8D7; color:white !important; }
	.btn_blue:hover::after { color:white; }


