@charset "UTF-8";

/*============================================================================================
↓個室情報======================================================================================
============================================================================================*/
.roomCont {
	width: min(88.2%, 1320px);
	margin-inline: auto;
	margin-bottom: 120px;
}
.roomCont:last-child {
    margin-bottom: 0;
}
.roomCont-wrap {
	display: grid;
	grid-template-columns: min(60%, 640px) 1fr;
    align-items: center;
	column-gap: 50px;
	row-gap: 30px;
}
.roomCont-img {
    
}
.roomCont-img-inn {
    width: 100%;
    height: 100%;
    aspect-ratio: 8/5;
    overflow: hidden;
}
.roomCont-img .roomCont-img-inn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.roomCont-body {
	
}
.roomCont-body .roomCont-body-heading {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
    margin-bottom: 30px;
}
.roomCont-body .roomCont-body-heading .ttl {
    color: #444;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(2.2em,4vw,3em);
    font-style: normal;
    font-weight: 500;
    line-height: 173.333%;
}
.roomCont-body .roomCont-body-heading .note {
	color: #444;
    font-family: "Noto Serif JP", sans-serif;
    font-size: clamp(1.2em,2vw,1.6em);
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}
.roomCont-body .txt {
	color: #444;
	font-family: "Noto Sans JP";
	font-size: 1.8em;
	font-weight: 400;
	line-height: 177.778%;
}
.roomCont-body .txt p+p {
	margin-top: 1em;
}

@media screen and (max-width: 768px) {
	.roomCont {
		margin-bottom: 60px;
	}
	.roomCont-wrap {
		grid-template-columns: 1fr;
	}
}