.ke-public-map {
	margin: 24px 0;
}

.ke-public-map h2 {
	margin-bottom: 8px;
}

.ke-public-map p {
	margin-bottom: 16px;
	line-height: 1.8;
}

#ke-public-map {
	position: relative;
	overflow: hidden;
}

.ke-map-marker {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 42px;
	height: 42px;

	border-radius: 50%;
	border: 3px solid #ffffff;

	font-weight: 700;
	font-size: 15px;
	line-height: 1;

	box-shadow: 0 3px 10px rgba(0,0,0,.35);
	transform: translate(-3px, -3px);
}

.ke-map-marker span {
	line-height: 1;
}

.ke-marker-low {
	background: #43A047;
	color: #ffffff;
}

.ke-marker-middle {
	background: #FBC02D;
	color: #222222;
}

.ke-marker-high {
	background: #E53935;
	color: #ffffff;
}

.ke-map-legend {
	position: absolute;
	right: 16px;
	bottom: 24px;
	z-index: 1000;

	background: rgba(255,255,255,.94);
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 12px 14px;

	box-shadow: 0 3px 10px rgba(0,0,0,.18);

	font-size: 13px;
	line-height: 1.6;
}

.ke-map-legend-title {
	font-weight: 700;
	margin-bottom: 6px;
}

.ke-map-legend-item {
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.ke-map-legend-color {
	display: inline-block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 2px solid #ffffff;
	box-shadow: 0 1px 4px rgba(0,0,0,.25);
}

.ke-map-legend-color.low {
	background: #43A047;
}

.ke-map-legend-color.middle {
	background: #FBC02D;
}

.ke-map-legend-color.high {
	background: #E53935;
}

@media (max-width: 768px) {
	#ke-public-map {
		height: 480px !important;
	}

	.ke-map-legend {
		right: 10px;
		bottom: 18px;
		font-size: 12px;
		padding: 10px 12px;
	}

	.ke-map-marker {
		width: 38px;
		height: 38px;
		font-size: 14px;
	}
}

/* ==========================================================
   Popup
========================================================== */

.ke-popup {
	min-width: 180px;
	font-size: 14px;
	line-height: 1.6;
}

.ke-popup-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid #e5e5e5;
	color: #222;
}

.ke-popup-row {
	margin-bottom: 14px;
}

.ke-popup-label {
	font-size: 13px;
	color: #666;
	margin-bottom: 2px;
}

.ke-popup-value {
	font-size: 18px;
	font-weight: 700;
	color: #222;
}

.ke-popup-date {
	font-size: 16px;
}

.ke-popup-message {
	margin-top: 16px;
	padding-top: 12px;
	border-top: 1px solid #e5e5e5;

	font-size: 14px;
	font-weight: 700;
	color: #2f2f2f;
	line-height: 1.7;
}

/* ==========================================================
   表示期間タブ
========================================================== */

.ke-map-toolbar{
	margin:20px 0;
}

.ke-map-periods{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	margin-bottom:15px;
}

.ke-map-period{

	padding:10px 18px;

	background:#ffffff;

	border:2px solid #2e7d32;

	border-radius:30px;

	color:#2e7d32;

	font-weight:bold;

	cursor:default;

}

.ke-map-period.active{

	background:#2e7d32;

	color:#ffffff;

}


/* ==========================================================
   情報バー
========================================================== */

.ke-map-info{

	padding:15px 18px;

	background:#f5fbf4;

	border-left:5px solid #2e7d32;

	border-radius:8px;

	font-size:15px;

	line-height:2;

	box-shadow:0 2px 8px rgba(0,0,0,.05);

}

/* Public Map Header */

.ke-public-map-header {

	text-align: center;
	margin-bottom: 30px;
}

.ke-public-map-logo {

	display: block;
	width: 100%;
	max-width: 620px;
	height: auto;
	margin: 0 auto 15px;
}

.ke-public-map-header h2 {

	margin: 0 0 10px;
}

.ke-public-map-subtitle {

	margin: 0;
	font-size: 18px;
	color: #666;
}

.ke-section-line {
    border: none;
    height: 5px;
    margin: 30px 0;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        #5ec9ff,
        #2f80ed
    );
}