.modal_btn {
	width: 200px;
	height: 48px;
    display: block;
    margin: 40px auto;
    padding: 10px 20px;
    background-color: #C2B0A2;
    border: none;
	border-radius: 0.5rem;
    color: #fff;
    cursor: pointer;
    transition: box-shadow 0.2s;
    font-family: "SUITE-Regular";
    font-size: 15px;
}
.modal_btn:hover {
    box-shadow: 3px 4px 11px 0px #00000040;
}

/*모달 팝업 영역 스타일링*/
.modal {
/*팝업 배경*/
	display: none; /*평소에는 보이지 않도록*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.5);
}
.modal .modal_popup {
/*팝업*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    width: 80%;
    min-width: 300px;
    max-width: 440px;
}
.modal .modal_popup .close_btn {
    margin: auto;
    display: block;
    padding: 10px 20px;
    background-color: #C2B0A2;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-family: "SUITE-Regular";
    transition: box-shadow 0.2s;
}

.modal.on {
    display: block;
}