/* PC Header */
header {
    width: 100%;
    height: clamp(60px, calc(100 / var(--inner) * 100vw), 100px);
    margin: 0 auto;
    z-index: 5;
}
header.main-header {
    position: absolute;
    top: 0;
    left:0;
    right: 0;
}
/* PC Header */
header .layout-wide {
    position: relative;
    height: 100%;
}
header h1.logo {
    width: clamp(120px, calc(189/ var(--inner) * 100vw), 189px);
    transition: var(--transition);
}
header h1.logo a img {
    width: 100%;
}
header h1.logo.main-header-logo {
    display: none;
}
header h1.logo.header-logo {
    display: block;
}
header.main-header h1.logo.main-header-logo {
    display: block;
}
header.main-header h1.logo.header-logo {
    display: none;
}
header.main-header h1.logo .top-logo {
    display: block;
}
header.main-header h1.logo .fixed-logo {
    display: none;
}
header .gnb ul.navbar-nav {
    display: flex;
    gap: 0 var(--space-60);
}
header .gnb ul.navbar-nav > li.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
header .gnb ul.navbar-nav > li.nav-item > a.nav-link {
    position: relative;
    text-align: center;
    transition: var(--transition);
    font-weight: var(--fw-bold);
    white-space: nowrap;
}
header.main-header .gnb ul.navbar-nav > li.nav-item > a.nav-link  {
    color: var(--color-white)
}
header .gnb ul.navbar-nav > li.nav-item.on > a.nav-link,
header .gnb ul.navbar-nav > li.nav-item a.nav-link:hover {
    color: var(--color-primary);
    font-weight: var(--fw-bold);
}
header .gnb ul.navbar-nav > li.nav-item::before {
    content: "";
    position: absolute;
    width:100%;
    height: 3px;
    bottom: 0;
    left:0;
    right:0;
    margin:0 auto;
    background-color: var(--color-primary);
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
header .gnb ul.navbar-nav > li.nav-item:hover::before,
header .gnb ul.navbar-nav > li.nav-item.on::before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}
header .header-mid {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
}
header .header-mid * {
    height: inherit;
}
header .header-mid a {
    height: auto;
}
header .header-sns {
    gap: var(--space-5)
}
header .header-sns a {
    height: clamp(25px, calc(35 / var(--inner) * 100vw), 35px);
    background-color: var(--color-brown-e6);
}
header .header-sns a.sns-instagram {
    width: clamp(25px, calc(35 / var(--inner) * 100vw), 35px);
}
header .header-sns a.sns-blog {
    padding-left: var(--space-15);
    padding-right: var(--space-15)
}
header .header-sns a.sns-yyblog {
    background-color: var(--color-primary);
}
header .header-sns a.sns-instagram svg {
    height: clamp(14px, calc(17 / var(--inner) * 100vw), 17px);
}
header.main-header .header-sns a.sns-instagram,
header.main-header .header-sns a.sns-bbblog {
    background-color: var(--color-white);
}
header.main-header.navbar-fixed-top .header-sns a.sns-instagram,
header.main-header.navbar-fixed-top .header-sns a.sns-bbblog {
    background-color: var(--color-brown-e6);
}
/* Header fixed */
header.navbar-fixed-top {
    width: 100%;
    height: 70px;
    position: fixed !important;
    background-color: rgba(251, 250, 240, 0.9);
    backdrop-filter: blur(5px);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
    z-index: 9996;
    top: 0
}
header.navbar-fixed-top h1.logo {
    width: clamp(100px, calc(140 / var(--inner) * 100vw), 140px);
}
header.navbar-fixed-top h1.logo .top-logo {
    display: none;
}
header.navbar-fixed-top h1.logo .fixed-logo {
    display: block;
}
header.navbar-fixed-top .gnb ul.navbar-nav {
    gap: 0 var(--space-50);
}
header.navbar-fixed-top .gnb ul.navbar-nav > li > a.nav-link {
    font-size: var(--font-18);
}
header.main-header.navbar-fixed-top .gnb ul.navbar-nav > li.nav-item > a.nav-link {
    color: var(--color-dark);
}
header.navbar-fixed-top .gnb ul.navbar-nav > li.on > a.nav-link,
header.navbar-fixed-top .gnb ul.navbar-nav > li a.nav-link:hover,
header.navbar-fixed-top.navbar-fixed-top .gnb ul.navbar-nav > li.on > a.nav-link,
header.navbar-fixed-top.navbar-fixed-top .gnb ul.navbar-nav > li a.nav-link:hover {
    color: var(--color-primary);
}
header.navbar-fixed-top .gnb ul.navbar-nav > li > a.nav-link::before {
    background-color: var(--color-primary);
}
header.navbar-fixed-top .dropdown-menu {
    margin-top: 20px;
}
.pc-header {
    display: block;
    height: 100%;
}
    /*  Header 미디어쿼리 */
    @media all and (max-width: 1200px) {
        header {
            height: 80px;
        }
        header.navbar-fixed-top {
            height: 60px;
        }
    }
    @media all and (max-width: 1000px) {
        header {
            height: 60px;
        }
        header .layout-wide {
            justify-content: space-between;
        }
        header .header-mid {
            position: relative;
            left: unset;
            transform: unset;
        }
        header .gnb ul.navbar-nav {
            gap: 0 20px;
        }
        header.navbar-fixed-top .gnb ul.navbar-nav {
            gap: 0 20px;
        }
    }
    @media all and (max-width: 640px) {
        header {
            height: 90px;
        }
        header .layout-wide {
            flex-direction: column;
            justify-content: flex-end;
        }
        header .header-sns {
            display: none;
        }
        header .header-mid {
            position: relative;
            left: unset;
            transform: unset;
            height: auto;
            margin-top: 15px;
        }
        header .gnb ul.navbar-nav {
            gap: 0 20px;
        }
        header .gnb ul.navbar-nav > li.nav-item {
            padding-bottom: 10px;
        }
        header .gnb ul.navbar-nav > li.nav-item > a.nav-link {
            font-size: 15px;
        }
        header.navbar-fixed-top {
            height: 80px
        }
        header.navbar-fixed-top h1.logo {
            width: 100px;
        }
        header.navbar-fixed-top .gnb ul.navbar-nav > li.nav-item > a.nav-link {
            font-size: 14px;
        }
        header .header-sns {
            display: none;
        }
    }

/* 별별푸드트럭 푸터 */
footer {
    position: relative;
    color: var(--color-beige-f5);
}
footer .site-footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: clamp(60px, calc(105 / var(--inner-wide) * 100vw), 100px);
    padding-bottom: clamp(40px, calc(90 / var(--inner-wide) * 100vw), 90px);
}
footer .site-footer-left {
    flex: 1;
    min-width: 0;
}
footer .footer-logo {
    width: clamp(130px, calc(208 / var(--inner-wide) * 100vw), 208px);
}
footer .footer-logo a {
    display: block;
}
footer .footer-logo img {
    width: 100%;
    height: auto;
}
footer .footer-menu {
    margin-top: var(--space-50);
}
footer .footer-menu ul {
    display: flex;
    align-items: center;
    gap: var(--space-30);
}
footer .footer-menu a {
    font-size: var(--font-18);
    font-weight: var(--fw-bold);
}
footer .footer-menu a:hover {
    opacity: 0.7;
}
footer .footer-company-info {
    margin-top: var(--space-35);
}
footer .footer-company-info li {
    display: inline-block;
    font-size: var(--font-16);
    font-weight: var(--fw-normal);
}
footer .footer-company-info li:last-child {
    display: block;
    margin-top: var(--space-10);
}
footer .footer-divider {
    display: inline-block;
    margin: 0 var(--space-5);
}
footer .site-footer-right {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    flex: 0 0 auto;
}
footer .footer-sns {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}
footer .footer-sns a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: clamp(25px, calc(30 / var(--inner) * 100vw), 30px);
    color: var(--color-primary);
    background-color: var(--color-beige-f5);
    transition: var(--transition);
}
footer .footer-sns a:hover {
    transform: translateY(-3px);
}
footer .footer-sns-instagram {
    width: clamp(25px, calc(30 / var(--inner) * 100vw), 30px);
    border-radius: 50%;
}
footer .footer-sns-instagram img {
    width: clamp(16px, calc(17 / var(--inner) * 100vw), 17px);
}
footer .footer-sns-blog {
    gap: 5px;
    padding: 0 10px;
    border-radius: var(--border-radius);
}
footer .footer-sns-blog img {
    width: clamp(18px, calc(21 / var(--inner) * 100vw), 21px);
}
footer .footer-sns-blog span {
    font-size: var(--font-14);
    font-weight: var(--fw-bold);
}
footer .footer-contact {
    display: flex;
    align-items: center;
    gap: var(--space-10);
}
footer .footer-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(120px, calc(180 / var(--inner-wide) * 100vw), 180px);
    height: clamp(45px, calc(58 / var(--inner-wide) * 100vw), 58px);
    border: 1px solid var(--color-beige-f5);
    border-radius: 3px;
    font-size: var(--font-18);
    font-weight: var(--fw-bold);
}
footer .footer-contact-btn:hover {
    color: var(--color-primary);
    background-color: var(--color-beige-f5);
}
footer .site-footer-bottom {
    border-top: 1px solid #006565;
}
footer .footer-copyright {
    padding: var(--space-30) 0;
    color: var(--color-brown-b7);
    font-size: var(--font-14);
    font-weight: var(--fw-normal);
    text-align: center;
}
footer .site-footer-top.mobile {
    display: none;
}
/* 태블릿 */
@media all and (max-width: 1000px) {
    footer .site-footer-top.pc {
        flex-direction: column;
    }
    footer .footer-company-info li {
        display: block;
        margin-bottom: var(--space-10);
    }
    footer .footer-company-info li i {
        display: none
    }
    footer .site-footer-right {
        width: 100%;
        align-items: flex-start;
        align-self: auto;
        margin-top: var(--space-60);
    }
    footer .footer-contact {
        width: 100%;
        margin-top: var(--space-40);
    }
    footer .footer-contact-btn {
        flex: 1;
    }
} 
/* 모바일 */
@media all and (max-width: 640px) {
    footer {
        padding-bottom: 55px;
    }
    footer .site-footer-top.pc {
        display: none;
    }
    footer .site-footer-top.mobile {
        display: flex;
        flex-direction: column;
    }
    footer .footer-sns {
        margin-top: 40px;
    }
    footer .footer-menu {
        width: 100%;
    }
    footer .footer-menu ul {
        display: flex;
        /* justify-content: space-between; */
        flex-wrap: wrap;
        gap: 7px 20px;
    }
    footer .footer-menu a {
        font-size: var(--font-16);
    }
    footer .footer-company-info {
        margin-top: 0;
    }
    footer .footer-company-info li {
        display: block;
    }
    footer .footer-company-info li 
    footer .footer-company-info {
        margin-top: 30px;
    }
    footer .site-footer-right {
        margin-top: 45px;
        align-items: flex-start;
        flex-direction: column-reverse;
        justify-content: space-between;
    }
    footer .footer-contact {
        margin-top: 20px;
    }

}

/* 퀵메뉴 */
.quick {
    position: fixed;
    z-index: 9999;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
}
.quick .quick-wrap {
    border-radius: 5px 0 0 5px;
    overflow: hidden;
    margin-bottom: 10px
}
.quick .item {
    width: clamp(60px, calc(75 / var(--inner) * 100vw), 75px);
    height: clamp(55px, calc(85 / var(--inner) * 100vw), 85px);
    transition: var(--transition);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.quick .quick-cscenter {
    display: none;
}
.quick .quick-kakao {
    background-color: #FAE100;
}
.quick .quick-cscenter {
    background-color: var(--color-9e9687);
}
.quick .quick-bbblog {
    background-color: #03A94D;
}
.quick .quick-yyblog {
    background-color: #F27092
}
.quick .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.quick .item .icon img {
    width: clamp(18px, calc(27 / var(--inner) * 100vw), 27px);
}
.quick .item span {
    display: block;
    margin-top: var(--space-5);
    color: var(--color-white);
    font-size: var(--font-13);
    font-weight: var(--fw-black);
}
.quick .quick-kakao span {
    color: var(--color-dark);
}
.quick .row.kakao .item p {
    color: var(--color-dark);
}
.quick .scrolltop {
    cursor: pointer;
    text-align: center;
}
.quick .scrolltop svg {
    width: clamp(12px, calc(15 / var(--inner) * 100vw), 15px);
}
.quick .scrolltop svg path {
    transition: var(--transition);
}
.quick .scrolltop:hover svg path {
    stroke: var(--color-brown);
}
    /* 미디어쿼리*/
    @media all and (max-width: 640px) {
        .quick {
            left: 50%;
            right: auto;
            top: auto;
            bottom: 0;
            transform: translate(-50%, 0);
            width: 100%;
            margin: 0 auto;
            display: flex;
            align-items: stretch;
            border-radius: 5px 5px 0 0;
            overflow: hidden;
        }
        .quick .quick-wrap {
            border-radius: 0;
            overflow: hidden;
            margin-bottom: 0;
            display: flex;
            width: 85%
        }
        .quick .quick-wrap .item {
            width: 20%;
        }
        .quick .quick-cscenter {
            display: flex;
        }
        .quick .scrolltop {
            width: 15%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--color-dark);
        }
        .quick .item span {
            font-size: 11px;
        }
        .quick .scrolltop svg path {
            stroke: var(--color-white);
        }
    }

/* 메인 좌측 고정 견적문의 */
.main-estimate-form {
    position: fixed;
    z-index: 950;
    left: clamp(30px, calc(90 / var(--inner) * 100vw), 90px);
    bottom: 40px;
    width: clamp(200px, calc(220 / var(--inner) * 100vw), 220px);
}
.main-estimate-form .estimate-modal-dialog {
    width: 100%;
    max-width: none;
    transform: none;
}
.main-estimate-form .estimate-modal-form {
    overflow: hidden;
    border-radius: clamp(10px, calc(20 / var(--inner) * 100vw), 20px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
}
.main-estimate-form .estimate-modal-header {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-primary);
    padding: 0 var(--space-15);
    position: relative;
}
.main-estimate-form .estimate-modal-header h2 {
    font-size: var(--font-16);
    font-weight: var(--fw-bold);
    color: var(--color-white);
}
.main-estimate-form .estimate-form-close {
    position: absolute;
    top: 50%;
    right: var(--space-15);
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    z-index: 1;
}
.main-estimate-form .estimate-form-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1px;
    background-color: var(--color-white);
}
.main-estimate-form .estimate-form-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}
.main-estimate-form .estimate-form-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.main-estimate-form .estimate-modal-body {
    padding: var(--space-20) var(--space-15);
    background-color: var(--color-beige-f5);
}
.main-estimate-form .estimate-form-group label {
    display: block;
    margin-bottom: var(--space-6);
    font-size: var(--font-13);
    color: var(--color-primary);
    font-weight: var(--fw-bold);
}
.main-estimate-form .estimate-form-group textarea,
.main-estimate-form .estimate-form-group input {
    width: 100%;
    border-radius: 3px;
    font-size: 15px;
    background-color: var(--color-white);
    overflow: hidden;
}
.main-estimate-form .estimate-form-group textarea {
    height: 100px;
    padding: var(--space-10);
}
.main-estimate-form .estimate-form-group textarea::placeholder,
.main-estimate-form .estimate-form-group input::placeholder {
    color: var(--color-9e9687);
    font-size: var(--font-13);
    word-break: break-all;
}
.main-estimate-form .estimate-form-group input {
    height: 30px;
    padding: 0 var(--space-10);
}
.main-estimate-form .estimate-box {
    display: flex;
    align-items: center;
    position: relative;
}
.main-estimate-form .estimate-box input[type=checkbox].switch {
    --active: var(--color-primary);
    --active-inner: var(--color-white);
    --focus: 2px rgba(0, 0, 0, .2);
    --border: var(--color-white);
    --border-hover: var(--color-primary);
    --background: var(--color-9e9687);
    --disabled: #DAD5CF;
    --disabled-inner: #DAD5CF;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 17px;
    height: 6px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    top: 0;
    cursor: pointer;
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    border-radius: 11px;
    border:0
}
.main-estimate-form .estimate-box input[type=checkbox].switch:after {
    content: "";
    display: block;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    left: 0px;
    top: -2px;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: var(--ab, var(--active));
    transform: translateX(var(--x, 0));
}
.main-estimate-form .estimate-box input[type=checkbox].switch:checked {
    --b: var(--background);
    --bc: var(--background);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    --ab: var(--active);
    --x: 6px;
    background-color: var(--color-brown);
}
.main-estimate-form .estimate-box input[type=checkbox].switch + label {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 8px;
    color: var(--color-white);
    font-size: var(--font-15);
}
.main-estimate-form .estimate-box span {
    font-size: var(--font-12);
    margin-left: var(--space-5);
    font-weight: var(--fw-semibold);
}
.main-estimate-form .estimate-modal-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: var(--font-15);
    font-weight: var(--fw-black);
    background-color: var(--color-primary);
    color: var(--color-white);
    transition: var(--transition);
}
.main-estimate-form .estimate-modal-submit:hover {
    background-color: var(--color-dark);
}
    @media all and (max-width: 640px) {
        .main-estimate-form  {
            display: none;
        }
    }