@charset "utf-8";
/* 기본설정 */
/* @import "default.css"; */

.map1{
    display: flex;
    line-height: 1.5;
}

.map1 > div { width: 50%;}


.map_text {
    position: relative;
    color: #707070;
    text-align: center;
    font-family: 'gowun-b';
    display: flex;
    justify-content: center;
    align-items: center;
}
.map_text h2.title{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 25px;
    letter-spacing: 0;
    color: #BE9A71;
}
.map_text .small-title {
    display: block;
    font-size: 17px;
    color: #707070;
}
.small-title.address { margin-top: 85px;}
.small-title.tel { margin-top: 40px;}
.map_text p {
    color: #44372B;
    font-size: 25px;
}

#map{
    max-width: 750px;
    width: 40vw;
    height: 430px;
    box-shadow: 0px 0px 15px #00000024;
    border-radius: 30px;

}
@media(max-width:768px){
    .map1 {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .map1 > div { width: 100%;}
    .small-title.address { margin-top: 40px;}
    .small-title.tel { margin-top: 30px;}

    .map_text h2.title{
        gap: 10px;
        font-size: 22px;
    }
    .map_text .small-title {
        font-size: 14px;
    }
    .map_text p {
        font-size: 20px;
    }

    #map{
        margin-top: 40px;
        width: 90vw;
        height: 52vw;
        min-height: 200px;
        box-shadow: 0px 0px 15px #00000024;
        border-radius: 30px;

    }
}

@media(max-width:400px){
    
}