@charset "UTF-8";
:root{
	--color-brown: #4b3628;
	--color-gld: #d6be97;
}
.bg{
	background: url(../images/modelroom/bg.webp) no-repeat top center / cover;
}
.bg2{
	background: url(../images/modelroom/bg2.webp) no-repeat top center / cover;
}
.is-gold{
	color: var(--color-gld);
}
.general-section .bg2 .inner.model-inner{
	padding-top: 0;
}
.general-section .inner.model-inner{
	padding: 100px 0;
}
.general-section .inner.model-inner + .model-inner{
	padding-top: 0;
}
.bg-deco{
	background: url(../images/modelroom/bg-deco.webp) no-repeat top right / 42%;
}
.modelroom .secondary-heading{
	margin: 0 auto 1.5em;
	padding: 0 .2em .1em;
	width: fit-content;
	color: var(--color-brown);
	letter-spacing: .2rem;
	line-height: 1.3;
	position: relative;
}
.modelroom .secondary-heading::after{
	content: "";
	width: 100%;
	height: 1px;
	background: var(--color-brown);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.modelroom .bg2 .secondary-heading{
	margin-top: 2.5em;
	color: var(--color-gld);
}
.modelroom .bg2 .secondary-heading::after{
	background: var(--color-gld);
}
.modelroom .secondary-heading.no-border{
	margin: 0 0 1em 0;
	width: 100%;
	padding: 0;
}
.modelroom .secondary-heading.no-border::after{
	content: none;
}
.note + figure{
	margin-top: 80px;
}
.model-grid{
	margin: 56px 0 0 calc(50% - 50vw);
	width: calc(50% + 50vw);
	grid-template-columns: 1.56fr 1fr;
	gap: 56px;
}
.model-grid2{
	/* margin: 0 0 0 calc(50% - 50vw);
	width: calc(50% + 50vw); */
	grid-template-columns: calc(45% - 28px) calc(55% - 28px);
	gap: 70px 56px;
}
.model-flex{
	flex-direction: column;
	justify-content: space-between;
	gap: 56px;
}
.w-400{
	max-width: 400px;
	width: 100%;
}
.col-1{
	width: 100%;
}
.w-full{
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
.img-cover img{
	height: 100%;
	object-fit: cover;
}
.m-right-0{
	margin-inline: auto 0;
}
.h-fit{
	height: fit-content;
}
@media screen and (max-width: 767px){
	.general-section .inner.model-inner {
		padding: 60px 0;
	}
	.note + figure{
		margin-top: 48px;
	}
	.model-grid,
	.model-grid2{
		margin: 0 auto;
		width: 100%;
		grid-template-columns: auto;
		gap: 20px;
	}
	.model-grid{
		margin-top: 20px;
	}
	.model-flex{
		display: contents;
	}
	.sp-order-1{
		order: 1;
	}
	.sp-order-2{
		order: 2;
	}
	.sp-order-3{
		order: 3;
	}
	.sp-order-4{
		order: 4;
	}
	.sp-order-5{
		order: 5;
	}
	.sp-text-center{
		text-align: center;
	}
}