@charset "utf-8";
/* Style Index ===============================

	FileName : js_suggest.css

========================================= */

/* ------------------------------------------
サジェスト用
-------------------------------------------*/

#jsSuggestView {
	position: absolute;
	right: 0;
	z-index: 3;
	margin-top: 2px;
	min-width: 240px;
	width: 100%;
	max-height: 300px;
	border: 1px solid #707070;
	border-top: none;
	box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
	overflow-y: auto;
	background: #FFF;
}

#jsSuggestContents {
	width: 100%;
}

.jsSuggestGroupList {
	width: 100%;
}

.jsSuggestGroup .jsSuggestHeader {
	display: flex;
	align-items: center;
	padding: 5px 10px;
	width: 100%;
	text-align: left;
	background-color: #ecf2f8;
	letter-spacing: 0.0625rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-top: 1px solid #707070;
	border-bottom: 1px solid #707070;
}
.jsSuggestGroup .jsSuggestHeader *:first-child {
	flex: 1 1 auto;
	margin: 0 15px;
	text-align: center;
}

#jsSuggestClearHistoryBtn {
	margin: 0;
	padding: 4px 10px;
	background-color: #1e569b;
	color: #fff;
	border-radius: 4px;
	font-size: 14px;
	transition: 0.3s ease-in-out;
}
#jsSuggestClearHistoryBtn:hover {
  background-color: #1e569be0;
}

.jsSuggestList {
	width: 100%;
	text-align: start;
}

.jsSuggestList li {
	display: flex;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
	padding: 5px 10px 5px 25px;
	width: 100%;
	color: #1e569b;
	/*font-size:15px;*/
	font-size: 14px;
	background: url(../../../Jassets/img/common/mrk_arrow_blue.png) no-repeat 10px center;
	cursor: pointer;
}

.jsSuggestList li:not(:last-child) {
	border-bottom: 1px solid #CCC;
}

.jsSuggestList li:hover,
.jsSuggestList li.touch,
.jsSuggestList li:focus {
	color: white;
	background: url(../../../Jassets/img/common/mrk_arrow_white.png) no-repeat 10px center;
	background-color: #1e569b;
	outline-offset: -2px;
}
.jsSuggestList li:focus {
	outline: 2px solid #de3000;
}

.jsSuggestList li ruby,
.jsSuggestList li ruby rt,
.jsSuggestList li ruby rp {
	font-size: inherit;
	line-height: inherit;
	vertical-align: baseline;
}

.jsSuggestList li ruby rt,
.jsSuggestList li ruby rp {
	display: inline;
	position: static;
	white-space: normal;
}

.jsSuggestListItemIcon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
}
.jsSuggestListItem:hover .jsSuggestListItemIcon {
		color: #fff;
}

.jsSuggestHistoryIcon {
	width: 18px;
	height: 18px;
}

.jsSuggestListItemTitle {
	flex-grow: 1;
}
.jsSuggestListItemAction {
	flex-shrink: 0;
} 
.jsSuggestRemoveButton {
	display: block;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 0;
}
.jsSuggestRemoveButton svg {
  width: 14px;
  height: 14px;
}
.jsSuggestRemoveButton:hover {
	background-color: #ffffff33;
}

.jsSuggestList li:hover .jsSuggestRemoveButton svg,
.jsSuggestList li.touch .jsSuggestRemoveButton svg,
.jsSuggestList li:focus .jsSuggestRemoveButton svg {
	color: #fff;
}


.jsSuggestError {
	padding: 2px 10px;
	color: #4a4a4a;
	text-align: start;
}

.jsSuggestAnchor {
	position: relative;
}
