:root{
    --main: #fefefe;
    --sub: #264a9e;
    --sub2: #00a0e9;
    --sub3: #cfcfcf;
    --text: #2d2726;
}
.section_1_image{
    background: url(/assets/img/v_9_1.webp);
    background-size: cover;
    background-position: bottom;
}
.section_content_container{
    &.type_1{
        grid-template-columns: 1fr 1.5fr;
        grid-template-rows: repeat(max-content, max-content);
        align-items: flex-start;
        &::before,&::after{
            content: "";
            position: absolute;
            width: 100vw;
            height: 1px;
            background: var(--sub3);
        }
        &::before{
            top: 0;
            left: 0;
        }
        &::after{
            bottom: 0;
            right: 0;
        }
    }
    &.type_2{
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        grid-template-rows: repeat(max-content, max-content);
        &::before,&::after{
            content: "";
            position: absolute;
            width: 100vw;
            height: 1px;
            background: var(--sub3);
        }
        &::before{
            top: 0;
            right: 0;
        }
        &::after{
            bottom: 0;
            left: 0;
        }
    }
    &.type_3{
        max-width: 1000px;
        align-self: center;
        gap: 20px;
    }
}
.section_content_box{
    &.type_1{
        padding: 40px;
        align-items: flex-start;
        &.box_1{
            border-bottom: 1px solid var(--sub3);
        }
        &.box_2{
            border-left: 1px solid var(--sub3);
            gap: 20px;
        }
        &::before{
            content: "";
            position: absolute;
            width: 20px;
            aspect-ratio: 1;
            background: var(--sub3);
        }
        &.box_1::before{
            top: 0;
            left: 0;
        }
        &.box_2::before{
            bottom: 0;
            right: 0;
        }
    }
    &.type_2{
        padding: 40px;
        gap: 20px;
        align-items: flex-start;
    }
    &.type_3{
        padding: 20px;
        align-items: flex-start;
        border-bottom: 1px solid var(--sub3);
        &::before{
            content: "";
            position: absolute;
            background: var(--sub3);
            bottom: 0;
            right: 0;
            height: 20px;
        }
        &.box_1::before{
            width: 1px;
        }
        &.box_2::before{
            aspect-ratio: 1;
        }
        &.box_2{
            gap: 5px;
        }
    }
}
.content_title_box{
    &.type_1{
        align-items: flex-start;
    }
    &.type_2{
        align-items: center;
    }
}
.section_content_title{
    &.type_1{
        font-size: 2.8rem;
    }
}
.section_content_title_sub{
    &.type_1{
        font-size: 1.6rem;
        color: var(--sub2);
    }
}
.section_text{
    &.type_1{
        font-size: 1.6rem;
        span{
            font-weight: bold;
            color: var(--sub);
        }
    }
    &.type_2{
        font-size: 1.8rem;
        color: var(--main);
    }
    &.type_3{
        font-size: 1.6rem;
        &.text_1{
            font-weight: bold;
        }
        a{
            font-weight: bold;
            color: var(--sub2);
        }
    }
    &.type_4{
        font-size: 1.4rem;
        &.text_1{
            color: var(--sub);
            font-weight: bold;
        }
    }
}
.text_divider{
    width: 150px;
    height: 1px;
    background: var(--sub3);
}
.text_title_box{
    padding: 20px;
    background: var(--sub);
    align-items: center;
}
.text_row{
    padding: 20px;
    border: 1px solid var(--sub);
    border-top: none;
}
.text_box{
    align-items: flex-start;
    padding: 0 5px;
}
.section_content_column{
    border-top: 1px solid var(--sub3);
}
.section_content_row{
    grid-template-columns: 240px 1fr;
    grid-template-rows: repeat(max-content, max-content);
    align-items: stretch;
}

@media all and (max-width: 1280px){

}
@media all and (max-width: 960px){
    .section_content_container{
        &.type_1{
            grid-template-columns: 1fr;
        }
    }
}
@media all and (max-width: 768px){
    .section_content_box{
        &.type_1{
            padding: 40px 20px;
            &.box_2{
                border-left: none;
            }
        }
        &.type_2{
            padding: 40px 20px;
            &.box_2{
                padding-top: 0;
                gap: 0;
            }
        }
    }
    .section_content_title{
        &.type_1{
            font-size: 2.4rem;
        }
    }
    .section_content_title_sub{
        &.type_1{
            font-size: 1.4rem;
        }
    }
    .section_content_row{
        grid-template-columns: 180px 1fr;
    }
}
@media all and (max-width: 450px){
    .section_content_title{
        &.type_1{
            font-size: 2rem;
        }
    }
    .section_content_title_sub{
        &.type_1{
            font-size: 1.2rem;
        }
    }
    .section_content_box{
        &.type_1{
            padding: 20px 0;
            &::before{
                width: 10px;
            }
        }
        &.type_2{
            padding: 20px 0;
        }
        &.type_3{
            &.box_1{
                max-width: 180px;
            }
            &::before{
                height: 10px;
            }
        }
    }
    .section_text{
        &.type_1,&.type_3{
            font-size: 1.4rem;
        }
        &.type_2{
            font-size: 1.6rem;
        }
        &.type_4{
            font-size: 1.2rem;
        }
    }
    .section_content_row{
        grid-template-columns: 1fr;
    }
}
