@charset "utf-8";

.js-modal-open {
	cursor: pointer;
}
.modal{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: none;
}
.modal_bg{
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100vh;
    position: absolute;
}
.modal_content{
    background: #fff;
    /*width: 22%;*/
    width: 100%;
    max-width: 435px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 15px;
}
.modal_content .inner {
    text-align: center;
}
.t_center{
    font-size: 24px;
    line-height: 40px;
    margin-top: 90px;
    margin-bottom: 85px;
}
.js-modal-close {
    font-size: 22px;
    border: solid 1px #595757;
    background-color: #c9c9ca;
    border-radius: 10px;
    padding: 7px 25px;
}
.pop_btn{
    width: 100%;
    margin: 0 auto;
    margin-bottom: 35px;
}
@media screen and (max-width:1024px) {
	.modal_content{
        width: 38%;
    }
}
@media screen and (max-width:810px) {
	.modal_content{
        width: 47%;
    }
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:414px) {
	.modal_content {
        /*width: 75%;*/
        max-width: 285px;
        width: 100%;
    }
    .t_center {
        font-size: 16px;
        line-height: 28px;
        margin-top: 60px;
        margin-bottom: 45px;
    }
    .js-modal-close {
        padding: 5px 15px;
        font-size: 16px;
    }
}
@media screen and (max-width:375px) {
}
@media screen and (max-width:360px) {
}
@media screen and (max-width:320px) {
}