
/* ================================================================= 
* 고객지원
* ================================================================= */
/* ================================================================= 
* 오시는 길
* ================================================================= */
.directions{ font-size: 1.3rem;}
.directions .info{
    margin: 4rem auto;
    display: flex;
    border-top: 1px solid #ebebeb;
    padding-top:3rem;
}
.directions .info li{padding: 1rem;}
.directions .info .icon{
    color:var(--main-color);
    display: flex;
    flex-direction: column;
    text-align: center;
}
.directions .info .icon i{
    font-size: 2.5rem;
    background-color: #ebebeb;
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    text-align: center;
    padding: 0.7rem;
}
.directions .info .icon span{
    font-weight: bold;
    margin: 0.5rem;
    font-size: 1rem;
}
.directions .info .txt{
    display: flex;
    flex-direction: column;
    margin-right: auto;
}
.directions .info .txt a{color:#000;}    
.directions .info .txt p{margin: auto 0;}    

/* ================================================================= 
* 문의하기
* ================================================================= */
.inquire{
    font-size: 1.7rem;
    position: relative;
}
.inquire .info{ border-bottom: 3px solid #858585dd;}

.inquire .info .line{
    width: 100%;
    padding: 2%;
    border-bottom: 2px solid #dddd;
    display: flex;
}
.inquire .info .line .title{
    width: 30%;
    font-weight: bold;
    text-align: center;
    padding: 7px;
    letter-spacing: 1rem;
}

.inquire .info .line .content{
    width: 68%;
    border: 1px solid #d7d7d7;
    padding: 7px;
    border-radius: 10px;
}
.inquire .info .line:last-child{ border-bottom: none;}

.inquire .bottom{
    text-align: center;
    .btnSend{
        color:#fff;
        background-color: var(--main-color);
        border-radius: 50px;
        padding: 1rem 4rem;
        letter-spacing: 1rem;
        margin: 2rem auto;
    }    
}


/* PC , 테블릿 가로 (해상도 768px ~ 1023px)*/
@media screen and (min-width:768px) and (max-width:1023px) { 
}
/* 모바일 가로, 테블릿 세로 (해상도 480px ~ 767px)*/
@media screen and (min-width:480px) and (max-width:767px) { 
    
    /* ================================================================= 
    * 오시는 길
    * ================================================================= */
    .directions{ font-size: 1.3rem;}
    .directions .info{
        margin: 4rem auto;
        flex-direction: column;
        padding-top:3rem;

    }
    .directions .info li{padding: 0.5rem;}
    .directions .info .icon {margin: auto;}
    .directions .info .icon i{
        font-size: 2.5rem;
        border-radius: 50%;
        width: 5rem;
        height: 5rem;
        padding: 0.7rem;
    }
    .directions .info .icon span{
        margin: 0.5rem;
        font-size: 1rem;
    }
    .directions .info .txt{
        width: 100%;
        text-align: center;
    }

    
    /* ================================================================= 
    * 문의하기
    * ================================================================= */
    .inquire{font-size: 1.5rem;}
        
    .inquire .info {border-bottom: 3px solid #858585dd;}
    .inquire .info .line{
        padding: 5% 2%;
        border-bottom: 2px solid #dddd;
        flex-direction: column;
    }
    .inquire .info .line .title{
        width: 100%;
        text-align: left;
        letter-spacing: 1rem;
        margin-bottom: 0.5rem;
    }

    .inquire .info .line .content{
        width: 100%;
        background: #f4f4f4;
    }

    .inquire .bottom .btnSend{
        padding: 0.5rem 3rem;
        margin-bottom: 5rem;
    }

}
/* 모바일 가로, 테블릿 세로 (해상도 ~ 479px)*/
@media screen and (max-width:479px) { 
    /* ================================================================= 
    * 오시는 길
    * ================================================================= */
    .directions{font-size: 1.3rem; }
    .directions .info{
        margin: 4rem auto;
        flex-direction: column;
        padding-top:3rem;
    }
    .directions .info li{padding: 1rem;}
    .directions .info .icon{ margin: auto;}
    .directions .info .icon i{
        font-size: 2.5rem;
        border-radius: 50%;
        width: 5rem;
        height: 5rem;
        padding: 0.7rem;
    }
    .directions .info .icon span{
        margin: 0.5rem;
        font-size: 1rem;
    }

    .directions .info .txt{
        width: 100%;
        text-align: center;
    }

    /* ================================================================= 
    * 문의하기
    * ================================================================= */
    .inquire {font-size: 1.5rem; }    
    .inquire .info {border-bottom: 3px solid #858585dd;}
    .inquire .info .line{
        padding: 5% 2%;
        border-bottom: 2px solid #dddd;
        flex-direction: column;
    }
    .inquire .info .line .title{
        width: 100%;
        text-align: left;
        letter-spacing: 1rem;
        margin-bottom: 0.5rem;
    }

    .inquire .info .line .content{
        width: 100%;
        background: #f4f4f4;
    }


    .inquire .bottom .btnSend{
            padding: 0.5rem 3rem;
            margin-bottom: 5rem;
    }

}