.modal_open{
    display: inline-block;
    margin: 20px auto;
	cursor: pointer;
}
 
.modal_box {
    position: fixed;
    z-index: 7777;
    display: none;
    width: 80%;
    max-width: 1000px;
    margin: 0;
    padding: 60px 2vw 80px;
    border: 2px solid #aaa;
    text-align: center;
    background: #fff;
    box-sizing: border-box;
}
 
.modal_close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 40px;
    font-size: 30px;
    color: #000;
    line-height: 40px;
    text-align: center;
	text-decoration: none;
    background: #e6e6e6;
}
.modal_close:hover {
	text-decoration: none!important;
	cursor: pointer;
}
 
.modal_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6666;
    display: none;
    width: 100%;
    height: 120%;
    background-color: rgba(0,0,0,0.7);
}
 
 
