/* content.search_bar.jsp の検索ボックス専用スタイル。上部セレクターを廃止した後の横幅・整列を定義し、content.search.jsp 側の絞り込み表示と役割を分離する。 */
#navbar-search {
	min-height: 42px;
	background-color: #1d5a8e;
	background-size: cover;
	padding: .45rem .75rem !important;
	justify-content: center;
}

#menuSearchBar {
	display: inline-flex;
	align-items: center;
	width: 100%;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.search-box-shell {
	display: flex;
	align-items: center;
	width: 100%;
	border: 1px solid rgba(0, 0, 0, .25);
	border-radius: 9999px;
	background-color: #fff;
	overflow: hidden;
	box-sizing: border-box;
	height: 38px;
}

.search-box-shell .text-search {
	border: none;
	border-radius: 0;
	box-shadow: none;
	box-sizing: border-box;
	height: 36px;
	min-height: 36px;
	max-height: 36px;
	line-height: 20px;
	padding: 7px 1rem;
}

.search-box-shell .text-search:focus {
	box-shadow: none;
}

.search-box-clear,
.search-box-submit {
	border: none;
	border-radius: 0;
	box-sizing: border-box;
	height: 36px;
	min-height: 36px;
}

.search-box-clear {
	padding: .1rem .35rem;
	text-decoration: none;
}

.search-box-submit {
	align-self: stretch;
	margin-right: -1px;
}

@media (max-width: 767.98px) {
	#menuSearchBar {
		width: 100% !important;
		margin-right: 0;
		margin-bottom: 0;
	}
}
