@charset "UTF-8";
/* CSS Document */

.search-box_label {
	font-weight: bold;
	margin-top: 1em;
}
.is-hide {
	display: none;
}

.search-box {
	margin-bottom: 2em;
}

.shokushu {
	background: #EEE;
	padding: 1em;
}


.list_item {
	margin-bottom: 15px;
	font-size: 130%;
	font-weight: bold;
	letter-spacing: 0.5px;
}
.list_item a {
	display: block;
	border: 4px solid #c22200;
	padding: 1em 1.5em;
	color: #333;
	cursor: pointer;
	text-decoration: none;
}
.list_item a:hover {
	background: #c22200;
	color: #FFF;
	cursor: pointer;
}

.list_item a span {
	font-weight: normal;
	font-size: 80%;
	padding-left: 1em;
}
/*.list_item a span:before {
	content: "［";
	margin-left: 10px;
}
.list_item a span:after {
	content: "］";
	margin-right: 10px;
}*/

.list_item a:after {
	content: "詳 細";
	float: right;
	text-align: right;
	background: #EEE;
	padding: 0 1em;
	border-radius: 20px;
	font-size: 90%;
}
.list_item a:hover:after {
	background: #FFF;
	color: #ff2319;
}


/*エリア選択_radioスタイル*/
input[type=radio] {
display: none; /* ラジオボタンを非表示にする */
}

.area label {
	border-right: 1px solid #DDD;
	padding: 10px 2em;
	display: block;
	float: left;
	width: calc((100% - 4px) / 4);
	cursor: pointer;
	margin: 0 !important;
	background: #EEE;
	color: #AAA;
	font-size: 125%;
	box-sizing: border-box;
	text-align: center;
}
input[type="radio"]:checked + label {
	background: #c22200;/* マウス選択時の背景色を指定する */
	color: #ffffff; /* マウス選択時のフォント色を指定する */
}

label:hover {
	background: #ff2319;
	color: #FFF;
}

/*checkboxスタイル*/
input[type=checkbox] {
display: none; /* ラジオボタンを非表示にする */
}

.shokushu label {
	border: 1px solid #DDD;
	padding: 10px 1em;
	cursor: pointer;
	margin: 0 5px 0 0;
	background: #EEE;
	color: #AAA;
	font-size: 110%;
	border-radius: 10px;
	float: left;
	display: block;
}
input[type="checkbox"]:checked + label {
	background: #ff2319;/* マウス選択時の背景色を指定する */
	color: #ffffff; /* マウス選択時のフォント色を指定する */
}

label:hover {
	background: #ff2319;
	color: #FFF;
}

@media screen and (max-width: 780px) {
	.area label {
		width: calc((100% - 1px) / 2);
		padding: 5px;
		font-size: 100%;
	}
	
	.shokushu label {
		width: 48%;
		display: inline-block;
		box-sizing: border-box;
		margin-bottom: 5px;
		font-size: 100%;
		padding: 5px 10px;
		border-radius: 5px;
	}
	
	.list_item a {
		padding: 10px 4.5em 10px 10px;
		position: relative;
		line-height: 1.4em;
		/*text-indent: -4em;
		padding-right: 4em;*/
	}
	.list_item a span{
		display: block;
		padding-left: 0;
	}
	.list_item a:after {
		position: absolute;
		top: 50%;
		right: 10px;
		margin-top: -0.5em;
	}
	.list_item {
		font-size: 110%;
	}
}