/********************
* 検索画面CSS
*********************/
/** チェックボックス */
.checkbox-inline {
	margin: 0px;
}
/** 検索ボタン(詳細) */
.searchButtonDetail {
	display: flex;
	margin: 20px auto;
}
/** 収録(文字数) */
.select2-selection__rendered {
	font-size: 12px;
}
.select2-results__options {
	font-size: 11px;
}
/** 追加ボタン */
.addButton {
	font-size:14px;
	text-align:center;
}
/** お気に入り追加ボタン */
.addFavorite {
	opacity: 0.75;
	width: 40px;
	height: 40px;
	color: #ffffff;
	background-color: grey;
	padding-left: 12px;
	padding-top: 12px;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	border-radius: 25%;
	cursor: pointer;
	position: absolute;
}
/** お気に入り追加ボタン(ホバー) */
.addFavorite:hover {
	color: white;
	background-color: #5ad81a;
}
/** お気に入り削除ボタン */
.delFavorite {
	width: 40px;
	height: 40px;
	color: white;
	background-color: #5ad81a;
	padding-left: 12px;
	padding-top: 12px;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	border-radius: 25%;
	cursor: pointer;
	position: absolute;
}
/** お気に入り削除ボタン(ホバー) */
.delFavorite:hover {
	color: #ffffff;
	background-color: grey;
}
/** チェックボックスOFF */
.checkImgOff {
	opacity: 0.5;
}
/** チェックボックスOFF(ホバー)
.checkImgOff:hover {
	opacity: 1.0;
} */
/** チェックボックスON */
.checkImgOn {
	opacity: 1.0;
	background-color: #eaeaea;
	border-radius: 25%;
}
/** ワザに必要なエネルギー枚数 */
.enNum {
	width:30px;
	margin:0px;
	padding:0px;
	font-size:12px;
}