/*------------------------------
PICK UP / 下層_お役立ちコラム
--------------------------------*/
.blogList{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
.blogList article.blog{
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
    border: 0.5px solid #4d4d4d;
    box-sizing: border-box;
}
.bloglist_thumb{
    width: 100%;
    height: 100%;
    max-height: 280px;
}
.bloglist_thumb img{
    width: 100%;
    height: 100%;
    max-height: 280px;
    object-fit: cover;
}
.bloglist_body{
    padding: 13px;
}
.bloglist_body time{
    font-size: 1.4rem;
}
.bloglist_body h3.bloglist_title{
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 115%;
    padding: 0px 0px 10px 0px;
    border-bottom: 1px solid #4d4d4d;
}
.bloglist_com{
    padding: 12px 0px 0px 0px;
}
.jyoken{
    border-radius: 6px;
    background: #eee;
    padding: 10px 5px;
    margin-top: 10px;
    text-align: center;
}
.jyoken_inner{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 5px;
}
.jyoken .bl_type,
.jyoken .bl_price{
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.05rem;
}
.jyoken .bl_min_circle{
    background: #0c8a60;
    color: #fff;
    width: 22px;
    height: 22px;
    line-height: 140%;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    font-size: 1.4rem;
    vertical-align: text-bottom;
    font-weight: 500;
    padding-top: 1px;
}
.jyoken .bl_min{
    font-size: 1.4rem;
    font-weight: normal;
}
.jyoken .bl_p{
    font-size: 1.4rem;
    line-height: 120%;
}


@media screen and (min-width: 768px) {
  /* 画面幅が768px以上のデバイスで適用されるスタイル */
    .blogList article.blog{
        width: 48%;
    }
    .bloglist_thumb{
        max-height: 320px;
    }
    .bloglist_thumb img{
        min-height: 320px;
    }
    .bloglist_body h3.bloglist_title{
        font-size: 2.2rem;
    }
    .jyoken .bl_min_circle{
        width: 22px;
        height: 22px;
        font-size: 1.3rem;
    }
}
@media screen and (min-width: 1024px) {
  /* 画面幅が1024px以上のデバイスで適用されるスタイル */
}


/*------------------------------
保管用
--------------------------------*/
@media screen and (min-width: 768px) {
  /* 画面幅が768px以上のデバイスで適用されるスタイル */
}
@media screen and (min-width: 1024px) {
  /* 画面幅が1024px以上のデバイスで適用されるスタイル */
}


