/* ---------- checkbox 勾選 --------- */
.chk-container {
    display: flex;
    align-items: center;
    font-size: 22px;
    letter-spacing: 1px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.chk-container input {
    position: absolute;
    top: 8px;
    left: 8px;
    opacity: 0;
    cursor: pointer;
}

.chk-container .checkmark {
    display: inline-block;
    height: 20px;
    width: 20px;
    border-radius: 3px;
    position: relative;
}

.chk-container .checkmark:after {
    content: "";
    position: absolute;
    display: none
}

.chk-container .checkmark:after {
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid #658ae6;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.chk-container .outter {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    transition: .3s;
}

.chk-container .outter:hover {
    background: #E0E7F8;
}

.chk-container .outter:active {
    background: #B9C9F4;
}

.chk-container .outter .checkmark {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #285ee4;
    z-index: 2;
    background: 0 0;
}

.chk-container input:checked~.outter .checkmark {
    background: #658ae6;
}

.chk-container input:checked~.outter .checkmark:after {
    display: block;
    border-color: #fff;
}

.chk1 .chk-container .outter .checkmark {
    border-color: #000;
}

.chk1 .chk-container input:checked~.outter .checkmark {
    background: #285ee4;
    border-color: #285ee4;
}

.input_content:last-child .group>.action {
    margin-top: -8px;
}


.checkbox_content>.group:first-child {
    margin-bottom: 0;
}

.checkbox_group {
    width: 100%;
    max-width: 311px;
    display: flex;
    justify-content: space-between;
    position: relative;
}


@media screen and (max-width:998px) {
    .input_content:last-child .group>.action {
        margin-top: -40px;
    }
}