/* CSS Document */

/*========= メイン画像 =========*/
.pageHead {
	background: none;
	height: 550px;
	position: relative;
	z-index: 0;
}
.pageHead .bg img {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
}
.roomName	{
	background: rgba(35,24,21,0.9);
	color: #fff;
	font-size: 3rem;
	margin: 0 auto;
	padding: 40px 50px 50px;
	text-align: center;
	min-width: 454px;
	word-break: break-all;
}
.roomName	span {
	border-top: 1px solid #93802A;
	color: #93802A;
	display: block;
	font-size: 1.4rem;
	letter-spacing: 1px;
	padding: 10px 0;
	margin-top: 10px;
}

@media screen and (max-width:767px) {
	.pageHead {
		height: 337px;
	}
	.roomName	{
		font-size: 2.7rem;
		min-width: auto;
		width: 90%;
		padding: 30px 10%;
	}
	.roomName span {
		font-size: 1.2rem;
	}
}

/* ------------------------------
    lead
------------------------------ */
.lead {
	padding: 55px 0 60px;
}

.lead p {
	font-weight: 500;
	font-size: 1.6rem;
	letter-spacing: 0.5px;
	line-height: 2;
	text-align: center;
	word-break: break-all;
}
.lead p + p {
	margin-top: 28px;
}

@media screen and (max-width: 767px) {
	.lead {
		padding: 45px 0;
	}
	.lead p {
		line-height: 1.8;
	}
	.lead p + p {
		margin-top: 0;
	}
}

/*========= 広さ =========*/
.size {
	background: #93802A;
	border-radius: 30px;
	color: #fff;
	display: block;
	font-size: 1.8rem;
	margin: 10px auto 0;
	padding: 4px 30px;
	text-align: center;
	width: 320px;
	word-break: break-all;
}
.ie .size {
	padding: 7px 30px 2px;
}

@media screen and (max-width: 767px) {
	.size {
		margin: 40px auto 0;
		font-size: 1.4rem;
		padding: 10px;
	}
}

/*========= スライドショー =========*/
.roomSlide {
	position: relative;
}
.roomSlide .slick-slide {
	margin: 0 10px;
	height: 550px;
}

.roomSlide .slick-slide img {
	height: 100%;
	width: 100%;
	object-fit: cover;
  font-family: 'object-fit: cover;'; /*IE対策*/
}

.roomSlide .slick-dots {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
}
.roomSlide .slick-dots li {
	background: #A09972;
	border-radius: 10px;
	color: transparent;
	display: inline-block;
	font-size: 0;
	height: 15px;
	margin: 0 10px;
	opacity: 0.4;
	width: 15px;
}
.roomSlide .slick-dots li.slick-active {
	opacity: 1;
}

@media screen and (max-width: 960px) {
	.roomSlide .slick-slide {
		height: 250px;
	}
}
@media screen and (max-width: 767px) {
	.roomSlide .slick-slide {
		margin: 0 3px;
		height: 190px;
	}
	.roomSlide .slick-dots li {
		height: 11px;
		margin: 0 5px;
		width: 11px;
	}
}

/*========= 写真 =========*/
.photo {
	margin-top: 65px;
}
.photo ul li {
	width: 49%;
}
.photo ul li img {
	object-fit: cover;
 	font-family: 'object-fit: cover;'; /*IE対策*/
	height: 350px;
	width: 100%;
}
.photo ul li:nth-child(2n) {
	margin-left: 2%;
}
@media screen and (max-width: 767px) {
	.photo ul li {
		width: 100%;
	}
	.photo ul li img {
		height: 200px;
	}
	.photo ul li:nth-child(2n) {
		margin-left: 0;
	}
	.photo ul li + li {
		margin-top: 15px;
	}
}
/*========= 詳細情報 =========*/
.information {
	padding: 60px 0;
}
.information table {
	border-collapse: collapse;
	max-width: 955px;
	margin: 0 auto;
	width: 100%;
}
.information table th, .information table td {
	border: 1px solid #B2B2B3;
	padding: 14px;
	word-break: break-all;
}
.information table th {
	background: #EEE8DE;
	width: 180px;
	text-align: center;
}
.information table td {
	padding: 14px 30px;
}
.ie .information table th, .ie .information table td {
	padding: 16px 30px 10px;
}
@media screen and (max-width: 767px) {
	.information {
		padding: 60px 0 10px;
	}
	.information table {
		border-bottom: 1px solid #B2B2B3;
	}
	.information table th, .information table td {
		border-bottom: none;
		display: block;
		line-height: 1.8;
		padding: 8px 5%;
		width: 100%;
	}
}

/*========= 部屋一覧 =========*/

.roomIndex {
	margin-top: 35px;
	width: 100%;
}
.roomIndex .unit {
	height: 197px;
}
.roomIndex .unit .ttl p {
	font-size: 2rem;
}
.roomIndex .unit.current:before {
	background: rgba(0, 0, 0, 0);
}
.roomIndex .unit .ttl p {
	text-shadow: 0 0 5px rgba(0,0,0,1);

}
@media screen and (min-width:1026px) {
	.roomIndex .unit.current:hover:before {
		background: rgba(0, 0, 0, 0.8);
	}
}


@media screen and (max-width: 1200px) {
	.roomIndex .unit .ttl p {
		font-size: 1.6rem;
	}
	.roomIndex .unit .ttl p span {
		font-size: 1.1rem;
	}
	.roomIndex .unit .hover .info p.more {
		font-size: 1.2rem;
	}
}
@media screen and (max-width:1025px) {
	.roomIndex .unit {
		margin: 0 0 2vw;
		width: 49%;
	}
	.roomIndex .unit:nth-child(2n) {
		margin-left: 2%;
	}
}
@media screen and (max-width: 767px) {
	.room .inner {
		width: 100%;
	}
	.roomIndex {
		display: block;
	}
	.roomIndex .unit {
		margin: 0 0 2vw;
		height: 143px;
		width: 100%;
	}
	.roomIndex .unit:nth-child(2n) {
		margin-left: 0;
	}
	.roomIndex .unit .bg {
		height: 143px;
		object-fit: cover;
	}
	.roomIndex .unit .ttl p {
		font-size: 2rem;
		line-height: 1.2;
	}
	.roomIndex .unit .ttl p span {
		font-size: 1.4rem;
		margin-bottom: 10px;
	}
}
