@charset "utf-8";

/* 애니메이션 */
@keyframes left{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(0);
    }
}

img{
    vertical-align: top;
}
dt{
    font-weight: 700;
}
.top .serv dt, #info .btm dt, #search .top strong, #store .top strong{
    font-size: 36px;
}
/* 매장안내 */

/* 2/3 지도 (지점 리스트(+지도) / 위치찾기) */
/* 지점 리스트(+지도) */
#st_map{
    padding: 90px 20px;
    display: flex;
    gap: 20px;
    justify-content: space-around;
}

#st_map .map_list ul{
    padding-bottom: 5px;
    display: flex;
    justify-content: center;
    gap: 7px;
}
#st_map .map_list ul li a{
    display: inline-block;
    width: 55px;
    height: 55px;
    border: 1px solid #999;
    text-align: center;
    align-content: center;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    color: #999;
    box-sizing: border-box;
}

#st_map .map_list ul li a:hover{
    border: 1px solid #696F85;
    box-sizing: border-box;
}
#st_map .map_list ul li a::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    transition: 0.5s;
}

#st_map .map_list ul li a:hover::before{
    height: 100%;
    background: #696F85;
}
#st_map .map_list ul li a:hover span{
    color: #fff;
}
#st_map .map_list ul li a span{
    position: relative;
    z-index: 100;
    
    font-size: 16px;
    transition: 0.7s;
}
/* 지도 */
#map{
    max-width: 800px;
    width: 100%;
    margin: 10px auto;
}
#k_box{
    width: 175px;
    text-align: center;
}
#k_box > p{
    margin: 0;
    text-align: center;
    margin-bottom: 5px;
    font-weight: 500;
}
#k_box p span{
    display: block;
    font-size: 15px;
    font-weight: 300;
    color: #999;
}
#k_box a{
    display: inline-block;
    background: #D9D9D9;
    color: #181B1E !important;
    padding: 3px 7px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    &:hover{
        background: #696F85;
        color: #fff !important;
    }
}

/* 위치찾기 */
#search{
    padding-top: 20px;
    box-sizing: border-box;
}

#search .sh_title strong{
    padding-bottom: 7px;
    display: inline-block;
    font-size: 24px;
}
#search .sh_title p{
    padding-bottom: 25px;
    font-size: 13px;
    color: #999;
}

#search .sh_box .tab form{
    display: flex;
    justify-content: center;
    align-items: center;
}
#map_p{
    width: 80px;
    height: 34px;
    text-indent: 5px;
    outline: none;
}

#sh{
    margin-top: 5px;
    height: 30px;
    border: none;
    margin-left: 10px;
    width: 300px;
    outline: none; /* 입력창 입력시 테두리 제거 */
    color: #181B1E; /* 입력시 폰트색 */
    border-bottom: 1px solid #999
}
#sh::placeholder{
    color: #999; /* 힌트 폰트색 */
    padding-left: 3px;
}
.shbtn{
    width: 7%;
    height: 7%;
}

/* 3/3 지점별안내 (슬라이드) */
.swiper-3d {
    height: 570px;
}

/* top */
#store .top{
    text-align: center;

    border-top: 5px solid #D9D9D9;
    border-bottom: 5px solid #D9D9D9;
    box-sizing: border-box;
}
#store .top strong{
    display: block;
    padding: 5px 0;
    color: #000;
}

/* middle slide */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    display: none;
}
#store .mid{
    overflow: hidden;

    background: #383a3e;
    padding: 3px 0;
    margin-bottom: 19px;
}
#slide_r .sw3 .swiper-wrapper .swiper-slide{
    width: 40%;
    height: auto;
}
#slide_r .sw3 .swiper-wrapper .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}

/* bottom */
#store .btm{
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
}
#store .btm li{
    margin-top: 40px;
}
#store .btm li strong{
    font-size: 24px;
}
#store .btm li p{
    font-size: 16px;
    line-height: 1.8em;
}
#store .btm li p a{
    color: #181B1E;
}

#store .btm .left li{
    display: flex;
    justify-content: start;
    align-items: baseline;
}
#store .btm .left li strong{
    width: 120px;
}
#store .btm .left li p span{
    display: block;
}
#store .btm .right{
    width: 60%;
}
#store .btm .right strong{
    padding-bottom: 11px;
    display: block;

    position: relative;
}
#store .btm .right strong::after{
    content: '';
    position: absolute;

    height: 24px;

    top: -1px;
    left: -9px;

    z-index: -1;
}
#store .btm .right strong::after{
    border-right: 23px solid #c0c3d148;
}
#store .btm .right p{
    line-height: 1.8;
}

/* 반응형 */
@media (max-width:1300px){
    #slide_r .sw3 .swiper-wrapper .swiper-slide{
        width: 50%;
    }

    #store .btm {
        padding: 0 30px 50px;
    }
}
@media (max-width:1200px){
    #st_map{
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    #search {
        align-self: flex-start;
        padding-left: 17%;
    }
}

@media (max-width:1000px){
    #st_map {
        padding: 80px 20px 100px;
    }

    #search {
        padding-left: 12%;
    }
    
    #store .btm{
        flex-direction: column;
    }
    #store .btm ul.left{
        padding-bottom: 30px;
        display: flex;
        justify-content: space-between;
    }
    #store .btm .left li strong {
        width: auto;
        padding-right: 10px;
        position: relative;
    }
    #store .btm .left li strong::after{
        content: '';
        position: absolute;
        border-right: 23px solid #c0c3d148;
        border-radius: 50%;
        height: 24px;
        top: -1px;
        left: -9px;
        z-index: -1;
    }

    #store .btm .right {
        width: 100%;
    }
}

@media (max-width:880px){
    #search {
        padding-left: 19%;
    }
    #map{
        width: 100%;
        height: 300px;
    }
    #st_map .map_list ul {
        flex-wrap: wrap;
    }
    #st_map .map_list ul li{
        width: calc(100% / 6 - 10px);
    }
    #st_map .map_list ul li a {
        max-width: 100px;
        width: 100%;
        height: 40px;
        border-radius: 10px;
    }

    /* 슬라이드 */
    #store .top strong {
        font-size: 24px;
    }
    .swiper-3d {
        height: auto;
    }
    #slide_r .sw3 .swiper-wrapper .swiper-slide{
        width: 80%;
        height: 400px;
    }

    #store .btm ul.left{
        flex-direction: column;
    }
    #store .btm .left li strong {
        padding-right: 20px;
    }
    #store .btm .left li p span {
        display: inline;
    }
}

@media (max-width:768px){
    #search {
        padding-left: 12%;
    }
    #sh{
        width: 180px;
    }
    #st_map .map_list ul li a::before{
        display: none;
    }
    #st_map .map_list ul li a:hover{
        border: 1px solid #999;
    }
    #st_map .map_list ul li a:hover span{
        color: #999;
    }
    #st_map .map_list ul li:first-child a:hover span{
        color: #fff;
    }

    #slide_r .sw3 .swiper-wrapper .swiper-slide{
        width: 90%;
        height: 300px;
    }
}

@media (max-width:680px){
    #search {
        padding-left: 8%;
    }
}