@charset "utf-8";

.bgWrap {
    background-color: #ca525e;
}

/* listArea
----------------------------------------- */
.listArea {
    padding: 0 20px 60px;
}
.listArea_item button {
    display: block;
    width: 100%;
}
.listArea_item + .listArea_item {
    margin-top: 15px;
}
.listArea_btnWrap {
    margin-top: 60px;
    padding: 0 20px;
}

/* modal
----------------------------------------- */
.modal {
    display: none;
    width: 100%;
    height: 100%;
    padding: 25px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
    background-color: #ca525e;
}
.modal_inner {
    width: 100%;
    height: auto;
    max-width: 750px;
    max-height: 100%;
    margin: 0 auto;
    padding: 30px 25px;
    position: relative;
    overflow-y: auto;
    background-color: #fff;
    box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 4px #b60081;
    border-radius: 6px;
}
.modal_closeBtn {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 1;
}
.modal_btnWrap {
    margin-top: 30px;
}
@media screen and (min-width: 800px) {
    .modal_closeBtn {
        right: calc(50% - 393px);
    }
}