:root{
    --main: #fefefe;
    --sub: #264a9e;
    --sub2: #00a0e9;
    --sub3: #cfcfcf;
    --text: #2d2726;
}
.section_content_container{
    &.type_1{
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-template-rows: repeat(max-content, max-content);
        gap: 40px;
        align-items: flex-end;
    }
}
.section_content_box{
    &.type_1{
        align-items: center;
    }
    &.type_2{
        align-items: flex-start;
        padding: 40px;
        gap: 20px;
        &::before,&::after{
            content: "";
            position: absolute;
            background: var(--sub3);
            bottom: 20px;
        }
        &::before{
            width: 100vw;
            height: 1px;
            left: -200px;
        }
        &::after{
            width: 40px;
            aspect-ratio: 1;
            right: -40px;
        }
    }
}

.section_text_title{
    font-size: 2.4rem;
    font-weight: bold;
}
.text_divider{
    width: 50%;
    max-width: 200px;
    height: 1px;
    background: var(--sub3);
}
.section_text_box{
    &.type_1{
        align-items: flex-start;
        gap: 20px;
    }
    &.type_2{
        align-items: center;
        gap: 10px;
    }
}
.section_text{
    &.type_1{
        font-size: 1.6rem;
    }
    &.type_2{
        font-size: 1.8rem;
        font-weight: bold;
    }
    &.type_3{
        font-size: 1.2rem;
    }
}
.section_image{
    &.type_1{
        max-width: 500px;
        aspect-ratio: 3 / 4;
        z-index: 1;
        &::before{
            content: "";
            position: absolute;
            width: 100%;
            height: 1px;
            bottom: 20px;
            background: var(--main);
        }
    }
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
@media all and (max-width: 1280px){

}
@media all and (max-width: 960px){
    .section_content_box{
        &.type_2{
            padding: 20px 20px 40px;
            &::before{
                width: calc(100% + 20px);
                left: 20px;
            }
        }
    }
}
@media all and (max-width: 768px){
    .section_content_box{
        &.type_1{
            align-items: flex-start;
        }
        &.type_2{
            padding-top: 0;
        }
    }
    .section_image{
        &.type_1{
            width: calc(100% - 40px);
            max-width: 400px;
            &::after{
                content: "";
                position: absolute;
                width: 100%;
                height: 80%;
                background: var(--sub3);
                bottom: 0;
                right: -40px;
                transform: translateX(100%);
            }
            &::before{
                width: 100vw;
                z-index: 1;
            }
        }
    }
}
@media all and (max-width: 450px){
    .section_content_box{
        &.type_2{
            padding: 0 0 20px;
            &::after{
                bottom: 0;
            }
            &::before{
                bottom: 0;
                left: 0;
            }
        }
    }
    .section_text_title{
        font-size: 2rem;
    }
    .section_text{
        &.type_1{
            font-size: 1.4rem;
        }
    }
    .section_image{
        &.type_1{
            &::after{
                right: -20px;
            }
        }
    }
}
