/* 記事一覧 */

.postlist {
    width: 95%;
    margin: 0 auto;
}

main {
    margin-top: 0;
    background-color: #f2f5f9;
}

h2 {
    margin: 27vw 0 4vw;
}

.block {
    padding: 0;
}

#post-list {
    display: flex;
    flex-wrap: wrap;
    gap: 39px 19px;
}

#post-list .post {
    width: calc(99% / 1) !important;
    padding-bottom: 13px;
    border-bottom: solid 1px #d8d8d8;
}

#post-list .post .container {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: none;
    width: 100%;
    padding: 0;

}

#post-list .post .container .left {
    width: 50%;
}


#post-list .post .container .right {
    width: 50%;
}



#controls #filter-buttons button.active {
    color: #ffffff !important;
}

#load-more-btn {
    margin: 20px auto;
    display: block;
    background-color: #f4e6bb;
    padding: 11px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 52px;
    width: 100%;
}

#controls #filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin: 21px auto;
}

#controls #filter-buttons button {
    font-weight: 700;
    width: 57%;
    color: #b8b8b8;
    background-color: transparent;
    transition: 0.3s;
    width: calc(100% / 3);
    font-size: 4vw;
}



#controls #filter-buttons button.active {

    color: #111111;

}

#controls #sort-buttons {
    text-align: center;
}

#controls #sort-buttons button {
    background-color: transparent;

}

/* 筆者カラー */
.author {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin: 3px auto;
    width: 100%;
}

.author span {
    padding: 0% 8%;
    display: block;
    text-align: center;
    border-radius: 52px;
    color: #fff;
    font-weight: 500;
}

.author .uho {
    background-color: #ff7800;
}

.author .inu {
    background-color: #e93b7a;
}

.author .tofu {
    background-color: #7b4703;
}

.author .gyosan {
    background-color: #0a127f;
}

.author .boy {
    background-color: #037b27;
}

.author .kiiro {
    background-color: #afb91a;
}

.author .neko {
    background-color: #808080;
}

.author .hamu {
    background-color: #4e10c2;
}

.author .zunzun {
    background-color: #c21010;
}

.author .sechan {
    background-color: #1d1d1d;
}

.author .yushin {
    background-color: #38adfc;
}

/* ハッシュタグ */
.category {
    font-weight: 500;
}


#menu-toggle {
    display: block;
    position: fixed;
    bottom: 165vw;
    right: 0;
    background-color: #000;
    width: 80px;
    height: 80px;
    border-radius: 92px;
    color: #fff;
    z-index: 2;
    margin: 4vw;
    font-size: 4vw;
}

#menu-close {
    margin-bottom: 10px;
    background-color: transparent;
    position: absolute;
    right: 0;
    margin: 7%;
    top: 0;
    font-size: 5vw;
    border: solid 2px #fff;
    width: 50px;
    height: 50px;
    border-radius: 52px;
}

.controls-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: #141414d9;
    padding: 10px;
    position: fixed;
    z-index: 1000;
    color: #fff;
    height: 100vh;
    width: 100%;
    top: 0;
}

.controls-menu.open {
    display: block;
    align-content: center;
}

#more-container {
    width: 100%;
}

