@charset "utf8";

.modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.modal__bg {
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content {
	background: #fff;
    left: 50%;
    padding: 50px 50px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
}
a.js-modal-close {
    position: absolute;
    display: inline-block;
    top: 0px;
    left: 0px;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 32px;
    margin: 0;
    padding: 0;
    transform: scale(0.5);
    cursor: pointer;
}
a.js-modal-close:before {
    content: "";
    position: absolute;
    display: inline-block;
    top: 4px;
    left: 13px;
    width: 8px;
    height: 50px;
    border: 0;
    margin: 0;
    padding: 0;
    background-color: #666;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
a.js-modal-close:after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 4px;
    left: 13px;
    width: 8px;
    height: 50px;
    border: 0;
    margin: 0;
    padding: 0;
    background-color: #666;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media screen and (max-width:680px){
	.modal__content {
		padding: 50px 30px;
	}
}





