@charset "utf-8";

/* ===========================
   FOOTER
=========================== */
#footer {
    width: 100%;
    /* fixbar 높이만큼 하단 패딩 60 + 40(문의 높이) */
    padding-bottom: 100px;
}

.footer_bg {
    background-color: #111;
}

.footer1_bg {
    background-color: #fff;
}

.footer_inner1,
.footer_inner {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}

.footer_inner1 {
    color: #555555;
}

.footer_inner1 .footer_left p {
    margin: 5px 0;
}

.footer_logo {
    margin-bottom: 10px;
}


.footer_txt {
    color: #D9D9D9;
    line-height: 1.9;
    letter-spacing: -0.02em;
}

.footer_copy {
    margin-top: 20px;
    color: #555;
    letter-spacing: -0.02em;
}

/* ===========================
   FIXBAR (하단 고정 버튼바)
=========================== */
.footer_fixbar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 484px;
    background-color: #fff;
    border-top: 1px solid #efefef;
    z-index: 100;
    box-sizing: border-box;
}

.fixbar_inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 60px;
    padding: 5px;
    position: relative;
}

.fixbar_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1;
    color: #555;
    letter-spacing: -0.02em;
    transition: color 0.2s;
}

.fixbar_item:hover {
    color: #00b8a0;
}

.fixbar_item img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.fixbar_item span {
    color: inherit;
}

.fixbar_inner .fixbar_inquiry {
    position: absolute;
    height: 40px;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);


}

.fixbar_inner .fixbar_inquiry .fixbar_inquiry_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: 40px;
    top: 50%;
    width: 100%;
    color: rgba(31, 83, 240, 1);

}


/* ===========================
   ⑦ 실시간 무료상담 전화 배너
=========================== */
.footer-call {
    background-color: #F1F1F1;
    padding: 28px 0;
    position: relative;
}

.footer-call .inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.footer-call .call-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-call .call-left h3 {
    color: #555;
}

.footer-call .call-left a.fc-teal {
    line-height: 1.2;
    display: flex;
    align-items: center;
    color: #34BAB1;
}

.footer-call .call-left p {
    color: #555;
    line-height: 27px;
    margin: 5px 0;
}


.footer-call .call-left .time{
    border-bottom: 2px solid #555;
}


.footer-call .call-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 6px;
    width: fit-content;
}

.footer-call .call-right {
    position: absolute;
    right: 0;
    bottom: -5px;
    flex-shrink: 0;
}

.footer-call .call-right img {
    width: 100%;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .footer-call .call-right img {
        max-width: 200px;

    }

    .footer-call .call-left p{
        line-height: 20px;
    }
}
/* ===========================
   PC (485px 초과)
=========================== */
@media screen and (min-width: 485px) {
    .footer_fixbar {
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08), 4px 0 20px rgba(0, 0, 0, 0.08);
    }
}