@charset "utf-8";
.works-retouch{
    background-image: url(../images/orange.png),url(../images/yellow.png);
    background-repeat: no-repeat;
    background-size: 800px;
    background-position: bottom 40% left 10%,bottom right 10%;
}

.seciton--works-retouch{
    padding: 0 5.3%;
}

.section__topic{
    padding-top: 160px;
}

.retouch_list{
    margin: 60px 0 120px;
}

.retouch_item{
    margin-bottom: 80px;
}

.retouch_list .retouch_item:nth-of-type(n+3) .retouch_image{
    display: flex;
    flex-direction: column;
    gap:20px;
}
    
.retouch_image{
    display: flex;
    gap: 15px;
}

.retouch_list p{
    text-align: right;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
}

.retouch_list h3{
    margin-top: 20px;
    font-family: "Noto Sans JP";
    font-size: 2rem;
}

.retouch_list dl{
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap:40px;
}

.introduction{
    display: flex;
    flex-wrap: wrap;
    gap:15px;
    position: relative;
}

.introduction::after{
    content:'';
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    bottom: -20px;
    left:0;
    position: absolute;
}

.introduction::after:last-of-type{
    display: none;
}

.introduction dt{
    font-size: 1.6rem;
    font-weight: 200;
}

.introduction dd{
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
}

/* pc */
@media screen and (min-width:769px) {
    .retouch_list img{
        width: 500px;
    }
    .retouch_item{
        display: flex;
        gap: 50px;
    }

    .retouch_list .retouch_item:nth-of-type(n+3){
        flex-direction: column;
    }
    
    .introduction_list h3{
        margin-top: 0;
    }

    .retouch_image{
        gap:25px;
    }

    .retouch_list .retouch_item:nth-of-type(n+3) .retouch_image{
        justify-content: space-between;
        flex-direction: row;
        position: relative;
    }

    .retouch_list .retouch_item:nth-of-type(n+3) .retouch_image::after{
        content:'';
        width: 0;
        height: 0;
        border-left: 25px solid #fff;
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        display: inline-block;
        top:50%;
        left:50%;
        position: absolute;
    }
}