#SEARCH_LIST_TITLE
{
	border-top: 1px solid var(--color-palegrayline);
    padding-top: 40px;
}
#REGION_LIST::before
{
	content: "";

}
#REGION_LIST ul
{
	/*display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 5px;*/
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	list-style: none;
	padding: 0;
	margin-left: 40px;
	/*margin: 50px;*/
}
#REGION_LIST li
{
	font-size: 12px;
	/*border: 1px solid #ffbc0d;
	background: #fff;
	border-radius: 1px;
	padding: 2px;
	box-shadow: 1px 3px 3px #e5e5e5;*/
	display: inline-block;
}
#REGION_LIST li:not(:nth-last-of-type(1))::after
{
	content: "｜";
}
#REGION_LIST li:hover a
{
	opacity: 0.5;
}
#REGION_LIST li a
{
	/*display: flex;
	justify-content: space-between;
	align-items: center;
	white-space: nowrap;*/
	color: #2d2d2d;
	text-decoration: none;                          
	text-align: center;      
}
#REGION_LIST span
{
	color: #f03333;
	display: none;
}
#REGION_LIST li:has(a span:empty)
{    
    /*background-color: var(--color-palegrayline);
    border: 1px var(--color-darkgray) solid;*/
}
#REGION_LIST li:has(a span:empty) a
{
	color: rgb(200, 200, 200) !important;;
}
/* ----------------------------------------------------------------------------- */
/* 768px以下 */
/* ----------------------------------------------------------------------------- */
@media screen and (max-width : 768px)
{
	#REGION_LIST li:has(a span:empty)
	{
		display: none;
	}
}