@charset "utf-8";

/**sub_main*********************************/
.sub_main .img_area {
    width: 100%;
    height: 14vh;
    background-image: url(../images/blog/blog_img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.sub_main .title_04 {
    text-align: center;
}

.sub_h1 {
    text-align: center;
}

/*700px以上*/
@media (min-width: 700px) {
    .sub_page .text_area {
        width: 100%;
    }

    .sub_page .text_area .text_flex {
        flex-direction: unset;
    }

    .sub_page .img_area {}
}

/*900px以上*/
@media (min-width: 900px) {}


/*****voice_02******************************/
.post_list {
    padding: 0 4%;
}

.post_list li {
    background-color: #FFF;
    padding: 1rem;
    margin: 0.8rem;
}

.post_list a {}

.post_list .thumb figure {
    width: 100%;
    aspect-ratio: 4 / 3;
}

.post_list .thumb img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.post_list .date {
    text-align: right;
    padding: 0.3em 0;
}

.post_list .comment {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.post_list .title {
    display: block;
    margin: 0 0 0.5rem;
    font-weight: 500;
    border-bottom: solid 1px #ccc;
    padding: 0 0 0.5em;
}

.post_title {
    color: #CD5E3C;
    font-size: clamp(1.125rem, 0.956rem + 0.84vw, 2rem);
    margin: 0 0 0.7em;
    font-weight: 500;
}

/*600px以上*/
@media (min-width: 600px) {
    .post_list {
        display: flex;
        flex-wrap: wrap;
    }

    .post_list li {
        width: calc(100% / 2 - 1.7rem);
    }
}

/*900px以上*/
@media (min-width: 900px) {
    .post_list li {
        width: calc(100% / 3 - 1.7rem);
    }
}

/*1200px以上*/
@media (min-width: 1200px) {
    .post_list li {
        width: calc(100% / 4 - 1.7rem);
    }
}

.catName {
    background-color: #CD5E3C;
    padding: 0 1em;
    border-radius: 1em;
    font-size: 13px;
    color: #fff;
}

.type_post .post_meta {
    display: flex;
    justify-content: end;
    margin: 0 0 0.7rem;
    flex-direction: column;
    text-align: right;
}