/* box1, box2, box2b：すべて同一構造で揃える */
#now_2 a {background-color:#eff;color:#4172b1;padding:2px 10px;border-radius:20px;}

#box1 {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 40px;
	max-width: 1200px;
	margin: 30px auto;
	padding: 20px;
	background-color: #fff;
	border-radius: 10px;
	box-sizing: border-box;
//border: 1px solid #e00;
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2); /* 全体に影 */
	align-items: stretch;
}


#box2,
#box2b  {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 40px;
	max-width: 1200px;
	margin: 30px auto;
	padding: 20px;
	background-color: #fff;
	border-radius: 10px;
	box-sizing: border-box;
 //border: 1px solid #e00;
	align-items: stretch;
}

/* sbox 共通設定（左右カラムの幅・装飾を完全統一） */
.sbox_left0,
.sbox_left,
.sbox_right {
	width: calc(50% - 10px); /* gap: 40px の半分を引く */
	min-height: 400px;
	padding: 10px;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: none; /* 初期状態では影なし */
	overflow: hidden;
}

/* box2 と box2b の左右カラムには影を個別に付ける */
#box2 .sbox_left,
#box2 .sbox_right,
#box2b .sbox_left,
#box2b .sbox_right {
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}



/* sp装飾用クラス（幅に影響しない） */
.sp {
	border: none;
	padding: 0;
	box-shadow: none;
	margin: 0;
}

/* box1だけの余白指定 */
.b1 {
	margin-left: 70px;
	margin-right: 70px;
}

/* 見出し設定 */
h2 {
	font-weight: normal;
	font-size: 1.5em;
	display: flex;
	align-items: center;
	margin: 20px 0;
	color:#365;
}

h2 .icon {
	width: 24px;
	margin-right: 8px;
}

h2 span {
	font-size: 16px;
}

h3 {
	font-size: 12px;
	text-align: center;
	font-weight: normal;
}

/* 段落調整 */
.sbox_left p,
.sbox_left0 p {
	line-height: 2em;
	margin-left: 2em;
}

/* テーブル設定 */
.sbox_right table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}

.sbox_right table th {
	white-space: nowrap;
	background-color: #bcd;
	padding: 10px;
	font-size: 14px;
	font-weight: normal;
}

.sbox_right table td {
	border-bottom: 1px solid #000;
	padding: 10px;
	font-size: 14px;
}

/* PDF表リンク */
.hbox {
	width: 45%;
	margin-left: 10px;
	margin-bottom: 20px;
	border: 1px solid #555;
	padding: 10px;
	border-radius: 5px;
	background-color: #fff;
	box-sizing: border-box;
	float:left;
	
}

.hyou {
	width: 100%;
	max-width: 100%;
	display: block;
	box-sizing: border-box;
}

/* 検査画像・設備写真 */
.simg1_left {
	display: block;
	margin:10px auto;
	box-sizing: border-box;
	width:350px;
	float:left;
}

.simg1_right {
	display: block;
	margin:10px auto;
	box-sizing: border-box;
	width:350px;
	float:right;
}

.simg2 {
	display: block;
	margin:50px auto 0 auto;
	box-sizing: border-box;
	width:350px;

}



/* 心臓リハビリ説明段落 */
#rehabili {
	line-height: 2em;
	margin: 0 1em;
}

/* 医療機関リスト */
#box2b .sbox_left ul {
	padding-left: 20px;
	margin: 0;
}

#box2b .sbox_left ul li {
	white-space: normal;
	word-break: break-word;
	line-height: 1.8;
}

/* リンクボタン画像 */
.icon_center {
	display: block;
	margin: 20px auto;
}

.drs {
	display: block;
	margin: 10px auto;
}

/* グリッド画像 */
.image-grid {
	margin-top: 30px;
	text-align: center;
}

.image-grid .row {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
}

.image-grid img {
	width: 100%;
	max-width: 200px;
	border-radius: 10px;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}



/* float解除（旧ブラウザ向け） */
#box1::after,
#box2b::after,
.sp::after {
	content: "";
	display: block;
	clear: both;
}

#omona ul li { line-height:2.2em ;}