body {
    padding-top: var(--header-height);
    overflow-y: scroll;
    background-color: #FFFFFF;
}

.inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}


/* ==========================
   header
========================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    height: var(--header-height);
    /*border-bottom: 1px solid var(--border);*/
    background: #FFF;
}

#header.scrolled {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

#header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 100%;
}

#header .nav {
    display: block;
    height: 100%;
}

#header .gnb {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    gap: 10px;
}

#header .gnb li {}

#header .gnb li a {
    padding: 0 16px 4px;
    color: var(--wf-900);
    text-align: center;
    font-size: var(--fs-md);
    font-weight: 600;
    border-bottom: 3px solid transparent;
}

#header .gnb li a:hover,
#header .gnb li a.active {
    font-weight: 600;
    color: var(--primary-blue100);
    border-bottom-color: var(--primary-blue100);
}

.menu-toggle {
    display: none;
}

/* ==========================
   footer
========================== */
#footer {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background: var(--wf-white);
}

.footer-top {
    border-bottom: 1px solid var(--border);
}

.footer-top ul {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 0px;
}

.footer-top ul li.accent a {
    padding-left: 0px;
    color: var(--wf-900);
}

.footer-top ul li a {
    padding: 8px;
    font-size: var(--fs-xs);
    color: var(--wf-600);
}

.footer-bottom {
    padding: 40px 0px 40px;
}

.footer-bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-company p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;

    font-size: var(--fs-xs);
    color: var(--wf-600);
}

.footer-company p:last-child {
    margin-bottom: 0;
}

.footer-company strong {
    font-weight: 500;
    color: var(--wf-800);
}

.footer-cs {
    text-align: right;
}

.footer-cs-title {
    padding-right: 4px;
    margin-bottom: 4px;

    font-size: var(--fs-sm);
    color: var(--wf-600);
}

.footer-cs-tel {
    display: block;
    margin-bottom: 16px;

    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue100);
}

.footer-cs-time {
    font-size: var(--fs-xs);
    color: var(--wf-800);
}

/* ==========================
   float
========================== */

/* 공통 */
.float-menu a {
    padding: 8px 16px;

    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--wf-700);
}

.float-menu a:hover {
    color: var(--wf-900);
    font-weight: 600;
}


.float-menu {
    position: fixed;
    top: 160px;
    right: 50%;
    transform:translate(780px, 0);
    z-index: 100;

    display: flex;
    flex-direction: column;

    width: 112px;
    background: #fff;

    border-radius: var(--radius-12);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.12);
}

.float-top {
    display: flex;
    flex-direction: column;

    padding: 24px 0px 12px;

    text-align: center;
}

.float-top .top-title {
    margin-bottom: 4px;
    color: var(--wf-600);
    font-size: var(--fs-xs);
}

.horiz-line {
    width: 40px;
    height: 1px;
    background: var(--bg);
    margin: 0 auto;
}

.float-middle {
    padding-top: 12px;
    text-align: center;
}

.float-review {
    display: block;

    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--wf-900);
}

.float-menu a.float-run-btn {
    display: flex;
    justify-content: center;
    align-items: center;

    margin: 4px 8px 0px;
    border-radius: 6px;
    background: var(--primary-blue100);

    color: #fff;
    font-size: var(--fs-sm);
    line-height: 1.3;
}

.float-menu a.float-run-btn:hover {
    opacity: 0.8;
}

.float-bottom {
    padding: 20px 16px 24px;

    text-align: center;
}

.float-bottom span {
    display: block;

    font-size: var(--fs-xs);
    color: var(--wf-600);
}

.float-bottom strong {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--wf-800);
}

.float-top-btn-0703 {
    position: fixed;

    right: 50%;
    bottom: -20%;

    transform: translateX(50%);

    display: flex;
    justify-content: center;
    align-items: center;

    width: 48px;
    height: 48px;

    border: 0;
    border-radius: var(--radius-100);

    background: #fff;
    box-shadow: 0 4px 12px rgba(33, 37, 41, .12);

    cursor: pointer;
}
/*
.float-top-btn {
    position: fixed;

    right: 0%;
    bottom: 4%;

    transform: translateX(-50%);

    display: flex;
    justify-content: center;
    align-items: center;

    width: 52px;
    height: 52px;

    border: 0;
    border-radius: var(--radius-100);

    background: #fff;
    box-shadow: 0 4px 12px rgba(33, 37, 41, .12);

    cursor: pointer;
}
*/

.float-top-btn img {
    width: 28px;
}


@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }

    .inner {
        max-width: 100%;
        padding: 20px;
    }

    #header .inner {
        position: relative;
    }

    /* 햄버거 */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;

        width: 32px;
        height: 32px;

        border: 0;
        padding: 0;
        background: none;

        cursor: pointer;
    }

    .menu-toggle span {
        display: block;

        width: 24px;
        height: 2px;

        background: #212529;

        transition: all .3s ease;
    }

    /* X */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* 메뉴 */
    .nav {
        position: fixed;

        top: var(--header-height);
        left: 0;

        width: 100%;
        height: calc(100vh - var(--header-height));

        background: #fff;

        overflow-y: auto;

        opacity: 0;
        visibility: hidden;

        transition: .3s ease;

        z-index: 999;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    #header .gnb {
        display: block !important;
        padding: 0 20px;
    }

    #header .gnb li {
        display: block !important;

        border-bottom: 1px solid #ECECEC;
    }

    #header .gnb li a {
        display: block;

        padding: 22px 0;

        color: #212529;
        text-align: left;

        font-size: 16px;
        font-weight: 500;
    }

    #header .gnb {
        display: none;
    }

    /* footer */
    .footer .inner {
        padding: 0px 20px;
    }

    .footer-top ul {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 8px 0px;
    }

    .footer-top ul li:first-child a {
        padding-left: 0px;
    }

    .footer-top ul li a {
        padding: 8px;
    }

    .footer-bottom {
        padding: 32px 0px;
    }

    .footer-bottom-wrap {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-company p {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;

        font-size: var(--fs-xs);
        color: var(--wf-600);
    }

    .footer-company p:last-child {
        margin-bottom: 0;
    }

    .footer-company strong {
        font-weight: 500;
        color: var(--wf-800);
    }

    .footer-cs {
        text-align: left;
    }

    .footer-cs-title {
        margin-bottom: 0px;
    }

    .footer-cs-tel {
        display: block;
        margin-bottom: 12px;

        font-size: var(--fs-xl);
    }