@charset "utf-8";

/*-----------
header
-----------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 13px 30px;
	z-index: 100;
}
header .inner {
	display: flex;
	align-items: center;
	width: 100%;
}
header .logo ul {
	display: flex;
	align-items: center;
	gap: 15px;
}
header .logo ul li a {
	display: block;
	line-height: 0;
}
header .logo .logo_ba img {
	height: 64px;
	width: auto;
}
header .logo .logo_gsc img {
	height: 52px;
	width: auto;
}
header .language {
	margin-left: auto;
	background: rgba(217, 217, 217, 0.8);
	border-radius: 22.5px;
	padding: 0.5em 1.2em;
	align-items: center;
	gap: 0.3em;
	font-size: 16px;
	color: #000;
	font-family: "WDXL Lubrifont JP N", sans-serif;
}
header .language li {
	line-height: 1;
	font-weight: 400;
}
header .language li:first-of-type {
	margin-right: 0.8em;
	letter-spacing: 0.05em;
}
header .language li a {
	color: #000;
	padding: 0.1em 0.3em;
}
header .language li.active a {
	color: #E23849;
}
header .language li + li + li::before {
	content: "｜";
	color: #000;
}

header .btn-header {
	margin-left: 1em;
	font-size: 16px;
	padding: 0.5em 1.5em;
	border: 2px solid #fff;
	box-shadow: inset 0 0 0 2px #000;
	background: #EE7C89;
}

header .share-btn {
	width: 42px;
	height: 42px;
	margin-left: 0.8em;
	cursor: pointer;
	position: relative;
}
header .share-btn img {
	width: 100%;
	height: auto;
}

.share-dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	pointer-events: none;
}
.share-btn:hover .share-dropdown {
	pointer-events: auto;
}
.share-dropdown a {
	display: block;
	width: 36px;
	height: 36px;
	line-height: 0;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}
.share-btn:hover .share-dropdown a {
	opacity: 1;
	transform: translateY(0);
}
.share-btn:hover .share-dropdown a:nth-child(1) { transition-delay: 0s; }
.share-btn:hover .share-dropdown a:nth-child(2) { transition-delay: 0.05s; }
.share-btn:hover .share-dropdown a:nth-child(3) { transition-delay: 0.1s; }
.share-dropdown a img {
	width: 100%;
	height: auto;
}

.btn_nav { display: none; }
.menu_sp { display: none; }

/*-----------
MV (Hero)
-----------*/
#mv {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 768px;
	overflow: hidden;
	z-index: 1;
	background: #000;
}
#mv::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/mv_bg.jpg) center 78% no-repeat;
	background-size: cover;
	z-index: 0;
}
#mv::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40%;
	background: linear-gradient(to bottom, transparent, #006DE9);
	mix-blend-mode: multiply;
	z-index: 1;
}
#mv_inner {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	height: 100vh;
	min-height: 768px;
	padding: 0 5%;
	z-index: 2;
}
#mv_textbox {
	padding-bottom: 12vh;
	text-align: right;
}
h1.title-group {
	margin: 0;
}
h1.title-group img {
	width: auto;
	max-width: 800px;
	height: auto;
}
.title-mobile { display: none; }

/*-----------
Sticky bar
-----------*/
#stickybar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: rgba(0, 0, 0, 0.4);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: 0.3s ease-in;
	pointer-events: none;
}
#stickybar.visible {
	opacity: 1;
	pointer-events: auto;
}
#stickybar .btn-sticky {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	padding: 0.5em 5.5em;
	font-size: 14px;
	line-height: 1.4;
}
.btn-sticky .small {
	font-size: 12px;
	font-weight: 500;
}
.btn-sticky .large {
	font-size: 18px;
	font-weight: 900;
}
.btn-sticky .arrow {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
}
.btn-sticky .arrow img {
	width: 100%;
	height: auto;
}

/*-----------
Fixed background
-----------*/
#bg-fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.bg-fixed-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/city_new_bg.png) center top no-repeat;
	background-size: cover;
}
.bg-fixed-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(174deg, rgba(23, 56, 104, 0.7) 12%, rgba(103, 192, 255, 0.7) 73%);
	mix-blend-mode: multiply;
}

/*-----------
Decorations (parallax)
-----------*/
#decorations {
	position: absolute;
	top: 100vh;
	left: 0;
	width: 100%;
	z-index: 1;
	pointer-events: none;
}
.deco-main {
	width: 100%;
	opacity: 0.8;
	position: relative;
	will-change: transform;
}
.deco-main img {
	width: 100%;
	height: auto;
	max-width: none;
}
.deco-mobile { display: none; }

/*-----------
Introduction
-----------*/
#introduction {
	position: relative;
	z-index: 2;
	padding: 13vw 0 80px;
	overflow: hidden;
}
.intro-pill {
	position: absolute;
	margin-top: 16vw;
	top: 55%;
	right: 3vw;
	width: 150vw;
	height: 42vw;
	background: linear-gradient(to left, #EE7A89, #EF8585);
	border-radius: 1000px;
	border: 2px solid #fff;
	z-index: 1;
	transform: translateY(-50%);
}
#introduction .inner {
	position: relative;
	display: flex;
	align-items: center;
	width: 92%;
	max-width: 1800px;
	margin: 0 auto;
	z-index: 3;
}
.intro-text {
	word-break: break-all;
	width: 50%;
	padding-right: 3%;
}
:lang(en) .intro-text {
	word-break: keep-all;
	overflow-wrap: break-word;
}
.intro-heading {
	margin-top: 5.2vw;
	margin-bottom: 1em;
	text-align: right;
}
.intro-heading img {
	width: 100%;
	max-width: 42vw;
	height: auto;
}
.intro-body {
	margin-top: 10.5vw;
	font-size: clamp(13px, 0.95vw, 18px);
	font-weight: 500;
	color: #fff;
	line-height: 2;
}
.intro-body p {
	margin-bottom: 0;
}
.intro-image {
	width: 50%;
	position: relative;
	margin-top: -10.5vw;
}
.intro-shadow {
	position: absolute;
	top: 5px;
	left: -7px;
	width: 100%;
	height: auto;
	opacity: 0.5;
	filter: brightness(0);
	pointer-events: none;
}
.intro-main {
	position: relative;
	width: 100%;
	height: auto;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.intro-quote {
	position: relative;
	z-index: 3;
	margin-top: 1.5em;
	padding-left: 5.2vw;
	opacity: 0.4;
}
.intro-quote img {
	height: 4.7vw;
	width: auto;
	max-width: none;
}
.quote-mobile { display: none; }

/*-----------
POINT section
-----------*/
#point {
	position: relative;
	z-index: 2;
	padding: 200px 0 80px;
}
#point .section-title {
	text-align: center;
	padding-right: 0;
}
#point .inner {
	width: 92%;
	max-width: 1700px;
	margin: 0 auto;
}
.points-grid {
	display: flex;
	gap: 36px;
	align-items: flex-start;
}
.point-card {
	flex: 1;
	background: rgba(255, 255, 255, 0.7);
	border: 4px solid #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 18px 15px rgba(61, 181, 255, 0.6);
	overflow: hidden;
	padding-bottom: 25px;
}
.point-card.card-2 {
	margin-top: 80px;
}
.card-image {
	padding: 20px 20px 0;
	overflow: hidden;
}
.card-image a {
	display: block;
	height: 100%;
}
.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
	transition: 0.3s;
}
.card-image a:hover img {
	transform: scale(1.05);
}
.card-text {
	padding: 20px 25px 0;
	font-size: 20px;
	font-weight: 900;
	color: #000;
	line-height: 2;
}

/*-----------
GALLERY section
-----------*/
#gallery {
	position: relative;
	z-index: 2;
	padding: 80px 0;
	margin-top: 40px;
}
#gallery .section-title {
	text-align: center;
	padding-right: 0;
}
.gallery-stripe {
	position: absolute;
	top: 50%;
	left: -20%;
	width: 140%;
	height: 725px;
	background: linear-gradient(211deg, #EE7A89 37%, #EF8585 63%);
	transform: translateY(-50%) rotate(-10.25deg);
	z-index: 0;
}
#gallery .swiper {
	position: relative;
	z-index: 2;
	padding-bottom: 50px;
}
#gallery .swiper-slide {
	height: auto !important;
	overflow: hidden;
	border-radius: 20px;
}
#gallery .swiper-slide a {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
}
#gallery .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s;
}
#gallery .swiper-slide:hover img {
	transform: scale(1.05);
}
.swiper-button-prev,
.swiper-button-next {
	width: 50px !important;
	height: 50px !important;
	color: #fff !important;
}
.swiper-button-prev::after,
.swiper-button-next::after {
	font-size: 24px !important;
}
.swiper-pagination-bullet {
	width: 22px !important;
	height: 12px !important;
	border-radius: 100px !important;
	background: #fff !important;
	opacity: 1 !important;
}
.swiper-pagination-bullet-active {
	width: 37px !important;
	background: #4EABDC !important;
	border: 1px solid #292c32 !important;
}

/*-----------
PV section
-----------*/
#pv {
	position: relative;
	z-index: 2;
	padding: 40px 0 80px;
}
.pv-container {
	width: 60%;
	max-width: 1140px;
	margin: 0 auto;
}
.pv-placeholder {
	position: relative;
	width: 100%;
	aspect-ratio: 1140 / 641;
	background: #d9d9d9;
	border: 7px solid #fff;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
}
.pv-placeholder p {
	font-size: 48px;
	font-weight: 900;
	color: #000;
}

/*-----------
Reserve section
-----------*/
#reserve {
	position: relative;
	z-index: 2;
	padding: 80px 0;
	text-align: center;
}
.reserve-label {
	font-size: 28px;
	font-weight: 900;
	color: #fff;
	letter-spacing: -0.05em;
	margin-bottom: 0.3em;
}
.reserve-period {
	font-size: 44px;
	font-weight: 900;
	color: #fff;
	letter-spacing: -0.02em;
	margin-bottom: 1em;
}
.reserve-cta .btn-reserve {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	padding: 0.5em 2.5em;
	font-size: 32px;
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: -0.03em;
	border: 7px solid #292c32;
	box-shadow: 0 0 18px 15px rgba(61, 181, 255, 0.6), inset 0 0 0 0 transparent;
	border-radius: 100px;
	position: relative;
}
.reserve-cta .btn-reserve::before {
	content: "";
	position: absolute;
	inset: -9px;
	border: 9px solid #fff;
	border-radius: 100px;
	pointer-events: none;
}
.reserve-cta .arrow {
	width: 24px;
	flex-shrink: 0;
}
.reserve-cta .arrow img {
	width: 100%;
	height: auto;
}

/*-----------
Online / Shop info
-----------*/
#online {
	position: relative;
	z-index: 2;
	width: 92%;
	max-width: 1000px;
	margin: 0 auto 80px;
}
.online-triangle {
	text-align: center;
	margin-bottom: -20px;
	position: relative;
	z-index: 1;
}
.online-triangle img {
	width: 93px;
	height: auto;
}
.online-inner {
	background: #fff;
	border-radius: 10px;
	padding: 50px;
	color: #333;
}
.online-inner h3 {
	font-size: 20px;
	font-weight: 900;
	color: #EF8585;
	margin-bottom: 0.8em;
}
.online-inner p {
	font-size: 16px;
	font-weight: 500;
	line-height: 2.1;
	margin-bottom: 0.5em;
}
.online-inner hr {
	border: none;
	margin: 30px 0;
}

/*-----------
Specifications
-----------*/
#specifications {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 0 0 80px;
}
#specifications .section-title {
	text-align: center;
	padding-right: 0;
	position: relative;
	z-index: 5;
	margin-bottom: -45px;
}
.specs-title-mobile { display: none; }
.specs-card {
	background: rgba(255, 255, 255, 0.7);
	padding: 30px 40px;
	width: 100%;
}
.specs-card dl {
	max-width: 800px;
	margin: 0 auto;
}
.spec-row {
	display: flex;
	align-items: baseline;
	padding: 8px 0;
	font-size: 20px;
	color: #000;
}
.spec-row dt {
	width: 320px;
	flex-shrink: 0;
	font-weight: 700;
	text-align: left;
	padding-right: 30px;
	line-height: 2;
}
.spec-row dd {
	flex: 1;
	font-weight: 500;
	line-height: 2;
	padding-left: 30px;
}

/*-----------
Footer
-----------*/
footer {
	position: relative;
	z-index: 2;
	padding: 40px 0 120px;
	overflow: hidden;
}
.footer-gradient {
	display: none;
}
.footer-inner {
	text-align: center;
	position: relative;
	z-index: 2;
}
.footer-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
}
.footer-logo-ba {
	height: 50px;
	width: auto;
}
.footer-logo-gsc {
	height: 36px;
	width: auto;
}
.copyright-wrap {
	text-align: center;
}
.copyright {
	font-size: 12px;
	font-weight: 400;
	color: #fff;
	line-height: 1.7;
}

/*-----------
Responsive - Tablet
-----------*/
@media screen and (max-width: 1400px) {
	.card-image { height: 450px; }
	.section-title img { height: 48px; }
	.reserve-period { font-size: 36px; }
	.reserve-cta .btn-reserve { font-size: 24px; }
}

@media screen and (max-width: 1080px) {
	/* Introduction - switch to mobile pill layout */
	#introduction { padding: 120px 0 80px; }
	#introduction .inner {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}
	.intro-text { display: contents; }
	.intro-heading {
		order: 1;
		text-align: center;
		margin-top: 2em;
		padding: 0 3%;
		width: 100%;
	}
	.intro-heading img { max-width: 80vw; }
	.intro-image {
		order: 2;
		width: 95%;
		margin-top: 0;
		position: relative;
		z-index: 2;
	}
	.intro-body {
		order: 3;
		font-size: 15px;
		margin-top: -60px;
		padding: 80px 5% 8em;
		width: 100%;
		line-height: 2;
		background: linear-gradient(to left, #EE7A89, #EF8585);
		border-top: 2px solid #fff;
		border-bottom: 2px solid #fff;
	}
	.intro-quote {
		margin-top: -6em;
		padding: 0 5%;
		opacity: 0.4;
		position: relative;
		z-index: 3;
	}
	.quote-desktop { display: none; }
	.intro-quote img.quote-mobile { display: block; width: 55vw; max-width: 100%; height: auto; }
	.intro-quote img.quote-desktop { display: none; }
	.intro-pill { display: none; }

	.points-grid { gap: 20px; }
	.card-image { height: 350px; }
	.card-text { font-size: 16px; }
	h1.title-group img { max-width: 550px; }
	.gallery-stripe { height: 350px; width: 140%; left: -20%; }
}


/*-----------
Responsive - Mobile Menu (890px)
-----------*/
@media screen and (max-width: 890px) {
	header {
		padding: 10px 15px;
	}
	header .inner {
		flex-wrap: nowrap;
	}
	header .logo {
		flex-shrink: 1;
		min-width: 0;
	}
	header .language { display: none; }
	header .btn-header { display: none; }
	header .share-btn { display: none; }
	.btn_nav {
		display: flex;
		background: #EE7C89;
		border: 1px solid #fff;
		width: 40px;
		height: 40px;
		border-radius: 100px;
		margin-left: auto;
		z-index: 200;
		padding: 5px;
		justify-content: center;
		align-items: center;
		cursor: pointer;
	}
	.btn_nav span {
		width: 80%;
		height: 2px;
		background: #fff;
		display: flex;
		position: relative;
	}
	.btn_nav span::before,
	.btn_nav span::after {
		content: "";
		display: block;
		width: 100%;
		height: 2px;
		background: #fff;
		position: absolute;
		transition: all 0.2s linear;
	}
	.btn_nav span::before { top: -8px; }
	.btn_nav span::after { bottom: -8px; }
	.btn_nav.active span::before {
		transform: rotate(-45deg);
		top: calc(50% - 1px);
	}
	.btn_nav.active span::after {
		transform: rotate(45deg);
		bottom: calc(50% - 1px);
	}
	.btn_nav.active span {
		background: transparent;
	}
	.menu_sp {
		background: rgba(238, 124, 175, 0.72);
		width: 100%;
		height: 200px;
		position: fixed;
		top: -200px;
		left: 0;
		transition: all 0.2s linear;
		display: block;
		z-index: 99;
	}
	.menu_sp.active {
		top: 0;
	}
	.menu_sp .language_sp {
		font-family: "WDXL Lubrifont JP N", sans-serif;
		margin-top: 50px;
		text-align: center;
		flex-wrap: wrap;
		justify-content: center;
	}
	.menu_sp .language_sp li {
		padding: 0 2em;
		border-right: 1px solid #fff;
		line-height: 1;
		color: #fff;
	}
	.menu_sp .language_sp li a { color: #fff; }
	.menu_sp .language_sp li:first-child {
		width: 100%;
		margin-bottom: 1em;
		border: none;
	}
	.menu_sp .language_sp li:last-child { border-right: none; }
	.menu_sp .language_sp li.active a { text-decoration: underline; }

	.share_sp {
		display: flex;
		justify-content: center;
		gap: 20px;
		margin-top: 20px;
	}
	.share_sp a {
		display: block;
		width: 36px;
		height: 36px;
		line-height: 0;
	}
	.share_sp a img {
		width: 100%;
		height: auto;
	}

	header .logo .logo_ba img { height: 40px; }
	header .logo .logo_gsc img { height: 32px; }
}

/*-----------
Responsive - Mobile Layout
-----------*/
@media screen and (max-width: 768px) {

	/* Decorations - swap to mobile version */
	.deco-desktop { display: none; }
	.deco-mobile { display: block; }

	/* MV */
	#mv::before { background-position: 30% -18vh; background-size: auto 115vh; top: 0; height: 100%; }
	#bg-fixed { }
	#decorations { top: 95vh; }
	#mv { min-height: 0; height: 95vh; }
	#mv_inner { min-height: 0; height: 95vh; padding: 0 3%; justify-content: center; }
	#mv_textbox { padding-bottom: 3vh; }
	#mv_textbox { text-align: center; }
	.title-desktop { display: none; }
	h1.title-group img.title-mobile { display: block; width: 65vw; max-width: 100%; height: auto; }

	#bg-fixed { }
	.bg-fixed-image { background-image: url(../images/m_city_new_bg.png); }

	/* Points */
	.points-grid {
		flex-direction: column;
	}
	.point-card.card-2 { margin-top: 0; }
	.card-image { height: auto; aspect-ratio: 3 / 4; }
	.card-text { font-size: 15px; }

	/* Gallery */
	.section-title img { height: 36px; }
	.swiper-pagination-bullet {
		width: 12px !important;
		height: 8px !important;
	}
	.swiper-pagination-bullet-active {
		width: 22px !important;
	}
	.swiper-pagination {
		display: flex;
		flex-wrap: nowrap;
		justify-content: center;
		gap: 4px;
	}
	.specs-title-desktop { display: none; }
	.specs-title-mobile { display: block; margin: 0 auto; width: 80vw; max-width: none; height: auto !important; }
	#specifications .section-title { padding: 0 5%; margin-bottom: -25px; }

	/* PV */
	.pv-container { width: 92%; }

	/* Reserve */
	.reserve-label { font-size: 18px; }
	.reserve-period { font-size: 24px; }
	.reserve-cta {
		padding: 0 5%;
	}
	.reserve-cta .btn-reserve {
		font-size: 18px;
		padding: 0.8em 2em;
	}
	.reserve-cta .btn-reserve::before {
		inset: -8px;
		border-width: 6px;
	}

	/* Online info */
	.online-inner { padding: 30px 25px; }

	/* Specs */
	.specs-card {
		padding: 30px 5%;
		width: 100%;
		margin-left: 0;
		transform: none;
		border-radius: 0;
	}
	.spec-row {
		flex-direction: column;
		text-align: left;
		font-size: 16px;
	}
	.spec-row dt {
		width: 100%;
		text-align: left;
		padding: 0;
	}
	.spec-row dd {
		padding-left: 0;
		text-align: left;
	}

	/* Footer */
	.footer-logo-ba { height: 50px; }
	.footer-logo-gsc { height: 36px; }
	.footer-logos { gap: 15px; }

	/* Sticky bar */
	#stickybar { height: 80px; }
}
