/* 記事一覧 */
.postlist {
    width: 85%;
    margin: 0 auto;
}

#post-list {
    display: flex;
    flex-wrap: wrap;
    gap: 39px 19px;
}

#post-list .post {
    width: calc(95% / 3);
    padding-bottom: 13px;
    border-bottom: solid 1px #d8d8d8;
}

#post-list .post .container {
    display: flex;
    align-items: center;
    gap: 10px;

}

#post-list .post .container .left {
    width: 50%;
}


#post-list .post .container .right {
    width: 50%;
}


/* 記事一覧フィルター */
#controls {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 70%;
    margin: 19px auto;
}

#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: 5px;
    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% / 13);
}

#controls #filter-buttons button.active {

    color: #111111;

}

#controls #sort-buttons button {
    background-color: transparent;
}

/* 筆者カラー */
.author {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin: 3px auto;
}

.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;
}
