:root{
    --main: #c71b18;
    --sub1: #873332;
    --sub2: #c61917;
    --sub3: #472d2c;
    --sub4: #C7A318;
    --back: #f1f1f1;
}
.section_content_container.type_1{
    gap: 20px;
}
.section_content_column{
    max-width: 1200px;
    align-items: center;
    gap: 1px;
    align-self: center;
}
.section_content_box{
    gap: 20px;
    &.type_1{
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        border: 1px solid var(--main);
        background: var(--back);
        padding: 20px 40px;
        gap: 20px;
    }
    &.type_2{
        align-items: flex-start;
        padding: 40px 60px;
        &::before{
            content: "";
            position: absolute;
            inset: 10px 20px;
            background: white;
            z-index: -1;
        }
    }
}
.content_box_asset{
    width: 50px;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
}
.box_asset_text{
    font-size: 2.8rem;
    line-height: 1;
    padding-bottom: 5px;
}
.section_slide_container{
    max-height: 0;
    transition: max-height 0.15s linear;
    overflow: hidden;
}
.section_text{
    &.type_1{
        font-size: 2rem;
    }
    &.type_2{
        font-size: 1.6rem;
    }
}
.row_toggle{
    width: 40px;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
}
.row_toggle_inside{
    position: absolute;
    transition: transform ease 0.25s;
    background: var(--sub3);
    &.type_1{
        width: 2px;
        height: 100%;
    }
    &.type_2{
        width: 100%;
        height: 2px;
    }
}
.row_toggle.active{
    .row_toggle_inside.type_1{
        transform: rotate(90deg);
    }
    .row_toggle_inside.type_2{
        transform: rotate(180deg);
    }
}

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

}
@media all and (max-width:960px){
    .section_text{
        &.type_1{
            font-size: 1.8rem;
        }
    }
    .row_toggle{
        width: 30px;
    }
}
@media all and (max-width:768px){
    .section_content_box{
        &.type_1{
            padding: 20px;
        }
        &.type_2{
            padding: 40px;
            &::before{
                inset: 10px;
            }
        }
    }
    .row_toggle{
        width: 25px;
    }
}
@media all and (max-width:450px){
    .section_text{
        &.type_1{
            font-size: 1.6rem;
        }
        &.type_2{
            font-size: 1.4rem;
        }
    }
    .section_content_box{
        &.type_2{
            padding: 30px;
        }
    }
}
