/* モーダルCSS */
.modalArea {
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modalBg {
    width: 100%;
    height: 100%;
    background-color: rgba(30,30,30,0.9);
}

.modalWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    width: 85%;
    max-width: 500px;
    padding: 10px 30px;
    background-color: #fff;
    height: 60%;
    overflow: auto;
}

.openModal {
    color: #BF1920;
    font-weight: 700;
    cursor: pointer;
}

.closeModal {
    cursor: pointer;
    font-weight: 700;
    border: 1px solid #282828;
    border-radius: 2px;
    width: 100px;
    text-align: center;
}

.closeModal:hover {
    border: 1px solid #282828;
    border-radius: 2px;
    background-color: #282828;
    color: #fff;
}

.privacy_top {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.privacy_title {
    font-size: 14px;
    font-weight: 700;
    margin-top: 10px;
}

.privacy_text {
    font-size: 12px;
}

.attention {
    text-align: center;
}