@charset "UTF-8";
#sitemenu {
	position: fixed;
	z-index: 101;
	display: none;
	height: 100%;
	min-height: 700px;
	top: 0;
	left: 0;
	transition: all 0.15s ease-out;
	text-align: left;
}
#sitemenu[data-opend="true"] {
	display: flex;
	flex-wrap: wrap;	
}
#sitemenu[data-efx="true"] {
	width: 100%;
}
@media only screen and (min-width:951px) {
	#sitemenu[data-efx="true"] {
		width: 100%;
		margin-left: var(--width-left-menu-pc);
		background-color: rgba(217,217,217,.5);
	}
}
@media only screen and (max-width:950px) {
	#sitemenu[data-efx="true"] {
		margin-top: var(--height-header-smp);
	}
}

/*close function (additional)*/
#sitemenu[data-enablecloseefx="true"][data-opend=""] #sitemenu {
	display: block;
}
#sitemenu[data-enablecloseefx="true"] #sitemenu {
	display: block;
}
#sitemenu[data-efx="close"] {
	width: 0;
	border-left-width: 0;
	pointer-events: none;
}
#sitemenu[data-efx="close"] {
	display: none;
}

/**/
#sitemenu .head {
	z-index: 1;
	background-color: var(--cl-white);
}
#sitemenu .head .close::after {
	content: "CLOSE";
}
@media only screen and (max-width:950px) {
	#sitemenu .head {
		height: var(--height-header-smp);
		margin-left: auto;
		margin-right: 0;
	}
}

/**/
#sitemenu .menus {
	z-index: 1;
	display: inline-flex;
	width: 100%;
	height: 100vh;
	overflow-y: auto;
	padding-left: 0;
	align-items: center;
	background-color: var(--cl-white);
}
	#sitemenu .menus-wrapper {
		padding: 2em 0;
		padding-left: 0em;
		max-width: 29em;
		margin: auto;
	}
#sitemenu .menus .page-group a {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: baseline;
	gap: 0.4375em;
	font-weight: 500;
	line-height: 1.9em;
	padding-bottom: 0.875em;
	padding-top: 0.875em;
	padding-right: 2.2em;
	padding-left: 0;
	color: var(--cl-pageink);
	width: 100%; 
	border-bottom: var(--custom-border-dashed);
}
	#sitemenu .h-jp {
		font-style: normal;
		font-weight: 500;
		font-size: 1.375em;
		line-height: 1.45em;
		letter-spacing: 0.02em;
		margin-bottom: 0;
	}
	#sitemenu .h-en {
		font-size: 0.625em;
		line-height: 1em;
		padding: 0;
		margin: 0;
	}
#sitemenu .menus .page-group a::before,
#sitemenu .menus .page-group a::after {
	position: absolute;
	display: inline-block;
	content: "";
	top: 50%;
	transform: translate(0, -50%);
}
#sitemenu .menus .page-group a::before {
	width: 0.5em;
	height: 2px;
	left: -1.3em;
	background-color: var(--cl-pageink);
}
#sitemenu .menus .page-group a::after {
	width: 1.125em;
	height: 1.125em;
	right: 0;
	background-image: url("/share/asset/ui/btn-trans-black.svg");
	background-repeat: no-repeat;
	background-size: contain;
}
@media only screen and (min-width:951px) {
	#sitemenu .head {
		width: var(--width-left-menu-pc);
		left: calc(var(--width-left-menu-pc) * -1);
		transform: translate(0, -50%);
	}
	#sitemenu .menus {
		max-width: 400px;
	}
	#sitemenu .menus a {
		max-width: 290px;
	}
}
@media only screen and (max-width:950px) {
	#sitemenu .menus {
		position: absolute;
		height: calc(100vh - var(--height-header-smp));
		top: 0;
	}
	#sitemenu .head {
		position: absolute;
		top: 0;
		right: 0;
		transform: translate(0,-100%);
	}
	#sitemenu .menus-wrapper {
		padding: var(--share-smp-padding);
		padding-inline: calc(var(--share-smp-padding) * 1.75);
		padding-bottom: 6.5em;
	}
	#sitemenu .menus .page-group a::after {
		width: 1.6em;
		height: 1.6em;
	}
	#sitemenu .h-jp {
		margin-bottom: 0;
	}
}

/**/
#sitemenu .bg {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
}

/*close menu*/
#sitemenu .menus_bg {
	display: block;
	position: fixed;
	z-index: -1;
	width: 100vw;
	height: 100vh;
	background-color: #fff;
	opacity: 0.0;
	top: 0;
}

/**/
#sitemenu .menus .channel-group {
	display: flex;
	flex-direction: column;
	gap: 0.9375em;
	margin-top: 3.1875em;
}
	#sitemenu .menus .channel-group a {
		border-bottom: none;
		padding: 0;
		transition: all 0.3s ease;
	}
	#sitemenu .menus .channel-group a:hover {
		transform: scale(1.05);	
	}
	#sitemenu .menus .channel-group a::after {
		transition: all 0.6s ease;
	}
	#sitemenu .menus .channel-group a.a-ic:hover::after {
		z-index: 3;
	}
@media only screen and (max-width:950px) {
	#sitemenu .menus .channel-group {
		border-bottom: none;
		margin-top: 2.5em;
		margin-bottom: 2em;
	}
}