.footer-spacer {
    max-width: 100%;
    height: 391px; /* 푸터와 동일한 높이 */
}

.footer{
    position: relative;
    padding: 2.5% 6% 1%;
    color: #202020;
    font-family: 'gowun', 'serif';
    box-sizing: border-box;
    border-top: 2px solid #BCC9BF;
}
.footer .logo{
    width: 180px;
    margin-top: 10px;
    padding: 10px;
}
.footer .top_move {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 73px;
    height: 36px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    font-size: 23px;
    overflow: hidden;
}
.footer .top_move::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    border: 1px solid #fff;
    /* 초기 상태: 왼쪽에서 0%만 채워짐 */
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.4s ease;
}

.footer .top_move:hover::before {
    /* 전체가 채워지도록 확장 */
    clip-path: inset(0 0 0 0);
}

.footer .top_move:hover {
    color: #000; /* 배경이 흰색이면 글자색 변경 */
}
.footer .top_move img {
    width: 23px;
    height: auto;
}
.footer .logo img{
    display: block;
    width: 100%; 
    /* height: 100%; */
    object-fit: cover;
}
.info-flex{
    margin-top: 80px;
    display: flex;
    align-items: center;
    word-break: keep-all;
    font-weight: 400;
    color: #fff;
}
.info-flex .left, .info-flex .right { 
    width: 50%;
    display: flex;
    justify-content: center;
}

.info-flex .tel small {
    font-size: 20px;
    font-family: 'nelp', 'gowun';
}
.info-flex .tel {
    display: inline-block;
    margin-bottom: 30px;
    font-size: 34px;
    font-weight: bold;
    line-height: 1.2;
}

.info-flex .f_list {
    
}
.info-flex li{
    font-size: 18px;
    line-height: 2em;
}
.info-flex li strong {
    font-weight: 400;
}
.info-flex .f_list span{
    margin-left: 7px;
}
.yeowan {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-shadow: 0px 3px 30px #00000078;
}
.yeowan .yeowanlogo {
    width: 120px;
    transform: translateY(-2px);
}

@media(max-width:768px){
    .footer { padding-bottom: 5%;}
    .info-flex .left { width: 100%;}
    .info-flex .right { display: none;}
    
    
    .info-flex.mo{
        width: 100%;
        display: flex !important;
    }
    .info-flex .tel { 
        width: 100%;
        font-size: 24px;
        text-align: center;
        font-weight: 400;
    }
    .info-flex .tel small { font-size: 13px;}
    .info-flex li{
        font-size: 12px;
        text-align: center;
    }
    .yeowan { 
        margin-top: 30px;
        font-size: 12px;
    }
    .yeowan .yeowanlogo { width: 90px;}
    .footer .top_move {
        width: 55px;
        height: 28px;
        font-size: 17px;
    }
}


@media(max-width:500px){

    
}