@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;
    }
}
