@charset "UTF-8";
/* ヘッダー・フッター・グリッド・全体構造 */

/******************/
/* 共通部分 *********/

.section {
	position: relative;
}

.flex-container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

.r-flex {
	flex-direction: row-reverse;
}

.section-inner {
	max-width: 1620px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.section-inner {
		padding: 0 1em;
	}
}

/******************/
/* header *********/

/* haeader */
.site-header {
	position: fixed;
	inset: 0;
	z-index: 1000;
	pointer-events: none;
}

.header-logo,
.openbtn {
	pointer-events: auto;
}

.header-logo {
	position: fixed;
	top: 16px;
	left: 24px;
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-logo img {
	width: 160px;
}

.header-logo.is-hidden {
	opacity: 0;
	pointer-events: none;
	transform: translateY(-6px);
}

@media screen and (max-width: 500px) {
	.header-logo img {
		width: 130px;
	}
}

/* ハンバーガー */
.openbtn {
	position: fixed;
	top: 14px;
	right: 14px;
	z-index: 1000;
	width: 48px;
	height: 48px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(15, 37, 64, 0.6);
	backdrop-filter: blur(6px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.08);

	transition: background 0.3s ease, box-shadow 0.3s ease;
}

.openbtn-line {
	position: absolute;
	width: 20px;
	height: 1px;
	background: linear-gradient(to right, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.4));
	transition: transform 0.45s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.3s ease, filter 0.3s ease;
}

.openbtn::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(2px);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.openbtn:hover::before,
.openbtn.active::before {
	opacity: 1;
}

.openbtn:hover {
	background: rgba(15, 37, 64, 0.75);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.openbtn.active {
	background: rgba(15, 37, 64, 0.85);
}

.line-top {
	transform: translateY(-6px);
}
.line-bottom {
	transform: translateY(6px);
}

.openbtn.active .line-top {
	transform: rotate(45deg);
}
.openbtn.active .line-middle {
	opacity: 0;
}
.openbtn.active .line-bottom {
	transform: rotate(-45deg);
}

.openbtn-label {
	position: absolute;
	bottom: -16px;
	font-size: 10px;
	letter-spacing: 0.12em;
	color: #fff;
	opacity: 0;
	transition: opacity 0.3s ease;
}

/* グローバルメニュー */

/* ===============================
   グローバルナビ 共通
=============================== */

.global-logo img {
	width: 200px;
}

.global-inner {
	position: relative;
	height: 100%;
	padding: var(--space-md);
	display: flex;
	justify-content: space-between;
}

@media screen and (min-width: 1620px) {
	.global-inner {
		padding: 10vw;
	}
}

/* グローバルナビPC */

.global-nav {
	position: fixed;
	inset: 0;
	z-index: 998;

	background: radial-gradient(ellipse at top left, #1a2f4a, #0f2540 60%);
	background-size: 150% 150%;
	background-position: 0% 0%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.6s ease;
}

@keyframes gradientFlow {
	0% {
		background-position: 0% 0%;
	}
	50% {
		background-position: 100% 100%;
	}
	100% {
		background-position: 0% 0%;
	}
}

.global-nav.is-open {
	opacity: 1;
	pointer-events: auto;
	animation: gradientFlow 14s ease-in-out infinite;
	animation-delay: 0.4s;
}

.global-nav.is-open {
	opacity: 1;
	pointer-events: auto;
}

.global-menu {
	list-style: none;
	display: flex;
	gap: 0;
	flex-wrap: wrap;
}

@media (min-width: 769px) {
	.global-menu {
		flex-direction: row-reverse;
	}
}

.global-menu a {
	font-size: 2rem;
	letter-spacing: 0.16em;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	writing-mode: vertical-rl;
	transition: opacity 0.3s ease;
}

.global-menu a:hover {
	opacity: 0.6;
}

/* ===============================
   サブメニュー
=============================== */

.global-menu .has-child {
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	gap: 16px;
	position: relative;
}
.global-submenu {
	position: static;
	display: flex;
	flex-direction: row-reverse;
	gap: 4px;
	white-space: nowrap;
	padding-top: 20px;
}

.global-menu > li {
	margin-left: 32px;
}

.global-menu > li > a {
	padding-top: 4px;
	padding-bottom: 4px;
}

.global-submenu a {
	font-size: 1.4rem;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	writing-mode: vertical-rl;
	text-orientation: upright;
	transition: opacity 0.3s ease;
}

.global-submenu a:hover {
	opacity: 0.6;
}

.global-submenu a:hover {
	opacity: 0.6;
}

.global-store {
	position: absolute;
	right: 80px;
	bottom: 60px;
}

.global-store a {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 15px 30px;
	min-width: 240px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 2px;
	color: #fff;
	text-decoration: none;
	transition: border-color 0.4s ease, color 0.4s ease;
}

.global-store a::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.08);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
}

.global-store a span {
	position: relative;
	z-index: 1;
}

.global-store a:hover::before {
	opacity: 1;
}

.global-store a:hover {
	border-color: rgba(255, 255, 255, 0.9);
}
.global-store .en {
	font-size: var(--fz-20);
}

.global-store .jp {
	font-size: var(--fz-14);
}

.global-info_container {
	position: absolute;
	left: 80px;
	bottom: 60px;
	color: var(--akamaru-color-white);
	letter-spacing: 0.05em;
}

.global-info_container .title {
	font-size: var(--fz-20);
	margin-bottom: 5px;
}

.global-info_container .address,
.global-info_container .tel {
	font-size: var(--fz-14);
	line-height: 1.6;
}

/* ===============================
SP グローバルメニュー
=============================== */
.sp-global-nav {
	position: fixed;
	inset: 0;
	z-index: 998;
	background: linear-gradient(120deg, #0f2540, #142f55, #0f2540);
	background-size: 400% 400%;
	transform: translateX(100%);
	opacity: 0;
	transition: transform 0.4s ease, opacity 0.4s ease;
	animation: navyGradientFlowStrong 10s ease-in-out infinite;
}

@keyframes navyGradientFlowStrong {
	0% {
		background-position: 0% 50%;
	}
	25% {
		background-position: 50% 0%;
	}
	50% {
		background-position: 100% 50%;
	}
	75% {
		background-position: 50% 100%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.sp-global-nav.is-open {
	transform: translateX(0);
	opacity: 1;
}
.sp-global-inner {
	padding: 32px 24px 120px;
	height: 100%;
	overflow-y: auto;
}
.sp-global-logo {
	display: flex;
	justify-content: center;
	padding: 0 0 32px;
}
.sp-global-logo img {
	width: 200px;
	height: auto;
}
.sp-menu {
	list-style: none;
}
.sp-menu-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sp-menu-item > a,
.sp-menu-title {
	display: block;
	width: 100%;
	padding: 15px 0;
	font-size: 1.5rem;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.95);
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
}
.sp-submenu {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-6px);
	transition: max-height 0.75s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.5s ease, transform 0.5s ease;
}
.sp-menu-item.is-open .sp-submenu {
	max-height: 500px;
	opacity: 1;
	transform: translateY(0);
}
.sp-submenu li a {
	display: block;
	padding: 10px 0 10px 16px;
	font-size: 1.3rem;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.65);
	transition: opacity 0.5s ease;
	padding-left: 0;
}
.sp-submenu li a:active {
	opacity: 0.6;
}
.sp-menu-title {
	position: relative;
	padding-right: 24px;
}
.sp-menu-title::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 8px;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.6);
	transform: translateY(-50%);
	transition: transform 0.35s ease;
}

.sp-menu-item.is-open .sp-menu-title::after {
	transform: translateY(-50%) rotate(90deg);
}

.sp-global-store-fixed {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 16px 24px 20px;
	background: linear-gradient(to top, rgba(15, 37, 64, 0.98), rgba(15, 37, 64, 0.85));
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	z-index: 999;
}
.sp-store-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px 0;
	background-color: #ffffff;
	color: #0f2540;
	text-decoration: none;
	letter-spacing: 0.16em;
}
.sp-store-link .en {
	font-size: 1.8rem;
	font-weight: 500;
}
.sp-store-link .jp {
	font-size: 1.1rem;
	opacity: 0.8;
}

@media (min-width: 769px) {
	.sp-global-nav {
		display: none;
	}
}

/* splide */
.splide {
	width: 100%;
}
.splide__slide img {
	display: block;
	width: 100%;
	height: auto;
}
.splide__list {
	will-change: transform;
}
