/* ============================================
   Hero Section
   ============================================ */
.hero {
	position: relative;
	overflow: hidden;
}

.hero__slider {
	position: relative;
	height: 73.8rem;
	overflow: hidden;
	border-radius: 0;
	margin: 0 0 0 2.4rem;
	width: calc(100% - 2.4rem);
	z-index: 1;
}

.hero__track {
	display: flex;
	height: 100%;
	will-change: transform;
}

.hero__slide {
	flex: 0 0 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.hero__img-wrap {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	transform-origin: top center;
}

.hero__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.3s ease;
}

.hero__slide:hover .hero__img-wrap img {
	opacity: 0.8;
}

.hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(137.68deg, rgba(43, 43, 43, 0) 31.26%, rgb(43, 43, 43) 100.33%);
	opacity: 0.3;
	pointer-events: none;
}

.hero__slider::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 0.8rem;
	height: 100%;
	background-color: var(--color-red);
	z-index: 3;
}

.hero__content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 73.8rem;
	pointer-events: none;
	z-index: 2;
}

.hero__content::before {
	content: "";
	background: url(../shared/images/union.svg) center / contain no-repeat;
	position: absolute;
	width: 70.2rem;
	height: 10.8rem;
	left: calc(50% - 35.1rem);
	top: -6.4rem;
}

.hero__voice {
	position: absolute;
	right: 13.4rem;
	bottom: 7.6rem;
	pointer-events: auto;
}

.hero__voice-title {
	font-family: var(--font-marcellus);
	font-size: 9.6rem;
	line-height: 0.8;
	letter-spacing: 0;
	color: var(--color-white);
	white-space: nowrap;
}

.hero__voice-subtitle {
	font-family: var(--font-serif);
	font-weight: 600;
	font-size: 2rem;
	line-height: 1.4;
	letter-spacing: 16%;
	color: var(--color-white);
	text-align: right;
	margin-top: 2.5rem;
	white-space: nowrap;
}

.hero__voice-credit {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.8rem;
	margin-top: 2.4rem;
}

.hero__voice-credit-text {
	font-family: var(--font-marcellus);
	font-size: 1.4rem;
	line-height: 0.9;
	letter-spacing: 4%;
	color: var(--color-white);
}

.hero__voice-credit-logo {
	width: 9.2rem;
	height: 2rem;
}

.hero__pagination {
	display: flex;
	align-items: flex-end;
	gap: 0.4rem;
	position: absolute;
	left: 13.5rem;
	bottom: 8.7rem;
	pointer-events: auto;
}

.hero__pagination-current {
	font-family: var(--font-frank);
	font-weight: 400;
	font-size: 4rem;
	line-height: 2.6rem;
	color: var(--color-white);
}

.hero__pagination-bar {
	display: flex;
	align-items: center;
	width: 10rem;
}

.hero__pagination-progress {
	display: block;
	width: 50%;
	height: 0.1rem;
	background-color: #d9d9d9;
}

.hero__pagination-remain {
	display: block;
	width: 50%;
	height: 0.1rem;
	background-color: #d9d9d9;
	opacity: 0.25;
}

.hero__pagination-total {
	font-family: var(--font-frank);
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 1.2rem;
	color: var(--color-white);
}

/* ============================================
   Intro Section
   ============================================ */
.intro {
	overflow: hidden;
	padding: 18.2rem 0 0;
	position: relative;
	z-index: 2;
}

.intro__content {
	box-sizing: content-box;
	display: flex;
	justify-content: flex-end;
	padding-right: 15rem;
	position: relative;
	z-index: 2;
}

.intro__bg-text {
	color: var(--color-bg-light-blue);
	font-family: var(--font-marcellus);
	font-size: 20rem;
	line-height: 0.9;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	left: -17.6rem;
	top: 0;
	white-space: nowrap;
	z-index: 1;
}

.intro__bg-text > span {
	position: relative;
	top: -2.5rem;
}

.intro__text {
	--line-height: 1.75;
	font-family: var(--font-serif);
	font-weight: 500;
	font-size: 2rem;
	line-height: var(--line-height);
	letter-spacing: 8%;
	color: var(--color-text-dark);
}

.intro__text:first-child:before {
	content: "";
	display: block;
	margin-top: calc((var(--line-height) - 1) * -0.5em);
	width: 0;
	height: 0;
}

.intro__text:last-child:after {
	content: "";
	display: block;
	margin-bottom: calc((var(--line-height) - 1) * -0.5em);
	width: 0;
	height: 0;
}

.intro__text + .intro__text {
	margin-top: calc(var(--line-height) * 1em);
}

/* ============================================
   Wave Decoration
   ============================================ */
.wave-decoration {
	width: 100%;
	overflow: hidden;
	line-height: 0;
	margin: -4rem 0;
	position: relative;
	z-index: 1;
}

.wave-decoration img {
	width: 128.33%;
	max-width: none;
	margin-left: -14.17%;
	height: auto;
}

/* ============================================
   Story Section
   ============================================ */
.story {
	margin-top: 14.4rem;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.story::before {
	content: "";
	background: url(../shared/images/wave-01.svg) center / contain no-repeat;
	position: absolute;
	width: 184.8rem;
	height: 24.8rem;
	left: 50%;
	top: 3.5rem;
	transform: translateX(-50%);
	z-index: 1;
}

.story__inner {
	box-sizing: content-box;
	max-width: var(--content-width);
	margin: 0 auto;
	padding: 0 2.4rem;
	position: relative;
	z-index: 2;
}

.story__header {
	margin-bottom: 9.4rem;
}

.story__title {
	display: flex;
	align-items: flex-end;
	gap: 2.7rem;
}

.story__title-en {
	font-family: var(--font-marcellus);
	font-size: 8.8rem;
	line-height: 0.8;
	letter-spacing: 0;
	color: var(--color-gold);
	font-weight: 400;
}

.story__title-ja {
	font-family: var(--font-serif);
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.5;
	letter-spacing: 4%;
	color: var(--color-blue);
}

.story__card {
	display: flex;
	align-items: stretch;
	gap: 9.6rem;
}

.story__card-text {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.story__card-title {
	--line-height: 1.4;
	font-family: var(--font-serif);
	font-weight: 500;
	font-size: 3rem;
	line-height: var(--line-height);
	letter-spacing: 8%;
	color: var(--color-blue);
}

.story__card-title::before {
	content: "";
	display: block;
	margin-top: -0.3em;
	width: 0;
	height: 0;
}

.story__card-room {
	font-family: var(--font-marcellus);
	font-size: 1.3rem;
	line-height: 0.9;
	letter-spacing: 8%;
	color: var(--color-text-medium);
	margin-top: 1.7rem;
}

.story__card-desc {
	font-family: var(--font-sans);
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.75;
	letter-spacing: 8%;
	color: var(--color-text-dark);
	margin-top: 3rem;
	max-width: 50.5rem;
	font-feature-settings: normal;
}

.story__card-link {
	display: inline-flex;
	align-items: center;
	gap: 1.6rem;
	margin-top: auto;
	align-self: flex-end;
}

.story__card-link-text {
	font-family: var(--font-serif);
	font-weight: 600;
	font-size: 1.8rem;
	letter-spacing: 0;
	color: var(--color-text-light);
}

.story__card-link-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5.2rem;
	height: 5.2rem;
	background-color: var(--color-red);
	border: 0.1rem solid var(--color-red);
	border-radius: 50%;
	color: var(--color-white);
	transition: background-color 0.3s ease, color 0.3s ease;
}

.story__card-link:hover .story__card-link-icon {
	background-color: var(--color-white);
	color: var(--color-red);
}

.story__card-link-icon svg {
	width: 1.2rem;
	height: 1.2rem;
	transform: rotate(-90deg);
}

.story__card-img {
	display: block;
	flex: 0 0 56.9rem;
	overflow: hidden;
}

.story__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	will-change: transform;
}

.story__card-img:hover img {
	transform: scale(1.1);
}

.story__divider {
	width: 100%;
	height: 0.1rem;
	background-color: var(--color-line-blue);
	margin: 8rem 0;
}

.story__divider:last-child {
	margin-bottom: 0;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
	margin-top: 16.5rem;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.gallery::before {
	content: "";
	background: url(../shared/images/wave-01.svg) center / contain no-repeat;
	position: absolute;
	width: 184.8rem;
	height: 24.8rem;
	left: 50%;
	top: 12rem;
	transform: translateX(-50%);
	z-index: 1;
}

.gallery__inner {
	max-width: calc(var(--content-width) + 4.8rem);
	margin: 0 auto;
	padding: 0 2.4rem;
	position: relative;
	z-index: 2;
}

.gallery__header {
	text-align: center;
	margin-bottom: 9.6rem;
}

.gallery__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.7rem;
}

.gallery__title-en {
	font-family: var(--font-marcellus);
	font-size: 8.8rem;
	line-height: 0.8;
	letter-spacing: 0;
	color: var(--color-gold);
	font-weight: 400;
}

.gallery__title-ja {
	font-family: var(--font-serif);
	font-weight: 500;
	font-size: 2rem;
	line-height: 2.3rem;
	letter-spacing: 4%;
	color: var(--color-blue);
}

.gallery__section {
	display: flex;
	gap: 3.4rem;
	align-items: stretch;
	margin-bottom: 8.8rem;
}

.gallery__section--movie {
	margin-bottom: 9.6rem;
}

.gallery__section-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3.2rem;
	width: 2.6rem;
	flex-shrink: 0;
}

.gallery__section-label-text {
	font-family: var(--font-marcellus);
	font-size: 3.2rem;
	line-height: 0.8;
	letter-spacing: 4%;
	color: var(--color-blue);
	writing-mode: vertical-rl;
	white-space: nowrap;
}

.gallery__section-label-line {
	flex: 1;
	width: 0.1rem;
	background-color: var(--color-line-blue);
}

/* Short Move */
.gallery__move {
	flex: 1;
	overflow: hidden;
}

.gallery__move-list {
	display: flex;
	gap: 0.8rem;
}

.gallery__move-item {
	flex: 1;
	min-width: 0;
}

.gallery__move-link {
	display: block;
	position: relative;
	overflow: hidden;
	aspect-ratio: 293/521;
}

.gallery__move-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	will-change: transform;
}

.gallery__move-link:hover > img {
	transform: scale(1.1);
}

.gallery__move-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	width: 7.2rem;
	height: 7.2rem;
	border-radius: 50%;
	border: 0.1rem solid rgba(255, 255, 255, 0.2);
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.3s ease;
}

.gallery__move-play::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 6.545rem;
	height: 6.545rem;
	border-radius: 50%;
	background: rgba(10, 10, 10, 0.4);
	transition: background 0.3s ease;
}

.gallery__move-play img {
	position: relative;
	z-index: 1;
	width: auto;
	height: 1.7rem;
	margin-left: 0.2rem;
}

.gallery__move-link:hover .gallery__move-play {
	border-color: rgba(192, 4, 39, 0.2);
}

.gallery__move-link:hover .gallery__move-play::before {
	background: rgba(192, 4, 39, 0.9);
}

/* Short Movie Scrollbar (PC: hidden) */
.gallery__move-scrollbar {
	display: none;
}

/* Photo Snap */
.gallery__photo {
	flex: 1;
}

.gallery__photo-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3.2rem 0.8rem;
}

.gallery__photo-item {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	align-items: flex-end;
}

.gallery__photo-img {
	width: 100%;
	overflow: hidden;
	aspect-ratio: 1/1;
	margin-bottom: 0.8rem;
}

.gallery__photo-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	will-change: transform;
}

.gallery__photo-img:hover img {
	transform: scale(1.1);
}

.gallery__photo-room {
	font-family: var(--font-marcellus);
	font-size: 1.3rem;
	line-height: 0.9;
	letter-spacing: 8%;
	color: var(--color-text-medium);
	text-align: right;
	width: 100%;
}

/* CTA Button */
.gallery__cta {
	text-align: center;
}

/* ============================================
   SP Responsive (max-width: 767px)
   ============================================ */
@media screen and (max-width: 767px) {
	/* Hero */
	.hero {
		padding-top: 0;
	}

	.hero__slider {
		height: 56.7rem;
		margin: 0;
		width: 100%;
	}

	.hero__content {
		top: 0;
		height: 56.7rem;
	}

	.hero__content::before {
		top: -7rem;
	}

	.hero__voice {
		right: 3.2rem;
		bottom: 7.6rem;
	}

	.hero__voice-title {
		font-size: 7.68rem;
	}

	.hero__voice-subtitle {
		font-size: 1.6rem;
		margin-top: 2.2rem;
	}

	.hero__voice-credit {
		margin-top: 2.7rem;
	}

	.hero__voice-credit-text {
		font-size: 1.12rem;
		letter-spacing: 0;
	}

	.hero__voice-credit-logo {
		width: 6.5rem;
		height: auto;
	}

	.hero__pagination {
		justify-content: space-between;
		left: 2.4rem;
		bottom: 3.2rem;
		right: 3.2rem;
	}

	.hero__pagination-current {
		font-size: 3.3rem;
	}

	.hero__pagination-bar {
		width: 25.6rem;
	}

	.hero__pagination-total {
		font-size: 1.6rem;
	}

	/* Intro */
	.intro {
		padding: 13.6rem 0 0;
	}

	.intro__content {
		padding: 0 2.4rem;
	}

	.intro__bg-text {
		font-size: 16rem;
		left: -62.9rem;
	}

	.intro__text {
		--line-height: 1.5;
		font-size: 1.8rem;
		line-height: var(--line-height);
	}

	/* Wave */
	.wave-decoration {
		margin: -2rem 0;
	}

	/* Story */
	.story {
		margin-top: 11.1rem;
	}

	.story::before {
		width: 70.2rem;
    height: 9.4rem;
    top: 3.2rem;
	}

	.story__inner {
		padding: 0 2.4rem;
	}

	.story__header {
		margin-bottom: 8rem;
	}

	.story__title {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.8rem;
	}

	.story__title-en {
		font-size: 6.4rem;
	}

	.story__title-ja {
		font-size: 1.6rem;
		line-height: 1.8rem;
	}

	.story__card {
		flex-direction: column-reverse;
		gap: 2.4rem;
		padding-bottom: 7.3rem;
		position: relative;
	}

	.story__card-title {
		--line-height: 1.3;
		font-size: 2.2rem;
		letter-spacing: 0;
		line-height: var(--line-height);
	}

	.story__card-room {
		font-size: 1.2rem;
		margin-top: 1.4rem;
	}

	.story__card-desc {
		font-size: 1.5rem;
		margin-top: 2.2rem;
		max-width: 100%;
	}

	.story__card-link {
		position: absolute;
		right: 0;
		bottom: 0;
	}

	.story__card-link-text {
		font-size: 1.5rem;
	}

	.story__card-link-icon {
		width: 4.2rem;
		height: 4.2rem;
	}

	.story__card-img {
		flex: none;
		width: 100%;
		order: -1;
	}

	.story__divider {
		margin: 4.6rem 0;
	}

	/* Gallery */
	.gallery {
		margin-top: 5.49rem;
	}

	.gallery::before {
		width: 70.2rem;
		height: 9.4rem;
		top: 3.2rem;
	}

	.gallery__inner {
		padding: 0 2.4rem;
	}

	.gallery__header {
		margin-bottom: 5.6rem;
	}

	.gallery__title {
		gap: 1.3rem;
	}

	.gallery__title-en {
		font-size: 6.4rem;
		line-height: 6.2rem;
	}

	.gallery__title-ja {
		font-size: 1.6rem;
		line-height: 1.5rem;
	}

	.gallery__section {
		gap: 1.8rem;
		margin-bottom: 5.6rem;
	}

	.gallery__section-label {
		gap: 1.6rem;
		width: 1.4rem;
	}

	.gallery__section-label-text {
		font-size: 1.8rem;
	}

	/* Short Move SP: horizontal scroll */
	.gallery__move {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		margin-right: -2.4rem;
		padding-right: 2.4rem;
	}

	.gallery__move::-webkit-scrollbar {
		display: none;
	}

	.gallery__move-list {
		width: max-content;
		gap: 0.64rem;
	}

	.gallery__move-item {
		flex: none;
		width: 24.4rem;
	}

	/* Short Movie section: reduce margin for scrollbar spacing */
	.gallery__section--movie {
		margin-bottom: 0;
	}

	.gallery__section--movie .gallery__section-label {
		margin-top: 1.5rem;
	}

	/* Short Movie Scrollbar */
	.gallery__move-scrollbar {
		display: block;
		height: 0.8rem;
		background-color: var(--color-bg-light-blue);
		position: relative;
		margin: 4.8rem -2.4rem 4.8rem 0;
	}

	.gallery__move-scrollbar-thumb {
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		background-color: var(--color-red);
		border-radius: 0;
		will-change: left;
	}

	/* Photo Snap SP */
	.gallery__photo-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.45rem 0.8rem;
	}

	.gallery__photo-room {
		font-size: 0.693rem;
	}
}

/* ============================================
   Hero Slider: Red bar extension for PC
   ============================================ */
@media screen and (min-width: 768px) {
	.hero__slider::after {
		width: 6.4rem;
	}
}
