@charset "UTF-8";

/* =====================================================
  コラム - コラム埋め込み
===================================================== */
.article-card{
    display: flex;
    gap: 30px;
    background-color: #F8F8F8;
    border-radius: 20px;
    padding: 40px 30px;
}

.article-card .article-card-left{
    margin: 0 auto;
    width: fit-content;
    height: auto;
}
.article-card .article-card-left{
    width: fit-content;
    height: auto;
}
.article-card .article-card-left .box-card{
    width: fit-content;
    height: auto;
}
.article-card .article-card-left .box-card .inner{
    width: fit-content;
    height: auto;
}
.article-card .article-card-left .box-card .inner img{
    max-width: 270px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}

.article-card .article-card-right{
    width: calc(100% - 300px);
}
.article-card .article-card-right .date-wrap{
    display: flex;
    gap: 6px;
    margin-top: 4px;
}
.article-card .article-card-right .date-wrap .postdate{
    display: block;
    font-family: 'Oswald';
    font-size: 18px;
    line-height: 24px;
    color: #CB2323;
    margin: 0;
}
.article-card .article-card-right .date-wrap .update{
    display: block;
    font-family: 'Oswald';
    font-size: 14px;
    line-height: 24px;
    color: #707070;
    margin: 0;
}
.article-card .article-card-right .card-title{
    font-size: 16px;
    line-height: 1.5;
    font-weight: bold;
    margin-top: 12px;
}
.article-card .article-card-right .card-content{
    font-size: 14px;
    line-height: 1.5;
    color: #707070;
    margin-top: 20px;
}
.article-card .article-card-right .more-link{
    display: block;
    text-align: right;
    display: flex;
    font-size: 18px;
    color: #CB2323;
    font-weight: bold;
    margin: 20px 0 0 auto;
    text-decoration: unset;
    width: fit-content;
    padding-right: 44px;
    position: relative;
}
.article-card .article-card-right .more-link::after{
    position: absolute;
    content: "";
    background-image: url(../../assets/images/is-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    top: 50%;
    right: 0;
}

/* =====================================================
  コラムボックス
===================================================== */
.article-column_box{
    border: 4px solid #A5B2DB;
    border-radius: 20px;
    padding: 40px 30px;
}

.article-column_box h3.article-column_box__h3{
    margin: 0 0 20px 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    color: black;
}
.article-column_box.is-caution  .article-column_box__h3,.article-column_box.is-question .article-column_box__h3{
    padding-left: 36px;
    position: relative;
}
.article-column_box.is-caution .article-column_box__h3::before,.article-column_box.is-question .article-column_box__h3::before{
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
}

.article-column_box .article-column_box__text01{
    font-size: 14px;
    line-height: 1.5;
    color: #707070;
}
.article-column_box .article-column_box__text01 p{
    margin: 0;
}

.article-column_box .article-column_box__text02{
    margin: 20px 0 0 auto;
    display: block;
    width: fit-content;
    font-size: 14px;
    line-height: 1.5;
}
.article-column_box .article-column_box__text02 a{
    color: #71BED4;
    text-decoration: underline;
}


/* =====================================================
  コラムボックス-「？」
===================================================== */
.article-column_box.is-question .article-column_box__h3::before{
    background-image: url(../../assets/images/is-question.svg);
}

/* =====================================================
  コラムボックス-「！」
===================================================== */
.article-column_box.is-caution{
    border: 4px solid #ED9595;
}
.article-column_box.is-caution .article-column_box__h3::before{
    background-image: url(../../assets/images/is-caution.svg);
}

/* =====================================================
  コラムボックス-リスト
===================================================== */
.article-column_box.is-list{
    border: 4px solid #F8B15E;
}
.article-column_box.is-list h3.article-column_box__h3{
    color: #F8B15E;
}

.article-column_box.is-list .article-column_box__list{
    list-style: none;
}
.article-column_box.is-list .article-column_box__list li{
    line-height: 24px;
    font-size: 14px;
    padding-left: 36px;
    position: relative;
    margin: 0;
}
.article-column_box.is-list .article-column_box__list li:nth-child(n+2){
    margin-top: 0.75em;
}
.article-column_box.is-list .article-column_box__list li::before{
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    top: 0;
    left: 0;
    background-image: url(../../assets/images/is-list.svg);
}


@media screen and (max-width: 1024px){
    /* =====================================================
    コラム - コラム埋め込み
    ===================================================== */
    .article-card{
        display: block;
        padding: 0;
        overflow: hidden;
    }
    .article-card .article-card-left .box-card .inner img{
       max-width: 100%;
       border-radius: 0;
    }
    .article-card .article-card-right{
        width: 100%;
        padding: 20px 10px;
    }
    .article-card .article-card-right .date-wrap{
        display: flex;
        justify-content: space-between;
    }
    .article-card .article-card-right .date-wrap .postdate{
        white-space: nowrap;
    }
    .article-card .article-card-right .date-wrap .update{
        white-space: nowrap;
    }
    .article-card .article-card-right .card-content{
        margin-top: 10px;
    }
    .article-card .article-card-right .more-link{
        margin-top: 10px;
    }
    
    /* =====================================================
    コラムボックス
    ===================================================== */
    .article-column_box{
        padding: 20px 12px;
    }

}