:root{
    --main: #fefefe;
    --sub: #264a9e;
    --sub2: #00a0e9;
    --sub3: #cfcfcf;
    --text: #2d2726;
}
.section.section_1{
    height: 350px;
    padding-top: 120px;
    align-items: stretch;
}
.section_1_container{
    &.type_1{
        width: 250px;
        background: var(--sub3);
    }
    &.type_2{
        flex: 1;
        align-items: flex-start;
        justify-content: flex-end;
    }
}
.section_1_title_box{
    z-index: 1;
    padding: 40px;
    align-items: flex-start;
}
.section_1_title{
    font-size: 4.8rem;
    padding: 10px 20px;
    background: var(--main);
    line-height: 1.2;
    span{
        font-size: 1.6rem;
        font-weight: bold;
        color: var(--sub2);
        &::before{
            content: "";
            position: absolute;
            width: 20px;
            height: 2px;
            background: var(--sub2);
            top: calc(50% - 1px);
            right: -30px;
        }
    }
}
.section.section_2{
    padding-top: 120px;
}

.breadcrumb_container{
    align-items: center;
    justify-content: center;
    padding: 20px 5%;
    border-top: 1px solid var(--sub3);
    border-bottom: 1px solid var(--sub3);
}
.breadcrumb{
    max-width: 1400px;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    .set_asset::before{
        content: "/";
        position: absolute;
        top: 50%;
        right: -24px;
        font-size: 1.4rem;
        transform: translateY(-50%);
    }
}
.bread_text{
    font-size: 1.4rem;
    &.anchor{
        text-decoration: underline;
    }
}

.section_u_container{
    padding: 0 40px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(max-content, max-content);
    gap: 40px;
}
.section_u_box{
    padding: 40px 20px;
    background: var(--text);
    align-items: center;
    justify-content: space-between;
    &::before,&::after{
        content: "";
        position: absolute;
        background: var(--main);
    }
    &::before{
        width: 1px;
        height: 100%;
        bottom: 0;
        left: 10px;
    }
    &::after{
        width: 100%;
        height: 1px;
        left: 0;
        bottom: 20px;
    }
}
.section_text.for_u{
    color: var(--main);
    font-size: 2rem;
}
.section_arrow_box{
    overflow: hidden;
    align-items: center;
    &.type_1{
        width: 60px;
        aspect-ratio: 3 / 1;
        background: var(--main);
        border-radius: 100vh;
    }
}
.section_arrow{
    transform: translateX(100%);
    &.type_1{
        width: 50%;
        text-align: center;
        font-size: 2.8rem;
    }
}
@media all and (max-width: 1280px){
    .section_1_container{
        &.type_1{
            width: 200px;
        }
    }
    .section_1_title{
        font-size: 4.2rem;
        span{
            font-size: 1.4rem;
        }
    }
    .section_u_container{
        gap: 20px;
    }
    .section_text.for_u{
        font-size: 1.6rem;
    }
}
@media all and (max-width: 960px){
    .section_1_container{
        &.type_1{
            width: 160px;
        }
    }
    .section_1_title{
        font-size: 3.6rem;
    }
    .section_u_container{
        padding: 0 20px;
    }
}
@media all and (max-width: 768px){
    .section.section_1{
        height: 300px;
        padding-top: 100px;
    }
    .section_1_container{
        &.type_1{
            width: 140px;
        }
    }
    .section_1_image{
        width: calc(100% - 80px);
    }
    .section_1_title_box{
        padding: 40px 20px;
    }
    .section_1_title{
        font-size: 3.2rem;
    }
    .section.section_2{
        padding-top: 80px;
    }
    .section_u_container{
        grid-template-columns: 1fr;
    }
}
@media all and (max-width: 450px){
    .section.section_1{
        height: 220px;
        padding-top: 80px;
    }
    .section_1_container{
        &.type_1{
            width: 60px;
        }
    }
    .section_1_image{
        width: calc(100% - 40px);
    }
    .section_1_title_box{
        padding: 20px;
    }
    .section_1_title{
        font-size: 2.8rem;
        padding-left: 0;
        span{
            font-size: 1rem;
            &::before{
                width: 15px;
                right: -25px;
            }
        }
    }
    .breadcrumb_container{
        padding: 10px 5%;
    }
    .breadcrumb{
        gap: 20px;
        .set_asset::before{
            right: -14px;
            font-size: 1.2rem;
        }
    }
    .bread_text{
        font-size: 1.2rem;
    }
    .section_u_container{
        padding: 0;
        gap: 10px;
    }
}
@media (any-hover: hover){
    .section_u_box{
        transition: background ease 0.25s;
    }
    .section_arrow{
        transition: transform ease 0.25s, color ease 0.25s;
        transform: translateX(0);
    }
    .section_u_box:hover{
        background: var(--sub);
    }
    .section_u_box:hover .section_arrow{
        transform: translateX(100%);
        color: var(--sub2);
    }
}
