@charset "UTF-8";
/* ============================================================
   온나라이삿짐센터 헤더 CSS  (정본 이식)
   ------------------------------------------------------------
   출처 : www_기존것/theme/basic/head.php  281~1357행 인라인 <style>
   방식 : 재작성이 아니라 원본 그대로 옮겼다. (선행 8칸 들여쓰기만 제거)
          규칙 순서·값·!important 까지 원본과 동일하다.

   적용 : theme/oncap-custom/head.php 가 add_stylesheet(order 98) 로 로드한다.
          ONCAP 의 assets/css/header.css(order 12) · css/custom.css(order 20)
          보다 뒤에 실려서 헤더 영역에서 우선한다.

   의존 : theme/oncap/html/css/pbminfotech-base-icons.css  (프리헤더 전화/주소 아이콘)
          js/font-awesome (FA4.7)                          (fa fa-user 등)
          theme/oncap/html/css/bootstrap.min.css           (container · d-flex · d-xl-*)

   [주의] theme/oncap 은 IMMUTABLE_CORE 이므로 읽어 쓰기만 하고 수정하지 않는다.
   ============================================================ */

/* -----------------------------------------------------------
       1. Base & Header PC Layout
    ----------------------------------------------------------- */
html,
body {
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    max-height: none
}

/* ONCAP html/css/style.css 의 #page{overflow:hidden} 이 헤더·푸터를 잘라 낸다 */
#page,
.page-wrapper {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important
}

.preloader {
    display: none !important
}

.site-header.header-style-3 {
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
    position: relative;
    z-index: 50
}

.pbmit-pre-header-wrapper {
    background: #f5f6f7;
    border-top: 1px solid #e9edf2;
    border-bottom: 1px solid #e9edf2;
    position: relative;
    z-index: 20
}

.pbmit-pre-header-wrapper .container>.d-flex {
    min-height: 52px;
    align-items: center
}

.pbmit-pre-header-left {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-right: 1px solid #e1e8ed;
    padding-right: 48px
}

.pbmit-pre-header-right {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 48px
}

.pbmit-social-links,
.pbmit-contact-info {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center
}

.pbmit-social-links {
    gap: 28px
}

.pbmit-social-links li a {
    color: #1a1f2c;
    font-size: 16px;
    transition: color .2s;
    text-decoration: none
}

.pbmit-social-links li a:hover {
    color: #b9924c
}

.pbmit-contact-info {
    gap: 34px;
    font-size: 15px;
    font-weight: 700;
    color: #4a5563
}

.pbmit-contact-info li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap
}

.pbmit-contact-info li i {
    color: #b9924c;
    font-size: 15px
}

.pbmit-main-header-area {
    background: #fff;
    border-bottom: 1px solid #edf0f2
}

.pbmit-header-content {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between;
    align-items: center;
    min-height: 104px;
    gap: 24px;
    position: relative
}

.pbmit-logo-area .logo-img {
    max-height: 68px;
    width: auto
}

.site-navigation {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0
}

.site-navigation .main-menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    padding-left: 40px
}

.site-navigation .navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0 !important
}

.site-navigation .navigation>li>a {
    display: block;
    height: 104px;
    line-height: 104px;
    font-size: 20px;
    font-weight: 800;
    color: #101722;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.03em;
    transition: color .2s
}

.site-navigation .navigation>li>a:hover {
    color: #b99556
}

.site-navigation .navigation>li>ul {
    display: none;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    min-width: 200px;
    max-width: 260px;
    background: #fff;
    border: 1px solid rgba(16, 23, 34, .08);
    border-radius: 14px;
    padding: 8px;
    list-style: none;
    margin: 0;
    box-shadow: 0 20px 40px rgba(16, 23, 34, .12)
}

.site-navigation .navigation>li:hover>ul {
    display: block
}

/* [2026-08-28] 2차 항목이 세로패딩 0 이라 답답했다 → 여유 확보 + 라운드 */
.site-navigation .navigation>li>ul>li>a {
    display: block;
    padding: 11px 16px;
    margin: 2px 0;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
    color: #1f2b37;
    text-decoration: none;
    transition: all .2s
}

/* [2026-08-28] hover 배경이 #f8fafc 라 거의 안 보였다 → 포인트색 계열로 강화 */
.site-navigation .navigation>li>ul>li>a:hover {
    background: #f3ead6;
    color: #8a6a2c
}

.pbmit-right-box {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex: 0 0 auto
}

.top-member-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    flex: 0 0 auto !important;
}

.top-member-icon {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    color: #222 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.top-member-icon i {
    font-size: 18px !important;
}

.top-member-icon:hover {
    color: #0f57d6 !important;
}

.mobile-login-box {
    display: none;
}

.pbmit-btn.pbmit-btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 72px 0 28px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: #fff;
    color: #1e293b;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    transition: all .2s
}

.pbmit-btn.pbmit-btn-outline:hover {
    border-color: #b99556;
    background: #fcfaf7
}

.pbmit-btn.pbmit-btn-outline:after {
    content: "\e628";
    font-family: 'pbminfotech-base-icons';
    position: absolute;
    right: 4px;
    top: 4px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b99556;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: transform .3s ease
}

.pbmit-btn.pbmit-btn-outline:hover:after {
    transform: rotate(45deg)
}

/* -----------------------------------------------------------
       2. Mobile UI
    ----------------------------------------------------------- */
.mobile-menu-toggle {
    display: none;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: #fff;
    color: #111;
    padding: 0;
    cursor: pointer;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px
}

.nav-toggle-lines {
    position: relative;
    display: block;
    width: 24px;
    height: 18px
}

.nav-toggle-lines span,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2.5px;
    background: #111;
    border-radius: 2px
}

.nav-toggle-lines span {
    top: 8px
}

.nav-toggle-lines::before {
    top: 0
}

.nav-toggle-lines::after {
    bottom: 0
}

.pbmit-mobile-menu-bg {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 18, 28, .4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .25s ease;
    z-index: 9998
}

.pbmit-mobile-menu-bg.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.pbmit-mobile-panel {
    display: none;
    position: fixed;
    top: 0;
    right: -380px;
    width: 360px;
    max-width: 92vw;
    height: 100vh;
    background: #fff;
    box-shadow: -22px 0 46px rgba(10, 18, 28, .15);
    z-index: 9999;
    transition: right .28s ease;
    overflow-y: auto;
    overflow-x: hidden
}

.pbmit-mobile-panel.show {
    right: 0
}

.pbmit-menu-wrap {
    min-height: 100%;
    padding: 0 0 24px
}

.pbmit-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid #edf1f5
}

.pbmit-menu-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none
}

.pbmit-menu-logo img {
    width: auto;
    height: 34px;
    display: block
}

.closepanel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #111;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    border-radius: 50%
}

body.pbmit-menu-open {
    overflow: hidden
}

/* -----------------------------------------------------------
       3. PC Media Query (>1200px)
    ----------------------------------------------------------- */
@media (min-width:1200px) {

    .pbmit-mobile-menu-bg,
    .pbmit-mobile-panel,
    .mobile-menu-toggle {
        display: none !important;
    }

    .site-navigation,
    .site-navigation .main-menu,
    .site-navigation .navigation {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        overflow: visible !important
    }

    .site-navigation .navigation > li > a {
        color: #101722 !important
    }

    .closepanel {
        display: none !important;
    }
}

/* -----------------------------------------------------------
       4. Mobile Media Query (<1199.98px)
    ----------------------------------------------------------- */
@media (max-width:1199.98px) {
    .site-navigation {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: inline-flex !important;
    }

    .pbmit-mobile-menu-bg,
    .pbmit-mobile-panel {
        display: block !important;
    }

    .pbmit-header-content {
        min-height: 84px;
        gap: 12px;
    }

    .pbmit-logo-area .logo-img {
        max-height: 48px;
    }

    .pbmit-right-box {
        margin-left: auto;
        gap: 10px;
    }

    .mobile-login-box {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        padding: 12px 14px !important;
        border-bottom: 1px solid #f1f5f9 !important;
        background: #f8fafc !important;
        margin: 0 -16px 14px !important;
    }

    .mobile-login-box a {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 72px !important;
        height: 34px !important;
        padding: 0 10px !important;
        border-radius: 999px !important;
        background: #111827 !important;
        color: #fff !important;
        font-size: 13px !important;
        font-weight: 800 !important;
        text-decoration: none !important;
        box-sizing: border-box !important;
    }

    .mobile-login-box a:last-child {
        background: #b99556 !important;
    }

    /* Stage 4: Final UI Polish */
    #pbmit-menu .pbmit-menu-wrap {
        display: block !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        min-height: 100% !important;
        padding: 0 0 60px !important;
        background: #fff !important
    }

    #pbmit-menu .pbmit-menu-top {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
        padding: 10px 18px !important;
        border-bottom: 1px solid #f1f5f9 !important;
        background: #fff !important;
        opacity: 1 !important;
        visibility: visible !important
    }

    #pbmit-menu .navigation {
        margin: 0 !important
    }

    #pbmit-menu .pbmit-menu-logo img {
        display: block !important;
        height: 30px !important;
        width: auto !important
    }

    #pbmit-menu .closepanel {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 12px !important;
        background: rgba(185, 149, 86, 0.05) !important;
        color: #b99556 !important;
        transition: all .2s ease !important
    }

    #pbmit-menu .closepanel:active {
        transform: scale(0.92) !important
    }

    #pbmit-menu .closepanel svg {
        fill: currentColor !important;
        width: 14px !important;
        height: 14px !important
    }

    #pbmit-menu .navigation>li {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        border-bottom: 1px solid #f1f5f9 !important
    }

    #pbmit-menu .navigation>li.active>a {
        color: #b99556 !important
    }

    #pbmit-menu .navigation>li>a {
        display: block !important;
        padding: 14px 60px 14px 22px !important;
        font-size: 17px !important;
        font-weight: 800 !important;
        color: #111 !important;
        line-height: 1.4 !important;
        background: #fff !important;
        transition: all .2s ease !important
    }

    #pbmit-menu .sub-menu-toggle {
        position: absolute !important;
        right: 8px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 48px !important;
        height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
        border: 0 !important;
        color: #b99556 !important;
        font-size: 14px !important;
        cursor: pointer !important;
        z-index: 10 !important
    }

    #pbmit-menu .navigation>li.is-open>.sub-menu-toggle {
        color: #111 !important
    }

    #pbmit-menu .navigation>li>ul {
        display: none !important;
        position: static !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin: 0 !important;
        padding: 0 0 12px 14px !important;
        list-style: none !important;
        background: #fcfcfc !important;
        border: 0 !important;
        box-shadow: none !important
    }

    #pbmit-menu .navigation>li.is-open>ul {
        display: block !important
    }

    #pbmit-menu .navigation>li.is-open>.sub-menu-toggle i::before {
        content: "\f068" !important
    }

    #pbmit-menu .navigation>li>ul>li>a {
        display: block !important;
        padding: 8px 18px !important;
        font-size: 14.5px !important;
        font-weight: 600 !important;
        line-height: 1.35 !important;
        color: #4b5563 !important;
        text-decoration: none !important;
        transition: color .2s ease !important
    }

    #pbmit-menu .navigation>li>ul>li>a:active {
        color: #b99556 !important
    }
}

@media (max-width:767.98px) {
    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
    }

    .pbmit-mobile-panel {
        width: 88vw;
        max-width: 88vw;
    }

    #pbmit-menu .pbmit-menu-top {
        padding: 10px 14px !important
    }

    #pbmit-menu .navigation {
        margin: 0 !important
    }

    #pbmit-menu .navigation>li>a {
        padding: 15px 18px !important;
        font-size: 16px !important
    }

    #pbmit-menu .navigation>li>ul {
        padding: 0 0 12px 10px !important
    }

    #pbmit-menu .navigation>li>ul>li>a {
        padding: 7px 12px !important;
        font-size: 14px !important;
        line-height: 1.3 !important
    }
}

/* -----------------------------------------------------------
       5. Subpage Hero Section Styles
    ----------------------------------------------------------- */
.gw-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0 0 30px;
}

.gw-hero__img {
    width: 100%;
    height: 340px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.gw-hero__overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .28) 55%, rgba(0, 0, 0, .18));
}

.gw-hero__inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(1280px, calc(100% - 40px));
    color: #fff;
    z-index: 2;
}

.gw-hero__crumb {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 10px;
    opacity: .95;
}

.gw-hero__crumb a {
    color: #fff;
    text-decoration: none;
}

.gw-hero__sep {
    margin: 0 8px;
    opacity: .7;
}

.gw-hero__title {
    display: inline-block;
    margin: 0 0 12px;
    padding: 10px 14px;
    font-size: 46px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    background: rgba(0, 0, 0, .28);
    border-radius: 14px;
    text-shadow: 0 6px 16px rgba(0, 0, 0, .55);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
}

.gw-hero__desc {
    max-width: 760px;
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

.gw-hero__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gw-hero__navlink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    transition: all .2s ease;
}

.gw-hero__navlink:hover {
    background: #fff;
    color: #111;
}

@media (min-width:1024px) {
    .gw-hero__img {
        height: 440px;
    }
}

@media (max-width:1023.98px) {
    .gw-hero__img {
        height: 300px;
    }

    .gw-hero__title {
        font-size: 34px;
    }

    .gw-hero__desc {
        font-size: 15px;
    }
}

@media (max-width:680px) {
    .gw-hero {
        margin: 0 0 18px;
    }

    .gw-hero__img {
        height: 220px;
    }

    .gw-hero__inner {
        width: calc(100% - 24px);
        top: auto;
        bottom: 14px;
        transform: translateX(-50%);
    }

    .gw-hero__crumb {
        display: none;
    }

    .gw-hero__title {
        font-size: 24px;
        padding: 8px 10px;
        margin: 0 0 8px;
    }

    .gw-hero__desc {
        font-size: 13px;
        line-height: 1.45;
        margin: 0 0 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .gw-hero__nav {
        gap: 8px;
    }

    .gw-hero__navlink {
        min-height: 36px;
        padding: 0 12px;
        font-size: 12px;
    }
}









/* ===== ?곷떒 ?꾨━?ㅻ뜑 ?붿옄???섏젙 (HTML ?섏젙 湲덉? / CSS留??곸슜) ===== */

.pbmit-pre-header-wrapper.pbmit-pre-header-whiteclean {
    background: #fff;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #e5eaf0;
    position: relative;
    z-index: 30
}

.pbmit-pre-header-whiteclean .pbmit-pre-header-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px
}

.pbmit-pre-header-whiteclean .pbmit-pre-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    letter-spacing: -.01em
}

.pbmit-pre-header-whiteclean .pbmit-pre-item i {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #c3922e;
    font-size: 13px;
    flex: 0 0 32px
}

.pbmit-pre-header-whiteclean .pbmit-pre-phone:hover {
    color: #111827
}

.pbmit-pre-header-whiteclean .pbmit-pre-divider {
    width: 1px;
    height: 16px;
    flex: 0 0 1px;
    background: #e2e8f0
}

.pbmit-pre-header-whiteclean .pbmit-pre-address span,
.pbmit-pre-header-whiteclean .pbmit-pre-phone span {
    display: block;
    white-space: nowrap
}

.pbmit-pre-header-whiteclean .pbmit-pre-address {
    max-width: 100%;
    overflow: hidden
}

.pbmit-pre-header-whiteclean .pbmit-pre-address span {
    overflow: hidden;
    text-overflow: ellipsis
}

@media (max-width:991.98px) {
    .pbmit-pre-header-whiteclean .pbmit-pre-header-inner {
        min-height: auto;
        padding: 12px 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 8px
    }

    .pbmit-pre-header-whiteclean .pbmit-pre-divider {
        display: none
    }
}

@media (max-width:767.98px) {
    .pbmit-pre-header-whiteclean .container {
        padding-left: 14px;
        padding-right: 14px
    }

    .pbmit-pre-header-whiteclean .pbmit-pre-header-inner {
        padding: 10px 0
    }

    .pbmit-pre-header-whiteclean .pbmit-pre-item {
        font-size: 12.5px
    }

    .pbmit-pre-header-whiteclean .pbmit-pre-item i {
        width: 28px;
        height: 28px;
        font-size: 12px;
        flex: 0 0 28px
    }

    .pbmit-pre-header-whiteclean .pbmit-pre-address span,
    .pbmit-pre-header-whiteclean .pbmit-pre-phone span {
        white-space: normal
    }
}

.pbmit-social-links li a i:before {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important
}


.pbmit-pre-header-whiteclean .pbmit-pre-header-inner {
    display: flex;
    justify-content: flex-end !important;
    align-items: center;
}

.pbmit-pre-header-whiteclean .pbmit-pre-phone,
.pbmit-pre-header-whiteclean .pbmit-pre-address {
    justify-content: flex-end;
    padding-right: 50px;

}

.hd-mobile-direct-menu {
    display: none;
}

@media (max-width: 768px) {
    .hd-mobile-direct-menu {
        display: flex !important;
        gap: 8px;
        overflow-x: auto;
        padding: 10px 12px;
        background: #ffffff;
        border-top: 1px solid #e9edf3;
        border-bottom: 1px solid #e9edf3;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .hd-mobile-direct-menu::-webkit-scrollbar {
        display: none;
    }

    .hd-mobile-direct-menu a {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        padding: 8px 14px;
        border-radius: 999px;
        background: #f3f6fb;
        color: #172033;
        font-size: 13px;
        font-weight: 700;
        line-height: 1;
        text-decoration: none;
        border: 1px solid #e2e8f0;
    }

    .hd-mobile-direct-menu a.is-point {
        background: #0f57d6;
        color: #ffffff;
        border-color: #0f57d6;
    }
}
