.sort_table .fil_ul {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}
.sort_table .fil_ul[data-hidden="on"] {
    max-height: 180px;
    overflow-y: scroll;
}
.sort_table .ul_open {
    font-weight: bold;
    color: #4f72c3;
    cursor: pointer;
}
.sort_table .fil_ul li {
    font-size: 12px;
    padding: 0px 5px;
    border: 2px solid #d9d9d9;
    margin: 2px;
    border-radius: 2px;
    cursor: pointer;
    font-weight: bold;
    color: #7c7b7b;
}
.sort_table .fil_ul li[data-target="chara_support"] {
    width: calc(100% / 2 - 4px);
}
.sort_table .fil_ul li[data-target="skill_type"],
.sort_table .fil_ul li[data-target="card_type"] {
    width: calc(100% / 3 - 4px);
}
.sort_table .fil_ul li[data-target="association"],
.sort_table .fil_ul li[data-target="binding"],
.sort_table .fil_ul li[data-target="target"] {
    width: calc(100% / 4 - 4px);
}
.sort_table .fil_ul li[data-target="elem"] {
    width: calc(100% / 5 - 4px);
}

.sort_table .fil_ul li[data-checked="1"] {
    border: 2px solid #173474;
    color: #fff;
    background-color: #3153a0;
}

.sort_table .fil_ul li[data-disabled="1"] {
    opacity: 0.5;
    background: #d9d9d9;
}

.sort_table .input_sort_wrapper {
    width: 100%;
    border-bottom: 1px dotted #ccc;
}
.input_sort {
    width: 90%;
    margin-top: 5px;
    margin-bottom: 5px;
}
.selected_item_zone {
    position: relative;
    margin: 10px;
    padding: 0.5em 1em;
    border: solid 2px #192f60;
    border-radius: 8px;
    min-height: 50px;
}
.selected_item_zone .sz_title {
    position: absolute;
    display: inline-block;
    top: -8px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 13px;
    background: #FFF;
    color: #192f60;
    font-weight: bold;
}
.sz_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.selected_item_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32%;
    border-radius: 2px;
    padding: 2px;
    margin: 3px 0;
    font-size: 11px;
    cursor: pointer;
    box-sizing: border-box;
    font-weight: bold;
    border: 2px solid #173474;
    color: #fff;
    background-color: #3153a0;
}

.sort_bool_wrapper {
    text-align: center;
}

.button_wrapper {
    text-align: center;
}
.reset_button {
    border: 1px solid #9e9a9a;
    border-bottom: 3px solid #9e9a9a;
    background: linear-gradient(90deg, #cccccc, #bbbaba);
    color: #fff;
    text-shadow: #626262 1px 1px 0px;
    padding: 5px;
    width: 45%;
    border-radius: 5px;
    font-size: 15px;
    margin: 10px 2px;
    cursor: pointer;
    font-weight: bold;
}
.search_button {
    border: 1px solid #f36e5c;
    border-bottom: 3px solid #f36e5c;
    background: linear-gradient(90deg, #f97a69, #fb8641);
    color: #fff;
    text-shadow: #eb614f 1px 1px 0px;
    padding: 5px;
    width: 45%;
    border-radius: 5px;
    font-size: 15px;
    margin: 10px 2px;
    cursor: pointer;
    font-weight: bold;
}

.result_table tbody.chara_tbody[data-disp_val='0'] {
    display: none;
}

.skill_label {
    display: inline-block;
    padding: 2px 20px;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 3px;
    color: #fff;
}

.skill_label[data-type='特性'] {
    background: linear-gradient(90deg, #5fba0f, #7bd52d);
}

.skill_label[data-type='スキル'] {
    background: linear-gradient(90deg, #fa9e37, #feaa4b);
}

.skill_label[data-type='必殺技'] {
    background: linear-gradient(90deg, #f53b33, #f4554e);
}

.skill_label[data-type='タッグ'] {
    background: linear-gradient(90deg, #4a67eb, #627beb);
}

.skill_text {
    border: 1px solid #cbc8c8;
    border-radius: 2px;
    padding: 5px;
    margin-bottom: 5px;
    background: #ececec;
}

.effect_single div {
    font-weight: bold;
    margin: 2px 0px;
    border-radius: 2px;
    padding: 2px;
    background: #fff;
}

.effect_single div[data-type='対象'] {
    border: 2px solid #f27373;
}

.effect_single div[data-type='対象'] {
    border: 2px solid #f27373;
}

.effect_single div[data-type='効果'] {
    border: 2px solid #10d228;
}
.choujin_name {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}