@charset "utf-8";

/* ========================================
   ORYX TRANSPORT
   기존 홈페이지 디자인 리뉴얼
======================================== */

@font-face {
    font-family:'NanumGothic';
    font-style:normal;
    font-weight:400;
    src:url('/font/NanumGothic.woff') format('woff');
}

@font-face {
    font-family:'NanumGothic';
    font-style:normal;
    font-weight:700;
    src:url('/font/NanumGothicBold.woff') format('woff');
}

:root {
    --oryx-orange:#f7941d;
    --oryx-orange-dark:#ef6f18;
    --oryx-dark:#292929;
    --oryx-text:#555;
    --oryx-gray:#888;
    --oryx-line:#e3e3e3;
    --oryx-footer:#ece7df;
    --oryx-width:1140px;
}

* {
    box-sizing:border-box;
}

html,
body {
    margin:0;
    padding:0;
}

body {
    font-family:'NanumGothic','Malgun Gothic',Arial,sans-serif;
    color:var(--oryx-text);
    background:#fff;
    line-height:1.5;
}

a {
    color:inherit;
    text-decoration:none;
}

img {
    max-width:100%;
    vertical-align:middle;
}

ul,
ol {
    margin:0;
    padding:0;
    list-style:none;
}

.oryx-wrap,
.wrap {
    width:var(--oryx-width);
    max-width:calc(100% - 40px);
    margin:0 auto;
    position:relative;
}


/* ========================================
   HEADER
======================================== */

#oryx-header {
    position:relative;
    z-index:1000;
    width:100%;
    height:101px;
    background:#fff;
    border-top:3px solid #333;
    border-bottom:2px solid var(--oryx-orange);
}

.oryx-head-inner {
    width:1140px;
    max-width:calc(100% - 40px);
    height:96px;
    margin:0 auto;
    position:relative;
    display:flex;
    align-items:center;
}

.oryx-logo {
    position:absolute;
    z-index:10;
    left:50%;
    top:50%;
    margin:0;
    transform:translate(-50%,-50%);
}

.oryx-logo a {
    display:block;
}

.oryx-logo img {
    width:auto;
    max-width:82px;
    max-height:76px;
}


/* 메인 메뉴 */

.oryx-gnb {
    width:100%;
    height:100%;
}

.oryx-gnb > ul {
    width:100%;
    height:100%;
    display:grid;

    /* 기존 9칸 배치를 그대로 재현 */
    grid-template-columns:
        126px
        126px
        126px
        126px
        126px
        126px
        126px
        126px
        132px;
}

.oryx-gnb > ul > li {
    position:relative;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.oryx-gnb > ul > li > a {
    position:relative;
    height:100%;
    padding:0 6px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#373737;
    font-size:17px;
    font-weight:700;
    letter-spacing:-1px;

    transition:.2s;
}

.oryx-gnb > ul > li > a::after {
    content:"";
    position:absolute;
    left:50%;
    bottom:17px;
    width:0;
    height:2px;
    background:var(--oryx-orange);
    transform:translateX(-50%);
    transition:width .2s;
}

.oryx-gnb > ul > li:hover > a {
    color:var(--oryx-orange-dark);
}

.oryx-gnb > ul > li:hover > a::after {
    width:30px;
}


/* 가운데 로고 자리 */

.gnb-logo-space {
    pointer-events:none;
}


/* 상담전화 */

.oryx-phone {
    position:absolute;
    right:-4px;
    top:12px;

    width:82px;
    height:72px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#ff9e3c,#f47716);
    border-radius:50%;

    color:#fff;

    box-shadow:0 4px 14px rgba(244,124,24,.18);
}

.oryx-phone span {
    color:#fff;
    font-size:11px;
    font-weight:400;
}

.oryx-phone strong {
    display:block;
    margin-top:2px;
    color:#fff;
    font-size:15px;
    line-height:1.1;
}


/* ========================================
   DROPDOWN
======================================== */

.oryx-submenu {
    position:absolute;
    top:96px;
    left:50%;

    visibility:hidden;
    opacity:0;

    min-width:160px;
    padding:13px 10px;

    transform:translate(-50%,8px);

    background:rgba(255,255,255,.98);
    border:1px solid #eee;
    border-top:2px solid var(--oryx-orange);
    border-radius:0 0 8px 8px;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

    transition:.18s ease;
}

.oryx-gnb > ul > li:hover .oryx-submenu {
    visibility:visible;
    opacity:1;
    transform:translate(-50%,0);
}

.oryx-submenu a {
    display:block;

    padding:7px 10px;

    color:#555;
    font-size:12px;
    line-height:1.5;
    text-align:left;

    border-radius:4px;
}

.oryx-submenu a:hover {
    color:#fff;
    background:var(--oryx-orange);
}


/* ========================================
   MAIN VISUAL
======================================== */

.oryx-hero {
    position:relative;

    width:1140px;
    max-width:100%;
    height:459px;

    margin:0 auto;

    overflow:hidden;

    background:#eee;
}

.oryx-hero > img {
    display:block;

    width:100%;
    height:459px;

    object-fit:cover;
}


/*
 기존 main_vis01.jpg 안에 문구가 이미 들어 있으면
 아래 hero-copy는 display:none 으로 사용.
*/
.oryx-hero-copy {
    display:none;
}


/* ========================================
   메인 1단 배너
======================================== */

.oryx-main-services {
    position:relative;
    z-index:20;

    width:1140px;
    max-width:calc(100% - 40px);

    margin:-14px auto 0;

    display:grid;
    grid-template-columns:379px 378px 379px;
    gap:2px;

    background:#fff;

    border-radius:48px 48px 6px 6px;

    overflow:hidden;
}


/* 기본 */

.oryx-service-card {
    position:relative;
    height:205px;

    overflow:hidden;

    background-repeat:no-repeat;
    background-position:left top;
}


/* 달력 */

.calendar-card {
    background:
        url('/image/main/main_banner01_bg.png')
        left top / 379px 205px no-repeat;
}

.calendar-card .card-title {
    display:none;
}

.calendar-frame {
    position:absolute;

    right:18px;
    top:24px;

    width:220px;
    height:180px;

    overflow:hidden;
}

.calendar-frame iframe {
    width:220px;
    height:180px;
}


/* 기업이전 */

.office-card {
    display:block;

    background:
        url('/image/main/main_banner02.png')
        left top / 378px 205px no-repeat;
}

.office-card > div {
    display:none;
}


/* SMS 상담 */

.estimate-card {
    padding:0;

    background:
        url('/image/main/main_banner03_bg.png')
        left top / 379px 205px no-repeat;
}

.estimate-card > span,
.estimate-card > h3 {
    display:none;
}

.quick-form {
    position:absolute;
    left:80px;
    top:50px;

    width:200px;

    display:grid;
    grid-template-columns:1fr;
    gap:3px;
}

.quick-form label {
    position:relative;
    min-height:24px;

    display:flex;
    align-items:center;
}

.quick-form label > span {
    flex:0 0 44px;

    color:#fff;

    font-family:Dotum,'돋움',sans-serif;
    font-size:11px;
    font-weight:bold;
}

.quick-form input,
.quick-form select {
    height:22px;

    border:0;
    border-radius:0;

    padding:2px 5px;

    background:#fff;

    color:#555;

    font-size:11px;
}

.quick-form label > input {
    width:145px;
}

.phone-fields {
    flex:1;

    display:grid;
    grid-template-columns:43px 47px 47px;
    gap:3px;
}

.phone-fields input,
.phone-fields select {
    width:100%;
}

.quick-submit {
    position:absolute;

    right:20px;
    bottom:21px;

    width:70px;
    height:58px;

    border:0;
    border-radius:8px;

    background:#3a3028;

    color:#fff;

    font-size:12px;
    font-weight:bold;

    cursor:pointer;

    box-shadow:0 3px 8px rgba(0,0,0,.15);
}

.quick-submit:hover {
    background:#222;
}


/* ========================================
   메인 2단 배너
======================================== */

.oryx-service-secondary {
    width:1140px;
    max-width:calc(100% - 40px);

    margin:2px auto 0;

    display:grid;
    grid-template-columns:379px 378px 379px;
    gap:2px;
}

.secondary-card {
    display:block;

    height:167px;

    overflow:hidden;

    background-position:left top;
    background-repeat:no-repeat;

    transition:
        filter .2s,
        transform .2s;
}

.secondary-card:hover {
    filter:brightness(1.04);
}

.secondary-card > div {
    display:none;
}

.pack-card {
    background-image:
        url('/image/main/main_banner04.png');
}

.keep-card {
    background-image:
        url('/image/main/main_banner05.png');
}

.customer-card {
    background-image:
        url('/image/main/main_banner06.png');
}


/* ========================================
   부가 서비스
======================================== */

.oryx-extra-service {
    width:100%;

    margin-top:35px;

    padding:10px 0;

    border-top:1px solid #bdbdbd;
    border-bottom:1px solid #bdbdbd;

    background:#fff;
}

.extra-service-grid {
    height:70px;

    display:grid;
    grid-template-columns:
        279px
        289px
        289px
        283px;
}

.extra-service-grid > a {
    position:relative;

    height:70px;

    padding:8px 15px;

    display:flex;
    align-items:center;
    gap:12px;

    border-right:1px solid #ddd;
}

.extra-service-grid > a:last-child {
    border-right:0;
}

.extra-service-grid > a::before {
    content:"";

    width:52px;
    height:52px;

    flex:0 0 52px;

    background-position:center;
    background-repeat:no-repeat;
    background-size:contain;
}

.extra-service-grid > a:nth-child(1)::before {
    background-image:
        url('/image/main/main_banner07.png');
}

.extra-service-grid > a:nth-child(2)::before {
    background-image:
        url('/image/main/main_banner08.png');
}

.extra-service-grid > a:nth-child(3)::before {
    background-image:
        url('/image/main/main_banner09.png');
}

.extra-service-grid > a:nth-child(4)::before {
    background-image:
        url('/image/main/main_banner10.png');
}

.extra-service-grid > a > strong {
    display:none;
}

.extra-service-grid h4 {
    margin:0 0 3px;

    color:#333;

    font-size:14px;
    font-weight:bold;
}

.extra-service-grid p {
    margin:0;

    color:#f26b26;

    font-size:11px;
    line-height:1.4;
}


/* ========================================
   NOTICE / PRAISE / QUICK MENU
======================================== */

.oryx-board-section {
    width:1140px;
    max-width:calc(100% - 40px);

    margin:0 auto;

    padding:32px 0 35px;

    display:grid;
    grid-template-columns:
        350px
        350px
        1fr;

    column-gap:30px;

    min-height:155px;
}

.main-board {
    min-width:0;
}

.board-head {
    position:relative;

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:27px;
}

.board-head > div {
    display:flex;
    align-items:center;
}

.board-head h3 {
    margin:0;

    color:#555;

    font-size:17px;
    font-weight:bold;
}

.board-head span {
    order:2;

    margin-left:10px;

    padding-left:10px;

    border-left:1px solid #aaa;

    color:#c9a77d;

    font-size:12px;
    font-weight:normal;
}

.board-head > a {
    color:#e76832;

    font-size:11px;
}

.board-list {
    margin-top:7px;
}


/* 그누보드 basic latest 보정 */

.board-list .lt {
    width:100%;
    margin:0;
    padding:0;

    border:0;
    box-shadow:none;
}

.board-list .lt_title,
.board-list .lt_more {
    display:none;
}

.board-list ul {
    margin:0;
    padding:0;
}

.board-list li {
    position:relative;

    height:26px;

    padding:0 75px 0 10px !important;

    overflow:hidden;

    white-space:nowrap;
    text-overflow:ellipsis;

    background:
        url('/image/main/icon01.png')
        left center no-repeat;

    border:0 !important;
}

.board-list li a {
    color:#636464;

    font-size:12px;

    line-height:26px;
}

.board-list li .lt_date,
.board-list li .date {
    position:absolute;

    right:0;
    top:0;

    color:#bbb;

    font-size:11px;

    line-height:26px;
}


/* 오른쪽 퀵메뉴 */

.oryx-quick-menu {
    display:flex;

    justify-content:center;
    align-items:flex-start;

    padding-top:18px;
}

.oryx-quick-menu a {
    width:105px;

    text-align:center;
}

.oryx-quick-menu a + a {
    margin-left:15px;
}

.quick-icon {
    width:70px;
    height:70px;

    margin:0 auto 12px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:var(--oryx-orange);

    color:#333;

    font-size:16px;

    transition:
        transform .2s,
        box-shadow .2s;
}

.oryx-quick-menu a:hover .quick-icon {
    transform:translateY(-4px);

    box-shadow:
        0 8px 18px
        rgba(247,148,29,.25);
}

.oryx-quick-menu strong {
    color:#333;
    font-size:14px;
}


/* ========================================
   FOOTER
======================================== */

#oryx-footer {
    clear:both;

    width:100%;

    background:var(--oryx-footer);

    color:#828282;
}

.footer-top {
    min-height:145px;

    padding:22px 0 14px;

    display:grid;
    grid-template-columns:
        170px
        1fr
        180px;

    gap:25px;
}

.footer-logo img {
    width:auto;
    max-width:145px;
}

.footer-logo p {
    display:none;
}

.footer-info strong {
    display:block;

    margin-bottom:8px;

    color:#666;

    font-size:17px;
}

.footer-info p {
    margin:3px 0;

    color:#828282;

    font-size:11px;
    line-height:1.65;
}

.footer-info span {
    color:#bbb;
}

.footer-contact span {
    color:var(--oryx-orange-dark);

    font-size:10px;
}

.footer-contact a {
    display:block;

    margin:2px 0;

    color:#333;

    font-size:25px;
    font-weight:bold;
}

.footer-contact p {
    color:#828282;

    font-size:10px;
    line-height:1.5;
}

.footer-branches {
    padding:8px 0 16px;

    display:flex;
    flex-wrap:wrap;

    gap:4px 18px;

    border-top:1px solid rgba(0,0,0,.05);

    color:#828282;

    font-size:10px;
}

.footer-branches span {
    color:#828282;
}

.footer-branches b {
    color:#f26224;
    font-weight:normal;
}

.footer-bottom {
    padding:10px 0;

    background:rgba(0,0,0,.03);
}

.footer-bottom .oryx-wrap {
    display:flex;
    align-items:center;
    justify-content:space-between;

    color:#999;

    font-size:10px;
}

.footer-bottom p {
    margin:0;
}

.footer-bottom a {
    margin-left:10px;
    color:#777;
}


/* ========================================
   TOP BUTTON
======================================== */

#oryx-top {
    position:fixed;

    right:25px;
    bottom:25px;

    z-index:100;

    width:45px;
    height:45px;

    border:0;
    border-radius:50%;

    background:#333;

    color:#fff;

    font-size:17px;

    cursor:pointer;

    opacity:.85;
}

#oryx-top:hover {
    background:var(--oryx-orange);
}


/* ========================================
   SUB PAGE
======================================== */

.oryx-sub-visual {
    width:100%;
    height:189px;

    background:
        url('/image/sub/sub_top01.png')
        center top no-repeat;

    background-size:auto 189px;
}

.oryx-sub-visual .oryx-wrap {
    height:100%;

    display:flex;
    align-items:flex-end;

    padding-bottom:24px;
}

.oryx-sub-visual h2 {
    margin:0;

    color:#fff;

    font-size:30px;
    font-weight:bold;

    text-shadow:
        0 2px 5px
        rgba(0,0,0,.25);
}

.oryx-sub-content {
    width:1140px;
    max-width:calc(100% - 40px);

    min-height:600px;

    margin:0 auto;

    padding:50px 0 70px;
}


/* ========================================
   TABLET
======================================== */

@media (max-width:1180px) {

    :root {
        --oryx-width:calc(100% - 40px);
    }

    .oryx-head-inner {
        width:calc(100% - 30px);
    }

    .oryx-gnb > ul {
        grid-template-columns:
            repeat(4,1fr)
            105px
            repeat(4,1fr);
    }

    .oryx-gnb > ul > li > a {
        font-size:14px;
    }

    .oryx-main-services,
    .oryx-service-secondary {
        width:calc(100% - 30px);

        grid-template-columns:
            repeat(3,1fr);
    }

    .oryx-service-card,
    .secondary-card {
        width:auto;

        background-size:cover;
    }

    .extra-service-grid {
        grid-template-columns:
            repeat(4,1fr);
    }

    .oryx-board-section {
        width:calc(100% - 40px);

        grid-template-columns:
            1fr
            1fr
            320px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width:768px) {

    #oryx-header {
        height:72px;
    }

    .oryx-head-inner {
        height:67px;
    }

    .oryx-logo {
        left:15px;
        transform:translateY(-50%);
    }

    .oryx-logo img {
        max-width:65px;
        max-height:55px;
    }

    .oryx-gnb {
        display:none;
    }

    .oryx-phone {
        right:10px;
        top:12px;

        width:auto;
        height:42px;

        padding:0 15px;

        border-radius:22px;
    }

    .oryx-phone span {
        display:none;
    }

    .oryx-hero {
        width:100%;
        height:auto;
    }

    .oryx-hero > img {
        width:100%;
        height:auto;
        min-height:300px;

        object-fit:cover;
    }

    .oryx-main-services {
        width:calc(100% - 24px);

        margin:-8px auto 0;

        grid-template-columns:1fr;

        gap:5px;

        border-radius:20px;
    }

    .oryx-service-card {
        width:100%;
        height:205px;

        background-position:center top;
    }

    .oryx-service-secondary {
        width:calc(100% - 24px);

        grid-template-columns:1fr;

        gap:5px;
    }

    .secondary-card {
        width:100%;
        background-size:cover;
        background-position:center;
    }

    .oryx-extra-service {
        margin-top:25px;
    }

    .extra-service-grid {
        height:auto;

        grid-template-columns:
            1fr
            1fr;
    }

    .extra-service-grid > a {
        border-bottom:1px solid #eee;
    }

    .oryx-board-section {
        width:calc(100% - 28px);

        padding:30px 0;

        grid-template-columns:1fr;

        row-gap:30px;
    }

    .oryx-quick-menu {
        justify-content:center;
    }

    .footer-top {
        width:calc(100% - 30px);

        grid-template-columns:1fr;

        gap:15px;
    }

    .footer-contact {
        padding-top:12px;

        border-top:
            1px solid rgba(0,0,0,.07);
    }

    .footer-branches {
        width:calc(100% - 30px);

        display:block;
    }

    .footer-branches span {
        display:block;
        margin-bottom:6px;
    }

}

/* ========================================
   SUB HERO
======================================== */

.oryx-sub-hero {
    width:100%;
    height:190px;

    background:
        #74c3e4
        url('/image/sub/sub_top01.png')
        center top no-repeat;

    background-size:auto 190px;

    border-bottom:1px solid #ddd;
}

.oryx-sub-hero-inner {
    width:1140px;
    max-width:calc(100% - 40px);
    height:100%;

    margin:0 auto;

    position:relative;
}

.oryx-sub-hero-copy {
    display:none;
}


/* ========================================
   SUB LAYOUT
======================================== */

.oryx-sub-layout {
    display:grid;

    grid-template-columns:
        180px
        1fr;

    align-items:stretch;

    min-height:650px;
}


/* ========================================
   SIDEBAR
======================================== */

#oryx-sidebar {
    width:180px;

    border-left:1px solid #ddd;
    border-right:1px solid #ddd;

    background:#fff;
}

.oryx-snb-title {
    height:130px;

    padding:0 18px 20px;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    background:
        linear-gradient(
            135deg,
            #ff922c,
            #f57821
        );
}

.oryx-snb-title span {
    margin-bottom:5px;

    color:rgba(255,255,255,.7);

    font-size:10px;
    font-weight:700;

    letter-spacing:1px;
}

.oryx-snb-title strong {
    color:#fff;

    font-size:23px;
    font-weight:700;

    letter-spacing:-1px;
}


/* menu */

.oryx-snb {
    margin:0;
    padding:0;

    list-style:none;
}

.oryx-snb li {
    border-bottom:1px solid #ddd;

    background:#f5f5f5;
}

.oryx-snb li a {
    position:relative;

    display:flex;

    width:100%;
    min-height:42px;

    padding:0 19px;

    align-items:center;

    color:#555;

    font-size:13px;

    transition:.2s;
}

.oryx-snb li a::after {
    content:"";

    position:absolute;

    right:15px;
    top:50%;

    width:5px;
    height:5px;

    border-top:1px solid #aaa;
    border-right:1px solid #aaa;

    transform:
        translateY(-50%)
        rotate(45deg);
}


/* active */

.oryx-snb li.active {
    background:#333;
}

.oryx-snb li.active a {
    color:#fff;
    font-weight:700;
}

.oryx-snb li.active a::after {
    border-color:#fff;
}


/* hover */

.oryx-snb li:not(.active):hover {
    background:#444;
}

.oryx-snb li:not(.active):hover a {
    color:#fff;
}

.oryx-snb li:not(.active):hover a::after {
    border-color:#fff;
}


/* ========================================
   SUB PAGE
======================================== */

#oryx-sub-page {
    position:relative;

    min-width:0;
    min-height:650px;

    padding:
        50px
        0
        80px
        50px;

    border-right:1px solid #eee;

    background:#fff;
}


/* ========================================
   SUB TITLE
======================================== */

.oryx-sub-title {
    position:relative;

    min-height:90px;

    display:flex;

    align-items:flex-start;
    justify-content:space-between;

    margin-bottom:45px;

    border-bottom:1px solid #eee;
}

.oryx-sub-title > div:first-child {
    padding-bottom:25px;
}

.oryx-sub-eyebrow {
    display:block;

    margin-bottom:5px;

    color:#f47c24;

    font-size:11px;
    font-weight:700;

    letter-spacing:1.5px;
}

.oryx-sub-title h1 {
    margin:0;

    color:#111;

    font-size:38px;
    font-weight:700;

    letter-spacing:-2px;
}


/* breadcrumb */

.oryx-sub-navi {
    display:flex;

    align-items:center;

    gap:8px;

    padding-top:8px;

    color:#999;

    font-size:11px;
}

.oryx-sub-navi a {
    display:flex;
    align-items:center;
}

.oryx-sub-navi img {
    width:13px;
    height:auto;
}

.oryx-sub-navi span {
    color:#999;
}

.oryx-sub-navi span::before {
    content:">";

    margin-right:8px;

    color:#bbb;
}


/* ========================================
   GREETING
======================================== */

.oryx-greeting {
    width:100%;

    padding:
        20px
        20px
        30px;
}


/* head */

.oryx-greeting-head {
    width:760px;
    max-width:100%;

    margin:0 auto 35px;
}

.oryx-greeting-head > span {
    display:block;

    margin-bottom:8px;

    color:#aaa;

    font-size:11px;
    font-weight:700;

    letter-spacing:1px;
}

.oryx-greeting-head h2 {
    margin:0;

    color:#11a4dd;

    font-size:19px;
    font-weight:700;

    line-height:1.45;

    letter-spacing:-1px;
}

.oryx-greeting-head h2 strong {
    color:#f7941d;
}


/* body */

.oryx-greeting-body {
    position:relative;

    width:760px;
    max-width:100%;

    margin:0 auto;

    padding:
        20px
        45px
        30px;

    text-align:center;

    overflow:hidden;
}


/* 흐린 ORYX 워터마크 */

.oryx-greeting-watermark {
    position:absolute;

    left:50%;
    top:50%;

    z-index:0;

    transform:
        translate(-50%,-50%)
        rotate(-9deg);

    color:rgba(247,148,29,.06);

    font-size:125px;
    font-weight:800;

    letter-spacing:-10px;

    white-space:nowrap;

    user-select:none;
}


/* text */

.oryx-greeting-text {
    position:relative;

    z-index:1;
}

.oryx-greeting-text h3 {
    margin:
        0
        0
        16px;

    color:#555;

    font-size:15px;
    font-weight:700;
}

.oryx-greeting-text p {
    margin:
        0
        auto
        19px;

    color:#666;

    font-size:13px;

    line-height:1.85;

    letter-spacing:-.3px;
}

.oryx-greeting-text p strong {
    color:#555;
    font-weight:700;
}

.oryx-greeting-thanks {
    margin-top:28px !important;

    color:#333 !important;

    font-size:15px !important;
    font-weight:700;
}


/* signature */

.oryx-greeting-sign {
    width:230px;

    margin:
        40px
        0
        0
        auto;

    text-align:center;
}

.oryx-greeting-sign span {
    display:block;

    margin-bottom:5px;

    color:#777;

    font-size:12px;
}

.oryx-greeting-sign strong {
    color:#444;

    font-size:16px;
    font-weight:700;
}


/* ========================================
   TABLET
======================================== */

@media (max-width:1180px) {

    .oryx-sub-layout {
        width:calc(100% - 30px);
    }

    #oryx-sub-page {
        padding-left:35px;
        padding-right:10px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width:768px) {

    .oryx-sub-hero {
        height:120px;

        background-size:auto 120px;
    }

    .oryx-sub-layout {
        width:100%;

        display:block;
    }


    /* 모바일에서는 좌측메뉴를 상단 메뉴로 */

    #oryx-sidebar {
        width:100%;

        border-left:0;
        border-right:0;
    }

    .oryx-snb-title {
        height:auto;

        padding:18px 20px;

        display:block;
    }

    .oryx-snb-title span {
        display:none;
    }

    .oryx-snb-title strong {
        font-size:20px;
    }


    .oryx-snb {
        display:flex;

        overflow-x:auto;

        border-bottom:1px solid #ddd;

        background:#f7f7f7;
    }

    .oryx-snb li {
        flex:0 0 auto;

        border-bottom:0;
        border-right:1px solid #ddd;
    }

    .oryx-snb li a {
        min-height:44px;

        padding:0 18px;

        white-space:nowrap;
    }

    .oryx-snb li a::after {
        display:none;
    }


    #oryx-sub-page {
        padding:
            30px
            20px
            50px;

        border:0;
    }


    .oryx-sub-title {
        min-height:auto;

        margin-bottom:25px;

        align-items:flex-start;
    }

    .oryx-sub-title h1 {
        font-size:29px;
    }

    .oryx-sub-navi {
        display:none;
    }


    .oryx-greeting {
        padding:5px 0 20px;
    }

    .oryx-greeting-head h2 {
        font-size:17px;
    }

    .oryx-greeting-body {
        padding:15px 0;
    }

    .oryx-greeting-text p {
        font-size:13px;

        line-height:1.8;
    }

    .oryx-greeting-watermark {
        font-size:75px;
    }

}

/* ========================================
   COMPANY HISTORY
======================================== */

.oryx-history {
    width:100%;
    max-width:760px;
    margin:0 auto;
    padding:5px 0 50px;
}


/* 상단 안내 박스 */

.oryx-history-intro {
    position:relative;

    min-height:92px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:16px 20px 16px 58px;

    border:1px solid #d9d9d9;
    border-radius:7px;

    background:#fff;

    box-shadow:0 4px 10px rgba(0,0,0,.07);
}

.history-intro-text {
    display:flex;
    flex-direction:column;
}

.history-intro-text strong {
    color:#00a7df;

    font-size:16px;
    line-height:1.2;

    letter-spacing:-.6px;
}

.history-intro-text span {
    color:#f7941d;

    font-size:16px;
    font-weight:700;
    line-height:1.2;

    letter-spacing:-.6px;
}


/* 상담전화 */

.history-call {
    min-width:205px;
    height:48px;

    padding:0 15px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:13px;

    border:1px solid #ccc;
    border-radius:5px;

    background:#fff;

    box-shadow:0 2px 5px rgba(0,0,0,.05);
}

.history-call::before {
    content:"☎";

    width:30px;
    height:30px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#f5f5f5;

    font-size:20px;
}

.history-call span {
    color:#444;
    font-size:13px;
    font-weight:700;
}

.history-call strong {
    color:#f7941d;
    font-size:16px;
}


/* 타이틀 */

.oryx-history-title {
    position:relative;

    margin:46px 0 20px;
    padding-left:38px;

    display:flex;
    align-items:center;

    min-height:35px;
}

.oryx-history-title::before {
    content:"";

    position:absolute;
    left:0;
    top:-20px;

    width:125px;
    height:65px;

    border:1px solid #eee;
    border-bottom:0;

    border-radius:70px 70px 0 0;

    opacity:.8;

    z-index:0;
}

.history-title-icon,
.oryx-history-title strong {
    position:relative;
    z-index:1;
}

.history-title-icon {
    width:23px;
    height:23px;

    margin-right:9px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#08a9df;

    color:#fff;

    font-size:9px;
}

.oryx-history-title strong {
    color:#f7941d;

    font-size:15px;
}


/* 연혁 박스 */

.oryx-history-box {
    position:relative;

    padding:22px 24px 60px;

    border:1px solid #ccc;
    border-radius:7px;

    background:#fff;

    box-shadow:0 3px 7px rgba(0,0,0,.06);
}

.oryx-history-columns {
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:45px;
}


/* 각각의 한 줄 */

.history-row {
    display:grid;

    grid-template-columns:58px 1fr;

    min-height:25px;

    align-items:start;
}

.history-row strong {
    color:#555;

    font-size:12px;
    font-weight:700;

    line-height:1.55;
}

.history-row span {
    color:#555;

    font-size:12px;

    line-height:1.55;

    letter-spacing:-.3px;
}


/* 하단 ORYX */

.history-mark {
    position:absolute;

    right:9px;
    bottom:6px;

    color:#f7941d;

    font-size:10px;
    font-weight:700;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width:900px) {

    .oryx-history {
        max-width:100%;
    }

    .oryx-history-intro {
        padding-left:25px;
    }

}


@media (max-width:768px) {

    .oryx-history {
        padding-top:0;
    }

    .oryx-history-intro {
        display:block;

        padding:20px;
    }

    .history-call {
        width:100%;
        min-width:0;

        margin-top:18px;
    }

    .oryx-history-title {
        margin-top:35px;
    }

    .oryx-history-columns {
        grid-template-columns:1fr;

        gap:0;
    }

    .history-row {
        grid-template-columns:58px 1fr;

        padding:3px 0;

        border-bottom:1px solid #f2f2f2;
    }

    .history-row strong,
    .history-row span {
        font-size:12px;
    }

}

/* ========================================
   ORGANIZATION CHART
======================================== */

.oryx-org {
    width:100%;
    padding:20px 0 70px;
}

.oryx-org-chart {
    position:relative;

    width:100%;
    max-width:820px;

    margin:0 auto;

    padding-top:10px;
}


/* 대표이사 */

.oryx-org-ceo {
    position:relative;
    z-index:3;

    width:100px;
    height:32px;

    margin:0 auto;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#13b5e6;

    color:#fff;

    font-size:14px;
    font-weight:700;

    box-shadow:0 2px 5px rgba(0,0,0,.06);
}


/* 대표이사에서 아래로 내려가는 선 */

.oryx-org-line-main {
    position:relative;

    width:1px;
    height:25px;

    margin:0 auto;

    background:#16b5e5;
}


/* 부서 전체 */

.oryx-org-departments {
    position:relative;

    display:grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap:12px;

    padding-top:18px;
}


/* 가로 연결선 */

.oryx-org-departments::before {
    content:"";

    position:absolute;

    left:7%;
    right:7%;
    top:0;

    height:1px;

    background:#16b5e5;
}


/* 각 부서 */

.oryx-org-dept {
    position:relative;

    min-width:0;

    text-align:left;
}


/* 각 부서로 내려오는 세로선 */

.oryx-org-dept::before {
    content:"";

    position:absolute;

    top:-18px;
    left:50%;

    width:1px;
    height:18px;

    background:#16b5e5;

    transform:translateX(-50%);
}


/* 부서 제목 */

.oryx-org-dept-title {
    min-height:28px;

    padding:4px 5px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid #16b5e5;

    background:#fff;

    color:#10a9db;

    font-size:11px;
    font-weight:700;

    line-height:1.2;

    text-align:center;

    white-space:nowrap;
}


/* 하위 부서 */

.oryx-org-dept ul {
    margin:8px 0 0;
    padding:0;

    list-style:none;
}

.oryx-org-dept li {
    position:relative;

    margin:0 0 5px;

    padding-left:10px;

    color:#666;

    font-size:11px;

    line-height:1.45;

    letter-spacing:-.4px;
}

.oryx-org-dept li::before {
    content:"";

    position:absolute;

    left:1px;
    top:7px;

    width:4px;
    height:4px;

    border-radius:50%;

    background:#1bb6e4;
}


/* ========================================
   TABLET
======================================== */

@media (max-width:1000px) {

    .oryx-org-chart {
        overflow-x:auto;

        padding-bottom:15px;
    }

    .oryx-org-departments {
        min-width:780px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width:768px) {

    .oryx-org {
        padding-top:5px;
    }

    .oryx-org-chart {
        overflow:visible;
    }

    .oryx-org-line-main {
        height:20px;
    }

    .oryx-org-departments {
        min-width:0;

        display:grid;

        grid-template-columns:
            1fr
            1fr;

        gap:14px;

        padding-top:0;
    }

    .oryx-org-departments::before,
    .oryx-org-dept::before {
        display:none;
    }

    .oryx-org-dept {
        padding:12px;

        border:1px solid #e5e5e5;
        border-radius:7px;

        background:#fafafa;
    }

    .oryx-org-dept-title {
        min-height:34px;

        background:#13b5e6;

        color:#fff;

        border:0;

        border-radius:4px;

        white-space:normal;
    }

    .oryx-org-dept ul {
        margin-top:10px;
    }

    .oryx-org-dept li {
        font-size:12px;
    }

}


@media (max-width:480px) {

    .oryx-org-departments {
        grid-template-columns:1fr;
    }

}

/* ========================================
   BRANCH
======================================== */

.oryx-branch {
    width:100%;
    max-width:820px;
    margin:0 auto;
    padding:10px 0 60px;
}

.oryx-branch-head {
    margin-bottom:25px;
}

.oryx-branch-head > span {
    display:block;
    margin-bottom:7px;

    color:#f47a20;

    font-size:10px;
    font-weight:700;

    letter-spacing:1.5px;
}

.oryx-branch-head h2 {
    margin:0 0 8px;

    color:#222;

    font-size:21px;
    font-weight:700;

    letter-spacing:-1px;
}

.oryx-branch-head p {
    margin:0;

    color:#888;

    font-size:12px;
}


/* TABLE WRAP */

.oryx-branch-table-wrap {
    width:100%;

    overflow:hidden;

    border:1px solid #ddd;
    border-radius:8px;

    background:#fff;

    box-shadow:
        0 4px 12px
        rgba(0,0,0,.04);
}


/* TABLE */

.oryx-branch-table {
    width:100%;

    border-collapse:collapse;
    border-spacing:0;

    table-layout:fixed;
}


/* THEAD */

.oryx-branch-table thead th {
    height:48px;

    padding:8px;

    border-right:1px solid #ddd;
    border-bottom:1px solid #ddd;

    background:#f47d27;

    color:#fff;

    font-size:12px;
    font-weight:700;

    text-align:center;
}

.oryx-branch-table thead th:last-child {
    border-right:0;
}


/* COLUMN WIDTH */

.oryx-branch-table thead th:nth-child(1) {
    width:120px;
}

.oryx-branch-table thead th:nth-child(2) {
    width:150px;
}

.oryx-branch-table thead th:nth-child(3) {
    width:100px;
}

.oryx-branch-table thead th:nth-child(4) {
    width:150px;
}

.oryx-branch-table thead th:nth-child(5) {
    width:auto;
}


/* BODY */

.oryx-branch-table tbody th,
.oryx-branch-table tbody td {
    height:105px;

    padding:10px;

    border-right:1px solid #e1e1e1;
    border-bottom:1px solid #e1e1e1;

    color:#555;

    font-size:12px;

    text-align:center;

    vertical-align:middle;

    background:#fff;
}

.oryx-branch-table tbody tr:last-child th,
.oryx-branch-table tbody tr:last-child td {
    border-bottom:0;
}

.oryx-branch-table tbody td:last-child {
    border-right:0;
}


/* 지점명 */

.oryx-branch-table tbody th {
    background:#f7f7f7;

    color:#444;

    font-weight:700;
}


/* PHOTO */

.branch-photo {
    padding:7px !important;
}

.branch-photo img {
    display:block;

    width:120px;
    max-width:100%;
    height:150px;

    margin:0 auto;

    object-fit:cover;

    border-radius:4px;

    background:#eee;
}


/* PHONE */

.branch-phone a {
    color:#444;

    font-weight:700;

    white-space:nowrap;
}

.branch-phone a:hover {
    color:#f47a20;
}


/* HOMEPAGE */

.branch-homepage {
    color:#aaa !important;
}


/* ROW HOVER */

.oryx-branch-table tbody tr {
    transition:background .15s;
}

.oryx-branch-table tbody tr:hover td {
    background:#fffaf6;
}

.oryx-branch-table tbody tr:hover th {
    background:#fff0e5;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width:768px) {

    .oryx-branch {
        max-width:100%;
        padding-top:0;
    }

    .oryx-branch-head h2 {
        font-size:18px;
    }

    .oryx-branch-table-wrap {
        overflow-x:auto;

        border-radius:5px;
    }

    .oryx-branch-table {
        min-width:680px;
    }

}

/* ========================================
   PERFORMANCE
======================================== */

.oryx-performance {
    width:100%;
    max-width:800px;
    margin:0 auto;
    padding:5px 0 60px;
}

.oryx-performance-box {
    position:relative;

    padding:28px 28px 55px;

    border:1px solid #ccc;
    border-radius:7px;

    background:#fff;

    box-shadow:
        0 3px 8px rgba(0,0,0,.06);
}

.oryx-performance-columns {
    display:grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:35px;
}

.performance-list {
    margin:0;
    padding:0;
    list-style:none;
}

.performance-list li {
    position:relative;

    margin:0;
    padding:3px 0 3px 11px;

    color:#555;

    font-size:11px;
    line-height:1.55;

    letter-spacing:-.3px;
}

.performance-list li::before {
    content:"";

    position:absolute;
    left:0;
    top:10px;

    width:3px;
    height:3px;

    border-radius:50%;

    background:#18b3e2;
}


/* 줄 hover */

.performance-list li:hover {
    color:#f47a20;
}


/* ========================================
   TABLET
======================================== */

@media (max-width:950px) {

    .oryx-performance {
        max-width:100%;
    }

    .oryx-performance-columns {
        gap:20px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width:768px) {

    .oryx-performance {
        padding-top:0;
    }

    .oryx-performance-box {
        padding:
            20px
            18px
            40px;
    }

    .oryx-performance-columns {
        grid-template-columns:1fr;

        gap:0;
    }

    .performance-list li {
        padding:
            7px
            5px
            7px
            13px;

        border-bottom:1px solid #f0f0f0;

        font-size:12px;
    }

    .performance-list li::before {
        top:14px;
    }

}/* ========================================
   LOCATION / MAP
======================================== */

.oryx-location {
    width:100%;
    max-width:800px;
    margin:0 auto;
    padding:5px 0 70px;
}

.oryx-location-section {
    margin-bottom:60px;
}

.oryx-location-heading {
    display:flex;
    align-items:flex-end;
    justify-content:space-between;

    margin-bottom:18px;
}

.oryx-location-heading > div > span {
    display:block;

    margin-bottom:5px;

    color:#f47a20;

    font-size:10px;
    font-weight:700;
    letter-spacing:1.5px;
}

.oryx-location-heading h2 {
    margin:0;

    color:#222;

    font-size:21px;
    font-weight:700;

    letter-spacing:-1px;
}


/* 전화 */

.location-call {
    display:flex;
    align-items:center;
    gap:10px;

    min-height:42px;

    padding:0 15px;

    border:1px solid #ddd;
    border-radius:5px;

    background:#fff;

    box-shadow:0 2px 6px rgba(0,0,0,.04);
}

.location-call span {
    color:#666;
    font-size:11px;
}

.location-call strong {
    color:#f47a20;
    font-size:14px;
}


/* 지도 박스 */

.oryx-map-box {
    width:100%;

    padding:10px;

    border:1px solid #ddd;
    border-radius:8px;

    background:#fff;

    box-shadow:
        0 4px 12px rgba(0,0,0,.05);

    overflow:hidden;
}

.oryx-map-box .root_daum_roughmap {
    width:100% !important;
    margin:0 !important;
}

.oryx-map-box .wrap_map {
    width:100% !important;
}


/* 주소정보 */

.oryx-location-info {
    margin-top:15px;

    border-top:2px solid #333;
    border-bottom:1px solid #ddd;
}

.location-info-row {
    display:grid;
    grid-template-columns:110px 1fr;

    min-height:45px;

    border-bottom:1px solid #eee;
}

.location-info-row:last-child {
    border-bottom:0;
}

.location-info-row strong {
    display:flex;
    align-items:center;

    padding:0 15px;

    background:#f7f7f7;

    color:#444;

    font-size:12px;
}

.location-info-row span {
    display:flex;
    align-items:center;

    padding:0 15px;

    color:#666;

    font-size:12px;
}

.location-info-row a {
    color:#444;
    font-weight:700;
}

.location-info-row a:hover {
    color:#f47a20;
}


/* 서울 약도 */

.oryx-seoul-map-image {
    width:100%;

    padding:20px;

    border:1px solid #ddd;
    border-radius:8px;

    background:#fff;

    text-align:center;

    box-shadow:
        0 4px 12px rgba(0,0,0,.05);
}

.oryx-seoul-map-image img {
    display:block;

    width:auto;
    max-width:100%;
    height:auto;

    margin:0 auto;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width:768px) {

    .oryx-location {
        max-width:100%;
        padding-top:0;
    }

    .oryx-location-section {
        margin-bottom:45px;
    }

    .oryx-location-heading {
        align-items:flex-start;
        gap:15px;
    }

    .oryx-location-heading h2 {
        font-size:18px;
    }

    .location-call {
        flex-direction:column;
        justify-content:center;

        gap:0;

        min-width:120px;
        padding:6px 10px;
    }

    .location-info-row {
        grid-template-columns:85px 1fr;
    }

    .oryx-map-box {
        padding:5px;
    }

    .oryx-seoul-map-image {
        padding:10px;
    }

}

/* ========================================
   PACKAGING
======================================== */

.oryx-packaging {
    width:100%;
    max-width:800px;

    margin:0 auto;

    padding:5px 0 70px;
}


/* INTRO */

.oryx-packaging-intro {
    margin-bottom:22px;

    padding-left:25px;
}

.oryx-packaging-intro > span {
    display:block;

    margin-bottom:6px;

    color:#aaa;

    font-size:10px;
    font-weight:700;

    letter-spacing:1.5px;
}

.oryx-packaging-intro h2 {
    margin:0;

    color:#00a6df;

    font-size:18px;
    font-weight:700;

    line-height:1.25;

    letter-spacing:-1px;
}

.oryx-packaging-intro > strong {
    display:block;

    color:#f7941d;

    font-size:18px;
    line-height:1.25;

    letter-spacing:-1px;
}


/* ========================================
   FEATURE
======================================== */

.oryx-pack-feature {
    margin-bottom:28px;
}


/* 주황색 제목 */

.oryx-pack-feature > h3 {
    height:31px;

    margin:0;

    padding:0 12px;

    display:flex;
    align-items:center;

    background:
        linear-gradient(
            90deg,
            #f79400,
            #ff9e00
        );

    color:#fff;

    font-size:13px;
    font-weight:700;

    letter-spacing:-.4px;
}


/* 내용 */

.pack-feature-content {
    display:grid;

    grid-template-columns:
        minmax(0,1fr)
        250px;

    gap:20px;

    padding:
        15px
        10px
        10px;
}


.pack-feature-content.single {
    display:block;
}


/* TEXT */

.pack-feature-text p {
    margin:
        0
        0
        11px;

    color:#426d88;

    font-size:13px;

    line-height:1.55;

    letter-spacing:-.4px;
}

.pack-feature-text p:last-child {
    margin-bottom:0;
}


/* ========================================
   SIDE NOTE
======================================== */

.pack-feature-note {
    position:relative;

    margin-top:-4px;

    padding:
        15px
        14px;

    border-top:1px solid #ccc;

    background:#fff;
}


.pack-feature-note::before {
    content:"";

    position:absolute;

    left:-1px;
    top:0;
    bottom:0;

    width:1px;

    background:#ddd;
}


.pack-feature-note > strong {
    display:block;

    margin-bottom:8px;

    color:#444;

    font-size:12px;
    font-weight:700;
}


.pack-feature-note > strong::before {
    content:"■";

    margin-right:5px;

    color:#333;

    font-size:6px;

    vertical-align:2px;
}


.pack-feature-note p {
    margin:0 0 12px;

    color:#555;

    font-size:11px;

    line-height:1.55;

    letter-spacing:-.3px;
}


/* PHOTO */

.pack-feature-photo {
    overflow:hidden;

    width:100%;

    border-radius:5px;

    background:#eee;
}


.pack-feature-photo img {
    display:block;

    width:100%;
    height:145px;

    object-fit:cover;

    object-position:center;
}


/* ========================================
   각 항목 구분
======================================== */

.oryx-pack-feature + .oryx-pack-feature {
    padding-top:3px;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width:768px) {

    .oryx-packaging {
        max-width:100%;

        padding-top:0;
    }


    .oryx-packaging-intro {
        padding-left:0;
    }


    .oryx-packaging-intro h2,
    .oryx-packaging-intro > strong {
        font-size:16px;
    }


    .pack-feature-content {
        grid-template-columns:1fr;

        gap:15px;

        padding:
            15px
            5px
            10px;
    }


    .pack-feature-text p {
        font-size:12px;

        line-height:1.7;
    }


    .pack-feature-note {
        padding:15px;

        border:1px solid #eee;

        background:#fafafa;
    }


    .pack-feature-note::before {
        display:none;
    }


    .pack-feature-photo img {
        height:auto;
    }

}

/* ========================================
   STORAGE MOVE
======================================== */

.oryx-storage {
    width:100%;
    max-width:800px;
    margin:0 auto;
    padding:5px 0 70px;
}

.oryx-storage-intro {
    margin-bottom:35px;
    padding-left:22px;
}

.oryx-storage-intro h2 {
    margin:0;

    color:#00a8df;

    font-size:18px;
    font-weight:700;

    line-height:1.2;

    letter-spacing:-1px;
}

.oryx-storage-intro > strong {
    display:block;

    color:#f7941d;

    font-size:18px;
    line-height:1.25;

    letter-spacing:-1px;
}


/* 2열 */

.oryx-storage-layout {
    display:grid;

    grid-template-columns:
        minmax(0,1fr)
        220px;

    gap:0;

    align-items:start;
}


/* LEFT */

.oryx-storage-main {
    min-width:0;
}

.oryx-storage-block {
    margin-bottom:20px;
}

.oryx-storage-block h3 {
    height:29px;

    margin:0 0 12px;

    padding:0 10px;

    display:flex;
    align-items:center;

    background:
        linear-gradient(
            90deg,
            #f69200,
            #ffa000
        );

    color:#fff;

    font-size:13px;
    font-weight:700;
}

.oryx-storage-text {
    padding:0 12px;
}

.oryx-storage-text p {
    margin:0 0 6px;

    color:#555;

    font-size:12px;

    line-height:1.55;

    letter-spacing:-.3px;
}


/* RIGHT BOX */

.oryx-storage-side {
    margin-left:-1px;
    margin-top:-16px;

    padding:17px 12px 12px;

    border:1px solid #ccc;

    background:#fff;

    box-shadow:
        0 3px 8px rgba(0,0,0,.06);
}

.oryx-storage-side-title {
    margin-bottom:10px;

    color:#333;

    font-size:13px;
    font-weight:700;
}

.oryx-storage-side p {
    margin:0 0 10px;

    color:#555;

    font-size:11px;

    line-height:1.45;

    letter-spacing:-.3px;
}

.oryx-storage-photo {
    margin-top:10px;

    overflow:hidden;

    border-radius:3px;

    background:#eee;
}

.oryx-storage-photo img {
    display:block;

    width:100%;
    height:auto;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width:768px) {

    .oryx-storage {
        max-width:100%;
        padding-top:0;
    }

    .oryx-storage-intro {
        padding-left:0;
        margin-bottom:25px;
    }

    .oryx-storage-intro h2,
    .oryx-storage-intro > strong {
        font-size:16px;
    }

    .oryx-storage-layout {
        grid-template-columns:1fr;

        gap:20px;
    }

    .oryx-storage-side {
        margin:0;

        padding:15px;

        border-radius:6px;

        background:#fafafa;
    }

    .oryx-storage-text p {
        font-size:12px;

        line-height:1.7;
    }

}

/* ========================================
   MOVE-IN CLEANING
======================================== */

.oryx-cleaning {
    width:100%;
    max-width:800px;

    margin:0 auto;

    padding:5px 0 70px;
}


/* ========================================
   INTRO
======================================== */

.oryx-cleaning-intro {
    margin-bottom:36px;

    padding-left:20px;
}

.oryx-cleaning-intro h2 {
    margin:0;

    color:#00a7df;

    font-size:18px;
    font-weight:700;

    line-height:1.2;

    letter-spacing:-1px;
}

.oryx-cleaning-intro > strong {
    display:block;

    color:#f7941d;

    font-size:18px;
    line-height:1.25;

    letter-spacing:-1px;
}


/* ========================================
   DESCRIPTION
======================================== */

.oryx-cleaning-description {
    margin-bottom:14px;

    padding:0 8px;
}

.oryx-cleaning-description p {
    margin:0;

    color:#555;

    font-size:12px;

    line-height:1.7;

    letter-spacing:-.3px;
}


/* ========================================
   STEP BOX
======================================== */

.oryx-cleaning-step-box {
    overflow:hidden;

    margin-bottom:30px;

    border:1px solid #d7d7d7;

    background:#fff;

    box-shadow:
        0 3px 7px
        rgba(0,0,0,.05);
}

.cleaning-step-title {
    padding:
        12px
        15px
        0;

    color:#009fda;

    font-size:13px;
    font-weight:700;
}

.cleaning-step-content {
    display:grid;

    grid-template-columns:
        130px
        1fr;

    gap:22px;

    align-items:center;

    padding:
        5px
        20px
        17px;
}


/* 사진 */

.cleaning-step-thumb {
    position:relative;

    width:120px;
    height:75px;

    overflow:hidden;

    background:#eee;
}

.cleaning-step-thumb img {
    /*
       02_5in.jpg 전체 이미지 중
       기존 작은 청소사진 부분을 보여주는 임시 처리
    */
    width:540px;
    max-width:none;
    height:auto;

    transform:translate(-14px, -215px);
}


/* 단계 */

.cleaning-step-list {
    margin:0;
    padding:0;

    list-style:none;
}

.cleaning-step-list li {
    display:grid;

    grid-template-columns:
        53px
        1fr;

    margin:0;

    color:#555;

    font-size:12px;

    line-height:1.55;
}

.cleaning-step-list li strong {
    color:#555;
    font-weight:400;
}

.cleaning-step-list li span {
    color:#555;
}


/* ========================================
   공간별 서비스
======================================== */

.oryx-cleaning-section-title {
    margin-bottom:16px;

    color:#009fda;

    font-size:13px;
    font-weight:700;
}

.oryx-cleaning-areas {
    display:flex;

    flex-wrap:wrap;

    align-items:center;

    gap:0;

    min-height:50px;

    margin-bottom:35px;

    padding:10px 15px;

    border:1px solid #ddd;

    background:#fff;

    box-shadow:
        0 3px 7px
        rgba(0,0,0,.05);
}

.oryx-cleaning-areas span {
    position:relative;

    padding-right:19px;
    margin-right:11px;

    color:#555;

    font-size:12px;
    font-weight:700;

    line-height:1.7;

    white-space:nowrap;
}

.oryx-cleaning-areas span::after {
    content:">";

    position:absolute;

    right:3px;

    color:#25a9df;

    font-size:10px;
}

.oryx-cleaning-areas span:last-child {
    padding-right:0;
    margin-right:0;
}

.oryx-cleaning-areas span:last-child::after {
    display:none;
}


/* ========================================
   기존 입주청소 콘텐츠 이미지
======================================== */

.oryx-cleaning-legacy {
    position:relative;

    margin-top:25px;

    padding:
        25px
        20px
        30px;

    border-top:1px solid #eee;

    text-align:center;
}

.cleaning-original-label {
    display:none;
}

.oryx-cleaning-legacy > img {
    display:block;

    width:540px;
    max-width:100%;
    height:auto;

    margin:0 auto;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width:768px) {

    .oryx-cleaning {
        max-width:100%;

        padding-top:0;
    }

    .oryx-cleaning-intro {
        padding-left:0;

        margin-bottom:25px;
    }

    .oryx-cleaning-intro h2,
    .oryx-cleaning-intro > strong {
        font-size:16px;
    }

    .oryx-cleaning-description {
        padding:0;
    }

    .oryx-cleaning-description p {
        font-size:12px;

        line-height:1.7;
    }


    .cleaning-step-content {
        grid-template-columns:1fr;

        gap:15px;

        padding:15px;
    }

    .cleaning-step-thumb {
        display:none;
    }

    .cleaning-step-list li {
        grid-template-columns:55px 1fr;

        padding:4px 0;

        border-bottom:1px solid #f2f2f2;

        font-size:12px;
    }

    .oryx-cleaning-areas {
        padding:12px;
    }

    .oryx-cleaning-areas span {
        font-size:11px;
    }

    .oryx-cleaning-legacy {
        padding:
            20px
            0;
    }

}

/* ========================================
   HOME CARE
======================================== */

.oryx-homecare {
    width:100%;
    max-width:820px;
    margin:0 auto;
    padding:5px 0 70px;
}


/* INTRO */

.oryx-homecare-intro {
    margin-bottom:28px;
    padding-left:20px;
}

.oryx-homecare-intro h2 {
    margin:0;

    color:#00a7df;

    font-size:18px;
    font-weight:700;
    line-height:1.2;

    letter-spacing:-1px;
}

.oryx-homecare-intro > strong {
    display:block;

    color:#f7941d;

    font-size:18px;
    line-height:1.25;

    letter-spacing:-1px;
}


/* 공통 주황 타이틀 */

.homecare-orange-title {
    min-height:31px;

    padding:0 12px;

    display:flex;
    align-items:center;

    background:
        linear-gradient(
            90deg,
            #f79400,
            #ff9d00
        );

    color:#fff;

    font-size:13px;
    font-weight:700;
}


/* ========================================
   ALLERGY
======================================== */

.homecare-allergy-box {
    margin-top:15px;

    display:grid;

    grid-template-columns:1fr 1fr;

    border:1px solid #ddd;
    border-radius:7px;

    overflow:hidden;

    background:#fff;
}

.allergy-item {
    min-height:170px;

    padding:20px;

    position:relative;
}

.allergy-item + .allergy-item {
    border-left:1px solid #eee;
}

.allergy-item h3 {
    margin:0 0 15px;

    color:#444;

    font-size:14px;
}

.allergy-item h3::before {
    content:"✱";

    margin-right:7px;

    color:#f7941d;
}


/* 간단 원형 그래프 */

.allergy-chart {
    position:relative;

    float:left;

    width:90px;
    height:90px;

    margin-right:15px;

    border-radius:50%;

    background:
        conic-gradient(
            #ff9300 0 75%,
            #ffe300 75% 100%
        );
}

.allergy-chart.half {
    background:
        conic-gradient(
            #ff9300 0 50%,
            #ffe300 50% 100%
        );
}

.chart-value {
    position:absolute;

    color:#fff;

    font-size:12px;
    font-weight:700;
}

.chart-value.large {
    left:17px;
    bottom:21px;
}

.chart-value.small {
    right:13px;
    top:23px;
}

.allergy-item p {
    margin:12px 0 0;

    color:#555;

    font-size:11px;

    line-height:1.5;
}

.allergy-item p strong {
    color:#f15a24;
}


/* ========================================
   TEXT
======================================== */

.homecare-text {
    padding:25px 5px 10px;
}

.homecare-text p {
    margin:0 0 17px;

    color:#555;

    font-size:12px;

    line-height:1.7;

    letter-spacing:-.3px;
}


/* ========================================
   INFO
======================================== */

.homecare-info {
    margin-top:5px;
}

.homecare-info > h3 {
    margin:0 0 10px;

    color:#333;

    font-size:14px;
}

.homecare-info-block {
    margin-bottom:18px;
}

.homecare-info-block h4 {
    margin:0 0 5px;

    color:#00a4df;

    font-size:13px;
}

.homecare-info-block p {
    margin:0;

    color:#666;

    font-size:12px;

    line-height:1.7;
}

.homecare-emphasis {
    margin-top:7px !important;

    color:#24469d !important;

    font-weight:700;
}


/* ========================================
   EQUIPMENT
======================================== */

.homecare-equipment {
    margin-top:30px;
}

.equipment-grid {
    padding:15px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;

    border:1px solid #ddd;

    background:#fff;
}

.equipment-card {
    display:grid;

    grid-template-columns:120px 1fr;

    gap:12px;

    align-items:center;

    min-height:120px;
}

.equipment-card h3 {
    margin:0 0 5px;

    color:#333;

    font-size:12px;
}

.equipment-card p {
    margin:0;

    color:#555;

    font-size:11px;

    line-height:1.5;
}

.equipment-wide {
    grid-column:1 / -1;

    grid-template-columns:240px 1fr;
}


/* 원본 이미지 crop */

.equipment-image {
    background-image:url('/image/kor_img/02_6in.jpg');
    background-repeat:no-repeat;

    background-size:650px auto;

    background-color:#fff;
}

.equipment-airpump {
    width:120px;
    height:100px;

    background-position:
        -15px
        -1110px;
}

.equipment-zipbrush {
    width:120px;
    height:100px;

    background-position:
        -320px
        -1110px;
}

.equipment-deep {
    width:120px;
    height:105px;

    background-position:
        -20px
        -1235px;
}

.equipment-kirby {
    width:230px;
    height:120px;

    background-position:
        -15px
        -1350px;
}


/* ========================================
   WORK PHOTO
======================================== */

.homecare-photo-section {
    margin-top:30px;
}

.homecare-photo-box {
    padding:20px;

    border:1px solid #ddd;

    background:#fff;
}

.homecare-photo-grid {
    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:18px;
}

.homecare-photo-item {
    width:100%;
    aspect-ratio:1.4 / 1;

    border:2px solid #f79400;
    border-radius:7px;

    background-image:
        url('/image/kor_img/02_6in.jpg');

    background-repeat:no-repeat;

    background-size:650px auto;

    overflow:hidden;
}

.photo01 {
    background-position:-20px -1565px;
}

.photo02 {
    background-position:-216px -1565px;
}

.photo03 {
    background-position:-410px -1565px;
}

.photo04 {
    background-position:-20px -1690px;
}

.photo05 {
    background-position:-216px -1690px;
}

.photo06 {
    background-position:-410px -1690px;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width:768px) {

    .oryx-homecare {
        max-width:100%;
        padding-top:0;
    }

    .oryx-homecare-intro {
        padding-left:0;
    }

    .oryx-homecare-intro h2,
    .oryx-homecare-intro > strong {
        font-size:16px;
    }

    .homecare-allergy-box {
        grid-template-columns:1fr;
    }

    .allergy-item + .allergy-item {
        border-left:0;
        border-top:1px solid #eee;
    }

    .equipment-grid {
        grid-template-columns:1fr;
    }

    .equipment-wide {
        grid-column:auto;

        grid-template-columns:120px 1fr;
    }

    .equipment-kirby {
        width:120px;
    }

    .homecare-photo-grid {
        grid-template-columns:1fr 1fr;
    }

}


@media (max-width:480px) {

    .equipment-card,
    .equipment-wide {
        grid-template-columns:1fr;
    }

    .equipment-image {
        margin:0 auto;
    }

    .homecare-photo-grid {
        grid-template-columns:1fr;
    }

}

/* ========================================
   가정이사 공통 콘텐츠
   oryx.css 마지막에 추가
======================================== */
.oryx-fireside-content {
    width:100%;
    max-width:760px;
    margin:0 auto;
    padding:5px 0 70px;
    text-align:center;
}

.oryx-fireside-content img {
    display:block;
    width:auto;
    max-width:100%;
    height:auto;
    margin:0 auto;
}

@media (max-width:768px) {
    .oryx-fireside-content {
        max-width:100%;
        padding:0 0 45px;
    }
}

/* ========================================
   HOME MOVING INFORMATION
======================================== */

.oryx-moving-info {
    width:100%;
    max-width:820px;
    margin:0 auto;
    padding:5px 0 70px;
}

.oryx-moving-info-tabs {
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:5px;
    margin-bottom:28px;
}

.oryx-moving-info-tabs button {
    min-height:48px;
    padding:8px 6px;
    border:1px solid #ddd;
    border-radius:6px;
    background:#f7f7f7;
    color:#555;
    font-family:inherit;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.oryx-moving-info-tabs button:hover,
.oryx-moving-info-tabs button.is-active {
    border-color:#f7941d;
    background:#f7941d;
    color:#fff;
}

.oryx-moving-panel {
    display:none;
}

.oryx-moving-panel.is-active {
    display:block;
}

.oryx-info-intro {
    margin-bottom:22px;
    padding:20px 22px;
    border:1px solid #e1e1e1;
    border-radius:8px;
    background:#fffaf5;
}

.oryx-info-intro strong {
    display:block;
    margin-bottom:6px;
    color:#00a5dc;
    font-size:17px;
}

.oryx-info-intro p {
    margin:0;
    color:#666;
    font-size:12px;
    line-height:1.7;
}

.oryx-info-intro .oryx-info-alert {
    margin-top:8px;
    color:#e76718;
    font-weight:700;
}

.oryx-info-section {
    margin-bottom:25px;
}

.oryx-info-section > h3 {
    display:inline-flex;
    align-items:center;
    min-height:31px;
    margin:0 0 9px;
    padding:0 13px;
    border-radius:4px;
    background:#13afe1;
    color:#fff;
    font-size:13px;
}

.oryx-info-table-wrap {
    width:100%;
    overflow-x:auto;
    border:1px solid #ddd;
    border-radius:7px;
    background:#fff;
}

.oryx-info-table {
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
}

.oryx-info-table th,
.oryx-info-table td {
    padding:10px 12px;
    border-right:1px solid #e5e5e5;
    border-bottom:1px solid #e5e5e5;
    color:#555;
    font-size:12px;
    line-height:1.55;
    vertical-align:middle;
}

.oryx-info-table thead th {
    background:#f4f4f4;
    color:#333;
    text-align:center;
    font-weight:700;
}

.oryx-info-table thead th:first-child {
    width:110px;
}

.oryx-info-table thead th:last-child {
    width:150px;
}

.oryx-info-table tbody th {
    background:#fff7ef;
    color:#e76e16;
    text-align:center;
}

.oryx-info-table tr:last-child > * {
    border-bottom:0;
}

.oryx-info-table tr > *:last-child {
    border-right:0;
}

.oryx-compensation-table thead th:first-child {
    width:190px;
}

.oryx-compensation-table thead th:nth-child(2) {
    width:300px;
}

.oryx-info-note {
    margin-top:18px;
    padding:15px 18px;
    border-left:3px solid #f7941d;
    background:#fafafa;
}

.oryx-info-note strong {
    display:block;
    margin-bottom:5px;
    color:#444;
    font-size:12px;
}

.oryx-info-note p {
    margin:0;
    color:#777;
    font-size:11px;
    line-height:1.65;
}

.oryx-house-check-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.oryx-house-check-grid article {
    padding:17px;
    border:1px solid #ddd;
    border-radius:7px;
    background:#fff;
}

.oryx-house-check-grid h3 {
    margin:0 0 7px;
    color:#00a5dc;
    font-size:13px;
}

.oryx-house-check-grid p {
    margin:0;
    color:#666;
    font-size:12px;
    line-height:1.65;
}

.oryx-contract-check {
    margin-top:22px;
    padding:20px;
    border:1px solid #ddd;
    border-radius:7px;
    background:#fafafa;
}

.oryx-contract-check h3 {
    margin:0 0 12px;
    color:#f07b1f;
    font-size:14px;
}

.oryx-contract-check li {
    position:relative;
    margin:7px 0;
    padding-left:12px;
    color:#555;
    font-size:12px;
    line-height:1.6;
}

.oryx-contract-check li::before {
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:4px;
    height:4px;
    border-radius:50%;
    background:#16afe0;
}

.oryx-moving-legacy-image {
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    background:#fff;
    text-align:center;
}

.oryx-moving-legacy-image img {
    display:block;
    max-width:100%;
    height:auto;
    margin:0 auto;
}

.oryx-price-guide {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.oryx-price-guide article {
    padding:20px;
    border:1px solid #ddd;
    border-radius:8px;
    background:#fff;
}

.oryx-price-guide h3 {
    margin:0 0 8px;
    color:#f47b20;
    font-size:14px;
}

.oryx-price-guide p {
    margin:0;
    color:#666;
    font-size:12px;
    line-height:1.65;
}

.oryx-price-contact {
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:20px;
    padding:16px;
    border-radius:7px;
    background:#333;
}

.oryx-price-contact span {
    margin-right:auto;
    color:#fff;
    font-size:12px;
}

.oryx-price-contact a {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:0 14px;
    border-radius:5px;
    background:#f7941d;
    color:#fff;
    font-size:12px;
    font-weight:700;
}

@media (max-width:768px) {
    .oryx-moving-info {
        max-width:100%;
        padding-top:0;
    }

    .oryx-moving-info-tabs {
        grid-template-columns:1fr 1fr;
    }

    .oryx-info-table {
        min-width:640px;
    }

    .oryx-house-check-grid,
    .oryx-price-guide {
        grid-template-columns:1fr;
    }

    .oryx-price-contact {
        flex-wrap:wrap;
    }

    .oryx-price-contact span {
        width:100%;
        margin:0 0 5px;
    }
}
/* ========================================
   BUSINESS / SPECIAL MOVING
   removal01.php ~ removal06.php
======================================== */

.oryx-bizmove {
    width:100%;
    max-width:820px;
    margin:0 auto;
    padding:5px 0 70px;
}

.oryx-bizmove-intro {
    min-height:90px;
    margin-bottom:34px;
    padding:16px 18px 16px 45px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    border:1px solid #d8d8d8;
    border-radius:8px;
    background:#fff;
    box-shadow:0 4px 10px rgba(0,0,0,.05);
}

.oryx-bizmove-intro > div {
    display:flex;
    flex-direction:column;
}

.oryx-bizmove-intro > div strong {
    color:#00a7df;
    font-size:17px;
    line-height:1.15;
}

.oryx-bizmove-intro > div span {
    color:#f7941d;
    font-size:17px;
    font-weight:700;
    line-height:1.15;
}

.oryx-bizmove-intro > a {
    min-width:205px;
    min-height:50px;
    padding:0 15px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    border:1px solid #ccc;
    border-radius:5px;
    background:#fff;
}

.oryx-bizmove-intro > a::before {
    content:"☎";
    font-size:22px;
}

.oryx-bizmove-intro > a span {
    color:#444;
    font-size:13px;
    font-weight:700;
}

.oryx-bizmove-intro > a strong {
    color:#f7941d;
    font-size:15px;
}

.oryx-bizmove-target {
    display:grid;
    grid-template-columns:300px minmax(0,1fr);
    gap:45px;
    align-items:center;
    margin-bottom:32px;
    padding:0 18px;
}

.bizmove-target-box {
    min-height:175px;
    padding:20px 22px;
    border:1px solid #d5d5d5;
    border-radius:8px;
    background:#fff;
}

.bizmove-target-box h2,
.oryx-bizmove-section h2 {
    margin:0 0 13px;
    color:#f7941d;
    font-size:16px;
    font-weight:700;
}

.bizmove-target-box h2 span,
.oryx-bizmove-section h2 span {
    display:inline-flex;
    width:22px;
    height:22px;
    margin-right:7px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#0eace0;
    color:#fff;
    font-size:9px;
    vertical-align:1px;
}

.bizmove-target-box ul {
    margin:0;
    padding-left:24px;
}

.bizmove-target-box li {
    margin:5px 0;
    color:#555;
    font-size:12px;
    line-height:1.45;
}

.bizmove-visual {
    min-height:190px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.bizmove-visual img {
    display:block;
    max-width:100%;
    max-height:210px;
    object-fit:contain;
}

.oryx-bizmove-section {
    margin:0 18px 28px;
}

.oryx-bizmove-section p {
    margin:0 0 6px 34px;
    color:#555;
    font-size:12px;
    line-height:1.65;
}

.bizmove-detail-list {
    margin:0;
    padding-left:34px;
}

.bizmove-detail-list li {
    position:relative;
    margin:5px 0;
    padding-left:11px;
    color:#555;
    font-size:12px;
    line-height:1.55;
}

.bizmove-detail-list li::before {
    content:"-";
    position:absolute;
    left:0;
}

.bizmove-service-grid {
    margin:0 42px;
    padding:18px 20px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    border:1px solid #d5d5d5;
    border-radius:7px;
    background:#fff;
    box-shadow:0 3px 8px rgba(0,0,0,.04);
}

.bizmove-service-grid ul {
    margin:0;
    padding:0;
    list-style:none;
}

.bizmove-service-grid li {
    margin:5px 0;
    color:#555;
    font-size:11px;
    line-height:1.4;
}

@media (max-width:768px) {
    .oryx-bizmove {
        max-width:100%;
        padding-top:0;
    }

    .oryx-bizmove-intro {
        padding:18px;
        align-items:flex-start;
        flex-direction:column;
    }

    .oryx-bizmove-intro > a {
        width:100%;
    }

    .oryx-bizmove-target {
        grid-template-columns:1fr;
        gap:18px;
        padding:0;
    }

    .bizmove-target-box {
        min-height:0;
    }

    .bizmove-visual {
        min-height:0;
    }

    .oryx-bizmove-section {
        margin-left:0;
        margin-right:0;
    }

    .oryx-bizmove-section p,
    .bizmove-detail-list {
        margin-left:0;
        padding-left:0;
    }

    .bizmove-detail-list li {
        padding-left:12px;
    }

    .bizmove-service-grid {
        margin:0;
        grid-template-columns:1fr;
        gap:8px;
    }
}
/* =========================================================
   MOBILE HAMBURGER MENU
========================================================= */

.oryx-mobile-menu-btn,
.oryx-mobile-menu,
.oryx-mobile-menu-dim {
    display:none;
}

body.oryx-mobile-menu-open {
    overflow:hidden;
}


@media (max-width:768px) {

    /* -----------------------------------------------------
       햄버거
    ----------------------------------------------------- */

    .oryx-mobile-menu-btn {
        position:absolute;
        z-index:30;

        top:50%;
        right:146px;

        width:42px;
        height:42px;

        padding:9px;

        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;

        gap:5px;

        border:0;
        border-radius:50%;

        background:#fff;

        transform:translateY(-50%);

        cursor:pointer;
    }

    .oryx-mobile-menu-btn span {
        display:block;

        width:23px;
        height:2px;

        background:#333;

        border-radius:2px;
    }


    /* -----------------------------------------------------
       DIM
    ----------------------------------------------------- */

    .oryx-mobile-menu-dim {
        position:fixed;

        z-index:9998;

        left:0;
        top:0;

        width:100%;
        height:100%;

        background:rgba(0,0,0,.48);

        opacity:0;
        visibility:hidden;

        display:block;

        transition:
            opacity .25s ease,
            visibility .25s ease;
    }

    .oryx-mobile-menu-dim.is-open {
        opacity:1;
        visibility:visible;
    }


    /* -----------------------------------------------------
       메뉴 본체
    ----------------------------------------------------- */

    .oryx-mobile-menu {
        position:fixed;

        z-index:9999;

        top:0;
        right:-90%;

        width:88%;
        max-width:360px;
        height:100%;

        display:block;

        overflow-y:auto;
        overflow-x:hidden;

        background:#fff;

        box-shadow:
            -7px 0 30px
            rgba(0,0,0,.2);

        transition:
            right .28s ease;
    }

    .oryx-mobile-menu.is-open {
        right:0;
    }


    /* -----------------------------------------------------
       메뉴 헤더
    ----------------------------------------------------- */

    .oryx-mobile-menu-head {
        position:relative;

        min-height:72px;

        padding:8px 55px 8px 15px;

        display:flex;
        align-items:center;

        border-bottom:3px solid #f7941d;

        background:#fff;
    }

    .oryx-mobile-menu-logo {
        display:flex;

        width:52px;
        height:52px;

        margin-right:12px;

        align-items:center;
        justify-content:center;
    }

    .oryx-mobile-menu-logo img {
        display:block;

        max-width:52px;
        max-height:50px;

        width:auto;
        height:auto;
    }

    .oryx-mobile-menu-head strong {
        color:#333;

        font-size:18px;
        font-weight:700;
    }

    .oryx-mobile-menu-close {
        position:absolute;

        right:10px;
        top:50%;

        width:42px;
        height:42px;

        padding:0;

        border:0;

        background:transparent;

        color:#333;

        font-family:Arial,sans-serif;
        font-size:35px;
        font-weight:300;
        line-height:42px;

        transform:translateY(-50%);

        cursor:pointer;
    }


    /* -----------------------------------------------------
       메뉴 UL
    ----------------------------------------------------- */

    .oryx-mobile-menu-nav > ul {
        width:100% !important;
        height:auto !important;

        margin:0 !important;
        padding:0 !important;

        display:block !important;
    }


    .oryx-mobile-menu-nav > ul > li {
        position:relative;

        width:100% !important;
        height:auto !important;

        display:block !important;

        border-bottom:1px solid #e8e8e8;
    }


    .oryx-mobile-menu-nav .gnb-logo-space {
        display:none !important;
    }


    /* 1차 */
    .oryx-mobile-menu-nav > ul > li > a {
        position:relative;

        width:100%;
        height:56px !important;

        padding:
            0
            50px
            0
            20px !important;

        display:flex !important;

        align-items:center;
        justify-content:flex-start !important;

        color:#333 !important;

        font-size:16px !important;
        font-weight:700 !important;

        line-height:1.4 !important;

        text-align:left !important;

        background:#fff;
    }


    /* PC 메뉴 밑줄 제거 */
    .oryx-mobile-menu-nav > ul > li > a::after {
        display:none !important;
    }


    /* + */
    .oryx-mobile-menu-nav
    > ul
    > li.has-mobile-sub
    > a::before {

        content:"+";

        position:absolute;

        right:20px;
        top:50%;

        color:#999;

        font-family:Arial,sans-serif;

        font-size:24px;
        font-weight:300;

        transform:
            translateY(-50%);
    }


    /* - */
    .oryx-mobile-menu-nav
    > ul
    > li.has-mobile-sub.is-open
    > a::before {

        content:"−";

        color:#f47a20;
    }


    /* -----------------------------------------------------
       2차 메뉴
    ----------------------------------------------------- */

    .oryx-mobile-menu-nav .oryx-submenu {
        position:static !important;

        left:auto !important;
        top:auto !important;

        width:100% !important;
        min-width:0 !important;

        margin:0 !important;
        padding:5px 0 !important;

        display:none;

        visibility:visible !important;
        opacity:1 !important;

        transform:none !important;

        border:0 !important;
        border-top:1px solid #eee !important;
        border-radius:0 !important;

        background:#f7f7f7 !important;

        box-shadow:none !important;

        transition:none !important;
    }


    .oryx-mobile-menu-nav .oryx-submenu a {
        position:relative;

        display:block;

        padding:
            11px
            20px
            11px
            35px;

        color:#666 !important;

        font-size:13px;
        line-height:1.5;

        text-align:left;

        background:transparent !important;

        border:0;
    }


    .oryx-mobile-menu-nav .oryx-submenu a::before {
        content:"";

        position:absolute;

        left:22px;
        top:50%;

        width:4px;
        height:4px;

        border-radius:50%;

        background:#f7941d;

        transform:
            translateY(-50%);
    }


    /* -----------------------------------------------------
       하단 상담전화
    ----------------------------------------------------- */

    .oryx-mobile-menu-call {
        margin:25px 20px;

        padding:18px 20px;

        border-radius:12px;

        background:#fff5e9;

        text-align:center;
    }

    .oryx-mobile-menu-call span {
        display:block;

        margin-bottom:3px;

        color:#777;

        font-size:12px;
    }

    .oryx-mobile-menu-call a {
        color:#f47a20;

        font-size:25px;
        font-weight:700;
    }

}

@media (max-width:768px) {

    /* 햄버거 메뉴 → 오른쪽 끝 */
    .oryx-mobile-menu-btn {
        position:absolute;
        z-index:30;

        top:50%;
        right:12px;

        width:42px;
        height:42px;

        padding:9px;

        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:5px;

        border:0;
        border-radius:50%;

        background:#fff;

        transform:translateY(-50%);

        cursor:pointer;
    }

    /* 전화번호 → 햄버거 왼쪽 */
    .oryx-phone {
        right:64px;
        top:50%;

        width:auto;
        height:42px;

        padding:0 15px;

        border-radius:22px;

        transform:translateY(-50%);
    }

}

@charset "utf-8";

/* 게시판 목록 */
#bo_cate {margin:25px 0}
#bo_cate h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_cate ul {zoom:1}
#bo_cate ul:after {display:block;visibility:hidden;clear:both;content:""}
#bo_cate li {display:inline-block;padding:2px}
#bo_cate a {display:block;line-height:28px;padding:5px 15px;border-radius:30px;border:1px solid #d6e9ff;color:#6794d3}
#bo_cate a:focus, #bo_cate a:hover, #bo_cate a:active {text-decoration:none;background:#3a8afd;color:#fff}
#bo_cate #bo_cate_on {z-index:2;background:#3a8afd;color:#fff;font-weight:bold;border:1px solid #3a8afd;
-webkit-box-shadow:inset 0 2px 5px rgb(33, 135, 202);
-moz-box-shadow:inset 0 2px 5px rgb(33, 135, 202);
box-shadow:inset 0 2px 5px rgb(33, 135, 202)}
.td_subject img {margin-left:3px}

.selec_chk {position:absolute;top:0;left:0;width:0;height:0;opacity:0;outline:0;z-index:-1;overflow:hidden}
.chk_box {position:relative}
.chk_box input[type="checkbox"] + label {position:relative;padding-left:20px;color:#676e70;vertical-align:baseline}
.chk_box input[type="checkbox"] + label:hover{color:#2172f8}
.chk_box input[type="checkbox"] + label span {position:absolute;top:10px;left:10px;width:15px;height:15px;display:block;background:#fff;border:1px solid #d0d4df;border-radius:3px}
.write_div .chk_box input[type="checkbox"] + label, .bo_vc_w .chk_box input[type="checkbox"] + label {padding-left:20px}
.write_div .chk_box input[type="checkbox"] + label span, .bo_vc_w .chk_box input[type="checkbox"] + label span {position:absolute;top:2px;left:0;width:15px;height:15px;display:block;margin:0;background:#fff;border:1px solid #d0d4df;border-radius:3px}
.chk_box input[type="checkbox"]:checked + label {color:#000}
.chk_box input[type="checkbox"]:checked + label span {background:url(./img/chk.png) no-repeat 50% 50% #3a8afd;border-color:#1471f6;border-radius:3px}
.all_chk.chk_box input[type="checkbox"] + label span {top:0;left:0}


/* 갤러리 목록 */
#bo_gall h2 {margin:0;padding:0;width:1px;height:1px;font-size:0;line-height:0;overflow:hidden}
#bo_gall #gall_ul {margin:10px -10px 0;padding:0;list-style:none;zoom:1}
#bo_gall #gall_ul:after {display:block;visibility:hidden;clear:both;content:""}
#bo_gall .gall_li {}
#bo_gall .gall_li .gall_chk {position:absolute;top:0;left:0;padding:5px;z-index:1}
#bo_gall .gall_box {position:relative;margin:0 0 50px 0;border-radius:0 0 2px 2px}
#bo_gall .gall_con {position:relative}

.gall_row .col-gn-0,.gall_row .col-gn-1,.gall_row .col-gn-2,.gall_row .col-gn-3,.gall_row .col-gn-4,.gall_row .col-gn-5,.gall_row .col-gn-6,.gall_row .col-gn-7,.gall_row .col-gn-8,.gall_row .col-gn-9,.gall_row .col-gn-10 {position:relative;min-height:1px;padding-left:10px;*padding-left:0;padding-right:10px;*padding-right:0;float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin-left:0}
.gall_row .col-gn-0,.gall_row .col-gn-1 {width:100%}
.gall_row .col-gn-2 {width:50%}
.gall_row .col-gn-3 {width:33.33333333%}
.gall_row .col-gn-4 {width:25%}
.gall_row .col-gn-5 {width:20%}
.gall_row .col-gn-6 {width:16.66666667%}
.gall_row .col-gn-7 {width:14.28571428%}
.gall_row .col-gn-8 {width:12.5%}
.gall_row .col-gn-9 {width:11.11111111%}
.gall_row .col-gn-10 {width:10%}

.gall_row .box_clear {clear:both}

#bo_gall .gall_now .gall_text_href a {color:#ff3061}

#bo_gall .gall_href a:link, #bo_gall .gall_href a:focus, #bo_gall .gall_href a:hover {text-decoration:none}
#bo_gall .gall_img {border-bottom:1px solid #eee;text-align:center;overflow:hidden}
#bo_gall .gall_img a,#bo_gall .gall_img .no_image,#bo_gall .gall_img .is_notice {display:block}
#bo_gall .gall_img img, #bo_gall .gall_img video {max-width:100%;height:auto !important}
#bo_gall .gall_img span {display:inline-block;background:#eaeaea;text-align:center;text-transform:uppercase;font-weight:bold;font-size:1.25em;color:#777}

#bo_gall .gall_text_href {margin:10px 0}
#bo_gall .gall_text_href a {font-weight:bold}
#bo_gall .gall_text_href img {margin:0 0 0 4px}
#bo_gall .bo_tit {display:block;line-height:30px;font-weight:bold;color:#000;font-size:1.2em}
#bo_gall .bo_tit .cnt_cmt {background:#e9eff5;color:#3a8afd;font-size:11px;height:16px;line-height:16px;padding:0 5px;border-radius:3px;vertical-align:middle}

#bo_gall .bo_cnt {color:#acacac;line-height:18px}
#bo_gall .profile_img img {border-radius:50%}
#bo_gall .bo_tit .fa-download {width:16px;height:16px;line-height:16px;background:#e89f31;color:#fff;text-align:center;font-size:10px;border-radius:2px;margin-right:2px;vertical-align:middle}
#bo_gall .bo_tit .fa-link {width:16px;height:16px;line-height:16px;background:#ad68d8;color:#fff;text-align:center;font-size:10px;border-radius:2px;margin-right:2px;vertical-align:middle;font-weight:normal}
#bo_gall .bo_tit .fa-link {width:16px;height:16px;line-height:16px;background:#ad68d8;color:#fff;text-align:center;font-size:10px;border-radius:2px;margin-right:2px;vertical-align:middle;margin-right:2px}
#bo_gall .bo_tit .new_icon {display:inline-block;width:16px;line-height:16px;font-size:0.825em;color:#23db79;background:#b9ffda;text-align:center;border-radius:2px;margin-left:2px;font-weight:bold;vertical-align:baseline}
#bo_gall .bo_tit .hot_icon {display:inline-block;width:16px;line-height:16px;font-size:0.833em;color:#fff;background:#e52955;text-align:center;border-radius:2px;vertical-align:middle;margin-right:2px}
#bo_gall .bo_tit .fa-lock {display:inline-block;line-height:16px;color:#999;text-align:center;vertical-align:middle}

#bo_gall .gall_info {line-height:1.5em;line-height:20px}
#bo_gall .gall_info strong {display:inline-block;margin:0}
#bo_gall .gall_info i {font-size:12px}
#bo_gall .gall_info .gall_date,
#bo_gall .gall_info .gall_view {display:inline-block;margin-left:10px;color:#777}

#bo_gall .gall_option {position:absolute;top:10px;right:10px}
#bo_gall .gall_option strong {background:#fff;padding:5px 10px;border-radius:30px;-webkit-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
-moz-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2)}

/* 게시판 목록 공통 */
#bo_btn_top {margin:10px 0}
#bo_btn_top:after {display:block;visibility:hidden;clear:both;content:""}
.bo_fx {margin-bottom:5px;float:right;zoom:1}
.bo_fx:after {display:block;visibility:hidden;clear:both;content:""}
.bo_fx ul {margin:0;padding:0;list-style:none}
#bo_list_total {float:left;line-height:34px;font-size:0.92em;color:#4e546f}

.btn_bo_user {float:right;margin:0;padding:0;list-style:none}
.btn_bo_user li {float:left;width:40px;text-align:center;margin-left:5px;background:#fff}
.btn_bo_user > li {position:relative}
.btn_bo_adm {float:left}
.btn_bo_adm li {float:left;margin-right:5px}
.btn_bo_adm input {padding:0 8px;border:0;background:#d4d4d4;color:#666;text-decoration:none;vertical-align:middle}
.bo_notice td {background:#fff6fa !important;border-bottom:1px solid #f8e6ee}
.bo_notice td a {font-weight:bold}
.bo_notice .notice_icon {display:inline-block;line-height:25px;border-radius:5px;font-weight:bold;color:#f9267f}

.more_opt {display:none;position:absolute;top:45px;right:0;background:#fff;border:1px solid #b8bfc4;z-index:999}
.more_opt:before {content:"";position:absolute;top:-8px;right:13px;width:0;height:0;border-style:solid;border-width:0 6px 8px 6px;border-color:transparent transparent #b8bfc4 transparent}
.more_opt:after {content:"";position:absolute;top:-6px;right:13px;width:0;height:0;border-style:solid;border-width:0 6px 8px 6px;border-color:transparent transparent #fff transparent}
.more_opt li {border-bottom:1px solid #f1f1f1;padding:10px;float:inherit;width:90px;margin:0;color:#6b757c;text-align:left}
.more_opt li:last-child {border-bottom:0}
.more_opt li button, .more_opt li a {width:100%;border:0;background:#fff;color:#6b757c}
.more_opt li:hover a,
.more_opt li:hover button {color:#000}
.more_opt li i {float:right;line-height:20px}

.td_num strong {color:#000}
.bo_cate_link {display:inline-block;background:#e2eaf6;color:#3a8afd;font-weight:normal !important;height:20px;line-height:10px;padding:5px 8px;border-radius:5px;font-size:0.95em} /* 글제목줄 분류스타일 */
.bo_cate_link:hover {text-decoration:none}
.bo_current {color:#e8180c}
#bo_list .profile_img {display:inline-block;margin-right:5px}
#bo_list .profile_img img {border-radius:50%}
#bo_list .cnt_cmt {display:inline-block;margin:0 0 0 3px;font-weight:bold;color:#ed6478;font-size:0.86em}

#bo_gall li.empty_list {padding:85px 0;text-align:center}

.bo_sch_wrap {display:none;width:100%;height:100%;position:fixed;top:0;left:0;z-index:999}
.bo_sch {position:absolute;top:50%;left:50%;background:#fff;text-align:left;width:330px;max-height:300px;margin-left:-125px;margin-top:-180px;overflow-y:auto;border-radius:5px;-webkit-box-shadow:1px 1px 18px rgba(0,0,0,0.2);-moz-box-shadow:1px 1px 18px rgba(0,0,0,0.2);box-shadow:1px 1px 18px rgba(0,0,0,0.2);border:1px solid #dde7e9;background:#fff;border-radius:3px}
.bo_sch:after {display:block;visibility:hidden;clear:both;content:""}
.bo_sch h3 {padding:15px;border-bottom:1px solid #e8e8e8}
.bo_sch legend {background:red}
.bo_sch form {padding:15px;display:block}
.bo_sch select {border:0;width:100%;height:40px;border:1px solid #d0d3db;border-radius:2px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075)}
.bo_sch .sch_bar {display:inline-block;width:100%;clear:both;margin-top:15px;border:1px solid #d0d3db;border-radius:2px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075)}
.bo_sch .sch_input {width:250px;height:38px;border:0;padding:0;background-color:transparent;float:left}
.bo_sch .sch_btn {height:38px;float:right;color:#656565;background:none;border:0;width:40px;font-size:15px}
.bo_sch .bo_sch_cls {position:absolute;right:0;top:0;color:#b5b8bb;border:0;padding:12px 15px;font-size:16px;background:#fff}
.bo_sch_bg {background:#000;background:rgba(0,0,0,0.1);width:100%;height:100%}


/* 게시판 쓰기 */
#char_count_desc {display:block;margin:0 0 5px;padding:0}
#char_count_wrap {margin:5px 0 0;text-align:right}
#char_count {font-weight:bold}

#autosave_wrapper {position:relative}
#autosave_pop {display:none;z-index:10;position:absolute !important;top:34px;right:0;width:350px;height:auto !important;height:180px;max-height:180px;border:1px solid #565656;background:#fff;
-webkit-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
-moz-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2)}
#autosave_pop:before {content:"";position:absolute;top:-8px;right:45px;width:0;height:0;border-style:solid;border-width:0 6px 8px 6px;border-color:transparent transparent #000 transparent}
#autosave_pop:after {content:"";position:absolute;top:-7px;right:45px;width:0;height:0;border-style:solid;border-width:0 6px 8px 6px;border-color:transparent transparent #fff transparent}
html.no-overflowscrolling #autosave_pop {height:auto;max-height:10000px !important} /* overflow 미지원 기기 대응 */
#autosave_pop strong {position:absolute;font-size:0;line-height:0;overflow:hidden}
#autosave_pop div {text-align:center;margin:0 !important}
#autosave_pop button {margin:0;padding:0;border:0}
#autosave_pop ul {padding:15px;border-top:1px solid #e9e9e9;list-style:none;overflow-y:scroll;height:130px;border-bottom:1px solid #e8e8e8}
#autosave_pop li {padding:8px 5px;border-bottom:1px solid #fff;background:#eee;zoom:1}
#autosave_pop li:after {display:block;visibility:hidden;clear:both;content:""}
#autosave_pop a {display:block;float:left}
#autosave_pop span {display:block;float:right;font-size:0.92em;font-style:italic;color:#999}
.autosave_close {cursor:pointer;width:100%;height:30px;background:none;color:#888;font-weight:bold;font-size:0.92em}
.autosave_close:hover {background:#f3f3f3;color:#3597d9}
.autosave_content {display:none}
.autosave_del {background:url(./img/close_btn.png) no-repeat 50% 50%;text-indent:-999px;overflow:hidden;height:20px;width:20px}

/* 게시판 읽기 */
#bo_v {margin-bottom:20px;background:#fff;box-sizing:border-box}

#bo_v_table {position:absolute;top:0;right:16px;margin:0;padding:0 5px;height:25px;background:#ff3061;color:#fff;font-weight:bold;line-height:2.2em}

#bo_v_title {}
#bo_v_title .bo_v_cate {display:inline-block;line-height:20px;background:#e2eaf6;color:#3a8afd;padding:0 10px;border-radius:3px;}
#bo_v_title .bo_v_tit {display:block;font-size:2em;margin:5px 0 0;word-break:break-all}

#bo_v_info {margin:0;border-bottom:1px solid #f1f1f1;color:#666}
#bo_v_info:after {display:block;visibility:hidden;clear:both;content:""} 
#bo_v_info h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}

#bo_v_info .profile_info {margin:20px 0 10px;display:inline-block;float:left}
#bo_v_info .profile_info .pf_img {float:left;margin-right:10px}
#bo_v_info .profile_info .pf_img img {border-radius:50%;width:50px;height:50px}
#bo_v_info .profile_info .profile_info_ct {float:left;padding:5px 0;line-height:18px}

#bo_v_info strong {display:inline-block;margin:0 10px 0 0;font-weight:normal}
#bo_v_info .sv_member,
#bo_v_info .sv_guest,
#bo_v_info .member,
#bo_v_info .guest {font-weight:bold}
#bo_v_info .profile_img {display:none}
#bo_v_info .sv_member {color:#000}
#bo_v_info .if_date {margin:0;color:#888}

#bo_v_file h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_v_file ul {margin:0;list-style:none}
#bo_v_file li {padding:15px;position:relative;margin:10px 0;border:1px solid #dfdfdf;border-radius:5px;
-webkit-box-shadow:1px 1px 5px 0px hsl(232, 36%, 96%);
-moz-box-shadow:1px 1px 5px 0px hsl(232, 36%, 96%);
box-shadow:1px 1px 5px 0px hsl(232, 36%, 96%)}
#bo_v_file li i {float:left;color:#b2b2b2;font-size:2.35em;margin-right:20px}
#bo_v_file a {float:left;display:block;text-decoration:none;word-wrap:break-word;color:#000}
#bo_v_file a:focus, #bo_v_file li:hover a, #bo_v_file a:active {text-decoration:underline;color:#3a8afd}
#bo_v_file img {float:left;margin:0 10px 0 0}
#bo_v_file .bo_v_file_cnt {color:#b2b2b2;font-size:0.92em}
#bo_v_file li:hover {border-color:#bed4f4;color:#bed4f4}
#bo_v_file li:hover i {color:#3a8afd}
#bo_v_file li:hover .bo_v_file_cnt {color:#99c2fc}


#bo_v_link h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_v_file ul {margin:0;list-style:none}
#bo_v_link li {padding:15px;position:relative;margin:10px 0;border:1px solid #dfdfdf;border-radius:5px;
-webkit-box-shadow:1px 1px 5px 0px hsl(232, 36%, 96%);
-moz-box-shadow:1px 1px 5px 0px hsl(232, 36%, 96%);
box-shadow:1px 1px 5px 0px hsl(232, 36%, 96%)}
#bo_v_link li i {float:left;color:#b2b2b2;font-size:2.35em;margin-right:20px}
#bo_v_link a {float:left;display:block;text-decoration:none;word-wrap:break-word;color:#000}
#bo_v_link a:focus, #bo_v_link li:hover a, #bo_v_link a:active {text-decoration:underline;color:#3a8afd}
#bo_v_link .bo_v_link_cnt {color:#b2b2b2;font-size:0.92em}
#bo_v_link li:hover {border-color:#bed4f4;color:#bed4f4}
#bo_v_link li:hover i {color:#3a8afd}
#bo_v_link li:hover .bo_v_link_cnt {color:#99c2fc}


#bo_v_top {zoom:1}
#bo_v_top:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_top h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_v_top ul {padding:0;list-style:none;word-break:break-all}

#bo_v_bot {zoom:1}
#bo_v_bot:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_bot h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_v_bot ul {padding:0;list-style:none}

.bo_v_com {margin:20px 0;float:right}
.bo_v_com > li {position:relative;float:left;margin-left:5px}

.bo_v_nb {margin:20px 0;position:relative;clear:both;text-align:left}
.bo_v_nb:after {display:block;visibility:hidden;clear:both;content:""}
.bo_v_nb li {border-top:1px solid #f1f1f1;padding:13px}
.bo_v_nb li:last-child {border-bottom:1px solid #f1f1f1}
.bo_v_nb li:hover {background:#f6f6f6}
.bo_v_nb li i {font-size:13px;color:#b3b3b3}
.bo_v_nb li .nb_tit {display:inline-block;padding-right:20px;color:#b3b3b3}
.bo_v_nb li .nb_date {float:right;color:#b3b3b3}

#bo_v_atc {min-height:200px;height:auto !important;height:200px}
#bo_v_atc_title {position:absolute;font-size:0;line-height:0;overflow:hidden}

#bo_v_img {width:100%;overflow:hidden;zoom:1}
#bo_v_img:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_img a.view_image {display:block}
#bo_v_img img {margin-bottom:20px;max-width:100%;height:auto}

#bo_v_con {margin:10px 0 30px;width:100%;line-height:1.7em;min-height:200px;word-break:break-all;overflow:hidden}
#bo_v_con a {color:#000;text-decoration:underline}
#bo_v_con img {max-width:100%;height:auto}

#bo_v_act {margin-bottom:30px;text-align:center}
#bo_v_act .bo_v_act_gng {position:relative}
#bo_v_act a {margin-right:5px;vertical-align:middle;color:#4a5158}
#bo_v_act a:hover {background-color:#fff;color:#ff484f;border-color:#ff484f}
#bo_v_act i {font-size:1.4em;margin-right:5px}
#bo_v_act_good, #bo_v_act_nogood {display:none;position:absolute;top:30px;left:0;z-index:9999;padding:10px 0;width:165px;background:#ff3061;color:#fff;text-align:center}
#bo_v_act .bo_v_good {display:inline-block;border:1px solid #dedede;width:70px;line-height:46px;border-radius:30px}
#bo_v_act .bo_v_nogood {display:inline-block;border:1px solid #dedede;width:70px;line-height:46px;border-radius:30px}

#bo_v_sns {padding:0;list-style:none;zoom:1;float:left;display:inline-block}
#bo_v_sns:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_sns li {float:left;width:135px;margin-right:5px;text-align:left}
#bo_v_sns li a {height:35px;line-height:35px;text-align:center;border-radius:5px;color:#fff;font-size:0.95em}
#bo_v_sns li img {vertical-align:middle;margin-right:5px}
#bo_v_sns li .sns_f {display:block;background:#3b5997}
#bo_v_sns li .sns_t {display:block;background:#09aeee}
#bo_v_sns li .sns_g {display:block;background:#ea4026}
#bo_v_sns li .sns_k {display:block;background:#fbe300}

#bo_v_share {position:relative;padding:20px 0}
#bo_v_share:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_share .btn {padding:0 10px;color:#555;font-weight:normal;font-size:1em;width:80px;line-height:35px;height:35px;border-color:#d5d5d5;border-radius:5px}
#bo_v_share .btn:hover {background:#fff}
#bo_v_share .btn i {margin-right:5px;color:#4b5259;vertical-align:middle}


/* 게시판 댓글 */
.cmt_btn {width:100%;text-align:left;border:0;border-bottom:1px solid #f0f0f0;background:#fff;font-weight:bold;margin:30px 0 0px;padding:0 0 15px}
.cmt_btn span.total {position:relative;display:inline-block;margin-right:5px;font-size:1em;color:#3a8afd}
.cmt_btn span.cmt_more {float:right;display:inline-block;width:15px;height:10px;background:url(./img/btn_cmt.png) no-repeat right 2px;margin-top:5px}
.cmt_btn_op span.cmt_more {background-position:right -8px}
.cmt_btn b {font-size:1.2em;color:#000}
.cmt_btn span.total:after {position:absolute;bottom:-17px;left:0;display:inline-block;background:#3a8afd;content:"";width:100%;height:2px}
#bo_vc {}
#bo_vc h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_vc article {margin:20px 0;position:relative;border-bottom:1px solid #f0f0f0}
#bo_vc article:after {display:block;visibility:hidden;clear:both;content:""}
#bo_vc article .profile_img img {border-radius:50%}
#bo_vc article .pf_img {float:left;margin-right:10px}
#bo_vc article .pf_img img {border-radius:50%;width:50px;height:50px}
#bo_vc article .cm_wrap {float:left;max-width:870px;width:90%}
#bo_vc header {position:relative;width:100%}
#bo_vc header:after {display:block;visibility:hidden;clear:both;content:""}
#bo_vc header .profile_img {display:none}
#bo_vc header .icon_reply {position:absolute;top:15px;left:-20px}
#bo_vc .member, #bo_vc .guest, #bo_vc .sv_member, #bo_vc .sv_guest {font-weight:bold}
.bo_vc_hdinfo {color:#777}
#bo_vc h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_vc .cmt_contents {line-height:1.8em;padding:0 0 20px}
#bo_vc p a {text-decoration:underline}
#bo_vc p a.s_cmt {text-decoration:underline;color:#ed6479}
#bo_vc_empty {margin:0;padding:80px 0 !important;color:#777;text-align:center}
#bo_vc #bo_vc_winfo {float:left}
#bo_vc .bo_vl_opt {position:absolute;top:0;right:0}

.bo_vc_act {display:none;position:absolute;right:0;top:40px;width:58px;text-align:right;border:1px solid #b8bfc4;margin:0;list-style:none;background:#fff;zoom:1;z-index:9999}
.bo_vc_act:before {content:"";position:absolute;top:-8px;right:5px;width:0;height:0;border-style:solid;border-width:0 6px 8px 6px;border-color:transparent transparent #b8bfc4 transparent}
.bo_vc_act:after {content:"";position:absolute;top:-6px;right:5px;width:0;height:0;border-style:solid;border-width:0 6px 8px 6px;border-color:transparent transparent #fff transparent}
.bo_vc_act li {border-bottom:1px solid #f0f0f0}
.bo_vc_act li:last-child {border-bottom:0}
.bo_vc_act li a {display:inline-block;padding:10px 15px}
.bo_vc_act li a:hover {color:#3a8afd}

.bo_vc_w {position:relative;margin:10px 0;display:block}
.bo_vc_w:after {display:block;visibility:hidden;clear:both;content:""}
.bo_vc_w h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
.bo_vc_w #char_cnt {display:block;margin:0 0 5px}
.bo_vc_w textarea {border:1px solid #ccc;background:#fff;color:#000;vertical-align:middle;border-radius:3px;padding:5px;width:100%;height:120px;
-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1)}
#wr_secret {}
.bo_vc_w_info {margin:10px 0;float:left}
.bo_vc_w_info:after {display:block;visibility:hidden;clear:both;content:""}
.bo_vc_w_info .frm_input {float:left;margin-right:5px}
.bo_vc_w_info #captcha {padding-top:10px;display:block;clear:both}
.bo_vc_w .btn_confirm {clear:both;margin-top:10px}
.bo_vc_w .btn_confirm label {display:inline-block;margin-right:10px;border-radius:3px;font-size:1.5em;text-align:center}
.bo_vc_w .btn_submit {height:45px;padding:0 20px;border-radius:3px;font-weight:bold;font-size:1.083em}
.bo_vc_w .btn_confirm .secret_cm label {font-size:1em !important}
.bo_vc_w_wr:after {display:block;visibility:hidden;clear:both;content:""}
.secret_cm {display:inline-block;float:left}

#bo_vc_send_sns {display:inline-block;float:left}
#bo_vc_sns {display:inline-block;margin:0;padding:0;list-style:none;zoom:1}
#bo_vc_sns:after {display:block;visibility:hidden;clear:both;content:""}
#bo_vc_sns li {float:left;margin:0 5px 0 0}
#bo_vc_sns .sns_li_f {border-radius:3px;background:#3a589b;height:40px;line-height:40px;padding:0 0 0 10px}
#bo_vc_sns .sns_li_t {border-radius:3px;background:#00aced;height:40px;line-height:40px;padding:0 0 0 10px}
#bo_vc_sns .sns_li_off {background:#bbb}
#bo_vc_sns a {display:inline-block;padding:0 15px 0 5px}
#bo_vc_sns input {margin:0 5px 0 0}

/*글쓰기*/
#bo_w .bo_v_option li {display:inline-block;float:left;text-align:left;margin:0 5px 0 0}
#bo_w .bo_v_option li label {vertical-align:baseline}
#bo_w .bo_v_option .chk_box input[type="checkbox"] + label span {margin-left:0;margin-right:5px}
#bo_w .write_div {margin:10px 0;position:relative}
#bo_w .write_div:after {display:block;visibility:hidden;clear:both;content:""}
#bo_w .bo_w_info:after {display:block;visibility:hidden;clear:both;content:""}
#bo_w .bo_w_info .frm_input {float:left;margin-bottom:1%}
#bo_w #wr_password, #bo_w #wr_homepage {margin-left:1%}
#bo_w .wr_content.smarteditor2 iframe {background:#fff}
#bo_w .bo_w_tit {position:relative}
#bo_w .bo_w_tit .frm_input {padding-right:120px}
#bo_w .bo_w_tit #btn_autosave {position:absolute;top:5px;right:5px;line-height:30px;height:30px}
#bo_w .bo_w_link label {position:absolute;top:1px;left:1px;border-radius:3px 0 0 3px;height:38px;line-height:38px;width:40px;font-size:1.2em;text-align:center;color:#b2b2b2}
#bo_w .bo_w_link .frm_input {padding-left:50px}
#bo_w .bo_w_flie .lb_icon {position:absolute;top:0px;left:0px;border-radius:3px 0 0 3px;height:38px;line-height:38px;width:40px;font-size:1.2em;text-align:center;color:#b2b2b2}
#bo_w .bo_w_flie .frm_file {padding-left:50px;margin-top:3px}
#bo_w .bo_w_flie .file_wr {position:relative;border:1px solid #ccc;background:#fff;color:#000;vertical-align:middle;border-radius:3px;padding:5px;height:40px;margin:0}
#bo_w .bo_w_flie .frm_input {margin:10px 0 0}
#bo_w .bo_w_flie .file_del {position:absolute;top:10px;right:10px;font-size:0.92em;color:#7d7d7d}
#bo_w .bo_w_select select {border:1px solid #d0d3db;width:100%;height:40px;border-radius:3px}
#bo_w .btn_submit {padding:0 20px;font-size:1.167em}
#bo_w .btn_cancel {border-radius:3px;font-size:1.167em}

/* =========================================================
   ORYX GALLERY RESPONSIVE
========================================================= */

#bo_gall {
    width:100% !important;
    max-width:100%;
    margin:0;
    padding:0;
    box-sizing:border-box;
}

#bo_gall *,
#bo_gall *::before,
#bo_gall *::after {
    box-sizing:border-box;
}


/* =========================================================
   CATEGORY
========================================================= */

#bo_cate {
    width:100%;
    margin:0 0 28px;
}

#bo_cate h2 {
    position:absolute;
    width:1px;
    height:1px;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
}

.bo_cate_scroll {
    width:100%;
}

#bo_cate_ul {
    display:flex;
    flex-wrap:wrap;
    gap:6px;

    margin:0;
    padding:0;

    list-style:none;
}

#bo_cate_ul li {
    margin:0;
    padding:0;
}

#bo_cate_ul a {
    display:flex;
    min-height:34px;

    padding:0 15px;

    align-items:center;
    justify-content:center;

    border:1px solid #ddd;
    border-radius:18px;

    background:#fff;

    color:#666;

    font-size:12px;
    font-weight:600;

    line-height:1;

    white-space:nowrap;

    transition:.2s;
}

#bo_cate_ul a:hover,
#bo_cate_ul a:focus,
#bo_cate_ul a:active,
#bo_cate_ul #bo_cate_on {
    border-color:#f7941d;
    background:#f7941d;
    color:#fff;

    text-decoration:none;
}


/* =========================================================
   TOP
========================================================= */

#bo_btn_top {
    min-height:42px;

    margin:0 0 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:15px;
}

#bo_btn_top::after {
    display:none;
}

#bo_list_total {
    float:none;

    color:#777;

    font-size:12px;
    line-height:1.4;
}

#bo_list_total strong {
    color:#f47a20;
    font-size:14px;
}

#bo_list_total .page_num {
    margin-left:7px;

    color:#aaa;
}


/* 버튼 */

.btn_bo_user {
    float:none;

    margin:0;
    padding:0;

    display:flex;
    align-items:center;

    gap:5px;

    list-style:none;
}

.btn_bo_user li {
    position:relative;

    float:none;

    width:auto;

    margin:0;

    background:none;
}

.btn_bo_user .btn {
    width:38px;
    height:38px;

    padding:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid #ddd;
    border-radius:50%;

    background:#fff;

    color:#666;

    font-size:14px;

    transition:.2s;
}

.btn_bo_user .btn:hover {
    border-color:#f7941d;

    background:#f7941d;

    color:#fff;
}

.btn_bo_user .btn_admin {
    border-color:#555;

    background:#555;

    color:#fff;
}


/* =========================================================
   ADMIN CHECK
========================================================= */

#gall_allchk {
    margin:0 0 15px;
}

.all_chk.chk_box
input[type="checkbox"] + label {
    min-height:24px;

    display:inline-flex;

    padding-left:27px;

    align-items:center;

    font-size:12px;
}

.all_chk.chk_box
input[type="checkbox"] + label span {
    top:50%;
    left:0;

    transform:translateY(-50%);
}


/* checkbox */

.selec_chk {
    position:absolute;

    width:1px;
    height:1px;

    opacity:0;
}

.chk_box {
    position:relative;
}

.chk_box input[type="checkbox"] + label span {
    position:absolute;

    width:18px;
    height:18px;

    display:block;

    border:1px solid #ccc;
    border-radius:4px;

    background:#fff;
}

.chk_box input[type="checkbox"]:checked + label span {
    border-color:#f7941d;

    background:
        url(./img/chk.png)
        center center no-repeat
        #f7941d;
}


/* =========================================================
   GALLERY GRID
========================================================= */

#bo_gall #gall_ul {
    width:100%;

    margin:0;
    padding:0;

    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:30px 22px;

    list-style:none;
}

#bo_gall #gall_ul::after {
    display:none;
}


/*
기존 col-gn 클래스의 float/width를 모두 해제
*/
#bo_gall #gall_ul .gall_li,
#bo_gall #gall_ul
[class*="col-gn-"] {
    float:none !important;

    width:auto !important;
    min-width:0;

    margin:0 !important;
    padding:0 !important;

    clear:none !important;
}


/* =========================================================
   CARD
========================================================= */

#bo_gall .gall_box {
    position:relative;

    height:100%;

    margin:0;

    overflow:hidden;

    border:1px solid #e6e6e6;
    border-radius:8px;

    background:#fff;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

@media (hover:hover) {

    #bo_gall .gall_box:hover {
        border-color:#ddd;

        transform:translateY(-3px);

        box-shadow:
            0 8px 22px
            rgba(0,0,0,.08);
    }
}

#bo_gall .gall_con {
    position:relative;

    height:100%;

    display:flex;
    flex-direction:column;
}


/* =========================================================
   IMAGE
========================================================= */

#bo_gall .gall_img {
    position:relative;

    width:100%;

    aspect-ratio:4 / 3;

    overflow:hidden;

    border:0;

    background:#f2f2f2;
}

#bo_gall .gall_img > a {
    width:100%;
    height:100%;

    display:block;
}

#bo_gall .gall_img img,
#bo_gall .gall_img video {
    display:block;

    width:100%;
    height:100% !important;

    max-width:none;

    object-fit:cover;

    transition:transform .35s ease;
}

@media (hover:hover) {

    #bo_gall .gall_box:hover
    .gall_img img {

        transform:scale(1.035);
    }
}


#bo_gall .gall_img .no_image,
#bo_gall .gall_img .is_notice {
    width:100%;
    height:100%;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#f3f3f3;

    color:#aaa;

    font-size:12px;
    font-weight:700;
}

#bo_gall .gall_img .is_notice {
    background:#fff6eb;

    color:#f47a20;

    font-size:17px;
}


/* =========================================================
   CHECKBOX ON PHOTO
========================================================= */

#bo_gall .gall_li .gall_chk {
    position:absolute;

    z-index:10;

    top:8px;
    left:8px;

    padding:0;
}

#bo_gall .gall_chk label {
    display:block;

    width:22px;
    height:22px;

    padding:0;
}

#bo_gall .gall_chk
input[type="checkbox"] + label span {

    top:0;
    left:0;

    width:22px;
    height:22px;

    border-radius:5px;

    box-shadow:
        0 1px 5px
        rgba(0,0,0,.15);
}


/* =========================================================
   TEXT
========================================================= */

#bo_gall .gall_text_href {
    flex:1;

    margin:0;
    padding:16px 17px 8px;
}

#bo_gall .bo_cate_link {
    display:inline-flex;

    height:23px;

    margin-bottom:7px;
    padding:0 8px;

    align-items:center;

    border:0;
    border-radius:3px;

    background:#fff3e7;

    color:#f47a20;

    font-size:11px;
    font-weight:600 !important;

    line-height:1;
}

#bo_gall .bo_tit {
    width:100%;

    display:flex;

    align-items:center;

    gap:4px;

    color:#333;

    font-size:14px;
    font-weight:700;

    line-height:1.45;
}

#bo_gall .bo_tit_text {
    min-width:0;

    overflow:hidden;

    display:-webkit-box;

    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;

    word-break:keep-all;
    overflow-wrap:break-word;
}

#bo_gall .bo_tit:hover {
    color:#f47a20;
}

#bo_gall .bo_cnt {
    margin-top:7px;

    display:-webkit-box;

    overflow:hidden;

    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;

    color:#999;

    font-size:11px;
    line-height:1.55;

    word-break:keep-all;
}


/* NEW */

#bo_gall .new_icon {
    flex:0 0 auto;

    width:17px;
    height:17px;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#f47a20;

    color:#fff;

    font-size:9px;
    font-weight:700;
}


/* =========================================================
   INFO
========================================================= */

#bo_gall .gall_info {
    min-height:42px;

    padding:0 17px 14px;

    display:flex;
    align-items:center;

    gap:9px;

    color:#999;

    font-size:10px;
    line-height:1.4;
}

#bo_gall .gall_info .gall_writer {
    margin-right:auto;

    max-width:90px;

    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;

    color:#777;
}

#bo_gall .gall_info .gall_date,
#bo_gall .gall_info .gall_view {
    margin:0;

    white-space:nowrap;

    color:#aaa;
}

#bo_gall .gall_info i {
    margin-right:2px;

    font-size:10px;
}


/* =========================================================
   LIKE
========================================================= */

#bo_gall .gall_option {
    position:absolute;

    top:10px;
    right:10px;

    display:flex;

    gap:4px;
}

#bo_gall .gall_option strong {
    padding:4px 7px;

    border-radius:12px;

    background:rgba(255,255,255,.92);

    color:#777;

    font-size:10px;

    box-shadow:
        0 2px 5px
        rgba(0,0,0,.12);
}


/* =========================================================
   CURRENT
========================================================= */

#bo_gall .gall_now .gall_box {
    border-color:#f7941d;
}

#bo_gall .gall_now .bo_tit {
    color:#f47a20;
}


/* =========================================================
   EMPTY
========================================================= */

#bo_gall li.empty_list {
    grid-column:1 / -1;

    width:100%;

    padding:90px 20px;

    border-top:1px solid #eee;
    border-bottom:1px solid #eee;

    color:#999;

    font-size:13px;

    text-align:center;
}


/* =========================================================
   PAGING
========================================================= */

.oryx-gallery-paging {
    width:100%;

    margin:40px 0 20px;

    text-align:center;
}

#bo_gall .pg_wrap {
    margin:0;

    text-align:center;
}

#bo_gall .pg_page,
#bo_gall .pg_current {
    min-width:34px;
    height:34px;

    line-height:32px;

    border-radius:50%;
}

#bo_gall .pg_current {
    border-color:#f7941d;

    background:#f7941d;

    color:#fff;
}


/* =========================================================
   BOTTOM BUTTON
========================================================= */

#bo_gall .bo_fx {
    float:none;

    width:100%;

    margin:10px 0 0;

    display:flex;

    justify-content:flex-end;
}


/* =========================================================
   MORE OPTION
========================================================= */

#bo_gall .more_opt {
    position:absolute;

    z-index:100;

    top:45px;
    right:0;

    min-width:115px;

    margin:0;
    padding:5px 0;

    display:none;

    border:1px solid #ddd;
    border-radius:5px;

    background:#fff;

    box-shadow:
        0 5px 15px
        rgba(0,0,0,.1);
}

#bo_gall .more_opt::before,
#bo_gall .more_opt::after {
    display:none;
}

#bo_gall .more_opt li {
    float:none;

    width:100%;

    margin:0;
    padding:0;

    border:0;

    text-align:left;
}

#bo_gall .more_opt li button {
    width:100%;

    padding:10px 13px;

    border:0;

    background:#fff;

    color:#666;

    font-size:12px;

    text-align:left;
}

#bo_gall .more_opt li button:hover {
    background:#fff5eb;

    color:#f47a20;
}


/* =========================================================
   SEARCH MODAL
========================================================= */

.bo_sch_wrap {
    position:fixed;

    z-index:10000;

    inset:0;

    width:100%;
    height:100%;

    display:none;
}

.bo_sch_bg {
    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.45);
}

.bo_sch {
    position:absolute;

    z-index:2;

    left:50%;
    top:50%;

    width:380px;
    max-width:calc(100% - 32px);

    max-height:none;

    margin:0;

    overflow:visible;

    border:0;
    border-radius:9px;

    background:#fff;

    text-align:left;

    transform:
        translate(-50%,-50%);

    box-shadow:
        0 15px 45px
        rgba(0,0,0,.2);
}

.bo_sch h3 {
    margin:0;

    padding:18px 20px;

    border-bottom:1px solid #eee;

    color:#333;

    font-size:16px;
}

.bo_sch form {
    padding:20px;
}

.bo_sch select {
    width:100%;
    height:42px;

    padding:0 10px;

    border:1px solid #ddd;
    border-radius:4px;

    background:#fff;

    font-size:13px;
}

.bo_sch .sch_bar {
    width:100%;
    height:43px;

    margin-top:10px;

    display:flex;

    overflow:hidden;

    border:1px solid #ddd;
    border-radius:4px;

    box-shadow:none;
}

.bo_sch .sch_input {
    float:none;

    flex:1;

    width:auto;
    min-width:0;
    height:41px;

    padding:0 12px;

    border:0 !important;

    background:#fff;

    font-size:13px;

    box-shadow:none !important;
}

.bo_sch .sch_btn {
    float:none;

    width:44px;
    height:41px;

    flex:0 0 44px;

    border:0;

    background:#f7941d;

    color:#fff;

    font-size:14px;
}

.bo_sch .bo_sch_cls {
    position:absolute;

    top:9px;
    right:9px;

    width:40px;
    height:40px;

    padding:0;

    border:0;

    background:transparent;

    color:#999;

    font-size:17px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:900px) {

    #bo_gall #gall_ul {
        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap:22px 16px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:768px) {

    #bo_gall {
        width:100%;
    }


    /* category */

    #bo_cate {
        margin-bottom:20px;
    }

    .bo_cate_scroll {
        overflow-x:auto;

        padding-bottom:3px;

        -webkit-overflow-scrolling:touch;

        scrollbar-width:none;
    }

    .bo_cate_scroll::-webkit-scrollbar {
        display:none;
    }

    #bo_cate_ul {
        width:max-content;

        min-width:100%;

        flex-wrap:nowrap;

        gap:5px;
    }

    #bo_cate_ul a {
        min-height:32px;

        padding:0 13px;

        font-size:11px;
    }


    /* top */

    #bo_btn_top {
        min-height:40px;

        margin-bottom:16px;

        gap:8px;
    }

    #bo_list_total {
        font-size:11px;
    }

    #bo_list_total .page_num {
        display:none;
    }

    .btn_bo_user {
        gap:4px;
    }

    .btn_bo_user .btn {
        width:36px;
        height:36px;

        font-size:13px;
    }


    /* gallery */

    #bo_gall #gall_ul {
        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap:18px 10px;
    }

    #bo_gall .gall_box {
        border-radius:6px;
    }

    #bo_gall .gall_img {
        aspect-ratio:1 / 0.78;
    }


    #bo_gall .gall_text_href {
        padding:
            11px
            10px
            6px;
    }

    #bo_gall .bo_cate_link {
        height:20px;

        margin-bottom:5px;
        padding:0 6px;

        font-size:9px;
    }

    #bo_gall .bo_tit {
        font-size:12px;

        line-height:1.4;
    }

    #bo_gall .bo_cnt {
        display:none;
    }


    #bo_gall .gall_info {
        min-height:34px;

        padding:
            0
            10px
            10px;

        gap:5px;

        font-size:9px;
    }

    #bo_gall .gall_info
    .gall_writer {

        max-width:60px;
    }

    #bo_gall .gall_info
    .gall_date {

        margin-left:auto;
    }

    #bo_gall .gall_info
    .gall_view {

        display:none;
    }


    /* option */

    #bo_gall .gall_option {
        display:none;
    }


    /* paging */

    .oryx-gallery-paging {
        margin:
            30px
            0
            15px;
    }


    #bo_gall .pg_page,
    #bo_gall .pg_current {
        min-width:31px;
        height:31px;

        line-height:29px;

        font-size:11px;
    }


    /* search */

    .bo_sch {
        width:calc(100% - 30px);

        max-width:380px;
    }

    .bo_sch h3 {
        padding:16px 17px;

        font-size:15px;
    }

    .bo_sch form {
        padding:17px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width:360px) {

    #bo_gall #gall_ul {
        grid-template-columns:1fr;

        gap:18px;
    }

    #bo_gall .gall_img {
        aspect-ratio:4 / 3;
    }

    #bo_gall .bo_tit {
        font-size:13px;
    }

    #bo_gall .bo_cnt {
        display:-webkit-box;
    }

    #bo_gall .gall_view {
        display:inline-block !important;
    }

}

/* 빠른상담 - 모바일 */
@media (max-width:768px) {

    .estimate-card {
        height:255px;
    }

    .estimate-card form {
        position:relative;
        width:100%;
        height:100%;
    }

    .estimate-card .quick-form {
        left:50%;
        top:35px;

        width:82%;
        max-width:310px;

        transform:translateX(-50%);
    }

    .estimate-card .quick-form label > span {
        flex:0 0 48px;
        font-size:11px;
    }

    .estimate-card .quick-form label > input {
        width:auto;
        flex:1;
        min-width:0;
    }

    .estimate-card .phone-fields {
        flex:1;
        min-width:0;

        grid-template-columns:70px 1fr 1fr;
        gap:4px;
    }

    /* 전송하기 버튼 */
    .estimate-card .quick-submit {
        position:absolute;

        left:50%;
        right:auto;
        bottom:15px;

        width:130px;
        height:38px;

        transform:translateX(-50%);

        border-radius:19px;

        font-size:12px;
        line-height:38px;
    }
}

.estimate-card .quick-submit {
    position:absolute;

    left:50%;
    right:auto;
    bottom:14px;

    width:82%;
    max-width:310px;
    height:40px;

    transform:translateX(-50%);

    border:0;
    border-radius:5px;

    background:#3a3028;
    color:#fff;

    font-size:13px;
    font-weight:700;
    line-height:40px;

    box-shadow:none;
}