@charset "UTF-8";

/*チェックボックス*/
.wrapper {
    width: 800px;
    margin: 0 auto;
    max-width: 100%;
}

.list_wrap ul {
    padding: 20px;
    border: 1px solid;
    border-color: #bfae73;
    background: #fff;
}
    
.list_wrap ul li {
        list-style: none;
        position: relative;
        padding: 0 0 0 1.5em;
        border-bottom: 1px solid #bfae73;
}
.list_wrap ul li::before {
        position: absolute;
        content: "";
        top: 5px;
        left: 0;
        background: url(/common/upload_data/tomoko-yoshidajp/image/20230107100208.png)no-repeat center center / cover;
        width: 1em;
        height: 1em;
}
.list_wrap ul li:not(:last-child) {
        padding-bottom: 5px;
        margin: 0 0 15px;
}
@media (width <= 1023px){
.wrapper {
    width: calc(100% - 100px);
}
}
@media (width <= 768px){
.wrapper {
    width: calc(100% - 10%);
}
}