@charset "UTF-8";
:root {
	--color-brw: #a48b78;
	--color-grey: #595757;
	--color-grey2: rgba(200, 202, 204,0.2);
	--color-wh: #fff;
	--color-bk: #333;
	--font-goc: "游ゴシック", "Yu Gothic", YuGothic, "游ゴシック体", "Lucida Grande", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
	--font-min: "fot-tsukuaoldmin-pr6n", sans-serif;
	--font-forum: "Forum", "Noto Serif JP", serif;
}

.p-modelroom-mv-wrap {
    background: url(../images/modelroom/mv.webp) no-repeat top center;
    background-size: cover;
    padding: 10vw 0;
}
@media screen and (max-width: 767px) {
    .p-modelroom-mv-wrap {
        background: url(../images/modelroom/mv-sp.webp) no-repeat top center;
        background-size: cover;
        padding: 12vw 0 13vw;
    }
}
.modelroom-mv-text-wrap {
    position: absolute;
	color: var(--color-wh);
	letter-spacing: .5rem;
	z-index: 2;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 100%;
    top: 30%;
}
.modelroom-title {
    font-size: 28px;
    font-family: var(--font-min);
	font-weight: normal;
    writing-mode: vertical-rl;
    line-height: 2;
    font-feature-settings: initial;
    display: inline-block;
    margin-bottom: 60px;
}
.modelroom-text {
    font-size: 60px;
	font-family: var(--font-forum);
	font-weight: normal;
    margin-bottom: 16px;
    letter-spacing: .65rem;
}
.modelroom-lead {
    font-size: 28px;
    font-family: var(--font-min);
	font-weight: normal;
    line-height: 1.4;
}
.mr-link-btn-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    width: 80%;
    margin: 50px auto 0;
    z-index: 1;
}
.mr-link-btn{
    font-size: 22px;
    line-height:1.4;
    letter-spacing: .1rem;
    color: #fff;
    background: linear-gradient(106deg, #421314 5%, #6f4b26 13%, #b1954f 45%, #eadcba 61%, #a38358 86%, #8d5429 100%) center;
    background-size: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 20px);
    padding: 16px 0;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
    position: relative;
    transition: background-size 0.5s;
}
.mr-link-btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 14px;
    margin: auto;
    aspect-ratio: 14 / 18;
    width: 18px;
    background: url(../images/modelroom/mr_arrow.svg) center no-repeat;
    background-size: contain;
}
.text-parking {
    line-height: 1.5;
    margin-top: 60px;
    font-size: 1.6rem;
    letter-spacing: .2rem;;
}
.p-modelroom-mv h1 {
    font-size: clamp(5.4rem, 3.46rem + 6.0625vw, 15.1rem);
    font-family: var(--font-forum);
    font-weight: normal;
    color: var(--color-wh);
    letter-spacing: 0.1em;
    position: absolute;
    z-index: 2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    line-height: 0.6;
    left: 5%;
    bottom: 0;
}
@media screen and (max-width: 1280px) {
    .modelroom-title {
        font-size: 22px;
        margin-bottom: 40px;
    }
    .modelroom-text {
        font-size: 48px;
        margin-bottom: 12px;
    }
    .modelroom-lead {
        font-size: 22px;
    }
    .mr-link-btn-wrap{
        gap: 40px;
        margin: 40px auto 0;
    }
    .mr-link-btn{
        font-size: 22px;
        padding: 12px 0;
    }
}
@media screen and (max-width: 1024px) {
    .modelroom-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .modelroom-text {
        font-size: 40px;
        margin-bottom: 12px;
    }
    .modelroom-lead {
        font-size: 14px;
    }
    .mr-link-btn-wrap{
        gap: 40px;
        margin: 20px auto 0;
    }
    .mr-link-btn{
        font-size: 18px;
        padding: 12px 0;
    }
    .text-parking {
        font-size: 10px;
        margin-top: 22px;
    }
}
@media screen and (max-width: 767px) {
    .p-modelroom-mv h1 {
        writing-mode: vertical-lr;
        top: 10%;
        left: 0;
    }
    .modelroom-mv-text-wrap {
        letter-spacing: .2rem;
    }
    .modelroom-title {
        font-size: 18px;
        line-height: 2.4;
        margin-bottom: 30px;
    }
    .modelroom-text {
        font-size: 30px;
        margin-bottom: 10px;
        letter-spacing: .3rem;
    }
    .modelroom-lead {
        font-size: 14px;
        line-height: 1.6;
    }
    .mr-link-btn-wrap{
        gap: 20px;
        width: 90%;
    }
    .mr-link-btn{
        font-size: 14px;
        letter-spacing: .1rem;
        width: 100%;
        padding: 12px 0;
    }
    .mr-link-btn::after {
        right: 14px;
        width: 12px;
    }
}


.tab-content-wrapper {
    position: relative;
    width: 100%;
}
.slide-container {
    position: absolute; /* 重ね合わせる */
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0; /* 通常は透明 */
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s; /* CSSでフェードさせる */
    z-index: 1;
}
.slide-container.is-active {
    position: relative; /* 表示されるものだけ高さを保持させる */
    opacity: 1; /* 表示 */
    visibility: visible;
    z-index: 2;
}

.modelroom-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
    margin-bottom: 30px;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}
.mr-tab-link {
    padding: 12px 0;
	background: #7c7c7b;
	color: #fff;
	font-size: 24px;
	line-height: 1;
	transition: all .8s ease-out;
	display:inline-block;
	width: 300px;
}
.mr-tab-link.is-active {
	background-image: linear-gradient(120deg, rgba(157,149,125,1) 0%, rgba(126,120,101,1) 100%);
}
.modelroom-slide-text {
    font-size: 48px;
	font-family: var(--font-forum);
	font-weight: normal;
    margin-bottom: 24px;
    letter-spacing: .65rem;
}
.visitor-modelroom-slick-container{
	margin-bottom: 16px;
}
.visitor-modelroom-slick-container .slide-arrow{
	position: absolute;
	z-index: 1;
	top: 50%;
	left: unset;
	right: unset;
	transform: translate(0%, -50%);
	width: 3%;
	height: auto;
}
.visitor-modelroom-slick-container .slide-arrow.prev-arrow{
	left: 1%;
}
.visitor-modelroom-slick-container .slide-arrow.next-arrow{
	right: 1%;
}
@media (max-width: 768px) {
	.visitor-modelroom-slick-container .slide-arrow{
		width: 5%;
	}
	.visitor-modelroom-slick-container .slide-arrow.prev-arrow{
		left: 1.5%;
	}
	.visitor-modelroom-slick-container .slide-arrow.next-arrow{
		right: 1.5%;
	}
}
/* slick矢印設定 */
.slick-next{
	right: 0;
}
.slick-prev{
	left: 0;
}
.slick-nav{
	margin: 0 0 0 -8px;
}
.slick-nav .slick-item{
	margin: 8px;
	width: calc(100% / 5 - 16px) !important;
	cursor: pointer;
	outline: none;
	background:#333;
}
.slick-nav .fit-img{
	opacity: 0.4;
}
.slick-nav .slick-item.slick-current .fit-img{
	opacity: 1;
}
.slick-item .caption{
	position: absolute;
	right: 1.2%;
    bottom: .5%;
	font-size: 1.2rem;
	color: #fff;
}
.slick-item .is-dark{
	color: #333;
}
.is-none{
	display: none;
}
@media (max-width: 1000px) {
	.modelroom-container{
		padding: 40px 0;
	}
}
@media (max-width: 768px) {
	.modelroom-tabs{
        gap: 12px;
		margin-bottom: 16px;
	}
	.modelroom-tabs .flex-wrapper{
		flex-wrap: wrap;
	}
	.mr-tab-link,
	a.mr-tab-link{
		font-size: 16px;
		width: 75%;
	}
    .modelroom-slide-text {
        font-size: 28px;
        margin-bottom: 24px;
    }
    .modelroom-container{
        padding: 7% 0;
    }
	.slick-item .caption{
		font-size: .7rem;
	}
	.slick-nav{
		margin: 0 0 0 -2px;
	}
	.slick-nav .slick-item{
		margin: 2px;
		width: calc(100% / 3 - 4px) !important;
	}
}

.mr-link-block .inner{
    padding-top: 0;
}
@media (max-width: 768px) {
    .mr-link-block .inner{
        padding: 60px 0;
    }
}