section .inner {
    padding: 0px 16px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* 태블릿 */
@media (min-width: 768px) {
    section .inner {}
}

/* 데스크탑 */
@media (min-width: 1200px) {
    section .inner {}
}

/* 기본: 데스크탑에서는 줄바꿈 안함 */
.mobile-break {
    display: none;
}

.flex-break {
    flex-basis: 100%;
    height: 0;
}

/* 모바일 전용: 줄바꿈 활성화 */
@media (max-width: 768px) {
    .mobile-break {
        display: inline;
    }

    .flex-break {
        display: none;
    }
}


.mo-drawer {
    position: fixed;
    width: 100dvw;
    height: 100dvh;
    top: 0px;
    left: 0px;
    z-index: 9999;
}

@media (min-width: 1200px) {
    .mo-drawer {
        display: none;
    }
}

.mo-drawer .mo-drawer-close {
    display: flex;
    height: 56px;
    padding: 0 16px;
    justify-content: flex-end;
    align-items: center;
    gap: 48px;
    flex-shrink: 0;
    top: 0px;
    align-self: stretch;
    z-index: 99999999999;
    right: 0px;
    position: fixed;
}

.mo-drawer .mo-drawer-overlay {
    width: 100dvw;
    height: 100dvh;
    background-color: #000000bd;
}

.mo-drawer .mo-drawer-panel {
    z-index: 999999;
    position: fixed;
    top: 0px;
    right: 0px;
    width: 327px;
    height: 100dvh;
    background-color: var(--White);
    padding: 56px 16px 0px 16px;
    box-sizing: border-box;
}

.mo-drawer .mo-drawer-panel .mo-drawer-menu {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--Gray-3);
}

.mo-drawer .mo-drawer-panel .mo-drawer-menu .menu-item {
    display: flex;
    padding: 10px 0;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.mo-drawer .mo-drawer-panel .mo-drawer-menu .menu-item a,
.mo-drawer .mo-drawer-panel .mo-drawer-menu .menu-item span {
    color: var(--Black);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.21px;
}

.mo-drawer .mo-drawer-panel .mo-drawer-menu .menu-item img {
    width: 16px;
    height: 16px;
    aspect-ratio: 1/1;
}

.mo-drawer .mo-drawer-panel .mo-drawer-menu .sub-menu li {
    color: var(--Gray-2);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.21px;
    padding: 10px 0 10px 16px;
}

.mo-drawer .mo-drawer-panel .mo-drawer-footer {
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid var(--Gray-97, #EAEBEC);
    background: var(--Gray-100, #FFF);
}

.mo-drawer .mo-drawer-panel .mo-drawer-footer a {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: -webkit-fill-available;
    background-color: #FFFFFF;
    z-index: 99999;
    border-bottom: 1px solid var(--Gray-97, #EAEBEC);
}

header .header-inner {
    display: flex;
    width: 100%;
    height: 56px;
    padding: 0px 16px;
    align-items: center;
    box-sizing: border-box;
}

header .header-logo {
    flex: 1;
}

header .header-logo .img-wrap {
    width: 151px;
    height: 28px;
}

header .header-logo .img-wrap img {
    width: 100%;
    height: 100%;
}

header .header-gnb {
    flex: 9;
    display: none;
}

header .mo-menu-toggle {
    display: block;
}

header .mo-menu-toggle .btn.menu {
    width: 24px;
    height: 24px;
}

header .mo-menu-toggle .btn.menu img {
    width: 100%;
    height: 100%;
}

header .header-gnb .header-gnb-menu {
    display: flex;
    width: fit-content;
    gap: 40px;
    margin: auto;
}

header .header-gnb .header-gnb-menu li a {
    color: var(--Black);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

header .btn-wrap.contact {
    display: none;
}

/* 태블릿 */
@media (min-width: 1200px) {
    header .header-gnb {
        display: block;
    }


    header .btn-wrap.contact {
        padding: 8px 12px;
        border-radius: 8px;
        border: 1px solid var(--Gray-97, #EAEBEC);
        background: var(--Gray-100, #FFF);
        width: fit-content;
        display: block;
    }

    header .btn-wrap.contact:hover {
        color: var(--Gray);
        background: var(--Gray-5);
        font-weight: 700;
    }

    header .mo-menu-toggle .btn.menu {
        display: none;
    }

}

/* 데스크탑 */
@media (min-width: 1200px) {
    header .header-inner {
        display: flex;
        width: 100%;
        max-width: 1200px;
        margin: auto;
        height: 64px;
        align-items: center;
        box-sizing: border-box;
    }

}


.container {
    padding-top: 57px;
}

/* 데스크탑 */
@media (min-width: 1200px) {
    .container {
        padding-top: 65px;
    }
}


footer {
    border-top: 1px solid var(--Gray-97, #EAEBEC);
}

footer .footer-inner {
    padding: 64px 16px 48px 16px;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

footer .footer-inner .img-wrap {
    display: flex;
    width: 152px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

footer .footer-inner .img-wrap img {
    width: 100%;
}

footer .copyright {
    padding: 0px 16px;
    color: var(--Gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

footer .footer-inner .fnb .footer-fnb-menu {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

footer .footer-inner .fnb .footer-fnb-menu .menu {
    color: var(--Gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

footer .footer-inner .info .info-container {
    display: flex;
    flex-wrap: wrap;
}

footer .footer-inner .info .info-container dl {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    margin-right: 8px;
}

footer .footer-inner .info dl:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 16px;
    background: var(--Gray-3);
    margin: auto 0px;
}

footer .footer-inner .info .info-container dl dt,
footer .footer-inner .info .info-container dl dd {
    color: var(--Gray-2);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.21px;
}

footer .copyright {
    max-width: 1200px;
    margin: auto auto 48px auto;
}

@media (min-width: 768px) {
    footer .footer-inner .fnb .header-gnb-menu {
        display: flex;
    }

    footer .footer-inner .fnb .footer-fnb-menu {
        display: flex;
    }

    footer .footer-inner .info .info-container dl dt,
    footer .footer-inner .info .info-container dl dd {
        font-size: 15px;
        line-height: 22px;
    }
}


/* 스크롤 TOP */
.scroll-top {
    position: fixed;
    padding: 15px;
    bottom: 60px;
    right: 16px;
    z-index: 1;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top img {
    width: 1.2rem;
    height: 1.2rem;
}

/* 데스크탑 */
@media (min-width: 1200px) {
    .scroll-top {
        right: 32px;
    }

    .scroll-top img {
        width: 1.5rem;
        height: 1.5rem;
    }
}