@charset "UTF-8";

.intro{
	text-align: center;
	width: 96%;
	margin:0 auto 20px;
}

.areaList{
    display: -ms-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-evenly;
    width: 96%;
    margin: 0 auto 5%;	
}

.areaList li{
	-ms-flex-preferred-size: calc((100% - 2%) / 3);
    flex-basis: calc((100% - 2%) / 3);
    /*margin: 0 2% 2% 0;*/
	height: 40px;
	line-height: 40px;
    text-align: center;
}


.areaList li:nth-child(3n){
	margin: 0 0 2% 0;
}	

.areaList li a{
	display: block;
	border:1px solid #000;
	background-color:#000;
	color: #fff; 
}

.areaList li a:hover{
	background-color:#fff;
	color: #000;	
}

.heartTtl{
	background: url("../img/common/icon_heart_mid.png") no-repeat left center;
	padding-left: 30px;
	font-size: 1.8rem;
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 1px solid #C60000; 
}



.hotelBox{
	width: 96%;
	margin:0 auto 30px;
}

.hotelTable table{
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 10px;
	border: 1px solid #000;	
}


.hotelTable table th{
	background-color: #000;
	border-bottom: 1px solid #fff;
	color: #fff;
	text-align: center;
	padding: 2px 0;
}

.hotelTable table tr:not(:nth-child(1)) th{
	width: 30%;
}

.hotelTable table td{
	padding: 0 0 0 5px;
	border-bottom: 1px solid #000;
}

.hotelTable table tr.last-child th,
.hotelTable table tr.last-child td{
	border-bottom: none;
}

.heartTtl{
	font-size: 1.8rem;
}


@media screen and (min-width:767px) {
	.intro{
		width: 890px;
		margin:0 auto 30px;
	}

	.areaList{
	    width: 890px;
	    margin: 0 auto 50px;
	    justify-content: start;	
	}

	.areaList li {
		-ms-flex-preferred-size: calc((100% - 10%) / 6);
	    flex-basis: calc((100% - 10%) / 6);
	    margin: 0 2% 2% 0;
	}

	.areaList li:nth-child(3n){
		margin: 0 2% 2% 0;
	}

	.areaList li:nth-child(6n){
		margin: 0 0% 2% 0;
	}

	.hotelBox{
		width: 890px;
	}


	.hotelTable table{
		margin-bottom: 0;
		border-bottom: none;
		border-right: none;
	}


	.hotelTable table th{
		border-bottom: none;
		border-right:1px solid #fff;
		padding: 10px;
	}

	.hotelTable table tr:not(:nth-child(1)) th{
		width: auto;
	}

	.hotelTable table td{
		padding: 5px;
		border-right: 1px solid #000;
	}

	.hotelTable table th.last-child{
		border-right:none;
	}

	.hotelTable table th:nth-child(1),
	.hotelTable table th:nth-child(3)
	{
		width: 30%;
	}

	.hotelTable table th:nth-child(2),
	.hotelTable table th:nth-child(4)
	{
		width: 20%;
	}
	.hotelTable table th:nth-child(4) {
    border-right: solid 1px #000;

}	