.secCmnHero{
    background-image: url(../img/news/bgHero.jpg);
}
@media only screen and (max-width:767px){
    .secCmnHero{
        background-image: url(../img/news/bgHero_sp.jpg);
    }
}

/* secList */
.secList{
    margin-top: 8rem;
}
.secList .itemMain{
    position: relative; 
    border-bottom: 1px solid var(--borderColorGray);
    padding: 3.7rem 0 3.5rem;
}
.secList .itemMain:first-child{
    border-top: 1px solid var(--borderColorGray);
}
.secList .date{
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing16_50);
}
.secList .linkMain{
    font-size: var(--pcFontSize18);
    line-height: var(--pcLineHeight18_40);
    letter-spacing: var(--pcLetterSpacing18_50);
    font-weight: bold;
    width: calc(100% - 15rem);
    margin-top: 0.7rem;
}
.secList .btnMain{
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    background: var(--keyColor);
    width: 11rem;
    height: 3.5rem;
    font-size: var(--pcFontSize12);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--whiteColor);
    cursor: pointer;
}
.secList .btnMain.on{
    background: var(--btnOffColor);
}
.secList .onTxt{
    display: none;
}
.secList .btnMain.on .onTxt{
    display: inline;
    color: var(--textColor);
}
.secList .btnMain.on .offTxt{
    display: none;
}
.secList .btnMain:before,
.secList .btnMain:after {
    content: "";
    background: var(--whiteColor);
    width: 0.9rem;
    height: 0.1rem;
    position: absolute;
    right: 1.5rem;
    top: calc(50% - 0.05rem);
}
.secList .btnMain.on:before{
    background: var(--textColor);
}
.secList .btnMain.on:after{
    background: var(--textColor);
}
.secList .btnMain:after {
    transform: rotate(90deg);
}
.secList .btnMain.on:after {
    transform: rotate(360deg);
}
.secList .boxSubList{
    display: none;
    padding: 4.5rem 0 2rem;
    position: relative;
}
.secList .boxSubList::before{
    content: "";
    background: var(--textColor);
    width: 5rem;
    height: 0.1rem;
    position: absolute;
    top: 2rem;
    left: 0;
}
@media only screen and (max-width:1215px){
    .secList{
        margin-top: 4rem;
    }
    .secList .itemMain{
        padding: 1.8rem 0 2.1rem;
    }
    .secList .itemMain:first-child{
        border-top: 1px solid var(--borderColorGray);
    }
    .secList .date{
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secList .linkMain{
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_22);
        letter-spacing: var(--spLetterSpacing0);
        width: 100%;
        margin-top: 0.5rem;
    }
    .secList .btnMain{
        width: 2.7rem;
        height: 2.7rem;
        border-radius: 0.3rem 0.3rem 0 0;
        font-size: var(--spFontSize10);
    }
    .secList .btnMain.on{
        background: var(--btnOffColor);
    }
    .secList .onTxt,
    .secList .offTxt{
        display: none!important;
    }
    .secList .btnMain:before,
    .secList .btnMain:after{
        width: 0.9rem;
        height: 0.1rem;
        right: 0.9rem;
        top: calc(50% - 0.05rem);
    }
    .secList .boxSubList{
        padding: 2.2rem 0 1.7rem;
        position: relative;
    }
    .secList .boxSubList::before{
        content: "";
        background: var(--textColor);
        width: 3rem;
        height: 0.1rem;
        position: absolute;
        top: 0.8rem;
        left: 0;
    }
}