@charset "utf-8";
/*lightcaseカスタム*/
#lightcase-overlay{
	display: none;
	width: 100%;
	min-height: 100%;
	position: fixed;
	z-index: 2000;
	top: -9999px;
	bottom: -9999px;
	left: 0;
	background-color: rgba(25, 25, 23, .85);
	opacity: 1!important;
}
#lightcase-case{
	display: none;
	position: fixed;
	z-index: 2002;
	top: 50%;
	left: 50%;
}
.lightcase-icon-prev{
	width: 44px;
	height: 44px;
	background-color: #000000;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	bottom: 0;
	left: calc(-760px + 44px);
	right: 0;
	margin: auto;
	z-index: 10000;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.lightcase-icon-prev{
		left: 0;
		right: auto;
	}
}
.lightcase-icon-prev::before{
	content: '';
	width: 10px;
	height: 10px;
	margin: 0 calc(-10px / 2) 0 0;
	border-left: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	display: block;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	flex-shrink: 0;
}
.lightcase-icon-prev span{
	display: none!important;
}
.lightcase-icon-next{
	width: 44px;
	height: 44px;
	background-color: #000000;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: calc(-760px + 44px);
	margin: auto;
	z-index: 10000;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.lightcase-icon-next{
		left: auto;
		right: 0;
	}
}
.lightcase-icon-next::before{
	content: '';
	width: 10px;
	height: 10px;
	margin: 0 0 0 calc(-10px / 2);
	border-left: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	display: block;
	-webkit-transform: rotate(calc(45deg + 180deg));
	transform: rotate(calc(45deg + 180deg));
	flex-shrink: 0;
}
.lightcase-icon-next span{
	display: none!important;
}
.lightcase-icon-close{
	display: none!important;
}
#lightcase-info{
	display: none!important;
}
/*lightcaseカスタム*/