@charset "utf-8";
/*
* nyukai_banner_2026.css
*
* 入会のご案内ページへのバナー追加, ヘッダーメニュー改修
*/

/* ヘッダーメニュー - PC */
#headerBox #headerInfo .to-nyukai {
	display: block; 
	height: 23.5px; 
	margin: 0 auto 1px;
}
#headerBox #headerInfo .fa-map-marker-alt {
	color: var(--red);
}

/* ヘッダーメニュー - SP */
@media screen and (min-width: 1023.1px) {
	.gNav_headerInfo__sp {
		display: none;
	}
}

#gNav > li.gNav_headerInfo__sp > a {
	display: flex;
	flex-direction: row;
	gap: 10px;
	justify-content: flex-start;
	align-items: center;
}
#gNav > li.gNav_headerInfo__sp > a img {
	display: block;
	width: 22px;
}
#gNav > li.gNav_headerInfo__sp > a span {
	line-height: 1;
	display: inline-block;
}

#gNav:hover li.gNav_headerInfo__sp::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: calc((100vw - 100%) / -2);
	width: 100vw;
	height: 100%;
	background: rgba(247, 247, 238, 0.5);
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	z-index: -1;
}


/* 右下固定バナー */
.nyukai_banner {
	position: fixed;
	right: 0;
	bottom: 100px;
	z-index: 9999;
}
.nyukai_banner a {
	background: #DF0F0E;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	padding: 20px 15px 15px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	justify-content: center;
	align-items: center;
	transition: 0.5s ease;
}
.nyukai_banner a:hover,
.nyukai_banner a:focus {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	opacity: 0.7;
}
.nyukai_banner a span {
	/* 縦書き */
	writing-mode: vertical-rl;
	text-orientation: upright;
	line-height: 1;
	letter-spacing: 0.3em;
	display: inline-block;
	font-size: 16px;
}
.nyukai_banner a img {
	display: block;
	width: 24px;
}

@media screen and (max-width: 767px) {
	.nyukai_banner a {
		padding: 12px 10px 10px;
		gap: 5px;
	}
	.nyukai_banner a span {
		font-size: 14px;
	}
	.nyukai_banner a img {
		width: 22px;
	}
}