@charset "utf-8";
/* ==============
works
================= */
.section--works{
    padding: 88px var(--contentpadding__sp) 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sectiontitle--works{
    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対策 */
}

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

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

@media screen and (min-width: 1279px) {
    .section--works{
        padding: 48px var(--contentpadding__pc) 0;
        gap: 48px;
    }
}