.lock {
	overflow:hidden;
}
.modal-overlay {
	width:100%;
	height:120%;
	background-color:rgba(0,0,0,0.70);
	position:fixed;
	top:0;
	left:0;
	display:none;
	z-index: 999;
}
.modal-wrap {
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	overflow:auto;
	display:none;
	z-index:2000;
}
.modalBtn {
	cursor: pointer;
}
.closeBtn{
	width: 30px;
	height: 30px;
	border-radius: 5px;
	position: absolute;
	top: -40px;
	right: 0;
	cursor: pointer;
}
.closeBtn::before ,
.closeBtn::after{
	content: '';
	width: 40px;
	height: 4px;
	background: #fff;
	border-radius: 4px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
}
.closeBtn::after{
	transform: translate(-50%,-50%) rotate(-45deg);
}
.appliModal {
	display: none;
	width:1000px;
	margin: 60px auto;
	padding: 60px 30px 0;
	position:relative;
	overflow: scroll;
}
.modalArea{
	display: none;
	width: 100%;
	max-width:450px;
	margin: 150px auto;
	/*padding: 60px 30px 0;*/
	position:relative;
	z-index: 9999;
}
.modalPhArea{
	aspect-ratio: 9/16;
}
@media screen and (max-width: 640px){
	.closeBtn{
		top:0;
		right: 0;
	}
	.closeBtn::before ,
	.closeBtn::after{
		content: '';
		width: 30px;
		height: 3px;
	}
	.appliModal {
		width:calc(100% - 40px);
		margin: 20px auto;
		padding: 45px 0 0;
	}
	.modalArea{
		width: 100%;
		max-width: 250px;
		margin: 20px auto 0 auto;
		padding: 45px 0 0;
	}
}