body.fixed {
	overflow-y: hidden;
}

body {
	position: relative;
}

#lBoxBk {
	background-color: rgba(255, 255, 255, 0.99);
	/* background-color: rgba(0, 0, 0, 0.98); */
	opacity: 0.9;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1001;
	width: 100%;
	height: 100%;
	display: none;
	cursor: pointer;
}

#lBox {
	position: absolute;
	display: none;
	/* top: 50%; */
	top: 0;
	left: 50%;
	width: 70vw;
	/* height: 90vh; */
	transform: translate(-50%, 0%);
	z-index: 1002;
	pointer-events: auto;
	overflow: hidden;
}

@media screen and (max-width:767px) {
	#lBox {
		width: 90vw;
	}
}

#lBoxInner {
	height: 100vh;
	overflow: auto;
	padding: 1em;
	box-sizing: border-box;
}

@media screen and (max-width:767px) {
	#lBoxInner {
		padding: .5em;
	}
}

#lBoxInner img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}


#closeBtn {
	position: fixed;
	top: 20px;
	right: 20px;
	display: none;
	cursor: pointer;
	width: 20px;
	height: 20px;
	line-height: 1em;
	z-index: 1003;
	color: #222;
}

#closeBtn::before,
#closeBtn::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-top: 1px solid;
}

#closeBtn::before {
	transform: translateX(16%) rotate(45deg);
	transform-origin: left top;
}

#closeBtn::after {
	transform: translateX(-16%) rotate(-45deg);
	transform-origin: top right;
}