: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_content_container{
    &.type_1{
        max-width: 1000px;
        align-items: flex-start;
        gap: 20px;
        &::before{
            content: "";
            position: absolute;
            height: 100%;
            width: 100vw;
            background: var(--sub3);
            top: 0;
            right: -20px;
            transform: translateX(100%);
            opacity: 0.25;
        }
    }
}
.section_text{
    &.type_1{
        font-size: 1.6rem;
        &.text_2{
            font-weight: bold;
        }
    }
    &.type_2{
        font-size: 1.8rem;
        font-weight: bold;
    }
}
li.section_text.type_1{
    list-style: disc;
    list-style-position: inside;
}
.text_box_asset{
    width: 20px;
    height: 2px;
    background: var(--sub2);
}
.section_text_box{
    padding: 5px 10px;
    gap: 10px;
    &.type_1{
        align-items: center;
    }
    &.type_2{
        align-items: flex-start;
    }
}
.text_box{
    padding: 10px 0;
    align-items: flex-start;
    &.type_2{
        padding: 10px;
        border: 1px solid var(--sub3);
    }
}

@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;
        }
    }
}
@media all and (max-width: 960px){
    .section_1_container{
        &.type_1{
            width: 160px;
        }
    }
    .section_1_title{
        font-size: 3.6rem;
    }
}
@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_text{
        &.type_1{
            font-size: 1.4rem;
        }
        &.type_2{
            font-size: 1.6rem;
        }
    }
    .section_content_container{
        &.type_1{
            gap: 10px;
        }
    }
    .text_box{
        padding: 0;
    }
}
@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: 2rem;
        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;
    }
    .text_box_asset{
        width: 10px;
    }
    .section_text_box{
        padding: 5px 0;
    }
}
