/* コラムの推薦者の声のスタイル */
.voice_list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.voice_list li {
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #00517C;
    max-width: 420px;
    margin-inline: auto;
}

.el_recommendTtl {
    font-size: 20px;
    font-weight: 600;
}

.bl_cont_img {
    width: 100%;
    max-height: 320px;
    overflow: hidden;
    border-radius: 4px;
}

.bl_cont_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* .bl_cont_position {
    border-bottom: 4px solid #feff00a9;
    width: fit-content;
} */

/* タブレット向け */
@media (min-width: 768px) {
    .voice_list li {
        max-width: unset;
    }

    .el_recommendTtl {
        font-size: 28px;
    }

    .voice_list li .bl_cont {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
        width: 100%;
    }

    .bl_cont_img {
        width: 38%;
    }

    .bl_cont_txt {
        width: 58%;
    }

    .bl_cont_txt strong {
        font-size: 20px;
    }

    /* デスクトップ向け */
    @media (min-width: 1024px) {}

    /* 大画面向け */
    @media (min-width: 1440px) {}

    /**
 * File: single.css
 * Usage: single.php(投稿の個別ページ)のスタイルを定義します。
*/