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

/* 背景画像のコンテナ */
.background-container {
	position : relative;
	margin-top: 70px;
	width: 100%;
	height: calc(100svh - 70px);
	overflow: hidden;
	}
@media screen and (max-width: 768px) {
.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: 768px) {
.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: 768px) {
.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: 768px) {
	/* ズームアウトアニメーション */
	@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: 768px) {
	/* アニメーションの設定 */
	.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 bottom; /* 底辺のセンターを基準にズーム */
		}
	}

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


/*-===============
section-about
===============-*/

.section-about {
	position : relative;
	width: 100%;
	height: calc(100svh - 70px);
	}
@media screen and (max-width: 768px) {
.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-story
===============-*/

.section-story {
	position : relative;
	width: 100%;
	padding: 40px 0 50px;
	overflow-x: hidden;
	}
@media screen and (max-width: 768px) {
.section-story {
	}
	}

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






