.bunker-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* 全体の枠スタイル（白背景＋立体感） */
.bunker-wrapper {
	background-color: #ffffff;
	border: 2px solid #ccc;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	margin-bottom: 30px;
}

.bunker-left {
	flex: 1 1 45%;
}
.bunker-right {
	flex: 1 1 55%;
}

/* タイトル（1行目） */
.bunker-title {
	font-size: 2rem;
	font-weight: 600;
	color: #333; /* ← 黒に変更 */
	text-align: center;
	margin-bottom: 8px;
}

/* 時間表示（オレンジ系バッジ・中央寄せ・黒文字） */
.bunker-time-highlight {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 0 auto 20px;
	padding: 10px 16px;
	font-size: 2.4rem;
	font-weight: 800;
	color: #333; /* ← 黒に変更 */
	background-color: #fff4e5; /* ← 明るいオレンジ背景 */
	border: 2px solid #f57c00; /* ← 濃いめのオレンジ枠 */
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	max-width: fit-content;
}

/* 時計アイコンもオレンジに */
.bunker-time-highlight i {
	font-size: 2rem;
	color: #f57c00; /* ← オレンジ色 */
}

/* バンカー説明文 */
.bunker-text {
	font-size: clamp(1.4rem, 1.8vw, 1.6rem); /* ← レスポンシブサイズ */
	color: #333;
	line-height: 1.8;
	margin-bottom: 10px;
	text-align: center;
}

/* 注意書き（強調＋マーカー調） */
.bunker-text-caution {
	display: inline-block;
	font-style: normal;
	font-size: clamp(1.5rem, 2.0vw, 1.7rem); /* ← レスポンシブサイズ */
	font-weight: bold;
	margin-top: 8px;
	color: #d32f2f;
	background: linear-gradient(transparent 60%, #fff4e5 60%);
	padding: 0 4px;
	line-height: 1.8;
}

/* 画像 */
.bunker-image img {
	max-width: 100%;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* モバイル対応 */
@media (max-width: 768px) {
	.bunker-flex {
		flex-direction: column;
	}

	.bunker-left,
	.bunker-right {
		flex: 1 1 100%;
	}
	.bunker-text {
		text-align: left;
	}
	.bunker-image img {
		max-width: 100%;
		height: auto;
	}
	.bunker-title {
		font-size: 1.8rem;
	}

	.bunker-time-highlight {
		font-size: 2rem;
		padding: 8px 14px;
	}
}
