.section-map-container { 
    width: 100%;
    height: 810px;
    position: relative;
}
@media only screen and (max-width: 766px) {
    .section-map-container { 
        height: auto;
        display: flex;
        flex-direction: column-reverse;
    }
}

.section-map-container .map-container { 
    width: 50%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}
@media only screen and (max-width: 766px) {
    .section-map-container .map-container { 
        width: 100%;
        position: relative;
        height: 450px;
    }
}

.section-map-container .map-container .map { 
    width: 100%;
    height: 100%;
}

.section-map-container .map-container .map .map-holder { 
    width: 100%;
    height: 100%;
}

.section-map-container .map-container .map .map-holder iframe { 
    width: 100%;
    height: 100%;
}

.section-map-container .info-container { 
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.section-map-container .info-container .wrapper-inside { 
    height: 100%;
}

.section-map-container .info-container .info-container-holder { 
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: end;
}

.section-map-container .info-container .info-container-holder .info-col { 
    width: 50%;
    height: auto;
    pointer-events: all;
}
@media only screen and (max-width: 766px) {
    .section-map-container .info-container .info-container-holder .info-col { 
        width: 100%;
    }
}

.section-map-container .info-container .info-container-holder .info-col .inner-col {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 76px 72px 84px;
}
@media only screen and (max-width: 1279px) {
    .section-map-container .info-container .info-container-holder .info-col .inner-col {
        padding: 50px 28px 55px 62px;
    }
}
@media only screen and (max-width: 766px) {
    .section-map-container .info-container .info-container-holder .info-col .inner-col {
        padding: 80px 0 80px;
    }
}

address { 
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media only screen and (max-width: 1279px) {
    address { 
        gap: 20px;
    }
}
@media only screen and (max-width: 766px) {
    address { 
        gap: 24px;
    }
}

address .sub-title { 
    width: 100%;
}

address .name { 
    width: 100%;
}   

address .action { 
    width: 100%;
}
@media only screen and (max-width: 1279px) {
    address .action {
        margin: 12px 0 0;
    }
}

address .action .btn { 

}
@media only screen and (max-width: 1279px) {
    address .action .btn { 
        width: 100%;
    }
}

address .action .btn .btn-part { 

}
@media only screen and (max-width: 1279px) {
    address .action .btn .btn-part.btn-text {
        width: calc(100% - 44px - 2px);
        box-sizing: border-box;
        text-align: center;
    }
}