
.footer{
    position: relative;
    height: 95vh;
    padding: 3% 6%;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background:
    linear-gradient(
      180deg,
      #3030309E 0%, #303030 66%, #303030 100%
    ),
    url("/html/images/common/footer-bg.jpg");

    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    background-size: cover, cover;
    color: #fff;
}
.footer .top-text {
    position: absolute;
    top: 25%; left: 50%; transform: translate(-50%, -50%);
    width: 100%;
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
}
.footer .reser-btn {
    position: absolute;
    top: 38%; left: 50%; transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 45px;
    letter-spacing: 0.05em;
    font-family: 'nelp';
}

.footer .move-btn {
    background-color: #fff;
    color: var(--main-black);
}

.footer .reser-btn:hover {
    color: var(--main-green);
}
.footer .reser-btn:hover .move-btn::before {
  transform: translateX(0);
}

.footer .logo{
    width: 160px;
    margin: 0 auto 15px;
}
.footer .top_move {
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    font-family: 'ridi';
    background-color: var(--main-green);
    border-radius: 50%;
}
.footer .top_move span {
    transform: rotate(-90deg);
    color: #fff;
    font-weight: 600;
}
.footer .top_move img {
    width: 23px;
    height: auto;
}
.footer .logo img{
    display: block;
    width: 100%; 
    /* height: 100%; */
    object-fit: cover;
}
.info-flex{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    word-break: keep-all;
    font-weight: 400;
}
.info-flex > div { width: 33.3333%; }

.info-flex > div .inner { 
    margin: 0 auto;
    width: max-content;
}
.info-flex .small-tel {
    font-size: 18px;
    letter-spacing: 0.36px;
    color: #fff;
    font-family: 'nelp';

}
.info-flex .tel {
    display: block;
    font-size: 30px;
    letter-spacing: 0.05em;
    line-height: 1.2;
    font-family: 'nelp';
}
.info-flex .f_list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.info-flex li{
    font-size: 15px;
    line-height: 2em;
}
.info-flex span{
    margin-left: 7px;
}
.info-flex .center .inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.yeowan {
    display: flex;
    align-items: center;
    gap: 15px;
}
.yeowan .yeowanlogo {
    width: 90px;
    transform: translateY(-2px);
}
.info-flex .right {
    
}


@media(max-width:768px){
    
    .footer {
        height: 90vh;
        min-height: 630px;
        padding: 0 40px 40px;
        background:
        linear-gradient(
        180deg,
        #3030309E 0%, #303030 66%, #303030 100%
        ),
        url("/html/images/common/m/footer-bg.jpg");

        background-repeat: no-repeat, no-repeat;
        background-position: center, center;
        background-size: cover, cover;
    }

    .footer .top-text {
        font-size: 13px;
        top: 15%;
    }
    .footer .reser-btn {
        font-size: 25px;
        top: 25%;
    }
    .footer .reser-btn img {
        width: 17px;
    }
    .footer .logo {
        width: 106px;
        margin-bottom: 35px;
    }

    .footer .top_move {
        bottom: 20px;
        right: 20px;
        width: 32px;
        height: 32px;
    }
    .footer .top_move img { width: 14px;}

    .info-flex .tel { margin-bottom: 15px;}
    .info-flex .f_list { margin-top: 10px;}
    .info-flex li{
        font-size: 13px;
    }
    
}


@media(max-width:500px){

    
}