@charset "utf-8";
/* 공통 ***********************************************/

:root {
    --primary: #007BFF;
    --common-padding: 120px 20px;
    --common-margin-bt: 40px;
    --common-sec-title-h1-size: 36px;
    --common-sec-title-h1-weight: 600;
    --eng: "minerva-modern", sans-serif;
    --header-marquee-h: 48px;
    --header-bar-h: 80px;
    --header-border-h: 1px;
    --header-offset: calc(var(--header-marquee-h) + var(--header-bar-h) + var(--header-border-h));
}

@media (max-width:768px) {
    :root {
        --common-padding: 100px 16px;
        --common-margin-bt: 40px;
        --common-sec-title-h1-size: 32px;
        --common-sec-title-h1-weight: 400;
        --header-marquee-h: 36px;
        --header-bar-h: 60px;
        --mobile-header-quick-h: 56px;
        /* 마퀴 숨김 → 앵커·본문 여백은 본헤더+퀵만 */
        --header-offset: calc(var(--header-bar-h) + var(--mobile-header-quick-h) + var(--header-border-h));
        --sub-container-extra-top: 24px;
        --mb-bottom-nav-h: 68px;
    }
}

.custom-chk-inp-wrap {
    display: inline-block;
}

.custom-chk-inp-wrap .chk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.custom-chk-inp-wrap input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.custom-chk-inp-wrap .chkbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1.5px solid #888;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
    transition: all .2s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    opacity: .3;
}

.custom-chk-inp-wrap .txt {
    font-size: 14px;
    color: #111;
}

.custom-chk-inp-wrap .txt.all {
    font-size: 15px;
    font-weight: bold;
}

.custom-chk-inp-wrap .txt .privacy-link {
    text-decoration: underline;
    color: #111;
}

.custom-chk-inp-wrap input:checked + .chkbox {
    background-color: var(--primary);
    border-color: var(--primary);
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* 공통 ***********************************************/

.sub-container {
padding: 160px 0 80px;
}

.sub-container .sub-inner {
    max-width: 1320px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
}

.sub-container .sub-title {
    text-align: left;
    margin-bottom: 40px;
}

.sub-container .sub-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}   

.sub-container .sub-title p {
    font-size: 1.1rem;
    color: #666;
}

@media (max-width:768px) {
    .sub-container .sub-title h2 {
        font-size: 1.8rem;
    }

    .sub-container .sub-title p {
        font-size: 1rem;
    }
}

/* board reset *****************************************/

#bo_w,
#bo_v,
#bo_list {
    max-width: 1220px;
    margin: 0 auto;
    padding: var(--common-padding);
    position: relative;
}

.bbs-sectitle {
    text-align: center;
    margin-bottom: var(--common-margin-bt);
}

.bbs-sectitle h1 {
    font-size: var(--common-sec-title-h1-size);
    font-weight: var(--common-sec-title-h1-weight);
    line-height: 1;
}

@media (max-width:768px) {

    #bo_w,
    #bo_v,
    #bo_list {
        padding: var(--common-padding);
    }
}


/* 헤더 ***********************************************/
/* 헤더 ***********************************************/
html {
    scroll-padding-top: var(--header-offset);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-sizing: border-box;
    -webkit-transition: box-shadow 0.15s ease, background 0.15s ease;
    transition: box-shadow 0.15s ease, background 0.15s ease;
}

/* 상단 프로모 마키 — 문서 흐름 상단 블록 (고정 높이) */
.header-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: var(--header-marquee-h);
    min-height: var(--header-marquee-h);
    background: #24303d;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    box-sizing: border-box;
}

.header-marquee::before,
.header-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.header-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #24303d 0%, rgba(36, 48, 61, 0) 100%);
}

.header-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #24303d 0%, rgba(36, 48, 61, 0) 100%);
}

.marquee-motion {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
    animation: topMarquee 28s linear infinite;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 120px;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
    padding-right: 120px;
}

.marquee-track span {
    font-size: .9rem;
    font-weight: 600;
    color: #fff;
}

.marquee-track span strong {
    color: #7ec7ff;
    font-weight: 700;
}

@keyframes topMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-motion {
        animation: none;
    }
}

@media (max-width: 768px) {
    .header-marquee::before,
    .header-marquee::after {
        width: 72px;
    }

    .marquee-track {
        gap: 72px;
        padding-right: 72px;
    }

    .marquee-track span {
        font-size: 1.05rem;
    }
}

.header.white {
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

/* 모바일(≤768)만: 고정 헤더 하단 4칸 퀵 메뉴 */
.mobile-header-menu {
    display: none;
}

@media (max-width: 768px) {
    .mobile-header-menu {
        display: flex;
        flex-shrink: 0;
        align-items: stretch;
        width: 100%;
        height: var(--mobile-header-quick-h);
        min-height: var(--mobile-header-quick-h);
        border-bottom: 1px solid #eee;
        background: #fff;
        box-sizing: border-box;
    }

    .mobile-header-menu a {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(11px, 3.2vw, 14px);
        font-weight: 700;
        color: #111;
        white-space: nowrap;
        text-decoration: none;
        box-sizing: border-box;
    }

    .mobile-header-menu a + a {
        border-left: 1px solid #eee;
    }

    .mobile-header-menu a:active {
        background: #f7f7f7;
    }
}

@media (min-width: 769px) {
    .mobile-header-menu {
        display: none !important;
    }
}

/* 모바일 본문 상단 여백: 전역 --header-offset(CSS 변수만, JS 없음). 헤더 레이아웃은 추후 조정 가능 */
@media (max-width: 768px) {
    .header-marquee {
        display: none !important;
    }

    #main {
        padding-top: var(--header-offset);
    }

    .sub-container {
        padding-top: calc(var(--header-offset) + var(--sub-container-extra-top, 24px));
    }
}

/* 본 헤더(로고·메뉴) — 마퀴와 높이 분리, 하단 보더·배경 */
.header-main {
    flex-shrink: 0;
    width: 100%;
    height: var(--header-bar-h);
    min-height: var(--header-bar-h);
    background: #fff;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
}

.header-main .inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px 20px;
    height: 100%;
    min-height: 0;
    margin: 0 auto;
    max-width: 1320px;
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
}

.header-main .inner .logo {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    height: auto;
    width: auto;
    overflow: visible;
}

.header-main .inner .logo h2 {
    margin: 0;
    line-height: 1;
    font-size: inherit;
}

.header-main .inner .logo a {
    position: relative;
    display: block;
    width: 110px;
    height: 38px;
    max-height: 40px;
    flex-shrink: 0;
}

.header-main .inner .logo a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/images/logo-c.svg) center center no-repeat;
    background-size: 110px;
    display: block;
    z-index: 11;
}

.header.white .logo a:after {
    background: url(/images/logo-c.svg) center center no-repeat;
    background-size: 110px;
}

.header-main .inner .menu_btn {
    position: relative;
    z-index: 1;
}

.header .header_gnb {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.header .header_gnb::-webkit-scrollbar {
    height: 4px;
}

.header .header_gnb::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.header .header_gnb .gnb_depth_1 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    gap: clamp(14px, 2.2vw, 44px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.header .header_gnb .depth_1 {
    position: relative;
    display: flex;
    align-items: center;
    height: var(--header-bar-h);
    margin: 0;
    flex-shrink: 0;
}

.header .header_gnb .depth_1 > a {
    display: flex;
    align-items: center;
    padding: 0;
    font-weight: 500;
    color: #111;
    font-size: 15px;
    white-space: nowrap;
}

.header .header_gnb .depth_1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #111;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: opacity .2s ease, transform .2s ease;
}

.header .header_gnb .depth_1.on::after,
.header .header_gnb .depth_1:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.header .header_gnb .depth_1 > a span {
    position: relative;
    display: block;
    line-height: normal;
    font-weight: 600;
    color: #111;
    font-size: 18px;
    white-space: nowrap;
}

.header.white .header_gnb .depth_1 > a,
.header.white .header_gnb .depth_1 > a > span {
    color: #111;
}

.header .header_gnb .depth_1 .depth_item {
    background-color: var(--primary);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.header .header_gnb .depth_1.current .depth_item {
    visibility: visible;
    opacity: 1;
    transition: all 0.5s;
}

.header .header_gnb .depth_1 .depth_item .gnb_depth_2 {
    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.header .header_gnb .depth_1.current .depth_item .gnb_depth_2 {
    visibility: visible;
    opacity: 1;
    transition: all 0.5s;
}

.header .header_gnb .depth_2 > a {
    display: block;
    padding: 8px 0;
    font-size: 16px;
    color: #fff;
    transition: color 0.1s;
}

.header .header_gnb .depth_item li {
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.4s ease;
}

.header .header_gnb .depth_item li.fade-up {
    opacity: 1;
    transform: translateY(0);
}


.mob-header {
    position: relative;
}

.mob-header .dimmed {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    transition: opacity 0.3s ease;
}

.mob-header .dimmed.show {
    display: block;
}

/* ✅ 햄버거는 z-index 올림 (모바일 sticky 헤더·마퀴보다 위) */
.mob-header .mobBtn {
    position: relative;
    z-index: 1102;
}

/* 햄버거 — .inner flex 마지막 자식, 모바일에서 우측 정렬 */
.header .mobBtn {
    width: 24px;
    height: 18px;
    position: relative;
    flex: 0 0 auto;
    margin-left: auto;
    align-self: center;
    cursor: pointer;
    z-index: 1102;
}

.header .mobBtn span,
.header .mobBtn::before,
.header .mobBtn::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    left: 0;
    transition: 0.3s ease;
}

.header .mobBtn span {
    top: 8px;
}

.header .mobBtn::before {
    top: 0;
}

.header .mobBtn::after {
    bottom: 0;
}

.header.white .mobBtn span,
.header.white .mobBtn::before,
.header.white .mobBtn::after {
    background: #111;
}

/* 메뉴 레이어 (슬라이드 패널) */
.mob-header .mob-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background: #fff;
    z-index: 1101;
    padding: 20px;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    box-sizing: border-box;
}

.mob-header .mob-nav.open {
    right: 0;
}

.mob-header .nav-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mob-header .nav-top {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.mob-header .nav-top img {
    width: 130px;
}

.mob-header .nav-list {
    margin-top: 20px;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.mob-header .nav-item {
    border-bottom: 1px solid #eee;
}

.mob-header .nav-link {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    box-sizing: border-box;
}

.mob-header .nav-link .arrow {
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mob-header .nav-item:not(.no-sub) .arrow {
    transform: rotate(0deg);
}

.mob-header .nav-item.open .arrow {
    transform: rotate(180deg);
}

.mob-header .nav-item.no-sub .arrow.right {
    transform: rotate(0deg);
}

.mob-header .sub-menu {
    display: none;
    padding: 10px 0 14px 12px;
    background: #f9f9f9;
    list-style: none;
    margin: 0;
}

.mob-header .nav-item.open .sub-menu {
    display: block;
}

.mob-header .sub-menu li {
    padding: 6px 0;
    font-size: 14px;
    color: #555;
}

@media (max-width:1200px) {
    .header-main .inner .header_gnb {
        display: none;
    }

    /* 태블릿·모바일: GNB 대신 햄버거 — 스크롤 전(.white 없음)에도 보이도록 진한 선 */
    .header .mobBtn {
        display: block;
    }

    .header .mobBtn span,
    .header .mobBtn::before,
    .header .mobBtn::after {
        background: #111;
    }

    .header.white .mobBtn span,
    .header.white .mobBtn::before,
    .header.white .mobBtn::after {
        background: #111;
    }
}

@media (min-width:1201px) {
    .header .mobBtn {
        display: none !important;
    }
}

@media (max-width:768px) {
    .header-main {
        height: 60px;
        min-height: 60px;
    }

    .header-main .inner {
        height: 60px;
        min-height: 60px;
        display: flex;
        align-items: center;
        padding: 0 20px;
        gap: 12px 16px;
    }

    .header .header_gnb .depth_1:nth-child(1),
    .header .header_gnb .depth_1:nth-child(2),
    .header .header_gnb .depth_1:nth-child(3) {
        display: none;
    }
}


/* 푸터 ***********************************************/
/*    footer    — rc1003 theme/basic/css/layout.css 와 동일 */
#footer {
    position: relative;
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

#footer .inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

#footer .inner .ft_top,
#footer .inner .ft_addr {
    margin-bottom: 40px;
}

#footer .inner .ft_top .dflx {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer .inner .ft_top .dflx .nav ul {
    display: flex;
}

#footer .inner .ft_top .dflx .nav a {
    color: #555;
}

/* 개인정보 처리방침만 강조 — a:first-child는 li마다 a가 첫 자식이라 전체에 매칭됨 */
#footer .inner .ft_top .dflx .nav ul li:first-child > a {
    color: var(--primary);
    font-weight: 600;
}

#footer .inner .ft_top .dflx .nav ul li:not(:last-child) {
    margin-right: 16px;
}

#footer .inner .ft_top .dflx .cont {
    text-align: right;

}

#footer .inner .ft_top .dflx .cont h3 a,
#footer .inner .ft_top .dflx .cont h3 {
    color: #222;
    font-size: 24px;
}

#footer .inner .ft_top .dflx .cont h3 a {
    color: var(--primary);
}

#footer .inner .ft_addr p {
    font-size: 13px;
    color: #555;
}

#footer .inner .ft_addr p:first-child {
    margin-bottom: 8px;
}

#footer .inner .ft_addr p span {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin-right: 10px;
    font-weight: 400;
}

#footer .inner .ft_bot .brand ul {
    display: flex;
}

#footer .inner .ft_bot .brand ul li {
    color: #444;
}

#footer .inner .ft_bot .brand ul li:not(:last-child) {
    margin-right: 8px;

}

#footer .inner .ft_bot {
    position: relative;
}

#footer .inner .ft_bot .cp {
    color: #888;
    font-size: 14px;
}

.footer_sns .inner {
    background: #fff;
}

.footer_sns .inner .dflx ul {
    display: flex;
    justify-content: space-between;
    height: 300px;

}

.footer_sns .inner .dflx ul li {
    width: 33.333333%;
    display: inline-block;
    height: 100%;
    border-top: 1px solid #111;
}



.footer_sns .inner .dflx ul li:not(:last-child) {
    border-right: 1px solid #111;
}

.footer_sns .inner .dflx ul li a {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.footer_sns .inner .dflx ul li a:hover {
    background: #f1f1f1;
}

.footer_sns .inner .dflx ul li a .top {
    font-size: 24px;
    font-family: var(--eng-font);
}

.footer_sns .inner .dflx ul li a .bot .df {
    display: flex;
    justify-content: flex-end;
    font-weight: 400;
    font-size: 40px;
    font-family: var(--eng-font);
}

/* ✅ Dim */
.ft-policy-dim {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
}

/* ✅ Modal */
.ft-policy-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    background: #fff;
    border-radius: 8px;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.ft-policy-inner {
    padding: 2rem;
    position: relative;
}

.ft-policy-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

.ft-policy-content .ft-policy-item:not(:last-child) {
    margin-bottom: 24px;
}

.ft-policy-content .ft-policy-item h4 {
    font-size: 15px;
}

.ft-policy-content .ft-policy-item ul {
    margin-top: 8px;
}

.ft-policy-content .ft-policy-item ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.ft-policy-item ul li::before {
    content: "•";
    flex-shrink: 0;
    color: #333;
}


/* ✅ Close Button */
.ft-policy-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
}

/* ✅ 공통 모달 스타일은 기존 유지 */

.ft-policy-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    /* 골드/주황 느낌 */
    margin-bottom: 1.2rem;
}

/* 강조 문구 */
.ft-policy-highlight {
    font-size: 1.05rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* 일반 본문 */
.ft-policy-content .ft-policy-item ul li,
.ft-policy-content p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.7;
}

.ft-policy-content p {
    margin-top: 8px;
}

/* 게시일 */
.ft-policy-date {
    font-size: 0.85rem;
    color: #888;
    margin-top: 1.5rem;
}

@media (max-width:1024px) {
    #footer .inner .ft_bot .cp {
        position: static;
        margin-top: 24px;
    }

    #footer .inner {
        padding: 0 40px;
    }
}

@media (max-width:830px) {
    #footer .inner .ft_top .dflx {
        display: block;
    }

    #footer .inner .ft_top .dflx .cont {
        margin-top: 32px;
        text-align: left;
    }
}

@media (max-width:768px) {
    .footer_sns .inner {
        background: #fff;
    }

    .footer_sns .inner .dflx ul {
        flex-direction: column;
        height: auto;
    }

    .footer_sns .inner .dflx ul li {
        width: 100%;
        border-top: none;
    }

    .footer_sns .inner .dflx ul li:first-child {
        border-top: 1px solid #111;
    }

    .footer_sns .inner .dflx ul li:not(:last-child) {
        border-bottom: 1px solid #111;
        border-right: none;
    }

    .footer_sns .inner .dflx ul li a {
        flex-direction: row;
        align-items: center;
        padding: 20px;
    }

    .footer_sns .inner .dflx ul li a .top {
        font-size: 18px;
    }

    .footer_sns .inner .dflx ul li a .bot .df {
        font-size: 22px;
    }

    #footer .inner {
        padding: 0 20px;
    }

    #footer .inner .ft_top .dflx .cont h3 {
        font-size: 20px;
    }

    #footer .inner .ft_bot .brand ul {
        flex-wrap: wrap;
    }

    #footer .inner .ft_bot .brand ul li {
        line-height: 1.4;
    }

    #footer {
        padding: 80px 0;
    }

    #footer .inner .ft_top .dflx .nav a {
        font-size: 14px;
    }

    #footer .inner .ft_top .dflx .nav a:not(:last-child) {
        margin-right: 8px;
    }

    #footer .inner .ft_bot .cp {
        font-size: 13px;
    }
}

/* 모바일 전역 하단 고정 빠른 메뉴 (PC 숨김) */
.mb-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mb-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        display: flex;
        width: 100%;
        height: var(--mb-bottom-nav-h, 68px);
        background: #fff;
        border-top: 1px solid #e5e5e5;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
        box-sizing: border-box;
    }

    .mb-bottom-nav .item {
        flex: 1;
        flex-basis: 0;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border-right: 1px solid #e5e5e5;
        color: #111;
        text-decoration: none;
        font-weight: 700;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

    .mb-bottom-nav .item:last-child {
        border-right: none;
    }

    .mb-bottom-nav .ico {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .mb-bottom-nav .ico svg {
        display: block;
        flex-shrink: 0;
        color: inherit;
    }

    .mb-bottom-nav .ico img {
        display: block;
        width: 24px;
        height: 24px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .mb-bottom-nav .txt {
        font-size: .9rem;
        line-height: 1;
        white-space: nowrap;
    }

    body {
        padding-bottom: var(--mb-bottom-nav-h, 68px);
    }
}
