#search_block{
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0.5rem;
	background: white;
}
#search_close{
	display: inline-block;
	padding: 0.5rem;
	font-size: 1.5rem;
}
#search_contents{
	width: 100%;
	height: calc(100% - 60px);
}
#search_map_wrap{
	position: relative;
	/*
	width: 100%;
	height: 50vh;
	*/
	width: 50vw;
	height: 100%;
	float: right;
}
#search_map{
	width: 100%;
	height: 100%;
}
#search_btn{
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	padding: 0.5rem;
	border-radius: 50%;
	font-size: large;
	background: white;
	z-index: 1;
}
#search_btn:hover{
	cursor: pointer;
}

span.centerIcon{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	z-index: 1;
}
span.centerIcon:before, span.centerIcon:after{
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: #F00;
}
span.centerIcon:after{
	transform: translateY(-50%) rotate(90deg);
}

#search_list_wrap{
	height: 100%;
}
#search_list_header{
	/*
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 50px;
	*/
	height: 35px;
	font-size: large;
	font-weight: bold;
	position: relative;
}
/*
#search_list_header .search_filter{
	margin-left: 0.5rem
}
*/
#search_list_header .search_filter.click_item{
	padding: 0 0.5rem;
}
#search_list_header .search_filter.click_item:hover{
	background: #eee;
}
#search_list_header .search_filter.click_item.selected{
	background: wheat;
}
#search_list_header #filter_opt_wrap, #search_list_header #user_search_wrap{
	display: none;
	width: auto;
	padding: 1rem 2rem;
	border: 1px solid #ddd;
	background: white;
	line-height: 1;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	box-shadow: 8px 8px 16px #555;
	z-index: 1;
}
#search_list_header #filter_opt_wrap li span, #search_list_header #user_search_wrap li span{
	display: inline-block;
	width: 120px;
	font-weight: normal;
}
#search_list_header #filter_opt_wrap li span#filter_opt_owner_name{
	width: auto;
}
#search_list_header #filter_opt_wrap #filter_opt_btn_wrap, #search_list_header #user_search_wrap #user_search_btn_wrap{
	display: flex;
	column-gap: 2rem;
}
#search_list{
	height: calc(100% - 35px);
	overflow: auto;
}
.search_list_box:hover, .search_list_box.selected{
	cursor: pointer;
	background: aliceblue;
}
.search_list_box{
	display: flex;
	column-gap: 0.5rem;
	width: 100%;
	height: 150px;
	border: 1px solid #aaa;
	box-sizing: border-box;
}
.search_list_box.user_info{
	height: auto;
	line-height: 2;
	padding: 1rem 0;
}
.search_list_img{
	width: 25%;
	min-width: 150px;
	max-width: 300px;
	border-right: 1px solid #aaa;
}
.search_list_body_box{
	flex: 1;
	overflow-y: hidden;
}
.search_list_title{
	font-weight: bold;
	display: flex;
/*	align-items: center; */
}

@media (max-width: 768px){
	#search_map_wrap{
		float: unset;
		width: 100%;
		height: 40vh;
	}
	#search_list_wrap{
		height: calc(100% - 40vh);
	}
	#search_list_header{
		font-size: 90%;
		height: 25px;
		margin: 10px 0;
	}
	#search_list{
		height: calc(100% - 45px);
	}
	.search_list_box{
		height: 100px;
	}
	.search_list_img{
		width: 30%;
		min-width: 100px;
		max-width: 200px;
	}
	.search_list_body_box{
		font-size: 85%;
	}
}
