.announce_scaleLimit {
	padding: 5px;
	font-weight: bold;
	top: 0px; 
}

.announce_scaleLimit_background {
	background-color: #ffffff;
	filter: alpha(opacity=80);
	-moz-opacity:0.80;
	opacity:0.80;
}


#fullscreenSwiper {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #000;
	z-index: 9999;
}

#fullscreenSwiper img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

#closeFullscreen {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	color: white;
	font-size: 2rem;
	z-index: 10000;
	cursor: pointer;
}

#articlelistajax h5,#articlelistajax div{
	white-space: nowrap;        /* 改行させない */
	overflow: hidden;           /* はみ出た部分を隠す */
	text-overflow: ellipsis;    /* 末尾を「...」に */
	max-width: 320px;           /* 任意の横幅に制限 */
	display: block;             /* ブロック表示で制御 */
	margin: 3px 0;
}

#articlelistajax th,#articlelistajax td{
	border-bottom: 1px solid #ddd;
	padding: 12px 8px;
	text-align: left;
	vertical-align: middle;
}

.scroll-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 64px;
	background-color: rgba(255, 255, 255, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 10;
	font-size: 24px;
	user-select: none;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	border-radius: 8px;
}

.scroll-arrow.left {
	left: 0;
}

.scroll-arrow.right {
	right: 0;
}

.hidden {
	display: none;
}

/* チェックボックス*/
#search-panel .preflist dd {
	margin: 0 0 0 20px;
}
.citylist {
	margin: 0 0 0 40px;
}

/* マーカー*/
.circle-cropped {
	overflow: hidden; /* はみ出た部分を隠す */
	border-radius: 50%; /* 円形にする */
	}

/* マーカーの通常状態 */
#ajaxMap_listMap > div > div.marker {
	width: 50px;
	height: 50px;
	position: absolute;
	transition: width 0.25s ease-in-out, height 0.25s ease-in-out, opacity 0.25s ease-in-out;
	opacity: 0; /* 初期は透明にしておく */
	z-index: 1;
}

#ajaxMap_listMap > div > div.marker.first-time {
	/* 生えてくるようなアニメーションを追加 */
	animation: growUpFromMap 0.6s ease-out 1;
	/*transform-origin: bottom center;  下から生えるように */
}

@keyframes growUpFromMap {
	0% {
	/*transform: scaleY(0.1) scaleX(0.5);  横細く、縦は地面に貼り付いてる感じ */
	width: 20px;
	height: 1px;
	opacity: 0;
	}
	50% {
		/*transform: scaleY(1.2) scaleX(1.1);  一瞬膨らむ */
		width:60px;
		height:60px;
		opacity: 1;
		}
	100% {
		/*transform: scaleY(1) scaleX(1); /* 通常サイズに収束 */
		width:50px;
		height:50px;
		opacity: 1;
	}
}

#ajaxMap_listMap > div > div.marker > img:nth-child(1) {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 2;
}

#ajaxMap_listMap > div > div.marker > img:nth-child(2) {
	top: calc(10%);
	left: calc(20%);
	width: 60%;
	height: 60%;
	position: absolute;
	z-index: 3;
}

#ajaxMap_listMap > div > div.marker > p {
	background-color: white;
	width: 100%;
	overflow: hidden;
	border-radius: 10px;
	/*top: 50%;*/
	bottom:-20px;
	padding: 0px 6px;
	height: 20px;
	margin: 0px;
	position: absolute;
	z-index: 4;
	font-weight: bold;
	border: 2px solid #333;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
	display: none;
}

/* マーカーのホバー、選択状態 */
#ajaxMap_listMap > div > div.marker.marker-hover,
#ajaxMap_listMap > div > div.marker.marker-selected {
	width:80px;
	height:80px;
	z-index: 1001;
}

#ajaxMap_listMap > div > div.marker.marker-hover > img:nth-child(1),
#ajaxMap_listMap > div > div.marker.marker-selected > img:nth-child(1) {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1002;
}

#ajaxMap_listMap > div > div.marker.marker-hover > img:nth-child(2),
#ajaxMap_listMap > div > div.marker.marker-selected > img:nth-child(2) {
	width: 60%;
	height: 60%;
	z-index: 1003;
}

#ajaxMap_listMap > div > div.marker > p {
	z-index: 1004;
	text-align: center;
}

#ajaxMap_listMap > div > div.marker.marker-hover > p {
	display: block;
}

#ajaxMap_listMap > div > div.marker.marker-selected > p {
	z-index: 1004;
	text-align: center;
	/* transform: translateX(-50px); */
	animation: none !important;
	/* width: max-content; */
	width: 100px;
	white-space: nowrap;
	display: block;
	text-overflow: ellipsis;
}

#ajaxMap_listMap > div > div.marker.marker-selected img {
	animation: pulse 1s infinite; /* ピンが点滅するアニメーション */
	transform-origin: bottom;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.2);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

#search-panel-loading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.85);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

/* シンプルな回転スピナー */
.spinner {
	width: 50px;
	height: 50px;
	border: 6px solid #ccc;
	border-top-color: #333;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

/* アニメーション定義 */
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}