
/*-===============
facade
===============-*/

.background-container .headline{
	position: fixed;
	width: 100%;
	padding: 50px 0 0 40px;
	z-index: 2;
	color: #fff;
	}
@media screen and (max-width: 768px) {
.background-container .headline{
	padding: 30px 0 0 20px;
	}
	}

.background-container .headline h1{
	font-size: 2em;
	line-height: 1em;
	}
@media screen and (max-width: 768px) {
.background-container .headline h1{
	font-size: 1.5em;
	}
	}

.background-container .headline h1.scrolled {
  color:#222;
}

/* 背景画像のコンテナ */
.background-container {
	position : relative;
	margin-top: 100px;
	width: 100%;
	height: calc(100svh - 100px);
	overflow: hidden;
	}
.background-container.detail {
	height: calc(100svh - 180px);
	}
@media screen and (max-width: 1024px) {
.background-container {
	margin-top: 70px;
	height: calc(100svh - 70px);
	}
.background-container.detail  {
	height: calc(100svh - 150px);
	}
	}
@media screen and (max-width: 768px) {
.background-container {
	margin-top: 70px;
	height: calc(100svh - 70px);
	}
.background-container.detail  {
	height: calc(100svh - 130px);
	}
	}

/* 各背景画像のスタイル */
.background-container .background-image {
	position: absolute;
	top: 0;
	width: 100%;
	height: calc(100svh - 100px);
	background-size: cover;
	background-position: center bottom;
	opacity: 1;
	transition: opacity 2s ease;
	}
.background-container.detail .background-image{
	height: calc(100svh - 180px);
	}
@media screen and (max-width: 1024px) {
.background-container .background-image {
	position: absolute;
	top: 0;
	width: auto;
	height: 100%;
	aspect-ratio: 2504 / 1408;
	background-size: cover;
	background-position: center bottom;
	opacity: 0;
	transition: opacity 2s ease;
	}
.background-container.detail .background-image{
	height: calc(100svh - 150px);
	}
.background-container .background-image.zoom-out {
	width: 100vw;
	height:  calc(100svh - 70px);
	background-position: center bottom;
	}
	}
@media screen and (max-width: 768px) {
.background-container.detail .background-image{
	height: calc(100svh - 130px);
	}
.background-container .background-image.zoom-out {
	width: 100vw;
	height:  calc(100svh - 70px);
	background-position: center bottom;
	}
	}

.background-container .background-image {
	background-image: url('../images/bg_rooms.jpg');
	}

.background-container.luxury_suite .background-image {
	filter: brightness(90%);
	background-image: url('../images/bg_rooms_luxury_suite.jpg');
	}

.background-container.premium_suite .background-image {
	filter: brightness(90%);
	background-image: url('../images/bg_rooms_premium_suite.jpg');
	}

.background-container.morito_suite .background-image {
	filter: brightness(90%);
	background-image: url('../images/bg_rooms_morito_suite.jpg');
	background-position: center center;
	}

.background-container.junior_suite .background-image {
	filter: brightness(90%);
	background-image: url('../images/bg_rooms_junior_suite.jpg');
	}

.background-container.premiumroom .background-image {
	filter: brightness(90%);
	background-image: url('../images/bg_rooms_premiumroom.jpg');
	}

.background-container.grandterrace .background-image {
	filter: brightness(90%);
	background-image: url('../images/bg_rooms_grandterrace.jpg');
	}

.background-container.granddeluxe .background-image {
	filter: brightness(90%);
	background-image: url('../images/bg_rooms_granddeluxe.jpg');
	}


.background-container.deluxe .background-image {
	filter: brightness(90%);
	background-image: url('../images/bg_rooms_deluxe.jpg');
	}


/* 表示される画像に透明度を設定 */
.background-container .background-image.active {
	opacity: 1;
	}

/* ズームアウトアニメーション */
@keyframes zoomOut {
	}
/* 奇数枚目の画像が右から左へ移動するアニメーション */
@keyframes slideLeftToRight {
	}
/* 偶数枚目の画像が左から右へ移動するアニメーション */
@keyframes slideRightToLeft {
	}

@media screen and (max-width: 1024px) {
	/* ズームアウトアニメーション */
	@keyframes zoomOut {
		0% {
			transform: scale(1.3); /* 最初は少し拡大 */
			}
		100% {
			transform: scale(1); /* ズームアウトして元のサイズに */
			}
		}
	/* 奇数枚目の画像が右から左へ移動するアニメーション */
	@keyframes slideLeftToRight {
		0% { transform: translateX(-50%); }
		100% { transform: translateX(0%); }
		}
	/* 偶数枚目の画像が左から右へ移動するアニメーション */
	@keyframes slideRightToLeft {
		0% { transform: translateX(0%); }
		100% { transform: translateX(-50%); }
		}
		}

@media screen and (max-width: 768px) {
	/* ズームアウトアニメーション */
	@keyframes zoomOut {
		0% {
			transform: scale(1.3); /* 最初は少し拡大 */
			}
		100% {
			transform: scale(1); /* ズームアウトして元のサイズに */
			}
		}
	/* 奇数枚目の画像が右から左へ移動するアニメーション */
	@keyframes slideLeftToRight {
		0% { transform: translateX(-50%); }
		100% { transform: translateX(0%); }
		}
	/* 偶数枚目の画像が左から右へ移動するアニメーション */
	@keyframes slideRightToLeft {
		0% { transform: translateX(0%); }
		100% { transform: translateX(-50%); }
		}
		}

@media screen and (max-width: 640px) {
	/* 奇数枚目の画像が右から左へ移動するアニメーション */
	@keyframes slideLeftToRight {
		0% { transform: translateX(-50%); }
		100% { transform: translateX(0%); }
		}
	/* 偶数枚目の画像が左から右へ移動するアニメーション */
	@keyframes slideRightToLeft {
		0% { transform: translateX(0%); }
		100% { transform: translateX(-50%); }
		}
	}

/* アニメーションの設定 */
.slide-right-to-left {
	animation: zoomOut 10s linear infinite;
	transform-origin: center center; /* 底辺のセンターを基準にズーム */
	}
.slide-left-to-right {
	animation: zoomOut 10s linear infinite;
	transform-origin: center center; /* 底辺のセンターを基準にズーム */
	}
/* ズームアウトアニメーションを適用 */
.zoom-out {
	animation: zoomOut 10s linear infinite;
	transform-origin: center bottom; /* 底辺のセンターを基準にズーム */
	}
@media screen and (max-width: 1024px) {
	/* アニメーションの設定 */
	.slide-right-to-left {
		animation: slideRightToLeft 23s linear infinite alternate;
		}
	.slide-left-to-right {
		animation: slideLeftToRight 23s linear infinite alternate;
		}
	/* ズームアウトアニメーションを適用 */
	.zoom-out {
		animation: zoomOut 10s linear infinite;
		transform-origin: center center; /* 底辺のセンターを基準にズーム */
		}
	}

.facade {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0 50px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	row-gap: 20px;
	}
@media screen and (max-width: 768px) {
.facade {
	padding: 0 20px;
	row-gap: 10px;
	}
	}

.background-container .facade h1{
	color: #fff;
	font-size: 3.5em;
	line-height: 1em;
	font-weight: 400;
	}
@media screen and (max-width: 768px) {
.background-container .facade h1{
	font-size: 2.2em;
	}
	}

.background-container .facade p{
	color: #fff;
	font-size: 2em;
	line-height: 1em;
	font-weight: 400;
	}
@media screen and (max-width: 768px) {
.background-container .facade p{
	font-size: 1.2em;
	}
	}

.background-container .scrolldown{
	position: absolute;
	left: 50%;
	bottom: 0;
	height: 80px;
	}
@media screen and (max-width: 768px) {
.background-container .scrolldown{
	height: 40px;
	}
	}

.background-container .scrolldown::after{
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 80px;
	background: #fff;
	animation: pathmove 2s ease-in-out infinite;
	opacity:0;
	}
@media screen and (max-width: 768px) {
.background-container .scrolldown::after{
	height: 40px;
	}
	}

@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
		background: #333;
	}
	30%{
		height:80px;
		top:0;
		opacity: 1;
	}
	60%{
		opacity: 1;
	}
	100%{
		height:0px;
		top:80px;
		opacity: 0;
	}
	}
@media screen and (max-width: 768px) {
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
		background: transparent;
	}
	30%{
		height:40px;
		top:0;
		opacity: 1;
	}
	60%{
		opacity: 1;
	}
	100%{
		height:0px;
		top:40px;
		opacity: 0;
	}
	}
	}

.background-container .reserve{
	position: absolute;
	left: calc(50% - 200px);
	bottom: 50px;
	width: 400px;
	height: 60px;
	}
@media screen and (max-width: 768px) {
.background-container .reserve{
	position: absolute;
	left: 5%;
	bottom: 20px;
	width: 90%;
	height: 60px;
	}
	}

.background-container .reserve a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #000;
	color: #fff;
	transition: background .6s, color .6s;
	}

.background-container .reserve a:hover{
	background: #333;
	color: #fff;
	}

.background-container .reserve p{
	font-size: 1em;
	line-height: 1em;
	}

.background-container div.name {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index:2;
	}
@media screen and (max-width: 768px) {
.background-container div.name {
	width: 100%;
	}
	}

.background-container > div.name > p{
	position: absolute;
	font-size: 3em;
	line-height: 1em;
	font-weight: 400;
	color:#fff;
	}
@media screen and (max-width: 768px) {
.background-container > div.name > p{
	font-size: 2em;
	}
	}



/*-===============
bar_reserve
===============-*/

.bar_reserve {
	position : fixed;
	bottom: 0;
	left: 0;
	background:#fff;
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-top: 1px solid #888;
	z-index:9999;
	}
@media screen and (max-width: 768px) {
.bar_reserve {
	height: 60px;
	}
	}

.bar_reserve div{
	width: 350px;
	height: 60px;
	}
@media screen and (max-width: 768px) {
.bar_reserve div{
	width: calc(100% - 10px);
	height: 50px;
	}
	}

.bar_reserve div a{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #222;
	transition: background .6s;
	}

.bar_reserve div a:hover{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background:#333;
	}

.bar_reserve div a p{
	font-size: 1em;
	line-height: 0;
	color:#fff;
	}


/*-===============
bar_reserve_twin
===============-*/

.bar_reserve.twin {
	position : fixed;
	bottom: 0;
	left: 0;
	background:#fff;
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
	border-top: 1px solid #888;
	z-index:9999;
	}
@media screen and (max-width: 768px) {
.bar_reserve.twin {
	column-gap: 7px;
	height: 70px;
	}
	}

.bar_reserve.twin div{
	width: 350px;
	height: 60px;
	}
@media screen and (max-width: 768px) {
.bar_reserve.twin div{
	width: calc(50% - 10px);
	}
	}

.bar_reserve.twin div a{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #222;
	transition: background .6s;
	}

.bar_reserve.twin div a:hover{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background:#333;
	}

.bar_reserve.twin div a p{
	font-size: 1em;
	line-height: 0;
	color:#fff;
	}
@media screen and (max-width: 768px) {
.bar_reserve.twin div a p{
	line-height: 1.3;
	text-align: center;
	}
	}



/*-===============
section-intro
===============-*/

.section-intro {
	position : relative;
	width: 100%;
	padding: 100px 0;
	text-align: center;
	}
@media screen and (max-width: 768px) {
.section-intro {
	padding: 80px 0;
	}
	}

.section-intro p{
	font-size: 1.1em;
	line-height: 2.5em;
	}
@media screen and (max-width: 768px) {
.section-intro p{
	font-size: 1em;
	line-height: 2.2em;
	}
	}



/*-===============
section-main
===============-*/

.section-main {
	position : relative;
	width: 80%;
	margin: auto;
	padding-bottom: 100px;
	}
@media screen and (max-width: 768px) {
.section-main {
	width: 100%;
	height: auto;
	overflow: hidden;
	padding-bottom: 60px;
	}
	}

.section-main div {
	aspect-ratio: 1015 / 507;
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	}
.section-main div.morito {
	align-items: flex-start;
	justify-content: center;
	}
@media screen and (max-width: 768px) {
.section-main div {
	width: 100%;
	}
	}

.section-main > div > p{
	position: absolute;
	font-size: 2.5em;
	line-height: 1em;
	font-weight: 300;
	color:#fff;
	}
@media screen and (max-width: 768px) {
.section-main > div > p{
	font-size: 1.6em;
	font-weight: 400;
	}
	}

.section-main div img {
	width: 100%;
	filter: brightness(90%);
	}

.section-main h2{
	margin-top: 80px;
	font-size: 1.8em;
	line-height: 1em;
	text-align: center;
	}
@media screen and (max-width: 768px) {
.section-main h2{
	margin-top: 50px;
	font-size: 1.3em;
	}
	}

.section-main > p{
	margin-top: 40px;
	font-size: 1em;
	line-height: 2em;
	text-align: center;
	}
@media screen and (max-width: 768px) {
.section-main > p{
	width: 86%;
	margin: auto;
	margin-top: 40px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break:break-all;
	}
.en .section-main > p{
	text-align: left;
	word-break:break-word;
	}
	}

.section-main a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 300px;
	height: 60px;
	font-size: 1em;
	line-height: 1em;
	margin: auto;
	margin-top: 50px;
	border-bottom: 1px solid #888;
	-webkit-transition: all .6s;
	-ms-transition: all .6s;
	transition: all .6s;
	}
@media screen and (max-width: 768px) {
.section-main a{
	width: 250px;
	height: 50px;
	margin-top: 30px;
	}
	}

.section-main a:hover{
	width: 350px;
	}
@media screen and (max-width: 768px) {
.section-main a:hover{
	width: 250px;
	}
	}


/*-===============
section-intro-detail
===============-*/

.section-intro-detail {
	position : relative;
	width: 100%;
	padding: 100px 0 90px;
	text-align: center;
	}
@media screen and (max-width: 768px) {
.section-intro-detail {
	padding: 80px 0 70px;
	}
	}

.section-intro-detail h2{
	font-size: 1.8em;
	line-height: 1em;
	text-align: center;
	}
@media screen and (max-width: 768px) {
.section-intro-detail h2{
	font-size: 1.3em;
	}
	}

.en .section-intro-detail h2{
	display: none;
	}

.section-intro-detail p{
	margin-top: 50px;
	font-size: 1.1em;
	line-height: 2.5em;
	}
@media screen and (max-width: 768px) {
.section-intro-detail p{
	font-size: 1em;
	line-height: 2.2em;
	}
	}

.en .section-intro-detail p{
	margin-top: 0;
	font-size: 1.1em;
	line-height: 2.5em;
	}


/*-===============
section-story
===============-*/

.section-slide {
	position : relative;
	width: 100%;
	overflow-x: hidden;
	padding-bottom: 100px;
	overflow: hidden;
	}
@media screen and (max-width: 1024px) {
.section-slide {
	padding-bottom: 60px;
	}
	}

.section-slide {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-direction: column;
	}

.section-slide .slide ._slider{
	width: 100%;
	}

.section-slide .slide ._slider ._slide div{
	cursor: grab;
	}
@media screen and (max-width: 1024px) {
.section-slide .slide ._slider ._slide div{
	}
	}

.section-slide .slide ._slider ._slide div img{
	-webkit-transition: all .6s;
	-ms-transition: all .6s;
	transition: all .6s;
	width: 100%;
	}
/*
.section-slide .slide ._slider ._slide .slick-dots{
	display: none !important;
	}
@media screen and (max-width: 1024px) {
.section-slide .slide ._slider ._slide .slick-dots{
	display: block !important;
	}
	}*/

.section-slide .slide .slick-prev {
	left: -2%;
	top: 40%;
	width: 3%;
	height: auto;
	aspect-ratio: 1 / 1;
                }
@media screen and (max-width: 1024px) {
.section-slide .slide .slick-prev {
	display: none !important;
	}
	}

.section-slide .slide .slick-next {
	right: -2%;
	top: 40%;
	width: 3%;
	height: auto;
	aspect-ratio: 1 / 1;
	}
@media screen and (max-width: 1024px) {
.section-slide .slide .slick-next {
	display: none !important;
	}
	}

.slick-slide {
	margin: 0 35px;
	}
@media screen and (max-width: 1024px) {
.slick-slide {
	margin: 0 0;
	}
	}

.section-slide .button{
	width: 100%;
	padding: 0 50px;
	}
@media screen and (max-width: 1024px) {
.section-slide .button{
	padding: 0 7%;
	}
	}

.section-slide .button p a{
	line-height: 1em;
	padding-bottom: 3px;
	padding-right: 0;
	border-bottom: 1px solid #888;
	-webkit-transition: all .6s;
	-ms-transition: all .6s;
	transition: all .6s;
	}

.section-slide .button p a:hover{
	padding-right: 40px;
	}

.section-slide  p.rn{
	margin-top: 10px;
	font-size: .9em;
	line-height: 1em;
	}

.section-slide  p.cs{
	margin-top: 10px;
	font-size: .9em;
	line-height: 1em;
	text-align: right;
	}





/*-===============
section-spec
===============-*/

.section-spec {
	width: calc(60% - 70px);
	min-width: 900px;
	margin: auto;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-wrap: nowrap;
	flex-direction: row;
	column-gap: 100px;
	padding-bottom: 80px;
	}
@media screen and (max-width: 1024px) {
.section-spec {
	width: 86%;
	min-width: 86%;
	column-gap: 50px;
	}
	}
@media screen and (max-width: 768px) {
.section-spec {
	width: 86%;
	min-width: 86%;
	margin: auto;
	display: block;
	padding-bottom: 30px;
	}
	}

@media screen and (max-width: 768px) {
.section-spec > div.amenity{
	margin-top: 30px;
	}
	}

.section-spec > div{
	width: 100%;
	}

.section-spec h3{
	font-size: 1.6em;
	line-height: 1em;
	text-align: left;
	padding-bottom: 40px;
	}
@media screen and (max-width: 768px) {
.section-spec h3{
	font-size: 1.4em;
	padding-bottom: 30px;
	}
	}

.section-spec .inner{
	width: 100%;
	border-top:1px solid #888;
	padding: 40px 0;
	}
@media screen and (max-width: 768px) {
.section-spec .inner{
	padding: 30px 0;
	}
	}

.section-spec .inner h4{
	margin-bottom: 30px;
	font-size: 1.3em;
	line-height: 1em;
	text-align: left;
	}
@media screen and (max-width: 768px) {
.section-spec .inner h4{
	margin-bottom: 20px;
	font-size: 1.2em;
	}
	}

.section-spec .inner p{
	font-size: 1em;
	line-height: 1.8em;
	text-align: left;
	}

.section-spec .inner p sup{
	font-size: .6em;
	}

.section-spec .inner img{
	margin-top: 30px;
	display: block;
	width: 100%;
	}

.section-spec .inner p.rn{
	font-size: .9em;
	line-height: 1em;
	text-align: center;
	}


/*-===============
section-back
===============-*/

.section-back{
	width: 100%;
	border-top: 1px solid #888;
	padding-top: 40px;
	padding-bottom: 100px;
	}
@media screen and (max-width: 768px) {
.section-back{
	padding-top: 30px;
	padding-bottom: 70px;
	}
	}

.section-back a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 60px;
	font-size: 1em;
	line-height: 1em;
	margin: auto;
	margin-top: 50px;
	border-bottom: 1px solid #888;
	-webkit-transition: all .6s;
	-ms-transition: all .6s;
	transition: all .6s;
	}
@media screen and (max-width: 768px) {
.section-back a{
	width: 150px;
	height: 50px;
	margin-top: 30px;
	}
	}

.section-back a:hover{
	width: 250px;
	}
@media screen and (max-width: 768px) {
.section-back a:hover{
	width: 150px;
	}
	}






