@charset "utf-8";
/* 기본설정 */
/* @import "default.css"; */

.map1{
    display: flex;
    margin: 5% 10% 7%;
    line-height: 1.5;
    border: 1px solid #6D5D52;
}
#map{
    width: 50%;
    margin: 0 auto;
    height: 560px;

}
.map_text {
    position: relative;
    width: 50%;
    padding: 3% 5%;
    border-left: 20px solid #6D5D52;
}
.map_text h2.title{
    font-size: 70px;
    font-weight: 400;
}
.map_text span.small-title {
    display: block;
    margin-bottom: 70px;
    font-size: 18px;
}
.map_text p.address{
    font-size: 18px;
    letter-spacing: 0.36px;
}
.map_text p.address span{
    display: block;
    width: max-content;
    border-radius: 20px;
    margin-bottom: 10px;
    padding: 4px 12px;
    background-color: #6D5D52;
    color: #fff;
}
.map_text a.more_btn_diamond {
    position: absolute;
    bottom: 20px;
    right: 20px;
}
@media(max-width:1200px){
    .map_text h2.title{
        font-size: 55px;
    }
    .map_text span.small-title {
        display: block;
        margin-bottom: 55px;
        font-size: 16px;
    }
    .map_text p.address{
        font-size: 16px;
    }
}
@media(max-width:768px){
    .map1{
        flex-direction: column;
    }
    #map{
        width: 100%;
        height: 400px;
    }
    .map_text {
        width: 100%;
        padding: 3% 5%;
        border-left: none;
        border-top: 17px solid #6D5D52;
        font-weight: 600;
    }
    .map_text h2.title{
        font-size: 30px;
        font-weight: 400;
    }
    .map_text span.small-title {
        display: block;
        margin-bottom: 20px;
        font-size: 12px;
    }
    .map_text p.address{
        font-size: 12px;
    }
    .map_text p.address span {
        margin-bottom: 5px;
    }
    .map_text a.more_btn_diamond {
        position: absolute;
        bottom: auto;
        top: 12px;
        right: 12px;
    }
}
@media(max-width:500px){
    #map{
        height: 260px;
    }
}
