/* The Modal (background) */
.modal-notification {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-notification-mobile {
    padding-top: 60%
}

.modal-notification-pc {
    padding-top: 20%
}

.modal-notification-hidden {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content-notification {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

.modal-content-notification-pc {
    width: 600px;
}

.modal-content-notification-mobile {
    width: 95%;
}

.modal-checkbox-pc {
    text-align: center;
    color: #000000;
    padding-bottom: 15px;
}
.modal-checkbox-pc input {
    margin-right: .5rem;
}

.modal-checkbox-mobile {
    padding-left: 20%;
    color: #000000;
    padding-bottom: 26px
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */
.close {
    color: #a8a8a8;
    float: right;
    font-size: 16px;
    font-weight: bold;
    padding-top: 14px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header-notification {
    padding: 2px 16px;
    /*background-color: #5cb85c;*/
    color: white;
    font-size: 16pt;
}

.modal-body-notification {
    padding: 22px 16px 15px;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: normal;
    text-align: center;
}

.modal-footer-notification {
    background-color: #e5e8ec;
    color: #858b94;
    height: 48px;
}

.icon-notification {
    color: #bf0000;
    font-size: 16px;
    line-height: 1;
    padding-left: 1.8rem;
    padding-top: 5px;
    margin-top: 27px;
}
.icon-notification span {
    font-weight: bold;
    font-family: HiraginoSans-W6;
    background: url("/images/client/warning@2x.png") no-repeat left top 2px / 16px auto;
    padding-left: 24px;
}

.icon-notification-pc {
    padding-left: 0;
    text-align: center;
 }

.icon-notification-mobile {
    margin-left: 25%;
}

.checkbox-notification{
    width: 18px;
    height: 18px;
    text-align: center;
    vertical-align: bottom;
}

@media screen and (max-width: 768px) {
    .modal-content-notification-pc {
        width: calc(100% - 20px);
        margin: 0 10px;
    }
    .icon-notification-pc {
        font-size: 14px;
    }


}