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


/*** 物件一覧 ***/
.column_layout {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
.column_layout .condition {
	-webkit-flex: 0 1 auto;
	flex: 0 1 auto;
	margin-right: 1em;
}
.column_layout .result {
	-webkit-flex: 1 1 auto;
	flex: 1 1 auto;
}
#mainContainer .result_title {
	border-radius: 5px;
	border-top-width: 4px;
	border-top-style: solid;
	border-top-color: orange;
	background-color: white;
	padding: 0.5em 1em;
	font-weight: bold;
	font-size: 1.8em;
	box-shadow: 1px 1px 1px #999, -1px 1px 1px #999;
	height: auto;
}

.pr {
	border: 1px solid #999;
	padding: 1em;
	background-color: #fff4ce;
	margin-top: 1.5em;
	border-radius: 5px;
}

.pr p {
	margin-bottom: 1em;
}

.pr_tag {
	background-color: white;
	padding: 1px 5px;
	font-weight: bold;
	border: 1px solid #999;
	margin-right: 1em;
}

.object_name {
	font-weight: bold;
	font-size: 1.2em;
}

.feature_layout {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	margin-bottom: 1em;
}

.feature_tag {
	background-color: white;
	padding: 1px 5px;
	color: red;
	border: 1px solid red;
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	border-radius: 3px;
	margin-right: 1em;
}
.feature_tag:before {
	content: "";
	position: absolute;
	top: 50%;
	right: -12px;
	margin-top: -6px;
	border: 6px solid transparent;
	border-left: 6px solid white;
	z-index: 2;
}
.feature_tag:after {
	content: "";
	position: absolute;
	top: 50%;
	right: -14px;
	margin-top: -7px;
	border: 7px solid transparent;
	border-left: 7px solid red;
	z-index: 1;
}

.feature {
	color: red;
	font-weight: bold;
}

.img_layout {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
.img_box {
	-webkit-flex: 0 0 180px;
	flex: 0 0 180px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	min-height: 100px;
	margin-right: 1em;
}
.img_box.noimg {
	background: url("../images/34topics.jpg") center center no-repeat;
	background-size: contain;
}
.img_box img {
	background-color: white;
	max-width: 180px;
	border: 1px solid royalblue;
}
.data_box {
	-webkit-flex: 1 1 auto;
	flex: 1 1 auto;
}

.address_tag {
	color: #666;
	border: 1px solid #999;
	padding: 2px 5px;
	background-color: white;
}

.ctrl {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	margin: 1.5em 0;
	white-space: nowrap;
}
.cnt {
	color: orange;
	font-size: 2em;
	font-weight: bold;
}
.cnt_suffix {
	font-size: 1.4em;
	font-weight: bold;
}
.range {
	font-size: 1.1em;
}

.normal {
	border-radius: 5px;
	border-top-width: 4px;
	border-top-style: solid;
	border-top-color: darkbrown;
	background-color: white;
	padding: 1em;
	margin-bottom: 1.5em;
	box-shadow: 1px 1px 1px #999, -1px 1px 1px #999;
}

.normal p {
	margin-bottom: 1em;
}

.normal_tag {
	color: white;
	background-color: orange;
	padding: 2px 5px;
	margin-right: 1em;
	font-weight: bold;
}

.normal_tag.cat1 {
	background-color: rgb(255,153,0);
}

.normal_tag.cat2 {
	background-color: rgb(255,40,0);
}

.normal_tag.cat3 {
	background-color: rgb(53,161,107);
}

.normal_tag.cat4 {
	background-color: rgb(255,153,160);
}

.normal_tag.cat5 {
	background-color: rgb(102,204,255);
}

.normal_tag.cat6,
.normal_tag.cat10 {
	background-color: rgb(0,65,255);
}

.normal_tag.cat7 {
	background-color: rgb(169,131,109);
}

.normal_tag.cat8 {
	background-color: rgb(154,0,121);
}

.normal_tag.cat9 {
	background-color: rgb(127,135,143);
}

.excellent_tag {
	float: right;
	color: red;
	border: 1px solid red;
	padding: 3px 3px 0;
	font-size: 90%;
}

.normal .tel {
	color: red;
	font-weight: bold;
}

.data_table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 1px;
	background-color: #ccc;
}
.data_table th,
.data_table td {
	padding: 0.5em;
}
.data_table th {
	color: #737373;
	background-color: aliceblue;
	width: 22%;
}
.data_table td {
	width: 75%;
	background-color: white;
}

.multi {
	margin-top: 1em;
}

.multi_num {
	font-weight: bold;
}

.multi_table {
	width: 100%;
	border-top: 1px solid #ccc;
	border-spacing: 0;
}

.multi_table th,
.multi_table td {
	padding: 2px 5px;
	border-bottom: 1px solid #ccc;
}
.multi_table th {
	background-color: aliceblue;
}

.multi_table tr:nth-child(odd) {
	background-color: #fffafa;
}

.price {
	color: orange;
	font-size: 1.5em;
	font-weight: bold;
	margin-right: 2px;
}

.button_box {
	margin-top: 1em;
}

.button_box button {
	cursor: pointer;
	color: royalblue;
	padding: 0.5em 1em;
	border: 1px solid #ccc;
	border-radius: 3px;
	box-shadow: 1px 1px 1px #eee, -1px 1px 1px #eee;
	background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eeeeee));
	background: -moz-linear-gradient(top, #ffffff, #eeeeee);
	background: -webkit-linear-gradient(top, #ffffff, #eeeeee);
	background: linear-gradient(to bottom, #ffffff, #eeeeee);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#eeeeee');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#eeeeee')";
}

.column_layout a {
	color: royalblue !important;
}

.condition_title {
	border-radius: 5px 5px 0 0;
	background-color: orange;
	color: white;
	font-size: 1.2em;
	font-weight: bold;
	border: none;
	padding: 5px;
}
.search_form > div {
	border: 1px solid #ccc;
	border-top: none;
}
.search_button_box {
	text-align: center;
	padding: 1em;
}
.search_button {
	cursor: pointer;
	font-size: 1.5em;
	font-weight: bold;
	width: 150px;
	padding: 5px 0;
	border: 2px solid royalblue;
	border-radius: 500px;
	box-shadow: 1px 1px 1px #eee, -1px 1px 1px #eee;
	background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eeeeee));
	background: -moz-linear-gradient(top, #ffffff, #eeeeee);
	background: -webkit-linear-gradient(top, #ffffff, #eeeeee);
	background: linear-gradient(to bottom, #ffffff, #eeeeee);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#eeeeee');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#eeeeee')";
}
.search_button:hover {
	opacity: 0.5;
}
.condition_caption {
	font-size: 1.1em;
	font-weight: bold;
	padding: 0.5em 1em;
	background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eeeeee));
	background: -moz-linear-gradient(top, #ffffff, #eeeeee);
	background: -webkit-linear-gradient(top, #ffffff, #eeeeee);
	background: linear-gradient(to bottom, #ffffff, #eeeeee);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#eeeeee');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#eeeeee')";
}
.condition_caption:before {
	content: "";
	border-left: 4px solid orange;
	font-size: 0.5em;
	margin-right: 1em;
}

.condition_box {
	border: 1px solid #ccc;
	text-align: center;
}

.condition_box.bottom {
	border-radius: 0 0 5px 5px;
	margin-bottom: 1em;
}

.condition_area {
	display: inline-block;
	text-align: left;
	width: 100%;
	padding: 1em;
	box-sizing: border-box;
}
input[type='checkbox'] {
	vertical-align: middle;
}

.toggle_switch {
	display: inline-block;
	cursor: pointer;
}
.toggle_switch:hover .switch_text {
	color: #fcc600;
	text-decoration: underline;
}
.toggle_switch .switch_text.hide,
.toggle_switch .fa.hide {
	display: none;
}

.mt_half {
	margin-top: 0.5em;
}

.movie_btn {
	background-image: url(../media/images/btn-movie.png);
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
	height: 60px;
	width: 220px;
	overflow: hidden;
	margin-left: auto;
}

.movie_btn:hover{
	background-position: left -60px;
}

.img_box .noimage {
	width: 180px;
	height: 120px;
	border: 1px solid #ccc;
}
.noimage span {
	display: none;
}

@media screen and ( max-width:479px ) {
	.column_layout {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.column_layout .condition {
		margin: 2em auto 0;
		text-align: left;
	}
	.condition_area {
		line-height: 2;
	}
	.column_layout .result {
		margin: 0 auto;
		max-width: 96%;
		max-width: 96vw;
	}
	
	.column_layout .result .ctrl {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	
	.column_layout .result .pager_area {
		margin-top: 1em;
		width: 100%;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
	}
	
	.img_layout {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.img_layout .img_box {
		margin: 0 auto;
	}
	.img_layout .data_box {
		-webkit-flex-basis: 100%;
		flex-basis: 100%;
		margin-top: 1em;
	}
}
