html,body{
	margin:0;
	padding:0;
}
#modalWrap{
	width: 100%;
	height: 100%;
	position: fixed;
	top:0;
	left:0;
	background: rgba(0,0,0,0.7);
	z-index: 100;
	display: none;
}
.modal-box{
	position: relative;
	width: 100%;
	height: 100%;

}
.modalBoxCover{
	display:none;
	position:fixed;
	top:50%;
	left: 50%;
	max-width:80%;
	overflow-y: hidden;
	margin:auto;
	background: #fff;
	-webkit-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);
	z-index: 1000;
}
@supports (-ms-ime-align: auto) and (not (-webkit-text-stroke: initial)) {
  .modalBoxCover{
		width: auto;
		height: auto;
	}
}
.modalBox img{
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

.bodyFixed{
	width: 100%;
	height: 100%;
	position: fixed;
	overflow-y: auto;
}
.bodyFixed.bodyScroll{
	overflow-y:scroll;
}
.closeBtn{
	display: block;
	position: absolute;
	top:0;
	right: 0;
	width: 40px;
	height: 40px;
	background: url(../images/img_01.svg) center center no-repeat;
	background-size: 25px 25px;
	cursor: pointer;
	z-index: 100;
}
