@charset "utf-8";
/* 開いてるnav */
.nav_item:nth-of-type(3) {
    font-weight: 700;
}

/* header pc */
@media screen and (min-width:809px) {
    /* 開いてるnav */
    .nav_item:nth-of-type(3) {
        border-bottom: solid 2px var(--Blue);
    }
}

/* ========================
article_pickup
======================== */
.post_list {
    text-align: start;
}

.article_blog ul {
    width: 100%;
}

.post_item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.post_item:first-of-type {
    margin-top: 60px;
}

.postTX_box {
    padding: 14px 10px 30px;
    text-align: start;
}

h2 {
    color: #222222;
    font-size: 1.6rem;
}

.postItem_container {
    display: flex;
    margin-top: 10px;
    align-items: center;
}

.postItem_container span {
    color: var(--category);
    font-size: 1.2rem;
}

.category_name {
    border: solid 1px var(--category);
    border-radius: 8px;
    padding: 4px 10px;
    margin-right: 10px;
}

time::before {
    content: '|';
    padding-right: 4px;
}

time {
    color: #222;
    font-size: 1.2rem;
}

.btnBox_container {
    margin: 50px auto 0;
}

/* pickup pc */
@media screen and (min-width:809px) {
    .wrap {
        display: flex;
        margin: 100px auto 0;
        justify-content: center;
    }

    .post_list {
        max-width: 1200px;
        min-width: 800px;
        margin: 0 auto ;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 10px;
    }

    .post_item {
        width: 390px;
    }
    
    .post_item img {
        width: 390px;
        height: 250px;
    }

    .post_item:first-of-type {
        margin-top: 0;
    }

    .btnBox_container {
        text-align: center;
    }

    .article_blog ul {
        display: flex;
    }
}

/* ========================
pagenation
======================== */
.page-numbers {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.page-numbers a,
.page-numbers span {
    color: #222;
    padding: 8px 12px;
    border: solid 1px var(--Blue);
    font-size: 1.8rem;
    line-height: 1;
}

.page-numbers .current {
    color: #fff;
    background-color: var(--Blue);
}

/* .page-numbers span--current {
    color: #fff;
    background-color: var(--Blue);
} */

.page-numbers a:hover {
    color: #fff;
    background-color: var(--Blue);
    transition: 0.3s;
}

.dot {
    border: 0;
    color: #222;
    padding: 8px 12px;
    font-size: 1.8rem;
    line-height: 1;
}

@media screen and (min-width:809px) {
    .pagenation {
        margin-top: 100px;
    }
}

.btnBox_container {
    margin-top: 100px;
}