@charset "utf-8";
/*-----------------------------------------------
    secNews
-----------------------------------------------*/
.secNews .boxList{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;;
}
.secNews .boxList .item{
    width: 100%;
}
.secNews .boxList .link{
    display: flex;
    background-color: var(--whiteColor);
}
.secNews .boxList .date{
    width: 12rem;
    height: 5rem;
    background-color: var(--blackColor_333);
    color: var(--whiteColor);
    padding: 0.5rem 1rem;
    font-size: var(--pcFS11);
    display: flex;
    justify-content: center;
    align-items: center;
}
.secNews .boxList .boxTit{
    width: calc(100% - 12rem);
    padding: 0 3rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row-reverse;
    gap: 1rem;
}
.secNews .boxList .tit{
    font-size: var(--pcFS12);
    line-height: var(--pcLH12_21);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.secNews .boxList .iconNew + .tit{
    max-width: calc(100% - 5rem);
}
.secNews .boxList .icon {
    height: 1.8rem;
    font-size: var(--pcFS11);
    display: flex;
    justify-content: center;
    align-items: center;
}
.secNews .boxList .iconNew {
    width: 3.6rem;
    background-color: var(--yellowColor);
}
.secNews .boxCmnBtn {
    margin-top: 3rem;
}
@media only screen and (max-width:1215px){
    .secNews .boxList{
        gap: 0.2rem;
    }
    .secNews .boxList .link{
        align-items: center;
        flex-wrap: wrap;
        gap: 0.7rem;
        padding: 1.2rem 1.5rem;
    }
    .secNews .boxList .date{
        width: auto;
        height: auto;
        background-color: transparent;
        color: var(--gray_darkColor);
        padding: 0;
        font-size: var(--spFS10);
        display: inline-block;
    }
    .secNews .boxList .boxTit{
        width: 100%;
        padding: 0;
        display: contents;
        gap: 1rem;
    }
    .secNews .boxList .tit{
        width: 100%;
        font-size: var(--spFS11);
        line-height: var(--spLH11_16);
        white-space: normal;
        text-overflow: inherit;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        overflow: hidden;
        max-height: calc(var(--spFS11) * var(--spLH11_16) * 2);
    }
    .secNews .boxList .iconNew + .tit{
        max-width: 100%;
    }
    .secNews .boxList .iconNew {
        width: 2.5rem;
        height: 1.6rem;
        font-size: var(--spFS10);
    }
    .secNews .boxCmnBtn {
        margin-top: 2rem;
    }
}

/*-----------------------------------------------
    secDetails
-----------------------------------------------*/
/* secHead */
.secDetails .secHead .txt{
    font-size: var(--pcFS12);
    color: var(--gray_darkColor);
    font-weight: bold;
}
/* .secEntry */
.secDetails .secEntry{
    margin-top: 6rem;
}
.boxCmnBtn {
    margin-top: 8rem;
}
/* .secDetailsTopImg */
.secDetails .secDetailsTopImg{
    margin-top: 6rem;
}
.secDetails .secDetailsTopImg .img{
    text-align: center;
}
.secDetails .secDetailsTopImg img{
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
@media only screen and (max-width:1215px){
    /* secHead */
    .secDetails .secHead .txt{
        font-size: var(--spFS11);
        line-height: var(--spLH11_16);
        font-weight: normal;
    }
    /* .secEntry */
    .secDetails .secEntry{
        margin-top: 2rem;
    }
    .boxCmnBtn {
        margin-top: 4rem;
    }
    /* .secDetailsTopImg */
    .secDetails .secDetailsTopImg{
        margin-top: 2rem;
    }
}