.footer-spacer {
    height: 400px; /* 푸터와 동일한 높이 */
}

.footer{
    /* position: relative; */
    position: fixed;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 400px;
    padding: 30px 13vw;
    background-color: #F1EFEC;
}
.footer .logo{
    margin: 0 auto;
    width: 140px;
    height: 140px;
    padding: 20px;
}
.footer .top_move {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background-color: #fff;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.footer .top_move img {
    width: 18px;
    height: auto;
}

.footer .logo img{
    display: block;
    width: 100%; height: 100%;
    object-fit: cover;
}
.info-flex{
    display: flex;
    justify-content: space-between;
    word-break: keep-all;
    margin-top: 25px;
}
.info-flex li{
    font-size: 17px;
    line-height: 2;
}

.info-flex .tel{ 
    color: var(--main-brown);
    font-size: 30px;
    font-family: 'arita';
    letter-spacing: 0;
}
.yeowan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.yeowan .yeowanlogo {
    width: 120px;
    transform: translateY(-2px);
    filter: invert(0.8);
}

@media(max-width:768px){
    
    .footer {
        padding: 30px;
        height: 430px;
    }
    .footer-spacer {
        height: 430px; /* 푸터와 동일한 높이 */
    }
    .footer .logo{
        width: 100px;
        height: 100px;   
    }
    .footer .top_move {
        width: 54px;
        height: 54px;
    }
    .footer .top_move img {
        width: 17px;
    }
    .info-flex{
        width: 100%;
        flex-direction: column;
    }
    .info-flex li{
        font-size: 14px;
    }
    .info-flex .tel{ 
        font-size: 25px;
    }
    .footer{
        /* height: 320px; */
    }
}


@media(max-width:500px){

    
}