@charset "UTF-8";

.sbmModalBox {
	position: fixed;
	left: 5%;
	top: 10%;
	width: 90%;
	height: 80%;
	padding: 44px 10px 10px;
	background: #ffffff;
	border: #8eb5ef solid 5px;
	z-index: 1000;
	display: none;
	-webkit-overflow-scrolling: touch;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.sbmModalBox.modeless {
	top: 5%;
	height: 70%;
}

.sbmModalBoxInner {
	-webkit-overflow-scrolling: touch;
	overflow: auto;
	height: 100%;
	background-color: transparent;
	padding: 0 10px;
	margin: 0 -10px;
}

.sbmModalClose {
	position: fixed;
	right: 5%;
	top: 10%;
	width: 75px;
	height: 30px;
	margin: 5px 5px 0 0;
	z-index: 1001;
	background: url(../../img/s/btn_close.png) no-repeat;
	background-size: 75px 30px;
	display: none;
	cursor: pointer;
}

.sbmModalClose.modeless {
	top: 5%;
}

.sbmModalOverlay {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 110%;
	background: #000000;
	opacity: 0.6;
	z-index: 999;
	display: none;
	cursor: pointer;
}