/* 検索エリア */
#routesearch_window{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: calc(100% - 50px);
	background-color: #f6f6f6;
	z-index: 10002;

	display: none;
}

.searchbox{
	width: 70%;
}

/*　検索結果リスト */
#routesearch_resultwindow{
	position: absolute;
	top: 50px;/*180px;*/
	left: 0px;
	width: 100%;
	height: calc(100% - 50px);
	z-index: 10002;
	overflow: scroll;
	background-color: #f6f6f6;

	display: none;
}
.searchresultlist{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
.searchresultlist>li{

	background-color: #ffffff;
	padding-top: 5px;
	padding-bottom: 5px;
}
.searchresultlist>li>span{
	margin-left: 20px;
	text-decoration: underline;
	border-bottom: solid 1px #f3f3f3;
}

/* 2021.07.09 add */
.form-controls {
    display: block;
    /* width: 100%; */
    /* height: calc(1.5em + .75rem + 2px); */
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}