@charset "utf-8";


.modal{
	display: none;
	height: 100%;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}
.modal__bg{
	background: rgba(0,0,0,0.8);
	height: 100%;
	position: absolute;
	width: 100%;
}
.modal__content{
	left: 50%;
	/*padding: 3%;*/
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 90%;
	max-width: 1200px;
	max-height: 70vh;
	border-radius: 10px;
	overflow: auto;
}
.modal__content .modal__inner{
	padding: 3%;
}

.modal__content .js-modal-close {
	display: inline-block;
	margin: 5px 0;
	padding: 5px 20px;
	background: #ccc;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none;
}





.modal__content.contents{
	overflow-x: hidden;
	padding: 0;
}