.bugo_list_body {
    display: block;
    width: 100%;
    height: auto;
    background-color: var(--bg-01);
    padding: 20px 20px;
    min-height: 90vh;
}

.bugo_search_box {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 20px;
}
.bugo_search_box > input[type="text"] {
    display: block;
    width: 100%;
    height: auto;
    font-size: 1em;
    padding: 1em;
    border-radius: 1.5em;
}
.bugo_search_box > a {
    display: block;
    width: 27px;
    height: 27px;
    z-index: 1;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
}
.bugo_search_box > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bugo_state_list {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: left;
    margin-bottom: 20px;
}
.bugo_state_list > * {
    display: block;
    width: 56px;
    height: auto;
    font-size: 1em;
    line-height: 1em;
    padding: .5em 0;
    text-align: center;
    color: var(--text-07);
    font-weight: 600;
    border-bottom: 2px solid var(--bg-01);
}
.bugo_state_list > .on {
    color: #000;
    border-bottom: 2px solid #000;
}

.list_subtitle {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.list_subtitle > .count {
    color: var(--text-07);
}
.list_subtitle > .subtitle, .list_subtitle span.strong {
    color: #000;
    font-weight: 600;
}

.bugo_list {
    display: flex;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    padding-bottom: 10px;
}
.bugo_list > .bugo_box {
    display: block;
    width: 100%;
    border: 1px solid var(--border-input);
    border-radius: 5px;
    padding: 10px;
    position: relative;
    color: var(--text-07);
    line-height: 1em;
    cursor: pointer;
}
.bugo_list > .bugo_box:hover {
    background-color: var(--bg-02);
    color: var(--bg-10);
    transition: all .3s;
}
.bugo_list > .bugo_box > .goin_name {
    color: #000;
    padding-bottom: 10px;
}
.bugo_list > .bugo_box > .balin_dt {
    position: absolute;
    top: 10px;
    right: 10px;
}
