@charset "UTF-8";
#sitemenu {
	position: fixed;
	z-index: 100;
	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 {
	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 {
	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: 3.5em;
        max-width: 29em;
        margin: auto;
	}
#sitemenu .menus a {
	position: relative;
	display: inline-block;
	font-size: 0.83em;
	font-weight: 500;
	line-height: 1.9em;
	padding: 1.5em 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.875em;
        line-height: 1em;
        letter-spacing: 0.1em;
        margin-bottom: 0.4em;
	}
	#sitemenu .h-en {
        font-size: 0.75em;
        line-height: 1em;
        padding: 0;
        margin: 0;
	}
#sitemenu .menus a::before,
#sitemenu .menus a::after {
	position: absolute;
	display: inline-block;
	content: "";
	top: 50%;
	transform: translate(0, -50%);
}
#sitemenu .menus a::before {
	width: 1.2em;
	height: 2px;
	left: -2em;
	background-color: var(--cl-pageink);
}
#sitemenu .menus a::after {
	width: 1.375em;
	height: 1.375em;
	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-left: calc(var(--share-smp-padding) * 2);
		padding-bottom: 4em;
	}
	#sitemenu .menus a {
        padding-top: 1.8em;
        padding-bottom: 1.8em;
	}
	#sitemenu .menus a::after {
        width: 1.6em;
        height: 1.6em;
	}
	#sitemenu .h-jp {
	    margin-bottom: 0.68em;
	}
}

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