:root{
    --main: #fefefe;
    --sub: #264a9e;
    --sub2: #00a0e9;
    --sub3: #cfcfcf;
    --text: #2d2726;
}
.section_1_image{
    background: url(/assets/img/v_6.webp);
    background-size: cover;
    background-position: center;
}
.section_content_container{
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(max-content, max-content);
    &::before{
        content: "";
        position: absolute;
        width: 50vw;
        height: 100%;
        background: var(--sub3);
        top: 0;
        left: 0;
        transform: translateX(-100%);
    }
}
.section_content_box{
    &.type_1{
        padding: 40px;
        align-items: flex-start;
        &::before{
            content: "";
            position: absolute;
            width: calc(100% - 40px);
            height: calc(100% - 40px);
            bottom: 0;
            right: 0;
            border-right: 1px solid var(--sub3);
            border-bottom: 1px solid var(--sub3);
        }
    }
}
.section_text_box{
    &.type_1{
        padding: 60px 40px;
        background: var(--sub);
        align-items: center;
        justify-content: space-between;
        overflow: hidden;
        gap: 20px;
        &::before,&::after{
            content: "";
            position: absolute;
            background: var(--main);
        }
        &::before{
            height: 100%;
            width: 1px;
            left: 20px;
            top: 0;
        }
        &::after{
            width: 100%;
            height: 1px;
            left: 0;
            bottom: 30px;
        }
    }
}
.content_title_box{
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.section_text{
    &.type_1{
        font-size: 2.4rem;
        color: var(--main);
    }
}
.section_arrow_box{
    overflow: hidden;
    align-items: center;
    &.type_1{
        width: 80px;
        min-width: 80px;
        aspect-ratio: 3 / 1;
        background: var(--main);
        border-radius: 100vh;
    }
}
.section_arrow{
    transform: translateX(100%);
    &.type_1{
        width: 50%;
        text-align: center;
        font-size: 3.2rem;
    }
}
.text_box_asset{
    position: absolute;
    height: 100%;
    right: 40px;
    opacity: 0.3;
    img{
        width: auto;
        height: 100%;
    }
}
@media all and (max-width: 1280px){

}
@media all and (max-width: 960px){
    .section_content_box{
        &.type_1{
            padding: 20px;
            &::before{
                width: calc(100% - 20px);
                height: calc(100% - 20px);
            }
        }
    }
    .section_text{
        &.type_1{
            font-size: 2rem;
        }
    }
}
@media all and (max-width: 768px){
    .section_content_container{
        grid-template-columns: 1fr;
    }
    .section_text{
        &.type_1{
            font-size: max(2.4rem, 2vw);
        }
    }
}
@media all and (max-width: 450px){
    .section_text{
        &.type_1{
            font-size: max(1.6rem, 2vw);
        }
    }
    .section_arrow_box{
        &.type_1{
            width: 60px;
            min-width: 60px;
        }
    }
    .section_arrow{
        &.type_1{
            font-size: 2.8rem;
        }
    }
    .section_text_box{
        &.type_1{
            padding: 40px 20px;
            &::before{
                left: 10px;
            }
            &::after{
                bottom: 20px;
            }
        }
    }
}
@media (any-hover: hover){
    .section_arrow{
        transition: transform ease 0.25s, color ease 0.25s;
        transform: translateX(0);
    }
    .section_text_box{
        &.type_1{
            transition: background ease 0.25s;
        }
    }
    .section_text_box:hover{
        background: var(--sub2);
        .section_arrow{
            transform: translateX(100%);
            color: var(--sub2);
        }
    }
}
