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

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

/* 各背景画像のスタイル */
.background-container .background-image {
	position: absolute;
	top: 0;
	width: 100%;
	height: calc(100svh - 70px);
	background-size: cover;
	background-position: center bottom;
	opacity: 0;
	transition: opacity 2s ease;
	}
@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 .background-image.zoom-out {
	width: 100vw;
	height:  calc(100svh - 70px);
	background-position: center bottom;
	}
	}

.background-container .background-image.number1 {
	background-image: url('../images/bg-photo1.jpg');
	}
.background-container .background-image.number2 {
	background-image: url('../images/bg-photo2.jpg');
	}
.background-container .background-image.number3 {
	background-image: url('../images/bg-photo3.jpg');
	}
.background-container .background-image.number4 {
	background-image: url('../images/bg-photo4.jpg');
	}
.background-container .background-image.number5 {
	background-image: url('../images/bg-photo5.jpg');
	}
.background-container .background-image.number6 {
	background-image: url('../images/bg-photo6.jpg');
	}
.background-container .background-image.number7 {
	background-image: url('../images/bg-photo7.jpg');
	}
.background-container .background-image.number8 {
	background-image: url('../images/bg-photo8.jpg');
	}
@media screen and (max-width: 1024px) {
.background-container .background-image.number1 {
	background-image: url('../images/bg-photo1sp.jpg');
	}
	}


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

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

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

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

/* アニメーションの設定 */
.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 button {
	display: flex;
	align-items: center;
	justify-content: center;
	color:#fff;
	background:#000;
	height: 100%;
	width: 100%;
	transition: background .6s;
	cursor: pointer;
	border: 0;
	font-size: 1em;
	font-family: "futura-pt", "Lato","Zen Kaku Gothic New", sans-serif;
	}

.background-container .reserve button:hover {
	background:#333;
	}

.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;
	}


/*-===============
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-about
===============-*/

.section-about {
	position : relative;
	width: 100%;
	height: calc(100svh - 100px);
	}
@media screen and (max-width: 1024px) {
.section-about {
	height: calc(100svh - 70px);
	}
	}

.section-about .bg{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(../images/bg_about-pc.jpg);
	background-size: cover;
	}

.section-about .bg img{
	height: 100%;
	}

.section-about .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) {
.section-about .facade {
	height: calc(100svh - 70px);
	padding: 0 20px;
	row-gap: 10px;
	}
	}

.section-about .facade h2{
	font-size: 2em;
	line-height: 1em;
	}
@media screen and (max-width: 768px) {
.section-about .facade h2{
	font-size: 1.5em;
	}
	}

.en .section-about .facade h2{
	font-size: 2.3em;
	}
@media screen and (max-width: 768px) {
.en .section-about .facade h2{
	font-size: 1.8em;
	}
	}

.section-about .facade p{
	margin-top: 30px;
	}
@media screen and (max-width: 768px) {
.section-about .facade p{
	margin-top: 20px;
	}
	}

.section-about .facade p a{
	font-size: 1em;
	line-height: 1em;
	padding-bottom: 3px;
	padding-right: 0;
	border-bottom: 1px solid #333;
	-webkit-transition: all .6s;
	-ms-transition: all .6s;
	transition: all .6s;
	}
@media screen and (max-width: 768px) {
.section-about .facade p a{
	font-size: .9em;
	}
	}

.section-about .facade p a:hover{
	padding-right: 40px;
	}


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

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

.section-main .parallax-img {
	width: 100%;
	}
@media screen and (max-width: 768px) {
.section-main .parallax-img {
	width: 160%;
	}
	}

.section-main .parallax-img img {
	width: 100%;
	margin-bottom: 4.55%;
	}

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

.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:normal;
	}
	}


.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-story
===============-*/

.section-story {
	position : relative;
	width: 100%;
	padding: 80px 0 80px;
	overflow-x: hidden;
	border-top: 1px solid #888;
	}
@media screen and (max-width: 768px) {
.section-story {
	padding: 50px 0 60px;
	}
	}

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

.section-story .headline{
	width: 100%;
	padding: 0 50px;
	}
@media screen and (max-width: 768px) {
.section-story .headline{
	padding: 0 7%;
	}
	}

.section-story .headline h3{
	font-size: 1.6em;
	line-height: 1em;
	}
@media screen and (max-width: 768px) {
.section-story .headline h3{
	font-size: 1.4em;
	}
	}

.section-story .headline p{
	margin-top: 10px;
	font-size: .9em;
	}
@media screen and (max-width: 768px) {
.section-story .headline p{
	margin-top: 5px;
	font-size: .7em;
	}
	}

.section-story .slide{
	width: 100%;
	padding: 50px 0 60px;
	}

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

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

.section-story .slide ._slider ._story div a{
	}

.section-story .slide ._slider ._story div a img{
	-webkit-transition: all .6s;
	-ms-transition: all .6s;
	transition: all .6s;
	width: 100%;
	}

.section-story .slide ._slider ._story div a:hover img{
	transform: translate(0, -6px);
	}

.section-story .slide ._slider ._story div a p{
	margin-top: 20px;
	font-size: 1em;
	text-align: left;
	line-height: 1.6em;
	-webkit-transition: all .6s;
	-ms-transition: all .6s;
	transition: all .6s;
	}

.section-story .slide ._slider ._story div a p.vol{
	display: inline-block;
	padding-bottom: 3px;
	border-bottom: 1px solid transparent;
	}

.section-story .slide ._slider ._story div a:hover p.vol{
	padding-bottom: 3px;
	padding-right: 40px;
	border-bottom: 1px solid #888;
	}

.section-story .slide ._slider ._story div a p.title{
	text-align: justify;
	text-justify: inter-ideograph;
	word-break:break-all;
	margin-top: 10px;
	}
@media screen and (max-width: 768px) {
.section-story .slide ._slider ._story div a p.title{
	margin-top: 6px;
	}
	}

.en .section-story .slide ._slider ._story div a p.title{
	text-align: left;
	word-break: normal;
	}

.section-story .slide ._slider ._story .slick-dots{
	display: none !important;
	margin-top: 60px;
	}
@media screen and (max-width: 768px) {
.section-story .slide ._slider ._story .slick-dots{
	margin-top: 20px;
	}
	}

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

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

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

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

.section-story .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-story .button p a:hover{
	padding-right: 40px;
	}


/*-===============
section-topics
===============-*/

.section-topics {
	position : relative;
	width: 100%;
	padding: 80px 0 80px;
	overflow-x: hidden;
	border-top: 1px solid #888;
	}
@media screen and (max-width: 768px) {
.section-topics {
	padding: 50px 0 60px;
	}
	}

.section-topics {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-direction: column;
	}
@media screen and (max-width: 768px) {
.section-topics {
	display: block;
	}
	}

.section-topics .headline{
	width: 700px;
	margin: auto;
	}
@media screen and (max-width: 768px) {
.section-topics .headline{
	width: 86%;
	}
	}

.section-topics .headline h3{
	font-size: 1.6em;
	line-height: 1em;
	}
@media screen and (max-width: 768px) {
.section-topics .headline h3{
	font-size: 1.4em;
	}
	}

.section-topics .topics{
	margin-top: 50px;
	}
@media screen and (max-width: 768px) {
.section-topics .topics{
	margin-top: 30px;
	}
	}

.section-topics .topics div{
	width: 100%;
	}

.section-topics .topics div a{
	width: 100%;
	border-bottom: 1px solid #dedede;
	padding: 20px 0;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	flex-wrap: nowrap;
	column-gap: 30px;
	transition: border-bottom .6s;
	}
@media screen and (max-width: 768px) {
.section-topics .topics div a{
	column-gap: 10px;
	}
	}

.section-topics .topics div a:hover{
	border-bottom: 1px solid #888;
	}

.section-topics .topics div a p{
	line-height: 1.6em;
	}

.section-topics .topics div a p:first-child{
	width: 100px;
	}
.section-topics .topics div a p:last-child{
	width: calc(100% - 100px);
	}
@media screen and (max-width: 768px) {
.section-topics .topics div a p:first-child{
	width: 80px;
	font-size: .9em;
	}
.section-topics .topics div a p:last-child{
	width: calc(100% - 80px);
	}
	}

.section-topics .topics div span{
	width: 100%;
	border-bottom: 1px solid #dedede;
	padding: 20px 0;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	flex-wrap: nowrap;
	column-gap: 30px;
	transition: border-bottom .6s;
	}
@media screen and (max-width: 768px) {
.section-topics .topics div span{
	column-gap: 10px;
	}
	}

.section-topics .topics div span p{
	line-height: 1.6em;
	}

.section-topics .topics div span p:first-child{
	width: 100px;
	}
.section-topics .topics div span p:last-child{
	width: calc(100% - 100px);
	}
@media screen and (max-width: 768px) {
.section-topics .topics div span p:first-child{
	width: 80px;
	font-size: .9em;
	}
.section-topics .topics div span p:last-child{
	width: calc(100% - 80px);
	}
	}


.section-topics .button{
	margin-top: 50px;
	width: 100%;
	}
@media screen and (max-width: 768px) {
.section-topics .button{
	margin-top: 30px;
	}
	}

.section-topics .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-topics .button p a:hover{
	padding-right: 40px;
	}


/*-===============
section-access
===============-*/

.section-access {
	position : relative;
	width: 100%;
	padding: 80px 0 80px;
	overflow-x: hidden;
	border-top: 1px solid #888;
	}
@media screen and (max-width: 768px) {
.section-access {
	padding: 40px 0 50px;
	}
	}

.section-access {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-direction: column;
	}
@media screen and (max-width: 768px) {
.section-access {
	display: block;
	}
	}

.section-access .headline{
	width: 700px;
	margin: auto;
	}
@media screen and (max-width: 768px) {
.section-access .headline{
	width: 86%;
	}
	}

.section-access .headline h3{
	font-size: 1.6em;
	line-height: 1em;
	}
@media screen and (max-width: 768px) {
.section-access .headline h3{
	font-size: 1.4em;
	}
	}

.section-access p.address{
	margin-top: 50px;
	font-size: 1em;
	line-height: 1.8em;
	}
@media screen and (max-width: 768px) {
.section-access p.address{
	margin-top: 40px;
	}
	}

.section-access .button{
	margin-top: 40px;
	width: 100%;
	}
@media screen and (max-width: 768px) {
.section-access .button{
	margin-top: 20px;
	}
	}

.section-access .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-access .button p a:hover{
	padding-right: 40px;
	}










