@media screen and (max-width: 750px) {
    .info_list dd {
        margin-top: 1.5px;
        padding: 0 8px 3px;
        font-size: 1.1rem;
        line-height: 1.2rem;
    }
    .info_list dt {
        margin-top: 1.5px;
        font-size: 1.25rem;
    }
    h1.l_ttl span.txt {
        margin-left: 2rem;
    }
    section.w_bk {
        padding: 10px;
        overflow-y: scroll;
        height: 500px;
    }
    section.w_bk::-webkit-scrollbar {
        width: 12px;
        background: #eee;
    }
    section.w_bk::-webkit-scrollbar:horizontal {
        height: 12px;
    }
    section.w_bk::-webkit-scrollbar-button {
        width: 12px;
        height: 12px;
        background: #666;
    }
    section.w_bk::-webkit-scrollbar-piece {
        background: #eee;
    }
    section.w_bk::-webkit-scrollbar-piece:start {
        background: #eee;
    }
    section.w_bk::-webkit-scrollbar-thumb {
        background: #c0c0c0;
    }
    section.w_bk::-webkit-scrollbar-corner {
        background: #c0c0c0;
    }
}


/*検索フォーム*/


/* 共通 */

input[type="radio"],
input[type="checkbox"] {
    display: none;
}

input[type="radio"]+label,
input[type="checkbox"]+label {
    display: inline-block;
    position: relative;
    margin-left: 10px;
    padding: 10px 20px;
    border-radius: 2px;
    color: #000;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1;
    cursor: pointer;
}

input[type="radio"]+label::before,
input[type="checkbox"]+label::before {
    position: absolute;
    top: 50%;
    left: -10px;
    width: 20px;
    height: 20px;
    content: "";
    margin-top: -10px;
    border: 2px solid #000;
    background: #fff;
}

input[type="radio"]:checked+label::after,
input[type="checkbox"]:checked+label::after {
    position: absolute;
    content: "";
    top: 50%;
    left: -4px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: #1a1a1a;
}


/* ラジオボタン */

input[type="radio"]+label::before,
input[type="radio"]:checked+label::after {
    border-radius: 50%;
}