@charset "utf-8";
/* CSS Document */

.attentionWrapper {
    background-color: #F9F8F5;
    font-size: 87.5%;
    padding: 40px 40px 8px;
}

.checkBox {
    display: inline-block;
    position: relative;
    margin-bottom: 8px;
}

input[type=checkbox] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.checkBox input[type=checkbox]+label {
    display: inline-block;
    padding-left: 24px;
    position: relative;
    text-indent: -24px;
}

.checkBox input[type=checkbox]+label {
    text-indent: -24px;
}

.checkBox input[type=checkbox]+label:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    overflow: hidden;
    vertical-align: middle;
}

.checkBox input[type=checkbox]+label:before {
    background: url(/business/seminar/images/icn_checkbox.png) no-repeat 0 0;
    background-size: 16px auto;
}

.checkBox input[type=checkbox]:checked+label:before {
    background-position: 0 -16px;
}

.btnWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
    justify-content: center;
}

.btnWrapper a.disabled {
    background: #EEE !important;
    color: #BBB !important;
    border: 1px solid #BBB;
    opacity: 0.6;
    pointer-events: none;
}

.btnWrapper a {
    background-color: #fff;
    border: 1px solid #d7d7d7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    width: 400px !important;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.5s ease;
    margin-right: 0;
}

.btnWrapper a {
    background-color: #7fb512;
    color: #fff;
    transition: .3s ease;
}
.normal_btn.bg_white a:hover{
    background-color: #038535;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .attentionWrapper {
        overflow: hidden;
        padding: 16px 16px 0;
    }

    .btnWrapper {
        margin: 10px 0;
    }

    .btnWrapper a {
        background-color: #fff;
        border: 1px solid #d7d7d7;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        position: relative;
        text-align: center;
        text-decoration: none;
        transition: opacity 0.5s ease;
        padding: 8px;
    }
}