@charset "utf-8";
/* common */
#pageTit.news,
#path.breadcrumbs {
    display: none;
}

/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap');

/* -------------------------------
   post 投稿
------------------------------- */
#blogContainer {
    display: flex;
}

#blogContainer .postList .box-ttl {
    display: flex;
    flex-direction: column;
    gap: 35px 0;
    justify-content: center;
    align-items: center;
    margin: 0 auto 50px;
}
#blogContainer .postList .box-ttl .ttl-txt {
    font-size: 24px;
    color: #545454;
    letter-spacing: .1em;
    font-weight: 500;
}


#blogContainer .postList .list-cat {
    display: flex;
    width: 100%;
    margin-bottom: 35px;
    justify-content: center;
    gap: 20px 20px;
}
#blogContainer .postList .list-cat a {
    width: 110px;
    height: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #545454;
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 1;
    font-size: 12px;
    justify-content: center;
    border-radius: 50px;
}
#blogContainer .postList .list-cat a:hover
/* #blogContainer .postList .list-cat .active a { */ {
    background-color: #7ac200;
    color: #ffffff;
    opacity: 1;
}


#blogContainer .postList .box-post {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 30px;
}

#blogContainer .postList .box-post .post {
    background-color: #fafaf7 !important;
    width: calc(50% - 15px);
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}
#blogContainer .postList .box-post .post figure {
    position: relative;
    overflow: hidden;
    padding-top: 65%;
    margin: 0;
}
#blogContainer .postList .box-post .post figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#blogContainer .postList .box-post .post .elem-data {
    padding: 20px 35px 30px;
}
#blogContainer .postList .box-post .post .elem-data .ttl-post {
    margin: 0 auto 15px !important;
    line-height: 1;
}
#blogContainer .postList .box-post .post .elem-data .ttl-post a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 1.66;
    display: block;
    height: 3em;
}
#blogContainer .postList .box-post .post .elem-data .elem-cat-time {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}
#blogContainer .postList .box-post .post .elem-data .elem-cat-time .list-tag {
    display: flex;
    justify-content: flex-end;
}
#blogContainer .postList .box-post .post .elem-data .elem-cat-time .list-tag li {
    position: relative;
}
#blogContainer .postList .box-post .post .elem-data .elem-cat-time .list-tag li:not(:first-child) {
    padding-left: 10px;
}
#blogContainer .postList .box-post .post .elem-data .elem-cat-time .list-tag li:not(:first-child)::before {
    content: '/';
    display: block;
    left: 3px;
    position: absolute;
}
#blogContainer .postList .box-post .post .elem-data .elem-cat-time .list-tag a {
    text-decoration: none;
    font-size: 12px;
    color: #545454;
}
#blogContainer .postList .box-post .post .elem-data .elem-cat-time time {
    margin-right: auto;
}


#blogContainer #side {
    position: relative;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;

    .elem-sugg {
        order: 1;
    }
    .box-wid {
        order: 2;
    }
}
#side .ttl-as {
    display: flex;
    flex-direction: column;
    gap: 13px 0;
    margin: 0 auto 30px;
}
#side .ttl-as span {
    line-height: 1;
}
#side .ttl-as .en {
    font-family: "Shippori Mincho B1", serif;
    font-size: 26px;
    letter-spacing: .1em;
    color: #467600;
    font-weight: 700;
    font-style: normal;
}
#side .ttl-as .ja {
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: .2em;
    color: #545454;
}
#side .list-sugg {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin: 0 0 30px;
}
#side .item-sugg {
    width: calc(50% - 5px);
    width: calc(50% - 13px);
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    border-radius: 8px;
    overflow: hidden;
}
#side .item-sugg a {
    display: block;
    text-decoration: none;
}
#side .item-sugg figure {
    margin: 0 auto 7px;
    overflow: hidden;
    padding-top: 63%;
    width: 100%;
    position: relative;
}
#side .item-sugg figure img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: .3s ease-out;
}
#side .item-sugg a:hover .elem-txt {
    opacity: .6;
}
#side .item-sugg a:hover figure img {
    transform: scale(1.1);
}
#side .item-sugg .elem-txt {
    padding: 0 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px 0;
    transition: .3s ease-out;
}
#side .item-sugg .elem-txt .ttl-post {
    font-size: 11px;
    line-height: 1.42;
    color: #545454;
    margin: 0;
    font-weight: 500;
    font-style: normal;
}
#side .item-sugg .elem-txt .txt-date-cat time {
    font-size: 10px;
    color: #545454;
    letter-spacing: .1em;
    line-height: 1;
    font-weight: 900;
    font-style: normal;
}












@media (max-width: 640px) {
    #blogContainer {
        padding: 65px 20px 55px;
    }
    #blogContainer {
        max-width: 100%;
        display: block;
    }
    #blogContainer .postList {
        max-width: 100%;
    }

    #blogContainer .postList .box-ttl {
        gap: 10px 0;
        margin: 0 auto 50px;

        img {
            width: 51px;
        }
    }
    #blogContainer .postList .box-ttl .ttl-txt {
        font-size: 18px;
        letter-spacing: .05em;
    }

    #blogContainer .postList .list-cat {
        display: none;
    }

    #blogContainer .postList .box-cat {
        width: 100%;
        margin: 0 auto 30px;
        position: relative;
        border: 1px solid #bbbbbb;
        border-radius: 2px;
        background: #ffffff;
        border-radius: 5px;
    }
    #blogContainer .postList .box-cat::after {
        content: '';
        position: absolute;
        top: 50%;
        right: .5em;
        width: 0;
        height: 0;
        padding: 0;
        border-left: 1px solid #939393;
        border-bottom: 1px solid #939393;
        pointer-events: none;
        display: block;
        width: 7px;
        height: 7px;
        transform: rotate(-45deg) translateY(-50%);
    }
    #blogContainer .postList .box-cat select {
        width: 100%;
        cursor: pointer;
        text-indent: 0.01px;
        padding: 12px 2em 12px 10px;
        text-overflow: ellipsis;
        border: none;
        outline: none;
        background: transparent;
        background-image: none;
        box-shadow: none;
        appearance: none;
        color: #218b22;
        font-size: 14px;
        font-weight: 500;
    }



    #blogContainer .postList .box-post {
        gap: 25px;
        margin: 0 0 30px;
    }
    #blogContainer .postList .box-post .post {
        width: 100%;
        box-shadow: 0 0 5px rgba(0, 0, 0, .08);
        border-radius: 5px;
    }
    #blogContainer .postList .box-post .post figure {
        margin: 0 auto 6px;
    }
    #blogContainer .postList .box-post .post a:hover .elem-data {
        opacity: 1;
    }
    #blogContainer .postList .box-post .post .elem-data {
        padding: 0 10px 15px;
        gap: 10px 0;
        min-height: 81px;
    }
    #blogContainer .postList .box-post .post .elem-data .ttl-post {
        font-size: 11px;
        letter-spacing: 0;
        line-height: 1.4;
    }
    #blogContainer .postList .box-post .post .elem-data .txt-date-cat time {
        font-size: 10px;
        letter-spacing: 0;
    }
    #blogContainer .postList .box-post .post .elem-data .txt-date-cat .txt-cat {
        font-size: 10px;
    }

    .navigation.paging-navigation .pagination .page-numbers {
        font-size: 12px;
    }



}
