@charset "UTF-8";

.contents_container {
    display: flex;
    justify-content: space-between;
    margin: 30px auto 150px;
}

.contents_box {
    background-color: #fff;
    color: #314850;
    border-radius: 30px;
    padding: 5%;
    width: 74%;
}

.topics_head {
    display: flex;
    align-items: center;
}

.contents_container span {
    color: #fff;
    padding: 0.3em 1em;
    margin: 1em;
    border-radius: 30px;
    /* width: 12%; */
    min-width: 90px;
    text-align: center;
    background: #DF7B7E;
    white-space: nowrap;

}

.topics_date {
    font-family: "Cantarell", "M PLUS Rounded 1c", " Noto Sans JP", "sans-serif";
}

.topics_titlle {
    font-size: clamp(1.625rem, 1.757rem + -0.5634vw, 1.25rem);
    /* 画面幅1440pxの時フォントサイズは26px、375pxの時20px */
    font-weight: bold;
    line-height: 1.2;
}


.head_image {
    width: 80%;
    margin-top: 50px;
    margin-bottom: 40px;
}

/* .contents_box_text {
    margin-top: 40px;
} */

h4{
font-size: clamp(1.5rem, 1.676rem + -0.75vw, 1rem);
/* 画面幅1440pxの時フォントサイズは24px、375pxの時16px */
margin-top: 20px;
line-height: 1.5;
}

.sample_img{
    width: 65%;
}


/* カテゴリー */
.category {
    width: 22%;
    height: 50%;
    margin-right: 0;
    align-items: center;
    pointer-events: none;
}

.category-list {
    flex-direction: column;
    align-items: center;
}

.category-list li+li {
    margin-top: 20px;
    margin-left: 0;
}

@media (max-width: 768px) {
    .category {
        width: 100%;
        align-items: left;
    }

    .category-list {
        flex-direction: row;
        justify-content: center;
    }

    .contents_container {
        flex-direction: column-reverse;
        margin-bottom: 70px;
    }

    .category-list li+li {
        margin-top: 0;
    }

    .contents_box {
        width: 100%;
        padding: 60px 20px;
    }

    .contents_container span {
        min-width: 80px;
    }

    .head_image {
        width: 100%;
        margin-top: 10px;
    }

    .sample_img{
        width: 100%;
    }

    .contents_box_text {
        font-size: 14px;
    }


}