.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.5);
}

.modalWrapper {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    width: 70%;
    max-width: 680px;
    padding: 10px 30px;
    background-color: #ffffff;
    border-radius: 12px;
}

.modalHeader {
    border-bottom: 1px solid #ff6c04;
}

.modalHeader h1 {
    color: #FF0404;
}

.modalBody p {
    font-size: 1.4em;
}

.modalFooter {
    margin: 20px 0 12px 0;
}

.closeModal {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    cursor: pointer;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor: pointer;
    margin: 0 20px;
}


.btn-primary {
    color: #fff;
    background-color: #33aaaa;
    border-color: #33aaaa;
    transition: all 1s;
}

.btn-disabled {
    opacity: 0.25;
    cursor: default;
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

/* #14832 決済同意チェックボックス */
div.confirm_payment {
    padding-bottom: 10px;
}

div.confirm_payment label {
    width: initial;
    float: initial;
    display: initial;
    font-weight: initial;
    font-size: initial;
}

div.confirm_payment span {
    font-weight: bold;
    font-size: 1em;
}

div.confirm_payment button {
    margin-top: 10px;
}
