@charset "UTF-8";

.popupOverlay {
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.6);
	position: fixed;
	z-index: 100;
}
.popupOverlay .popupContents {
	position: relative;
	width: 100%;
	height: 100%;
}
.popupOverlay .popupContents .popupAreaAll{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.popupOverlay .popupContents .popupImageArea{
	position: absolute;
	height: 90%;
	top: 5%;
	left: 50%;
	transform: translateX(-50%);
	
	text-align: right;
	z-index: 10;
}
.popupOverlay .popupContents .popupImageArea img:first-child{
	margin: 0 0 10px;
	cursor: pointer;
}
.popupOverlay .popupContents .popupImageArea img.popupImg{
	max-height: calc(100% - 50px);
	width: auto;
}


@media (max-width: 767px) {

	.popupOverlay .popupContents .popupImageArea{
		position: absolute;
		height: auto;
		width: 80%;
		top: 50%;
		left: 10%;
		transform: translate(0, -50%);
	}
	.popupOverlay .popupContents .popupImageArea img.popupImg{
		width: 100%;
		height: auto;
		max-height: none;
	}
}