@charset "utf-8";
/* ==============
news
================= */

.section--news{
    height: auto;
    padding: 88px 6.4% 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1920px;
    margin: 0 auto;
}

.sectiontitle--news{
    margin-bottom: 19px;
    position: relative;
}

.sectiontitle--news::after{
    content: '';
    display: inline-block;
    background-image: url(../image/decoration_fixed.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 54px;
    height: 49px;
    z-index: 3;
    top: 22px;
    left: 124px;
    image-orientation: from-image; /* Safari対策 */
}

.maintitle--red{
    color: var(--main,#E81C1C);
}

.news__contents{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.news__box{
    width: 100%;
    padding: 24px 0;
}

.news__article{
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    gap: 10px;
}

time{
    color: var(--main, #E81C1C);
    font-size: 2rem;
    font-weight: 600;
}

.news__title__area{
    display: flex;
    justify-content: space-between;
    gap: 7%;
    padding: 0 0 10px 0 ;
    border-bottom: dashed 2px var(--main,#E81C1C); 
}


.news__title{
    color: var(--text, #332F28);
    font-family: "Zen Kaku Gothic Antique";
    font-size: 2rem;
    font-weight: 700;
}

.article__link{
    width: 30px;
    height: 30px;
}

/* news tub  */
@media screen and (min-width: 769px) {
    .section--news{
        padding: 0 var(--contentpadding__sp) 0;
    }

    .sectiontitle--news::after{    
        content: '';
        display: inline-block;
        background-image: url(../image/decoration.png);
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        width: 113px;
        height: 102px;
        z-index: 3;
        top: 15px;
        left: 172px;
    }


    .news__box{
        padding: 32px 0;
    }

    .news__article{
        width: 100%;
        flex-direction: row;
        padding: 0;
        align-items: center;
        gap: 34px;
        border-bottom: dashed 2px var(--main,#E81C1C);    
    }


    .news__title{
        line-height: 60px;
    }

    .news__title__area{
        width: 100%;
        gap: 0;
        border-bottom: none;
        padding: 0;
        align-items: center;
    }

}

/* news pc  */
@media screen and (min-width: 1279px) {
    .section--news{
        padding: 48px var(--contentpadding__pc) 0;
    }


    .news__title{
        font-size: 3.2rem;
    }
    .news__article{
        padding: 0 0 16px 0;
    }

    .article__link{
        width: 60px;
        height: 60px;
        
    }
}

/* :hoverが使える端末を想定 */
@media (hover: hover){
    .article__link:hover{
    opacity: 0.5;
    transition: 0.5s;
    }
}

/* :hoverが使えない端末を想定 */
@media (hover: none) {
    .article__link:active{
    opacity: 0.5;
    transition: 0.5s;
    }

}