@charset "utf-8";
body{background: #fff;}

/*-----------
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(255, 255, 255, 0.5);
	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;
	height:45px;
}
header .language li {
	line-height: 1;
	font-weight: 400;
	margin-top: .25em;
}
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: #264588;
}
header .language li + li + li::before {
	content: "｜";
	color: #000;
}

header .btn-header {
	margin-left: 1em;
	font-size: 16px;
	padding: 0.5em 1.5em;
	border: 3px solid #264588;
	box-shadow: inset 0 0 0 2px #FFF;
	background: #264588;
}

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_wrap{
	width: 100%;
	height: 100vh;
	position: relative;
}

#mv_wrap::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 10%;
	background: linear-gradient(to bottom, #77D3FC,transparent);
	mix-blend-mode: multiply;
	z-index: 1;
}

#mv::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20%;
	background: linear-gradient(to bottom, transparent, #77D3FC);
	mix-blend-mode: multiply;
	z-index: 1;
}
#mv_inner {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	height: 100vh;
	min-height: 768px;
	padding: 0 5%;
	z-index: 2;
}
#mv_textbox {
	padding-bottom: 5vh;
	text-align: left;
}
h1.title-group {
	margin: 0;
}
h1.title-group img {
	width: auto;
	max-width: 800px;
	height: auto;
}
/* .title-mobile { display: none; } */

/*-----------
Wipe-in (left → right) on load. Add .wipe-in to any title/subtitle;
stagger with .wipe-delay-1 / .wipe-delay-2.
-----------*/
@keyframes wipe-in-lr {
	from { clip-path: inset(0 100% 0 0); }
	to   { clip-path: inset(0 0 0 0); }
}
.wipe-in {
	animation: wipe-in-lr 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}
.wipe-delay-1 { animation-delay: 0.7s; }
.wipe-delay-2 { animation-delay: 1s; }

/* Scroll-triggered variant: stays clipped until final.js adds .scrollin */
.wipe-in-scroll { clip-path: inset(0 100% 0 0); }
.wipe-in-scroll.scrollin {
	animation: wipe-in-lr 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
	.wipe-in, .wipe-in-scroll.scrollin { animation: none; }
	.wipe-in-scroll { clip-path: 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(-40%);
	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/bg.jpg) center top no-repeat;
	background-size: cover;
}
/*-----------
Decorations (parallax)
-----------*/
#decorations {
	position: absolute;
	top: 100vh;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}
.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: 5vw 0 80px;
	overflow-x: clip;
}
.intro-pill {
	position: absolute;
	margin-top: 16vw;
	top: 25%;/*55*/
	right: 3vw;
	width: 150vw;
	height: 42vw;
	background:#fff;
	border-radius: 1000px;
	border: 2px solid #003B88;
	/* z-index: 1; */
	/* transform: translateY(-50%); */
}

.intro-pill.en {
	top: 30%;/*55*/
}


.intro-pill::before{
	content: "";
	display: block;
	width: 100%;
	height: 42vw;
	position: absolute;
	z-index: -1;
	background: repeating-linear-gradient(-45deg, #003B88 0px 5px,transparent 5px 10px);
	top: 10px;
	left: 10px;
	border-radius: 1000px;
}

#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%; */
	margin-right: 5%;
}
: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: 10vw;
	font-size: clamp(13px, 0.95vw, 18px);
	font-weight: 500;
	color: #003B88;
	line-height: 2;
	position: relative;
}

.intro-body::before{
	display: none;
}

.intro-body p {
	margin-bottom: 0;
}

.intro-body .ttl{
	/* display: none; */
	font-size: 4.5vw;
	line-height: 1.5;
	font-family: "WDXL Lubrifont JP N", sans-serif;
	color: #77D3FD;
	margin-top: .5em;
}
.intro-image {
	width: 45%;
	position: relative;
	margin-top: 5.5vw;
	filter: drop-shadow(10px 10px 0 #79D5FC);
}
.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));
}
.char-mobile { display: none; }
.intro-quote {
	position: relative;
	z-index: 3;
	margin-top: 1.5em;
	padding-left: 4%;
	/* opacity: 0.4; */
}

.intro-quote p{
	font-size: 6vw;
	line-height: 1.2;
	font-family: "WDXL Lubrifont JP N", sans-serif;
	color: #77D3FD;
}
/* .intro-quote img {
	height: 4.7vw;
	width: auto;
	max-width: none;
} */
/* EN quote art is wider; shrink it so it renders at ~the same width as JP/ZH */
:lang(en) .intro-quote img.quote-desktop { height: 3.8vw; }
.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: 0 0 10px 10px rgba(38, 69, 136, 0.50);
	overflow: hidden;
	padding-bottom: 25px;
}
.point-card.card-2 {
	margin-top: 80px;
}
/* Cards spin in (hinge on left edge) instead of the default fade-up.
   Higher specificity + !important to beat the global .fadein.scrollin transform. */
.point-card.fadein {
	transform: perspective(1000px) rotateY(-90deg);
	transform-origin: center center;
	transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.point-card.card-2.fadein { transition-delay: 0.15s; }
.point-card.card-3.fadein { transition-delay: 0.3s; }
.point-card.fadein.scrollin {
	transform: perspective(1000px) rotateY(0deg) !important;
}
@media (prefers-reduced-motion: reduce) {
	.point-card.fadein { transform: none; transition: none; }
}
.card-image {
	padding: 20px 20px 0;
	overflow: hidden;
	
}
.card-image a {
	display: block;
	height: 100%;
	line-height: 0;
	overflow: hidden;
	border-radius: 6px;
}
.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(90deg, #77D3FC 0%, #7DC2FF 50%, #284487 100%);
	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;
	line-height: 0;
}
#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: #264588 !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: #264588;
	letter-spacing: -0.05em;
	margin-bottom: 0.3em;
}
.reserve-period {
	font-size: 44px;
	font-weight: 900;
	color: #264588;
	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 10px 10px #77D3FC;
	border-radius: 100px;
	position: relative;
}
.reserve-cta .btn-reserve::before {
	content: "";
	position: absolute;
	inset: -9px;
	border: 5px solid #fff;
	border-radius: 100px;
	pointer-events: none;
}

.reserve-cta span{margin-top: -0.1em;}

.reserve-cta .arrow {
	width: 24px;
	flex-shrink: 0;
	line-height: 0;
	margin-top: 0;
}
.reserve-cta .arrow img {
	width: 100%;
	height: auto;
}

.reserve-dates{padding: 0 2.5%;}
.reserve-dates br{display: none;}
/*-----------
Online / Shop info
-----------*/
#online {
	position: relative;
	z-index: 2;
	width: 92%;
	max-width: 1000px;
	margin: 0 auto 80px;
	filter: drop-shadow(0 0 10px #264588);
}
.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: #264588;
	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: 8vh 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-banner {
	margin-bottom: 40px;
}
.footer-banner a {
	display: inline-block;
	width: 92%;
	max-width: 1000px;
	transition: 0.3s;
}
.footer-banner a:hover {
	filter: brightness(1.05);
	transform: translateY(-3px);
}
.footer-banner img {
	width: 100%;
	height: auto;
}
.footer-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
}

.footer-logos img{filter: drop-shadow(0 0 2px #00000022);}
.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: #264588;
	line-height: 1.7;
}

/*-----------
Bornus
-----------*/
#bonus{position: relative; z-index: 10; margin: 15vh 0 5vh;}
#bonus .inner{width: 90%; max-width: 1000px; display: flex; gap: 20px;background: rgba(255, 255, 255, 0.70); border-radius: 10px; margin: 0 auto; padding: 3vw;box-shadow: 0 0 10px 10px rgba(38, 69, 136, 0.50); align-items: center;}
#bonus .inner figure{width: 40%; line-height: 0; border-radius: 5px;overflow: hidden;}
#bonus .inner .text_area{text-align: center; width: calc(60% - 20px);}
#bonus .inner .text_area h4{font-size: 1.5em; color: #000;}
#bonus .inner .text_area p{font-size: 3em; font-weight: 800; color: #264588;line-height: 1.4; margin-top: .5em;}


/*-----------
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: 100vw; }
	.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; */
		padding: 80px 5% 40px;
		width: 100%;
		line-height: 2;
		background: #fff;
		border-top: 2px solid #003B88;
		border-bottom: 2px solid #003B88;
	}

	.intro-body::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	background: repeating-linear-gradient(-45deg, #003B88 0px 5px,transparent 5px 10px);
	top: 20px;
	left: 0;
	}
	.intro-body .ttl{
		font-size: 9vw;
	line-height: 1.5;
	font-family: "WDXL Lubrifont JP N", sans-serif;
	color: #77D3FD;
	margin-top: .5em;
	}

	.intro-quote {
		display: none;
		margin-top: -12em;/*-6*/
		padding: 0 5%;
		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%; }


	/*-----------
	Bornus
	-----------*/
	#bonus .inner .text_area h4{font-size:3vw;}
	#bonus .inner .text_area p{font-size: 5vw;}

}


/*-----------
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: #264588;
		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(119, 211, 252, 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; }

	/* Character - swap to mobile render */
	.char-desktop { display: none; }
	.char-mobile { display: block; }

	/* MV */
	#mv::before { background-image: url(../images/m_mv_bg.jpg); background-position: center top; background-size: cover; top: 0; height: 100%; }
	/* #bg-fixed { } */
	#decorations { top: 120vh; }
	#mv { min-height: 0; /* height: 95vh; */ height: 120vh; }
	#mv_inner { min-height: 0; /* height: 95vh; */height: 120vh; padding: 0 3%; justify-content: center; }
	#mv_textbox { padding-bottom: 3vh; width: 75%;}
	#mv_textbox { text-align: center; }
	.title-desktop { display: none; }
	h1.title-group { display: flex; flex-direction: column; align-items: center; }
	h1.title-group img{width: 100%; height: auto;}
	/* h1.title-group img.title-mobile { display: block; width: 70vw; max-width: 100%; height: auto; } */

	/* #bg-fixed { } */
	.bg-fixed-image { background-image: url(../images/bg_sp.jpg); }

	/* 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; } */

	#specifications .section-title{width: 70%; max-width: 400px; margin: 0 auto; margin-bottom: -50px;}
	#specifications .section-title img{height: auto;}

	/* 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 1.5em;
	}
	.reserve-cta .btn-reserve::before {
		inset: -8px;
		border-width: 6px;
	}

	.reserve-dates br{display: block;}
	
	/* 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; }

	/*-----------
	Bornus
	-----------*/
	#bonus{position: relative; z-index: 10; margin: 10vh 0 2.5vh;}
	#bonus .inner{width: 80%; flex-direction: column; padding: 5vw;}
	#bonus .inner figure,
	#bonus .inner .text_area{width: 100%;}


}


@media screen and (max-width: 500px) {
	#decorations { top: 100vh; }
	#mv {height: 100vh; }
	#mv_inner { height: 100vh; }
	#mv_textbox {width: 90%;}
}