
@charset "UTF-8";

/*-----------------------------パーツ1調整---------------------------------*/
#check_box1 + section .checkbox_wrap {
    width: 100%;
    max-width: 100%;
}

#check_box1 + section .custom-checkbox {
    width: 100%;
    text-align: left;
}


/*-----------------------------パーツ2調整---------------------------------*/
.checkbox_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.custom-checkbox {
    width: 50%;
    text-align: center;
}

.custom-checkbox span {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    min-width: 250px;
    text-align: left;
    display: inline-block;
}

.custom-checkbox span::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 16px;
    width: 16px;
    border: 1px solid #000;
}

.custom-checkbox span::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 5px;
    width: 5px;
    height: 15px;
    border: solid #DD443B;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

@media screen and (max-width: 600px) {
.custom-checkbox {
    width: 100%;
}

.custom-checkbox span {
    min-width: auto;
}

.custom-checkbox {
    text-align: left;
}
}