@charset "utf-8";

/* ------------------------------------------------------------
    modal
------------------------------------------------------------ */
.js_lock {
    overflow: hidden;
}
.js_modal-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: none;
    width: 700px;
}
.js_modal-overlay {
    z-index: 1;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(255,255,255,0.8);
}
.js_modal-wrap {
    z-index: 2;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}
.js_modal-open,
.js_modal-close {
    cursor: pointer;
    color: #1493d3;
}