:root{
    --main: #c71b18;
    --sub1: #873332;
    --sub2: #c61917;
    --sub3: #472d2c;
    --sub4: #C7A318;
    --back: #f1f1f1;
}

.section_content_row{
    &.type_1{
        max-width: 1200px;
        align-self: center;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(max-content, max-content);
        gap: 10px;
    }
}
.section_content_box{
    &.type_1{
        padding: 20px;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        background-size: 25px 25px;
        background-image: radial-gradient(farthest-corner, transparent 68%, #f1f1f18c 68% 70%,transparent 70% 100%),
        radial-gradient(circle at top left, transparent 34%, #f1f1f18c 34% 35%,transparent 35% 100%),
        radial-gradient(circle at top right, transparent 34%, #f1f1f18c 34% 35%,transparent 35% 100%),
        radial-gradient(circle at bottom left, transparent 34%, #f1f1f18c 34% 35%,transparent 35% 100%),
        radial-gradient(circle at bottom right, transparent 34%, #f1f1f18c 34% 35%,transparent 35% 100%);
        background-repeat: repeat;
        background-position: center center;
        border: 2px solid var(--sub4);
        &&::before{
            content: "";
            position: absolute;
            inset: 2px;
            pointer-events: none;
            border: 1px ridge var(--sub4);
        }
        &.c_1{
            background-color: var(--main);
        }
        &.c_2{
            background-color: var(--sub1);
        }
        &.c_3{
            background-color: var(--sub3);
        }
    }
}
.section_text{
    &.type_1{
        font-size: 2rem;
        color: white;
    }
}
.content_box_asset{
    width: 16px;
    height: 16px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
}
.section_text_box{
    &.type_1{
        flex: 1;
        padding-right: 10px;
        align-items: center;
        gap: 20px;
    }
}
.text_box_asset{
    width: 40px;
    min-width: 40px;
    img{
        width: 100%;
        height: auto;
    }
}
@media all and (max-width:1280px){

}
@media all and (max-width:960px){

}
@media all and (max-width:768px){
    .section_text{
        &.type_1{
            font-size: 1.8rem;
        }
    }
    .content_box_asset{
        width: 14px;
        height: 14px;
    }
}
@media all and (max-width:450px){
    .section_content_row{
        &.type_1{
            grid-template-columns: 1fr;
        }
    }
}
@media (any-hover: hover){
    .section_content_box.type_1{
        transition: filter ease 0.15s;
    }
    .section_content_box.type_1:hover{
        filter: grayscale(1);
        -webkit-filter: grayscale(1);
    }
    .content_box_asset{
        transform: translateX(-15px) rotate(45deg);
        transition: transform ease 0.25s;
    }
    .section_content_box.type_1:hover .content_box_asset{
        transform: translateX(0) rotate(45deg);
    }
}
