.map__main{
    display: flex;
    gap: 2rem;
}

@media screen and (max-width: 767px){
    .map__main{
        flex-direction: column;
    }
}

.map__main-left, .map__main-right{
    width: calc(50% - 1rem);
}

@media screen and (max-width: 767px){
    .map__main-left, .map__main-right{
        width: 100%;
    }
}

.map__left-head{
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    background-color: #fff;
    color: #0063B7;
    padding: 1rem 0;
}

@media screen and (max-width: 767px){
    .map__left-head{
        font-size: 2rem;
    }
}

.map__table, .map__table table{
    width: 100%;
}

.map__table td, .map__table th{
    padding: 2rem 1rem;
    font-size: 1.5rem;
    border: 1px solid #fff;
}

@media screen and (max-width: 767px){
    .map__table td, .map__table th{
        font-size: 1.3rem;
    }
}

.map__table th{
    width: 20%;
}

.map__table td{
    width: 80%;
}

@media screen and (max-width: 767px){
    .map__table th{
        width: 25%;
    }
}

.map__iframe{
    width: 100%;
    height: 400px;
}

.map__iframe iframe{
    width: 100%;
    height: 100%;
}

.map__btn{
    text-align: right;
}

.map__btn a{
    display: inline-block;
    position: relative;
    width: 160px;
    height: 33px;
    line-height: 33px;
    text-align: center;
    background: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    color: #0063B7;
    margin-top: 15px;
}

.map__btn a::after{
    position: absolute;
    content: '';
    top: 11px;
    right: 10px;
    width: 11.77px;
    height: 11.77px;
    background-image: url(../images/home/map-arrow.svg);
}

.map__gallery{
    border-top: 1px solid #fff;
    margin-top: 2rem;
    padding-top: 2rem;
    display: flex;
    gap: 2rem;
}

.map__gallery .map__item{
    width: calc(25% - 1.5rem);
}

@media screen and (max-width: 767px){
    .map__gallery{
        flex-wrap: wrap;
    }

    .map__gallery .map__item{
        width: calc(50% - 1rem);
    }
}

.map__gallery .map__item img{
    width: 100%;
}