:root{
    --main: #fefefe;
    --sub: #264a9e;
    --sub2: #00a0e9;
    --sub3: #cfcfcf;
    --text: #2d2726;
}
.section_content_container{
    &.type_1{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(max-content, max-content);
        gap: 40px;
        padding: 0 40px 40px 40px;
        &::before,&::after{
            content: "";
            position: absolute;
            background: var(--sub3);
            bottom: 0;
        }
        &::before{
            width: 100vw;
            height: 1px;
            left: 40px;
        }
        &::after{
            width: 1px;
            height: calc(100% + 40px);
            right: 0;
        }
    }
}
.section_content_box{
    &.type_1{
        align-items: flex-start;
        gap: 20px;
    }
}
.section_text_box{
    align-items: flex-start;
    &.type_1{
        max-width: 800px;
        align-self: center;
        padding-bottom: 40px;
        gap: 20px;
        &::before{
            content: "";
            position: absolute;
            width: 100vw;
            height: 1px;
            background: var(--sub3);
            bottom: 0;
            left: 0;
        }
    }
    &.type_2{
        gap: 10px;
    }
}
.section_text_title_box{
    align-items: flex-start;
}
.section_text_title{
    &.type_1{
        font-size: 2.8rem;
        font-weight: 600;
    }
    &.type_2{
        font-size: 2.4rem;
    }
}
.section_text{
    &.type_1{
        font-size: 1.6rem;
        padding-left: 20px;
        border-left: 4px solid var(--sub2);
    }
    &.type_2{
        font-size: 1.2rem;
        padding-left: 20px;
        color: var(--sub2);
        font-weight: bold;
        &::before,&:after{
            content: "";
            position: absolute;
            background: var(--sub2);
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        &::before{
            width: 2px;
            height: 1.2rem;
        }
        &::after{
            width: 12px;
            height: 2px;
        }
    }
    &.for_label,&.type_3{
        font-size: 1.6rem;
    }
    &.for_label{
        color: var(--sub2);
        white-space: nowrap;
    }
}
.section_text_row{
    align-items: flex-start;
    gap: 10px;
}
.content_asset{
    position: absolute;
    z-index: -1;
    &.type_1{
        width: 120px;
        aspect-ratio: 2 / 1;
        bottom: 0;
        right: 0;
        background: var(--sub3);
    }
}
@media all and (max-width: 1280px){

}
@media all and (max-width: 960px){
    .section_text_box{
        &.type_1{
            max-width: none;
        }
    }
    .section_content_container{
        &.type_1{
            padding-left: 0;
        }
    }
    .section_text_title{
        &.type_1{
            font-size: 2.4rem;
        }
        &.type_2{
            font-size: 2rem;
        }
    }
}
@media all and (max-width: 768px){
    .section_text_box{
        &.type_1{
            padding-bottom: 20px;
        }
    }
    .section_text{
        &.type_1,&.for_label,&.type_3{
            font-size: 1.4rem;
        }
        &.type_1{
            padding-left: 10px;
        }
    }
    .section_content_container{
        &.type_1{
            grid-template-columns: 1fr;
            padding-right: 20px;
            padding-bottom: 20px;
            gap: 20px;
            &::after{
                height: calc(100% + 20px);
            }
            &::before{
                left: 0;
            }
        }
    }
    .section_content_box{
        &.type_1{
            gap: 10px;
        }
    }
    .content_asset{
        &.type_1{
            width: 80px;
            right: -40px;
        }
    }
    .section_text_title{
        &.type_1{
            font-size: 2rem;
        }
    }
}
@media all and (max-width: 450px){
    .section_text_title{
        &.type_1,&.type_2{
            font-size: 1.8rem;
        }
    }
    .section_text{
        &.type_1{
            border-left-width: 2px;
        }
        &.type_2{
            font-size: 1rem;
        }
    }
    .content_asset{
        &.type_1{
            right: -70px;
        }
    }
}
