
.tag_search{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap:8px;
    width: calc((85% - 32px));
    list-style: none;
    overflow-x: scroll;
}
@media screen and (max-width: 800px) {
    .tag_search{
        position: absolute;
        top: 47px;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap:6px;
        overflow-x: visible;
        z-index: 2;
        background-color: #56595b;
        height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 0;
        /* transition: all 0.4s; */
    }
    .tag_search.show{
        padding: 8px;
        height: fit-content;
        opacity: 1;
    }
}
.tag_search a{
    display: block;
    height: fit-content;
    width: fit-content;
    text-decoration: none;
    height: 24px;
    border-radius: 32px;
    padding: 0 8px;
    background-color: rgb(219, 128, 0);
    color: aliceblue;
    transition: all 0.4s;
}
.tag_search li{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    font-size: 12px;
    white-space: nowrap;
}

/* 検索窓 */
.word_search{
    width: calc((15% - 16px));
}
@media screen and (max-width: 800px) {
    .word_search{
        width: fit-content;
    }
}
.searchform-top {
    width: 100%;
}
.searchform-top .searchform-wrap{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.searchform-top .searchform-wrap input[type=text]{
    width: auto;
    height: 32px;
    border-radius: 4px;
    outline: none;
    border: black 1px solid;
    padding-left: 8px;
}
.searchform-top .searchform-wrap .search-btn{
    height: 32px;
    width: fit-content;
    padding: 0 8px;
    white-space: nowrap;
    border-radius: 4px;
    background-color: rgb(250 192 122);
    transition: all 0.4s;
    border: 1px solid #000;
}

/* スマホ用タグ検索開閉ボタン */
.tagSearchBtn{
    display: none;
}
@media screen and (max-width: 800px) {
    .tagSearchBtn{
        height: 32px;
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        border: 1px solid #000;
        font-size: 14px;
        background-color: rgb(250 192 122);
        border-radius: 4px;
    }
}