@charset "utf-8";
/* CSS Document */

.js-modal-trigger {
}
.js-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 9999;
}
.js-modal_overlay {
	position: absolute;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.8);
}
.js-modal_content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.js-modal-close {
}
