@charset "utf-8";

/* ============================================================ */
/* l-header */
/* ============================================================ */

.m-noscript {
	padding: 5px 15px;
	background: var(--black);
	color: var(--white);
	text-align: center;
	font-size: 1.4rem;
}

.l-header {
	background-color: transparent;
	position: fixed;
	z-index: 9100;
	top: 0;
	left: 0;
	width: 100%;
}

.l-header__inner {
	padding-inline: 16px 0;
	display: flex;
	align-items: center;
	height: 64px;
}


.l-header-logo {
	width: 220px;
}
@media screen and (max-width: 374px) {
	.l-header-logo {
		width: 180px;
	}
}

.l-header-sns {
    display: none;
}

.l-header-sns-sp {
	width: 40px;
    aspect-ratio: 1;
	display: block;
}

.l-header-contact {
	color: var(--white);
	background: linear-gradient(92deg, #66EBF4 1.52%, rgba(102, 235, 244, 0.00) 100%), var(--blue);
	font-size: 1.4rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin-left: auto;
	transition: all 0.8s cubic-bezier(0.4, 0.4, 0, 1);
}

.l-header-contact .__txt {
	display: none;
}



/* .l-header-menu
------------------------------------------------------------ */
.l-header-menu {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	width: 64px;
	height: 64px;
	background-color: var(--white);
	position: relative;
}

.l-header-menu__inner {
	position: relative;
	width: 24px;
	height: 18px;
}

.l-header-menu._active_ .l-header-menu__inner {
	margin: 0;
}

.l-header-menu__item {
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--black2);
	transition: all 0.5s ease;
}

.l-header-menu__item:nth-of-type(1) { top: 0; }
.l-header-menu__item:nth-of-type(2) { top: 8px; transform: scale(1, 1); }
.l-header-menu__item:nth-of-type(3) { bottom: 0; }

.l-header-menu._active_ .l-header-menu__item:nth-of-type(1) { transform: translateY(8px) rotate(-315deg); background: var(--black2); }
.l-header-menu._active_ .l-header-menu__item:nth-of-type(2) { opacity: 0; background: var(--black2); transform: scale(0, 1); transform-origin: center top; }
.l-header-menu._active_ .l-header-menu__item:nth-of-type(3) { transform: translateY(-8px) rotate(315deg); background: var(--black2); } 

/* .l-header-menu
------------------------------------------------------------ */
.l-gnav {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100dvh;
	background-color: rgba(var(--white-rgb), 0.75);
	backdrop-filter: blur(10px);
	opacity: 0;
	transition: all 0.3s ease;
	color: var(--white);
	overflow-y: auto;
	overscroll-behavior-y: contain;
	pointer-events: none;
	padding-top: 120px;
}

._gnav-show_ .l-gnav {
	z-index: 9000;
	opacity: 1;
	pointer-events: auto;
}

.l-gnav__inner {

}

.l-gnav__list {
	padding: 0 32px;
}

.l-gnav__item {
	margin-bottom: 40px;
}

.l-gnav__item._privacy_ .l-gnav__link {
	font-size: 1.5rem;
	color: var(--black);
	font-weight: 400;
	margin-bottom: 0;
}

.l-gnav__link {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--blue);
	transition: color 0.4s ease;
	display: block;
	width: max-content;
	position: relative;
	align-self: flex-start;
}

.l-gnav__link:has( + .l-gnav__sublist) {
	margin-bottom: 12px;
}

.l-gnav__sublist-item {

}

.l-gnav__sublist-item:not(:last-child) {
	margin-bottom: 12px;
}

.l-gnav__sublist-link {
	font-size: 1.5rem;
	color: var(--black);
	position: relative;
	transition: border-bottom 0.3s ease;
}