@charset "UTF-8";
#header {
	opacity: 0;
	visibility: hidden;
	transition-delay: 0.8s;
}
.is-load #header {
	opacity: 1;
	visibility: visible;
}
/* mv */
#mv {
    overflow: hidden;
    position: relative;
	height: 100vh;
    z-index: 10;
	opacity: 0;
	visibility: hidden;
	clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%) ;
	transition: all linear 3.0s;
}
.is-load #mv {
	opacity: 1;
	visibility: visible;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
#mv .cont {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 11;
}
#mv .mv-sliders {
	width: 43.75%;
	margin-right: clamp(145px, 8.88888vw, 188px);;
	/* max-width: 630px; */
	margin-left: auto;
	position: relative;
	z-index: 9;
}
#mv .mv-title {
	color: #51646B;
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    transition: all 0.3s ease-in-out;
}
#mv .mv-title .ttl {
    font-size: clamp(3.4rem,7.030555vw,10.7rem);
    line-height: 1;
}
#mv .mv-title img {
    font-size: clamp(8rem,13.54444vw,20.8rem);
    line-height: 1;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(15px);
    transition-delay: 1.5s;
}
#mv.on .mv-title img {
    transform: translateY(0);
    opacity: 1;
}
#mv .mv-text {
	color: #403D3C;
    position: absolute;
    top: 30%;
    left: 3%;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in-out;
    transition-delay: 2s;
}
#mv.on .mv-text {
    opacity: 1;
    visibility: visible;
}
#mv .mv-text .jp {
	font-size: 1.8rem;
	line-height: 1.7;
	margin-bottom: 20px;
}
#mv .mv-text .en {
	font-size: 1.6rem;
	line-height: 1.5;
}
#mv .mv-logo {
	/* width: clamp(150px, 25.5952381vw, 430px); */
	width: clamp(280px, 25.5952381vw, 430px);
}
#mv .image {
    background: #fff;
    position: relative;
	height: 100vh;
}
#mv .image img {
	height: 100%;
	object-fit: cover;
}
#mv .slider-button {
	color: #000;
	margin-top: 20px;
	display: flex;
	gap: 15px;
	justify-content: flex-end;
	align-items: center;
	padding: 0 40px;
}
#mv .slider-button .per {
	font-size: 1.4rem;
	letter-spacing: 0.02em;
}
#mv .slider-button .per .cur {
	transition: all 0.5s linear;
}
#mv .slider-button .btn-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
#mv .slider-button .btn-list .item {
	background: url(../imgs/common/arrow_black.png) no-repeat center center / 10px auto;
	cursor: pointer;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #000;
	transition: all 0.3s ease-in;
}
#mv .slider-button .btn-list .item-prev {
	transform: rotate(180deg);
}
#mv .slider-button .btn-list .item:hover {
	opacity: 0.7;
}
@media screen and (min-width:768px) and (max-width:1024px){
	#mv .image { height: auto;}
	#mv .cont { height: auto;}
}
@media screen and (max-width: 767px) {
	#mv {
		height: calc(100svh - 60px);
	}
    #mv .cont {
		display: flex;
		flex-direction: column;
		gap: 30px;
		padding: 30px 0 0 15px;
		height: calc(100svh - 60px);
	}
    #mv .mv-title .ttl {
		letter-spacing: 0.01em;
		margin-right: 10px;
	}
    #mv .mv-title .sub {
        letter-spacing: 0.01em;
    }
	#mv .mv-title {
		position: relative;
		display: flex;
		bottom: 0;
		left: 5px;
		align-items: center;
	}
	#mv .mv-text {
		position: relative;
		top: 0;
		left: 0;
		padding: 0 0 0 25%;
		transition-delay: 1s;
		margin: 0 0 30px;
	}
	#mv .mv-sliders {
		max-width: 100%;
		width: 100%;
		flex: 1;
	}
	#mv .mv-sliders *:not(.img-cap) { height: 100%; }
	#mv .image img {
		height: 100svh;
		object-fit: cover;
	}
	#mv .slider-button {
		padding: 0 15px;
		margin: 20px 0;
	}
	#mv {
		clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%);
	}
	.is-load #mv {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	}
}

/* merit */
#merit ul {
	display: flex;
	justify-content: center;
	padding: 0;
	position: relative;
	z-index: 0;
	margin: 0 -20px;
}
#merit ul li {
	padding: 100px 20px;
	position: relative;
	width: 25%;
}
#merit ul li .ttl {
	font-size: clamp(1.4rem, 1.1111111111111111111vw, 1.6rem);
}
#merit ul li .jp {
	font-size: clamp(0.95rem, 1.0416666666666666667vw, 1.5rem);
	line-height: 1.8;
	letter-spacing: 0.04em;
	margin-top: clamp(40px, 4.4444444444444444444vw, 64px);
}
#merit ul li .jp .num {
	font-size: 160%;
	line-height: 1;
}

@media screen and (min-width:768px) and (max-width:1024px){
	#merit ul {
		margin: 0 -3px;
	}
	#merit ul li {
		padding: 80px 3px;
	}
	#merit ul li .jp {
		letter-spacing: -0.02em;
	}
}

@media screen and (max-width: 767px){
	#merit ul {
		flex-wrap: wrap;
		margin: 0;
		padding: 56px 0;
	}
	#merit ul li {
		width: 100%;
		padding: 0;
	}
	#merit ul li + li { margin-top: 71px; }
	#merit ul li .jp {
		font-size: 1.5rem;
		letter-spacing: 0.01em;
		margin-top: 24px;
		padding-left: 56px;
	}
	#merit ul li .ttl {
		font-size: 1.6rem;
		display: flex;
		align-items: center;
		gap: 15px;
	}
	#merit ul li .ttl:after {
		content: "";
		display: inline-block;
		height: 1px;
		flex: 1;
		background: rgba(231,231,215,0.3);
	}
}

/* section common */

/* section information */
.information {
	border-top: 1px solid rgba(231,231,215,0.3);
	padding: 100px 0;
}
.information .block {
	display: flex;
	flex-wrap: wrap;
	gap: 56px 0;
}
.information .news {
	width: 75%;
}
.information .ttl {
	font-size: 1.6rem;
	width: 25%;
}
.information .news {
	display: grid;
	grid-template-columns: auto;
	gap: 40px;
	padding-left: 10px;
}
.information .news-item {
	border-bottom: 1px solid rgba(231,231,215,0.3);
	display: flex;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: 0.02em;
	padding-bottom: 40px;
}
.information .news-item dd { padding-left: 30px; }
.information .news-item dd img { width: auto; height: 14px; vertical-align: baseline;}
.information .news-item .dates { display: inline-block; }
@media screen and (max-width: 767px){
	.information {
		padding: 56px 0;
	}
	.information .ttl {
		width: 100%;
	}
	.information .news {
		width: 100%;
		gap: 20px;
		padding-left: 0;
	}
	.information .news-item {
		font-size: 1.2rem;
		letter-spacing: 0;
		padding-bottom: 20px;
	}
	.information .news-item dd {
		padding-left: 15px;
	}
}

.ad-block {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 80px;
}
.ad-block .ad-ttl {
	border: 1px solid rgba(231,231,215,0.3);
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 1.8rem;
	min-height: 60px;
	min-width: 135px;
	text-align: center;
}
.ad-block .ad-txt {
	font-size: 1.4rem;
	line-height: 1.75;
}
@media screen and (max-width: 767px){
	.ad-block {
		flex-direction: column;
		gap: 15px;
		margin-top: 40px;
	}
	.ad-block .ad-ttl {
		border-width: 0 0 1px 0;
		font-size: 1.5rem;
		min-height: 40px;
		min-width: 100%;
		text-align: left;
	}
	.ad-block .ad-txt {
		font-size: 1.2rem;
	}
}

/* .sec-residence */
.sec-residence { 
	padding: 0 0 clamp(80px, 11.111111111111111111vw, 160px);
	border-bottom: 1px solid rgba(81,100,107,0.75);
}
.sec-residence .inner { max-width: 1280px;}
.residence-bnr {
	margin-bottom: clamp(80px, 11.111111111111111111vw, 160px);
	position: relative;
}
.residence-bnr .bnr-ttl {
	position: absolute;
	top: 13.7%;
    left: 5.5%;
	z-index: 1;
	color: #E7E7D7;
}
.residence-bnr .bnr-ttl .ttl {
	font-size: clamp(5.6rem, 5.5555555555555555556vw, 8rem);
	letter-spacing: -0.02em;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: clamp(40px, 3.8194444444444444444vw, 55px);
}
.residence-bnr .bnr-ttl .ttl > span::before {
	content: "";
	background: url(../imgs/top/residence_icon.svg) no-repeat bottom center/contain;
	position: absolute;
    bottom: 0;
    width: 120%;
    height: 100%;
}
.residence-bnr .bnr-ttl .ttl-sub {
	font-size: clamp(1.8rem, 1.25vw, 1.8rem);
	letter-spacing: 0.012rem;
	margin-bottom: clamp(35px, 4.5138888888888888889vw, 65px);
}
.residence-bnr .bnr-ttl .txt {
	font-size: clamp(1.4rem, 0.97222222222222222222vw, 1.4rem );
	letter-spacing: 0.04rem;
	line-height: 1.75;	
}
.residence-photo01 {
	display: grid;
	grid-template-columns: 65.5% auto;
	max-width: 61.5%;
	margin: -6.5% 0 -3%;
}
.residence-photo01 .sm { margin: 124% 0 0 -40%;}
.residence-photo02 {
	display: grid;
	grid-template-columns: 33.5% auto;
	max-width:  40.5%;
	margin: 0 0 clamp(55px, 5.5555555555555555556vw, 80px) auto;
}
.residence-photo02 .lg { order: 1;}
.residence-photo02 .sm {
	margin: 150% -30% 0 0;
	z-index: 2;
}
.residence-block {
	display: grid;
	grid-template-columns: 57.5% auto;
	gap: clamp(40px, 4.5138888888888888889vw, 65px);
	align-items: flex-end;
}
.residence-block .ttl {
	font-size: clamp(2.6rem, 1.1111111111111111111vw, 1.6rem);;
	letter-spacing: 0.08em;
	line-height: 1.5;
	margin-bottom: clamp(25px, 4.5138888888888888889vw, 65px);
}
.residence-block .txt {
	font-size: clamp(1.4rem, 0.97222222222222222222vw, 1.4rem);
	letter-spacing: 0.05em;
	line-height: 1.75;
}
.br-ipad { display: none;}
@media screen and (max-width: 1024px){
	.br-ipad { display: block!important;}
}
@media screen and (max-width: 767px){
	.residence-bnr .bnr-ttl {
		top: 8.7%;
		left: 4%;
	}
	.residence-bnr .bnr-ttl .ttl {
		padding-bottom: 12px;
		margin-bottom: 60px;
	}
	.residence-bnr .bnr-ttl .ttl > span::before { width: 110%;}
	.residence-photo01 {
		grid-template-columns: 79% auto;
		margin: 40px 0 55px 0;
		max-width: 80%;	
	}
	.residence-photo01 .sm { margin: 247% 0 0 -100%;}
	.residence-photo02 {
		grid-template-columns: 41.5% auto;
		margin-right: -4%;
		max-width: 60%;
	}
	.residence-photo02 .sm { margin: 143% -21% 0 0;}
	.residence-block { grid-template-columns: 1fr;}
	.residence-block .img { margin-left: -4%;}
	.residence-block .txt { letter-spacing: 0;}
}

/* .sec-contents */
.sec-contents {
	padding: 160px 0;
}
.content-ttl {
	font-size: clamp(5.6rem, 5.55555vw, 8rem);
	line-height: 1;
	letter-spacing: 0;
	margin: 0 0 40px;
}
.content-block {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	width: 100%;
	max-width: 1064px;
	margin: 0 auto;
}
.content-block + .content-block { margin-top: 160px; }
.content-block .cont {
	width: 40.7%;
	padding-left: 128px;
}
.content-block .cont .ttl {
	font-size: 3.6rem;
	letter-spacing: 0;
	line-height: 1;
	margin: 0 0 64px;
}
.content-block .cont .txt {
	font-size: 1.4rem;
	letter-spacing: 0.01em;
	line-height: 1.7;
	margin: 0 0 64px;
}
.content-block .cont .links .btn {
	color: #51646B;
	display: inline-block;
	font-size: 1.6rem;
	letter-spacing: 0;
	line-height: 1;
	position: relative;
	z-index: 0;
	padding-right: 25px;
	transition: all 0.3s ease;
}
.content-block .cont .links .btn:hover {
	opacity: 0.7;
	padding-right: 35px;
}
.content-block .cont .links .btn.is-soon {
	color: #1C1C1C;
	pointer-events: none;
}
.content-block .cont .links .btn .icon {
	background: url(../imgs/common/arrow_black.svg) no-repeat center center / 100% auto;
	width: 16px;
	height: 16px;
	bottom: 0;
	right: 0;
	position: absolute;
}
.content-block .image {
	width: 59.3%;
	position: relative;
}
.content-block .image .img {
	width: calc(100% + (100vw - 1440px)/2);
	margin-left: calc(-1* (100vw - 1440px)/2);
}
.content-block:nth-child(even) {
	flex-direction: row-reverse;
}
.content-block:nth-child(even) .cont {
	padding-left: 0;
	padding-right: 128px;
}
.content-block:nth-child(even) .image .img {
	margin-left: 0 !important;
}
.content-block:nth-child(even) .image .img .img-cap { padding-right: 12px; }
@media screen and (max-width: 1180px) {
	.content-block .cont {
		padding-left: 40px;
	}
	.content-block:nth-child(even) .cont {
		padding-left: 0;
		padding-right: 40px;
	}
	.content-block .image .img {
		width: 85%;
		margin-left: auto;
	}
	.content-block:nth-child(even) .image .img .img-cap { padding-right: 5px; }
}
@media screen and (max-width: 1024px) {
	.content-block .cont .ttl,
	.content-block .cont .txt {
		margin: 0 0 30px;
	}
}
@media screen and (max-width: 767px) {
	.sec-contents {
		padding: 80px 0;
	}
	.content-block {
		flex-direction: row !important;
	}
	.content-block .image {
		width: 100%;
		margin: 0 0 40px;
	}
	.content-block .cont {
		width: 100%;
		padding: 0 !important;
	}
	.content-block .image .img {
		width: 100%;
		margin-left: 0 !important;
	}
	.content-block + .content-block {
		margin-top: 100px;
	}
	.content-block .cont .links { text-align: right; }
}

/* section map */
.sec-map .capt {
	display: flex;
	font-size: 1.1rem;
	justify-content: flex-end;
	margin-top: 20px;
}
.sec-map .g-map {
    overflow: hidden;
    height: 580px;
    width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
@media screen and (max-width: 767px){
	.sec-map .capt {
		justify-content: flex-start;
	}
	.sec-map .g-map {
		height: 320px;
	}
}