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


#searchArea-wrap {
	padding: 30px;
	background: #F9F9F9;
	border: 1px solid #DDDDDD;
	border-radius: 5px;
}

.searchAreaList {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-lines: multiple;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 0.75em;
	margin-top: 15px;
	color: #333;
	font-size: 15px;
	line-height: 1.6;
}
.search__check a {
	display: inline-block;
	padding: 0.3em 0.75em;
	background: #EEE;
	border-radius: 5px;
}
.searchAreaCity h4 + .searchAreaList {
	margin-top: 5px;
}
.searchAreaCity {
	margin-top: 20px;
}
.searchAreaCity h4 {
	position: relative;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.6;
}
.searchAreaCity h4 span {
	position: relative;
	padding-right: 0.4em;
	background: #F9F9F9;
	z-index: 1;
}
.searchAreaCity h4::after {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	left: 0;
	top: calc(50% - 2px);
	background: #DDD;
	z-index: 0;
}


input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}


.search__check > label {
	position: relative;
	padding: 0 0 0 22px;
}
.search__check > label:after, .search__check > label:before {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	transform: translate(0, -50%);
}
.search__check > label:after {
	left: 0;
	width: 16px;
	height: 16px;
	background: #FFF;
	border: 1px solid #CCC;
	border-radius: 50%;
}
.search__check > label:before {
	left: 3px;
	width: 12px;
	height: 12px;
	background: #006858;
	border-radius: 50%;
	z-index: 2;
	opacity: 0;
}
input[type=radio]:checked + label:before {
	opacity: 1;
}
.search__check > label:hover:after {
	border-color: #0171bd;
}

#searchAreaBtn {
	width: 300px;
	height: 60px;
	margin: auto;
	margin-top: 25px;
	margin-left: 175px;
	background: #006858;
	border: none;
	border-radius: 5px;
	color: #FFF;
	font-size: 24px;
}




#searchArea-wrap + #resultArea-wrap {
	margin-top: 30px;
}
.resultArea + .resultArea {
	margin-top: 30px;
}
#resultArea-wrap h3,
#resultArea-wrap h4 {
	margin-bottom: 3px;
	color: #006658;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.6;
}



.resultTable {
	width: 100%;
	border-right: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
}
.resultTableWrap + .resultTableWrap::before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	margin: 4px 0;
	background: #DDD;
}
.resultTable th,
.resultTable td {
	border-left: 1px solid #FFF;
	border-top: 1px solid #FFF;
}
.resultTable thead th {
	padding: 0.5em;
	background: #E6F0EE;
	font-size: 15px;
	line-height: 1.6;
	color: #333;
	text-align: center;
}
.resultTable .resultName {
	width: 35%;
}
.resultTable .resultManage {
	width: 35%;
}
.resultTable .resultTel {
	width: 30%;
}
.resultTable tbody th {
	padding: 0.5em;
	background: #F6F6F6;
	font-size: 15px;
	line-height: 1.6;
	color: #8C6C4C;
	font-weight: bold;
	text-align: center;
}
.resultTable tbody td {
	padding: 0.5em;
	background: #F6F6F6;
	font-size: 15px;
	line-height: 1.6;
	color: #333;
	text-align: center;
}
.resultTableWrap:nth-of-type(odd) .resultTable tbody th,
.resultTableWrap:nth-of-type(odd) .resultTable tbody td {
	background: #EFEFEF;
}
.resultTable tbody td.resultTime {
	padding: 1em;
	font-size: 11px;
}

#resultBack {
	margin-top: 30px;
}
#resultBack a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 60px;
	background: #888;
	border: none;
	border-radius: 5px;
	color: #FFF;
	font-size: 24px;
}