/*lightbox*/

.p-lightbox_layer *{
	box-sizing: border-box;
}

.p-lightbox_layer{
	display: none;
	opacity: 0;
	background-color: rgba(0,0,0,0.9);
	transition: opacity 0.3s;
	position: fixed;
	top:0px; left: 0px;
	width: 100%;
	height: 100%;
	z-index: 600;
	justify-content: center;
	align-items: center;
}
.p-lightbox_layer.is-open{
	opacity: 1;
}

.p-lb_content{
	flex: 0 0 auto;
	position: relative;
	box-sizing: border-box;
	box-shadow: 3px 6px 24px -2px rgba(0,0,0,0.9);
	padding: 0;
	text-align: left;
	-webkit-overflow-scrolling:touch;
}
.p-lightbox_closeBtn{
	position: absolute;
	top:-40px; right: -40px;
	width: 30px; height:30px;
	background: url("../images/lbox/lbox_close.svg") no-repeat 50% 50%;
	cursor: pointer;
	transition: opacity 0.2s;
	opacity:0.6;
}
.p-lightbox_closeBtn:hover{
	opacity: 1;
}

.p-iframe_wrap{
	width: 100%;
	height: 100%;
}
#main_frame{
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

/*sp*/

.sp .p-lightbox_closeBtn{
	top:-40px; right: 20px;
	width: 30px; height:30px;
	background-size: 100%;
}
