/* =========================================================
   MAP 専用CSS
========================================================= */

/* map全体ラップ（フル表示時） */
.grm-map-full-wrap{
	height:100vh;
	position:relative;
}

/* Leaflet or map本体 */
#grm-store-map{
	height:100%;
}

/* 右上のコントロールUI */
.grm-map-floating-controls{
	position:absolute;
	top:120px;
	right:30px;
	background:rgba(255,255,255,0.8);
	padding:20px;
	border-radius:8px;
	z-index:1000;
}

/* mapボタン共通 */
.grm-map-control-btn{
	background:#5f8ea4;
	color:#fff;
	border:none;
	border-radius:999px;
	padding:10px 16px;
	font-size:14px;
	font-weight:600;
	cursor:pointer;
	transition:0.2s;
	display:inline-flex;
	align-items:center;
	justify-content:center;
}
.grm-map-control-btns .grm-map-control-btn{
	width:140px;
}

/* hover状態 */
.grm-map-control-btn:hover{
	background:#4c7a8f;
}

/* 営業中ボタン */
.grm-filter-open-btn{
	background:#60b388;
	color:#fff;
	border:none;
	border-radius:999px;
	padding:10px 16px;
	font-size:14px;
	font-weight:600;
	cursor:pointer;
	transition:0.2s;
	display:flex;
	align-items:center;
	justify-content:center;
	margin: 20px auto 0;
}

/* hover状態 */
.grm-filter-open-btn:hover{
	background:#8fc6aa;
}

/* ズームボタンラップ */
.grm-map-zoom{
	display:flex;
	gap:8px;
	margin-top:10px;
	justify-content:center;
}

/* Leafletズームボタン */
.leaflet-control-zoom a{
	background:#5f8ea4;
	color:#fff;
	border:none;
	width:50px;
	height:40px;
	line-height:40px;
	text-align:center;
	font-size:18px;
	font-weight:bold;
	border-radius:50%;
	margin-bottom:8px;
	transition:0.2s;
}

/* zoom hover */
.leaflet-control-zoom a:hover{
	background:#4c7a8f;
	color:#fff;
}

/* 半径ラベル（円の距離表示など） */
.grm-radius-label div{
	display:inline-block;
	min-width:40px;
	padding:4px 10px;
	background:rgba(0,0,0,0.3);
	color:#fff;
	font-size:12px;
	border-radius:999px;
	text-align:center;
}

/* =========================
   map
========================= */

.grm-map-full-wrap{
	height:100vh;
	position:relative;
}

#grm-store-map{
	height:100%;
}
.grm-map-floating-controls{
	position: absolute;
	top: 120px;
	right: 30px;
	background: rgba(255,255,255,0.8);
	padding: 20px;
	border-radius: 8px;
	z-index: 1000;
}
.grm-map-control-btn{
	background:#5f8ea4;
	color:#fff;
	border:none;
	border-radius:999px;
	padding:10px 16px;
	font-size:14px;
	font-weight:600;
	cursor:pointer;
	transition:0.2s;
	display:inline-flex;
	align-items:center;
	justify-content:center;
}
.grm-map-control-btn:hover{
	background:#4c7a8f;
}

/* ズームボタン全体 */
.grm-map-zoom{
	display:flex;
	gap:8px;
	margin-top:10px;
	justify-content:center;
}

/* ボタン共通 */
.leaflet-control-zoom a{
	background:#5f8ea4;
	color:#fff;
	border:none;
	width:50px;
	height:40px;
	line-height:40px;
	text-align:center;
	font-size:18px;
	font-weight:bold;
	border-radius:50%;
	margin-bottom:8px;
	transition:0.2s;
}

/* hover */
.leaflet-control-zoom a:hover{
	background:#4c7a8f;
	color:#fff;
}

.grm-radius-label div{
	display: inline-block;
	min-width: 40px;
	padding: 4px 10px;
	background: rgba(0,0,0,0.3);
	color: #fff;
	font-size: 12px;
	border-radius: 999px;
	text-align: center;
}