.footer-spacer {
    max-width: 100%;
    height: 391px; /* 푸터와 동일한 높이 */
}

.footer{
    /* position: relative; */
    position: fixed;
    bottom: 0;
    z-index: 0;
    width: 100vw;
    height: 420px;
    padding: 2.5% 6% 4%;
    color: #202020;
    /* border-top: 1px solid #6D5D52; */
    font-family: 'Neo', 'sans-serif';
    box-sizing: border-box;
}
.footer .logo{
    width: 180px;
    margin-top: 10px;
    padding: 10px;
}
.footer .top_move {
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background-color: #F1ECE7;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.footer .top_move img {
    width: 23px;
    height: auto;
}
.footer .logo img{
    display: block;
    width: 100%; height: 100%;
    object-fit: cover;
}
.info-flex{
    display: flex;
    flex-direction: column;
    align-items: center;
    word-break: keep-all;
    font-weight: 400;
}
.info-flex .tel {
    margin-bottom: 30px;
    font-size: 37px;
    letter-spacing: 1.85px;
    font-style: italic;
    font-weight: bold;
    font-family: 'gowun', 'serif';
}
.info-flex .f_list {
    display: flex;
    gap: 20px;
}
.info-flex li{
    font-size: 15px;
    line-height: 2em;
}
.info-flex span{
    margin-left: 7px;
}
.yeowan {
    display: flex;
    align-items: center;
    gap: 15px;
}
.yeowan .yeowanlogo {
    width: 120px;
    transform: translateY(-2px);
    filter: invert(0.8);
}

@media(max-width:768px){
    .footer-spacer {
        height: 320px; /* 푸터와 동일한 높이 */
    }
    .footer {
        height: 320px;
    }
    .footer .top_move {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    .footer .top_move img { width: 14px;}

    .footer .logo{
        width: 100px;
    }
    .info-flex.mo{
        width: 100%;
        display: flex !important;
    }
    .info-flex .tel { font-size: 32px;}
    .info-flex li{
        font-size: 12px;
    }
}


@media(max-width:500px){

    
}