:root{
    --main: #fefefe;
    --sub: #264a9e;
    --sub2: #00a0e9;
    --sub3: #cfcfcf;
    --text: #2d2726;
}
.section.section_2{
    gap: 80px;
}
.section_content_container{
    &.type_1{
        align-items: flex-start;
        gap: 40px;
    }
}
.section_text_title_box{
    padding-left: 20px;
    border-left: 2px solid var(--sub2);
}
.section_text_title{
    &.type_1{
        font-size: 2.4rem;
    }
}
.section_content_column{
    &.type_1{
        align-items: flex-start;
        padding: 0 20px;
    }
}
.section_content_row{
    &.type_1{
        grid-template-columns: 1fr 2fr;
        grid-template-rows: repeat(max-content, max-content);
        align-items: stretch;
    }
    &.type_2{
        grid-template-columns: 100px 100px 1fr;
    }
}
.section_content_box{
    &.type_1{
        padding: 30px 40px;
        border-bottom: 1px solid var(--sub3);
        align-items: flex-start;
        &.box_1::before{
            content: "";
            position: absolute;
            width: 1px;
            height: 20px;
            background: var(--sub3);
            bottom: 0;
            right: 0;
        }
        &.box_2{
            border-right: 1px solid var(--sub3);
        }
    }
    &.type_2{
        padding: 20px;
        &.box_1,&.box_3{
            align-items: flex-start;
        }
        &.box_2{
            align-items: center;
            padding-top: 24px;
            &::before{
                content: "";
                position: absolute;
                width: 2px;
                height: 100%;
                top: 0;
                left: calc(50% - 1px);
                background: var(--sub3);
            }
        }
        &.box_3{
            gap: 5px;
        }
    }
}
.section_text{
    &.type_1{
        font-size: 1.6rem;
        a{
            text-decoration: underline;
            color: var(--sub);
        }
    }
    &.type_2{
        font-size: 1.6rem;
        &.text_1{
            color: var(--sub);
            font-weight: bold;
        }
        &.text_2{
            padding-left: 10px;
            position: relative;
            &::before{
                content: "";
                position: absolute;
                top: 9px;
                left: -5px;
                width: 5px;
                aspect-ratio: 1;
                background: var(--text);
            }
        }
    }
}
.content_box_asset{
    width: 15px;
    aspect-ratio: 1;
    background: var(--sub3);
}
.section_map_container{
    aspect-ratio: 3 / 1;
}
.section_map{
    height: 100%;
}
@media all and (max-width: 1280px){

}
@media all and (max-width: 960px){
    .section_content_column{
        &.type_1{
            padding: 0;
        }
    }
    .section_content_box{
        &.type_1{
            padding: 30px 20px;
        }
    }
}
@media all and (max-width: 768px){
    .section_content_row{
        &.type_1{
            grid-template-columns: 1fr 2.5fr;
        }
        &.type_2{
            grid-template-columns: max-content 50px 1fr;
        }
    }
    .section_map_container{
        aspect-ratio: 2 / 1;
    }
}
@media all and (max-width: 450px){
    .section_content_row{
        &.type_2{
            grid-template-columns: 35px 1fr;
            grid-template-rows: repeat(2, max-content);
            grid-template-areas: 
            "a b"
            "a c";
        }
    }
    .section_text{
        &.type_1,&.type_2{
            font-size: 1.4rem;
        }
        &.type_2{
            &.text_2::before{
                width: 4px;
                left: -4px;
            }
        }
    }
    .section_content_box{
        &.type_1{
            padding: 20px;
            &.box_1{
                padding-left: 0;
            }
        }
        &.type_2{
            &.box_1{
                grid-area: b;
                padding-bottom: 5px;
            }
            &.box_2{
                grid-area: a;
            }
            &.box_3{
                grid-area: c;
                padding-top: 5px;
                padding-bottom: 10px;
            }
        }
    }
    .section_map_container{
        aspect-ratio: 3 / 2;
    }
}
