@charset "UTF-8";

/*==================
検索枠
===================*/
.search-ttl{
font-size: 0.9em;
	line-height: 1.5;
	margin: 3em 0 0 0;
	background-color:#eee;
	border-top-left-radius:10px;
	border-top-right-radius:10px;
	padding: 15px 10px 13px 25px;
	border-bottom: 2px solid #fff;
	color: #000;
}
.search-ttl span{
font-size: 0.85em;
	margin-left: 1em;
}
.select_listwrap{
 background-color: #eee;
	border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;
	margin-bottom: 20px;
}
.search_item {
  display: inline-block;
  padding: 3px;
  cursor: pointer;
}
.search_item.is-active {
  color: #C82729;
  background-color: black;
}
.is-hide {
  display: none;
}
.search-box{
	border-top: 1px dotted #cbcbcb;
	display: flex;
	width: 100%;
}
.search-box:first-child{
	border-top: 0px;
}
.search-box_title{
 font-weight: 600;
	font-size: 0.95em;
	width:13%;
	padding: 10px 0 0 25px;
	align-self: center;
}
.search-box_title span{
  font-weight: normal;
	color: #666;
  font-size: 0.85em;
}
.search-box_labellist{
	width:87%;
	text-align: left;
	padding: 10px 10px 10px 0;
}

/* 検索キーワードボタン　*/
label.themechk {
 margin:13px 2px; /* ボタン同士の間隔 */
	display: inline-block;
	cursor: pointer;
}
label.themechk input {
 display: none; デフォルトのinputは非表示にする */
}
label.themechk span {
 color: #333; /* 文字色を黒に */
 border: 1px solid #fff; /* 淵の線を指定 */
 background: #fff;
 border-radius: 5px; /* 角丸を入れて、左右が丸いボタンにする */
 padding: 0.5em 0.75em; /* 上下左右に余白をトル */
	font-size: 0.85em;
}
label.themechk input:checked + span {
 color: #FFF; /* 文字色を白に */
 background: #333; /* 背景色を薄い赤に */
	border: 1px solid #333; /* 淵の線を指定 */
}



/*================================

　画面サイズが499px以下の場合に適用

=================================*/
@media screen and (max-width: 499px) {
.search-ttl{
	padding: 15px 10px 13px 15px;
}
.search-box{
	display: block;
	width: 100%;
	padding-bottom: 1em;
}
.search-box_title{
	display: block;
	width:100%;
	padding: 10px 0 0 15px;
}
.search-box_labellist{
	width:100%;
	display: block;
	padding: 2px 2px;
	margin: 5px 5px 15px 5px;
}
.search-box_title span{
  margin: 2px;
font-size: 0.85em;
}
label.themechk {
 margin:11px 2px; /* ボタン同士の間隔 */
	display: inline-block;
	cursor: pointer;
}
}