@charset "shift_jis"; 

/*********************************************************
style.cssに設定がある可能性あり
*/

/*ボタン---------------*/
.btnS a{
	display:inline-block;
	text-align:center;
	text-decoration:none;
	color:#222;
	padding:10px;
	font-weight:bold;
	        border-radius: 3px;
       -moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border:#b9b8b8 solid 1px;
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#f7f7f7),
		to(#ffffff));
	background:-webkit-linear-gradient(top, #ffffff 0% , #f7f7f7 100%);
	background:-moz-linear-gradient   (top, #ffffff 0% , #f7f7f7 100%);
	background:-o-linear-gradient     (top, #ffffff 0% , #f7f7f7 100%);
	background:-ms-linear-gradient    (top, #ffffff 0% , #f7f7f7 100%);
	background:linear-gradient        (top, #ffffff 0% , #f7f7f7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
		GradientType=0,startColorstr='#FFffffff', endColorstr='#FFf7f7f7');/*IE10用（色の頭にFFが必要）*/
	}
.btnS a:hover,
.btnS a:active{
	color:#cc0000;
	background:#dddddd;
	}

/*ボタン---------------*/
/*<button type="submit" class="searchBtn"><i class="fas fa-search"></i>　検　索</button>*/
.searchBtn{
	display:block;
	width:100%;
	max-width:700px;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
	border:#f08336 solid 1px;
	background: #f08336;
	background:        -webkit-gradient(linear, left top, left bottom, from(#f08336), color-stop(0.49, #f08336), color-stop(0.50, #dc6e20), to(#dc6e20));
	background:         linear-gradient(0deg, #f08336 0%, #f08336 49%, #dc6e20 50%, #dc6e20 100%);
	background:    -moz-linear-gradient(top, #f08336 0%, #f08336 49%, #dc6e20 50%, #dc6e20 100%);
	background:      -o-linear-gradient(top, #f08336 0%, #f08336 49%, #dc6e20 50%, #dc6e20 100%);
	background: -webkit-linear-gradient(top, #f08336 0%, #f08336 49%, #dc6e20 50%, #dc6e20 100%);
	background:-ms-linear-gradient(top, #f08336, #dc6e20); /* IE */
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	text-align:center;
	color:#fff;
	font-weight:bold;
	padding:20px 5px;
	font-size:1.2em;
	margin-top:20px;
	cursor:pointer;
	text-decoration:none;
	}
.searchBtn:hover,
.searchBtn:active{
	background:#dc6e20;
	color:#fff;
	box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.3) inset; /*内側*/
	-moz-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.3) inset;
	-o-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.3) inset;
	-webkit-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.3) inset;
	}

.markerWrap .searchBtn{
	width:80%;
	margin-left:auto;
	margin-right:auto;
	padding:12px 5px;
	margin-top:10px;
	font-size:1em;
	}


/*********************************************************
Googleマップ
*/

/**条件絞込部分********************/

.gMapWrapL{
	padding:10px 0;
	background-color:#FCF9EB;
	}

.gMapWrapL .inner{
	display:block;
	position:relative;
	}
.gMapWrap form{
	display:flex;
	align-items:center;
	flex-wrap: wrap;
	gap: 2%;
	}
.gMapChoice{
	flex-shrink: 0;
	width:49%;
	margin-bottom:5px;
	}

@media only screen and (min-width : 768px){
	.gMapWrap{
		width:49%;
		}
	.gMapWrap form{gap: 5px;}
	.gMapChoice{
		width:auto;
		}
}
/**現在の検索条件*************************************/
.selectedWrap{
	position:absolute;
	top:-10px;
	right:0;
	z-index:30;
	width:70%;
	max-width:588px;
	}
.accordion.selectedWrap{
		border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	overflow:hidden;
	} 
.selectedWrap .accordionTtl{
	}
.selectedWrap .accordionDtl{
	font-size:0.86em;
	line-height:1.3em;
	background:#fff;
	}
@media only screen and (min-width : 768px){
	.selectedWrap{
		width:49%;
		top:-60px;
	}
}
@media only screen and (min-width : 1025px){
	.selectedWrap{
		border-width:2px;
	}
}



/*********************************************************
地図
*/
#map{
	position:relative;
	background-color:#f7f7f7;
	width:100%;
	height:calc(100vh - 120px);
	/*overflow:hidden;*/ 
	}

.markerWrap{
	position:absolute;
	z-index:850;
	top:0;
	right:0;
	width:300px;
	}
.markerWrap2{
	position:absolute;
	z-index:851;
	top:60px;
	right:30px;
	width:300px;
	}
.markerWrap3{
	position:absolute;
	z-index:852;
	top:120px;
	right:60px;
	width:300px;
	}


.markerWrap > *{
	margin-top:10px;
	}
.markerWrap > *:first-child{
	margin-top:0;
	}
.marker{
	width:44px;
	height:51px;
	margin:auto;
	cursor:pointer;
	}


/*ポップアップ詳細*/
.markerWindow{
	position:relative;
	top:0;
	display:none;
	border:#f08336 solid 2px;
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	background-color:#fff;
	/*overflow:hidden;*/
	}

.markerTtl{
	background-color:#f08336;
	color:#fff;
	font-weight:700;
	padding:10px;
	padding-right:30px;
	}
.markerDtl{
	padding:10px;
	font-size:0.9em;
	line-height:1.5em;
	}
.markerDtl p{
	position:relative;
	border-bottom:#ccc solid 1px;
	padding:0 5px 5px 60px;
	margin-bottom:5px;
	}
.markerDtl p span{
	position:absolute;
	left:5px;
	top:0;
	display:block;
	font-weight:bold;
	width:60px;
	}
.markerDtl p.markerImg{
	padding:5px;
	}
.markerDtl p.markerImg img{
	max-height:120px;
	margin-left:auto;
	margin-right:auto;
	}
.markerDtl p.markerEtc{
	font-size:0.9em;
	line-height:1.3em;
	padding:5px;
	}
.markerWindowClose{
	position:absolute;
	top:5px;
	right:5px;
	background:#fff;
	color:#222;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	font-size:20px;
	line-height:30px;
	text-align:center;
	width:30px;
	height:30px;
	cursor:pointer;
	}


@media only screen and (min-width : 768px){
	#map{
		height: calc(100vh - 217px);
		}
	.marker{
		width:64px;
		height:74px;
		}
	.markerWindow{bottom:74px;}
}
@media only screen and (min-width : 1025px){
	#map{
		height: calc(100vh - 293px);
		}
	.markerWrap,
	.markerWrap2,
	.markerWrap3{
		width:400px;
		/*
    max-height: calc(100vh - 140px);
		overflow-y:auto;
		overflow-x:hidden;
		*/
		}
	.markerTtl{
		padding:15px;
		padding-right: 42px;
		font-size:1.1em;
		}
	.markerDtl{
		padding:20px;
		font-size: 1em;
		line-height: 1.5em;
		}
	.markerDtl p {
		padding: 10px 5px 10px 75px;
		margin-bottom: 10px;
		}
	.markerDtl p span{
		width:70px;
		 padding-top:10px;
		 }
	.markerDtl p.markerImg img{
		max-height:180px;
	}
	.markerDtl p.markerEtc{margin-bottom: 10px;}
	.markerWindowClose {
		top:12px;
		right:12px;
		}
}

/*********************************************************
詳細
*/

#detail #map{
	border:#ccc solid 1px;
	background-color:#fff;
	padding:1px;
	width:100%;
	height:450px;
	}


/*********************************************************
2nd
*/
/*TABLET*/
@media only screen and (min-width : 600px){
}
/*PC*/
@media only screen and (min-width : 1025px){
}
/*IE*/
@media all and (-ms-high-contrast:none){
}

