.w1{
    width: 100%;
}
.pr{
    position: relative;
}
.section_content_row{
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-template-rows: repeat(max-content, max-content);
    padding: 0 10px;
    gap: 40px;
}
.section_content_box{
    &.type_2{
        padding: 0 20px 20px 0;
        border-bottom: 2px solid rgb(180, 25, 25);
        border-right: 2px solid rgb(180, 25, 25);
        gap: 40px;
    }
}
.section_image{
    &.type_1{
        padding: 0 10px 10px 0;
        aspect-ratio: 5 / 4;
        overflow: hidden;
        &::before{
            content: "";
            position: absolute;
            inset: 10px 0 0 10px;
            border: 4px solid rgb(180, 25, 25);
        }
        img.work_image{
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            border: 1px solid rgb(38, 18, 0);
        }
    }
}
.section_text_box{
    align-items: flex-start;
    gap: 10px;
}
.section_text{
    &.type_1{
        font-size: 18px;
        font-weight: bold;
        align-items: center;
        gap: 10px;
        span{
            width: 20px;
            aspect-ratio: 1;
            font-size: 12px;
            border: 1px solid rgb(38, 18, 0);
            line-height: 1;
            &::before,&::after{
                content: "";
                position: absolute;
                background: rgb(38, 18, 0);
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }
            &::before{
                width: 1px;
                height: 10px;
            }
            &::after{
                width: 10px;
                height: 1px;
            }
        }
    }
    &.type_2{
        font-size: 16px;
    }
    &.type_3{
        font-size: 14px;
        color: gray;
        font-style: italic;
        text-align: start;
    }
}
.image_asset{
    position: absolute;
    width: 60px;
    bottom: 4px;
    right: 4px;
    z-index: 1;
    img{
        width: 100%;
        height: auto;
    }
}
@media all and (max-width:1200px){

}
@media all and (max-width:850px){

}
@media all and (max-width:500px){
    .section_content_row{
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .section_content_box{
        &.type_2{
            padding: 0 10px 10px 0;
            gap: 20px;
        }
    }
    .section_text{
        &.type_1{
            font-size: 16px;
        }
        &.type_2{
            font-size: 14px;
        }
        &.type_3{
            font-size: 12px;
        }
    }
}
@media (any-hover: hover){
    .section_image{
        img.work_image{
            transition: transform ease 0.25s;
            transform-origin: top left;
        }
        &:hover img.work_image{
            transform: scale(0.98);
        }
    }
}
