@charset "utf-8";
/* ==========================================================================
   症状事例（CASE EXAMPLES）セクション + 症例モーダル
   センターみなみ眼科 追加スタイル  2026.09
   ・main.css は変更していません。このファイルを追加読み込みするだけで動作します。
   ・カラーはサイトのブルー系（#094c98 / #026a93 / #eaeff9）に統一しています。
   ========================================================================== */

/* --------------------------------------------------
   セクション本体
   -------------------------------------------------- */
#content9 {
	box-sizing: border-box;
	background-color: #FFF;
	width: 100%;
	height: auto;
	position: relative;
	padding: 50px 30px;
	text-align: center;
	float: left;
	overflow: hidden;
	/* 固定ヘッダー(80px)にタイトルが隠れないように */
	scroll-margin-top: 100px;
}

@media screen and (max-width: 799px) {
	#content9 {
		padding: 30px 10px;
	}
}

/* 既存サイトが float ベースのため、中身も float:left で揃えます */
.caseBlock {
	box-sizing: border-box;
	width: 100%;
	height: auto;
	float: left;
}

/* --------------------------------------------------
   リード文（薄いブルーの角丸ボックス）
   -------------------------------------------------- */
.caseLead {
	box-sizing: border-box;
	width: 100%;
	max-width: 860px;
	height: auto;
	margin: 0 auto 35px;
	padding: 25px 30px;
	background-color: #eaeff9;
	border-radius: 16px;
	font-size: 16px;
	line-height: 1.9;
	color: #333;
	text-align: left;
}

@media screen and (max-width: 749px) {
	.caseLead {
		padding: 18px 16px;
		font-size: 15px;
		line-height: 1.85;
		margin-bottom: 25px;
	}
}

/* --------------------------------------------------
   症例ボタン（角丸ピル）
   -------------------------------------------------- */
.caseList {
	box-sizing: border-box;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.caseList li {
	box-sizing: border-box;
	width: 33.3333%;
	padding: 0 10px 20px;
	list-style: none;
}

.caseBtn {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	min-height: 60px;
	padding: 12px 18px;
	background-color: #094c98;
	border: 2px solid #094c98;
	border-radius: 40px;
	color: #FFF !important;
	font-size: 19px;
	font-weight: bold;
	line-height: 1.35;
	letter-spacing: 1px;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	transition: background-color .2s, color .2s, transform .2s;
}

.caseBtn:hover,
.caseBtn:focus {
	background-color: #FFF;
	color: #094c98 !important;
	transform: translateY(-2px);
}

/* 補足文 */
.caseNote {
	box-sizing: border-box;
	width: 100%;
	max-width: 860px;
	margin: 14px auto 0;
	font-size: 14px;
	line-height: 24px;
	color: #666;
	text-align: center;
}

/* タブレット：2列 */
@media screen and (max-width: 799px) {
	.caseList li {
		width: 50%;
		padding: 0 6px 14px;
	}
	.caseBtn {
		min-height: 54px;
		font-size: 17px;
		padding: 10px 12px;
	}
}

/* スマートフォン：2列（狭い端末は1列） */
@media screen and (max-width: 480px) {
	/* 中央揃えだと折り返しがガタつくため左寄せに */
	.caseNote {
		text-align: left;
		padding: 0 4px;
	}
	.caseList li {
		width: 50%;
		padding: 0 4px 10px;
	}
	.caseBtn {
		min-height: 50px;
		font-size: 15px;
		letter-spacing: 0;
		padding: 8px 6px;
		border-radius: 30px;
	}
}

@media screen and (max-width: 359px) {
	.caseList li {
		width: 100%;
	}
}

/* --------------------------------------------------
   症例モーダル（既存 remodal のトンマナに合わせています）
   -------------------------------------------------- */
.caseModal {
	max-width: 700px;
	text-align: left;
}

.caseModal_inner {
	text-align: left;
	padding-top: 10px;
}

.caseModal_title {
	margin: 0 0 18px;
	padding: 0 0 7px;
	font-size: 23px;
	line-height: 1.45;
	font-weight: bold;
	color: #026a93;
	border-bottom: solid 1px #026a93;
}

.caseModal_sub {
	display: block;
	margin-top: 3px;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: 1px;
	color: #094c98;
}

.caseModal_body {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}

.caseModal_body p {
	margin: 0 0 17px;
}

.caseModal_body p:last-child {
	margin-bottom: 0;
}

.caseModal_h3 {
	box-sizing: border-box;
	margin: 24px 0 12px;
	padding: 3px 0 3px 12px;
	border-left: 4px solid #094c98;
	font-size: 18px;
	line-height: 1.5;
	font-weight: bold;
	color: #094c98;
}

.caseModal_h4 {
	margin: 20px 0 9px;
	font-size: 17px;
	line-height: 1.5;
	font-weight: bold;
	color: #026a93;
}

/* 狭い画面では少しだけ抑える */
@media screen and (max-width: 480px) {
	.caseModal_title {
		font-size: 20px;
	}
	.caseModal_body {
		font-size: 15px;
		line-height: 1.75;
	}
	.caseModal_h3 {
		font-size: 17px;
	}
	.caseModal_h4 {
		font-size: 16px;
	}
	.casePrice_num {
		font-size: 19px;
	}
}

.caseModal_body ul,
.caseModal_body ol {
	margin: 0 0 15px;
	padding-left: 1.4em;
}

.caseModal_body li {
	margin-bottom: 6px;
	list-style: inherit;
}

/* チェックリスト（リジュセアの特徴） */
.caseCheck {
	margin: 0 0 15px;
	padding: 0;
	list-style: none;
}

.caseCheck li {
	position: relative;
	margin: 0 0 10px;
	padding-left: 26px;
	list-style: none;
}

.caseCheck li:before {
	content: "";
	position: absolute;
	top: 8px;
	left: 4px;
	width: 6px;
	height: 12px;
	border-right: 3px solid #094c98;
	border-bottom: 3px solid #094c98;
	transform: rotate(45deg);
}

/* 治療の流れ（ステップ） */
.caseFlow {
	margin: 0 0 15px;
	padding: 0;
	list-style: none;
	counter-reset: caseflow;
}

.caseFlow > li {
	position: relative;
	margin: 0 0 12px;
	padding: 12px 15px 12px 52px;
	background-color: #f5f8fd;
	border-left: 4px solid #094c98;
	list-style: none;
}

.caseFlow > li:before {
	counter-increment: caseflow;
	content: counter(caseflow);
	position: absolute;
	top: 13px;
	left: 12px;
	width: 28px;
	height: 28px;
	background-color: #094c98;
	border-radius: 50%;
	color: #FFF;
	font-size: 15px;
	font-weight: bold;
	line-height: 28px;
	text-align: center;
}

.caseFlow_ttl {
	display: block;
	margin-bottom: 4px;
	font-weight: bold;
	color: #094c98;
}

/* 費用ボックス */
.casePrice {
	box-sizing: border-box;
	margin: 0 0 15px;
	padding: 15px 18px;
	background-color: #eaeff9;
	border-radius: 8px;
}

.casePrice_num {
	display: block;
	margin-top: 8px;
	font-size: 21px;
	font-weight: bold;
	color: #094c98;
}

/* FAQ */
.caseFaq {
	margin: 0;
	padding: 0;
}

.caseFaq dt {
	margin: 0 0 6px;
	padding: 0 0 0 26px;
	position: relative;
	font-weight: bold;
	color: #026a93;
}

.caseFaq dt:before {
	content: "Q.";
	position: absolute;
	top: 0;
	left: 0;
	font-weight: bold;
	color: #026a93;
}

.caseFaq dd {
	margin: 0 0 18px;
	padding: 0 0 0 26px;
	position: relative;
}

.caseFaq dd:before {
	content: "A.";
	position: absolute;
	top: 0;
	left: 0;
	font-weight: bold;
	color: #094c98;
}

.caseFaq dd:last-child {
	margin-bottom: 0;
}

.caseAttention {
	box-sizing: border-box;
	margin: 15px 0 0;
	padding: 12px 15px;
	background-color: #f7f7f7;
	border-radius: 6px;
	font-size: 13px;
	line-height: 22px;
	color: #666;
}

/* モーダル内で main.css の img{display:block} が効くため余白を調整 */
.caseModal_body img {
	margin-bottom: 12px;
}

/* 下部の「閉じる」ボタン（長文モーダル対策） */
.caseModal_foot {
	width: 100%;
	margin-top: 25px;
	text-align: center;
}

.caseClose {
	display: inline-block;
	min-width: 160px;
	padding: 10px 24px;
	background-color: #094c98;
	border: 2px solid #094c98;
	border-radius: 30px;
	color: #FFF !important;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.4;
	text-decoration: none !important;
	cursor: pointer;
	transition: background-color .2s, color .2s;
}

.caseClose:hover,
.caseClose:focus {
	background-color: #FFF;
	color: #094c98 !important;
}

/* 専用ページへのリンク（モーダル下部・セクション下部） */
.caseClose--link {
	margin-right: 10px;
	background-color: #FFF;
	color: #094c98 !important;
}

.caseClose--link:hover,
.caseClose--link:focus {
	background-color: #094c98;
	color: #FFF !important;
}

@media screen and (max-width: 480px) {
	.caseClose--link {
		margin: 0 0 10px;
		display: block;
	}
	.caseClose {
		width: 100%;
	}
}

.caseTextLink {
	color: #094c98 !important;
	font-weight: bold;
	text-decoration: underline !important;
}

.caseTextLink:hover {
	opacity: .7;
}

/* 下層ページ用 */
.spOnly {
	display: none;
}

@media screen and (max-width: 749px) {
	.spOnly {
		display: inline;
	}
}

/* --------------------------------------------------
   ヘッダーメニュー：項目増加（症状事例／コンタクトレンズ処方）への調整
   -------------------------------------------------- */
@media screen and (min-width: 1001px) {
	.navimain li {
		font-size: 14px !important;
		letter-spacing: 0 !important;
		white-space: nowrap !important;
	}
	.menuBox1 {
		width: 210px !important;
		flex-basis: 210px !important;
		margin-right: 12px !important;
	}
}

@media screen and (min-width: 1001px) and (max-width: 1120px) {
	.navimain li {
		font-size: 13px !important;
	}
	.menuBox1 {
		width: 180px !important;
		flex-basis: 180px !important;
		margin-right: 8px !important;
	}
}

/* --------------------------------------------------
   アクセス：駐車場周辺MAP（2026.09 差し替え）
   支給データが小さめのため、拡大しすぎないよう表示幅を制限
   -------------------------------------------------- */
#content6 .MapBox {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
}

/* GoogleMapボタンを地図の右下に確実に重ねる */
#content6 .MapBox2 {
	position: absolute;
	top: auto;
	left: auto;
	right: 10px;
	bottom: 10px;
	margin-top: 0;
}

/* 館内図モーダルを見やすく（4F館内図は横長のため） */
[data-remodal-id="modal09"] {
	max-width: 900px;
}
