.checkbox-wrapper > label {
    cursor: pointer;
}
.checkbox-wrapper input {
    padding: 0.4rem;
    margin: 1rem;
}

.btn-agree {
    width: 340px;
    margin: 30px auto 0;
    position: relative;
}
.btn-agree::before {
    content: "";
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 14px;
    height: 12px;
    background-image: url(/assets/img/icon_blank_01.gif);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.btn-agree input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 0.4rem;
    margin-top: 0;
    overflow-wrap: break-word;
    white-space: pre-wrap;
}
.btn-agree input[type="button"] {
    border: 1px solid #eb7000;
    color: #eb7000;
    background-color: #fff;
}

.btn-agree input[type="button"]:disabled {
    border: 1px solid #b5b5b5;
    color: #535252;
    background-color: #b5b5b5;
}

@media only screen and (max-width: 640px) {
    .btn-agree {
        width: 100%;
        margin-top: 15px;
    }
    .btn-agree input[type="button"] {
        margin-top: 0;
    }
}

.btn-disagree {
    border: 1px solid #535252;
    border-radius: 0.4rem;
    margin: 15px auto 0;
    width: 340px;
}

.btn-disagree a {
    display: block;
    color: #535252;
    text-decoration: none;
    margin: 0 auto;
    width: 100%;
    padding: 10px;
}
@media only screen and (max-width: 640px) {
    .btn-disagree {
        width: 100%;
        margin-top: 15px;
    }
}


.sty-checkbox-content > label {
    width: 100%;
    cursor: pointer;
    font-weight: normal;
}

.sty-scroll {
    width: 100%;
    height: 500px;
    overflow-y: scroll;
    border: 1px #999999 solid;
    padding: 0 54px 54px 54px;
}
@media only screen and (max-width: 640px) {
    .sty-scroll {
      padding: 0 10px 16px 10px;
      height: 300px;
    }
}