:root{
    --main: #fefefe;
    --sub: #264a9e;
    --sub2: #00a0e9;
    --sub3: #cfcfcf;
    --text: #2d2726;
}
.section.section_1{
    height: 80lvh;
    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_image{
    position: absolute;
    width: calc(100% - 100px);
    height: 100%;
    bottom: 0;
    right: 0;
}
.section_1_title_box{
    z-index: 1;
    padding: 40px;
    align-items: flex-start;
}
.section_1_title{
    font-size: 3.6rem;
    padding: 20px 30px;
    background: var(--main);
    span{
        font-size: 2rem;
        font-weight: bold;
        color: var(--sub2);
        &::before{
            content: "";
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--sub2);
            top: calc(50% - 1px);
            right: -50px;
        }
    }
}
.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;
    }
}
@media all and (max-width: 1280px){
    .section_1_container{
        &.type_1{
            width: 200px;
        }
    }
    .section_1_title{
        font-size: 4.2rem;
        span{
            font-size: 2.4rem;
        }
    }
}
@media all and (max-width: 960px){
    .section_1_container{
        &.type_1{
            width: 160px;
        }
    }
    .section_1_title{
        font-size: 3.6rem;
        span{
            font-size: 2rem;
        }
    }
}
@media all and (max-width: 768px){
    .section.section_1{
        padding-top: 100px;
        height: 50lvh;
    }
    .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;
        span{
            font-size: 1.6rem;
        }
    }
    .section.section_2{
        padding-top: 80px;
    }
}
@media all and (max-width: 450px){
    .section.section_1{
        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: 10px 20px;
        padding-left: 0;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        span{
            font-size: 1.2rem;
            &::before{
                width: 20px;
                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;
    }
}
