<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

#site {
    padding-top: 86px;
    letter-spacing: -0.03em;
}

@media (max-width: 768px) {
    #site {
        padding-top: 70px;
    }
}

/* 폰트 설정 */
*,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
button {
    font-family: 'notokr',
        "NanumGothic", "나눔고딕",
        'NanumBarunGothic',
        'Apple SD Neo Gothic',
        'Malgun Gothic',
        'Gulim',
        sans-serif;
}

ol,
ul,
li {
    list-style: none;
    list-style-position: inside;
}

p {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.6;
}

a:hover,
a:focus {
    text-decoration: none;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    word-break: keep-all;
}

/* 불필요 항목 삭제 */
.navbar .caret {
    display: none;
}

/* 레이아웃 조정 */
.navbar-inverse+.container {
    padding: 0;
    width: 100%;
}

.board_wrapper,
.search_wrap,
.pagination_wrap {
    visibility: hidden;
}


/* =============== 네비게이션 =============== */

.navbar-inverse {
    background: #fff;
    position: fixed;
    padding: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #ddd
}

.navbar.navbar-trans {
    position: fixed;
    background: transparent;
    border-bottom: none;
}
.navbar.bg-colored {
    background: #fff;
    border-bottom: 1px solid #ddd;
    transition: background ease-in-out .15s;
}

.navbar-inverse .navbar-brand {
    margin: 18px 0 !important;
    padding: 0 !important;
}

.navbar-inverse .navbar-brand,
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
    display: inline-block;
    height: auto;
    padding: 35px 0px;
    font-size: 26px;
    font-weight: 600;
    color: #222;
}

.navbar-inverse .navbar-nav&gt;li#gnb_62,
.navbar-inverse .navbar-nav&gt;li#gnb_67,
.navbar-inverse .navbar-nav&gt;li#gnb_71 {
    display: none;
}

.navbar-inverse .navbar-nav&gt;li&gt;a {
    padding: 33px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0;
}

.navbar.navbar-trans .navbar-nav&gt;li&gt;a {
    color: #fff;
}

.navbar.bg-colored .navbar-nav&gt;li&gt;a {
    color: #333;
}

.navbar-inverse .navbar-nav&gt;li&gt;a:hover,
.navbar-inverse .navbar-nav&gt;li&gt;a:focus {
    color: #4c8cca;
}

.navbar-inverse .navbar-nav .dropdown.open .dropdown-toggle,
.navbar-inverse .navbar-nav .dropdown.open:hover .dropdown-toggle,
.navbar-inverse .navbar-nav .dropdown.open:focus .dropdown-toggle {
    background: none;
    color: #4c8cca;
}

/* .navbar.navbar-trans .navbar-nav&gt;li&gt;a:hover,
.navbar.navbar-trans .navbar-nav&gt;li&gt;a:focus,
.navbar.navbar-trans .navbar-nav .dropdown.open .dropdown-toggle,
.navbar.navbar-trans .navbar-nav .dropdown.open:hover .dropdown-toggle,
.navbar.navbar-trans .navbar-nav .dropdown.open:focus .dropdown-toggle {
    color: #c292c9;
} */


/* PC */
@media (min-width: 768px) {
    .navbar-inverse .navbar-nav .dropdown-menu {
        left: 0;
        right: auto;
        /* transform: translate(-50%, 0); */
        border-radius: 0;
        border: none;
        padding: 20px 0;
        box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.25);
        background: #fff;
    }

    .navbar-inverse .navbar-nav li:hover .dropdown-menu {
        border: none;
        animation-name: fadeIn;
        animation-duration: 0.5s;
        animation-fill-mode: ease;
    }

    @keyframes fadeIn {
        0% {
            transform: translateX(20px);
            opacity: 0;
        }

        100% {
            transform: translateX(-0);
            opacity: 1;
        }
    }

    .navbar-inverse .navbar-nav .dropdown-menu&gt;li&gt;a {
        padding: 10px 25px;
        color: #777;
        font-size: 14px;
        line-height: 1;
        letter-spacing: -0.02em;
    }

    .navbar-inverse .navbar-nav .dropdown-menu&gt;li&gt;a:hover,
    .navbar-inverse .navbar-nav .dropdown-menu&gt;li&gt;a:focus {
        color: #1777c9;
        background: rgba(0, 0, 0, 0);
        font-weight: 500;
    }
}

/* 모바일 */
@media (max-width: 767px) {
    .navbar-inverse .navbar-brand {
        margin: 15px 0 15px 15px !important;
    }

    .navbar-inverse .navbar-header,
    .navbar.bg-colored .navbar-header {
        border-bottom: 1px solid #eee;
    }
    .navbar.navbar-trans .navbar-header {
        border-bottom: none;
    }

    .navbar-inverse .navbar-toggle {
        border: 0;
        padding: 9px 0;
        margin-top: 19px;
        margin-bottom: 19px;
    }

    .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #666;
        transition: ease-in-out .15s all;
        opacity: 1;
        position: relative;
    }

    .navbar.navbar-trans .navbar-toggle .icon-bar,
    .navbar.navbar-trans .navbar-toggle .icon-bar,
    .navbar.navbar-trans .navbar-toggle:hover .icon-bar,
    .navbar.navbar-trans .navbar-toggle:focus .icon-bar {
        background-color: #fff;
    }

    .navbar.bg-colored .navbar-toggle .icon-bar,
    .navbar.bg-colored .navbar-toggle .icon-bar,
    .navbar.bg-colored .navbar-toggle:hover .icon-bar,
    .navbar.bg-colored .navbar-toggle:focus .icon-bar {
        background-color: #222;
    }
    .navbar-inverse .navbar-toggle:hover,
    .navbar-inverse .navbar-toggle:focus {
        background: none;
        border-color: #222;
    }

    .navbar-inverse .navbar-toggle:hover .icon-bar,
    .navbar-inverse .navbar-toggle:focus .icon-bar {
        background-color: #222;
    }

    .navbar-inverse .navbar-collapse,
    .navbar-inverse .navbar-form {
        border-color: transparent;
    }

    .navbar-inverse.open .navbar-toggle&gt;.icon-bar:nth-of-type(1) {
        transform: rotate(45deg);
        top: 6px;
    }

    .navbar-inverse.open .navbar-toggle&gt;.icon-bar:nth-of-type(2) {
        opacity: 0;
    }

    .navbar-inverse.open .navbar-toggle&gt;.icon-bar:nth-of-type(3) {
        transform: rotate(-45deg);
        top: -6px;
    }

    .navbar-inverse .navbar-nav&gt;li&gt;a {
        padding: 8px 20px;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu&gt;li&gt;a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu&gt;li&gt;a:hover {
        color: #9d9d9d;
    }
}

@media (min-width: 767px) and (max-width: 1024px) {
    .navbar-inverse .navbar-nav&gt;li&gt;a {
        padding: 33px 10px;
    }
}



/* =============== 메인 페이지 =============== */

/* 슬라이드 */
#mainCarousel .carousel-inner {
    padding-bottom: 105px;
}
#mainCarousel .carousel-inner .item {
    height: 780px;
    /* height: 600px; */
}
#mainCarousel .carousel-inner .item::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000;
    opacity: 0.6;
}

#mainCarousel .carousel-inner &gt; img {
    position: absolute;
}
#mainCarousel .carousel-inner &gt; img.first {
    top: 10%;
    right: 22%;
}
#mainCarousel .carousel-inner &gt; img.second {
    right: 18%;
    bottom: 8%;
}
#mainCarousel .carousel-inner &gt; img.third {
    bottom: 0%;
    left: 20%;
}

.carousel-control {
    text-shadow: 0px 2px 6px rgba(0, 0, 0, .125);
    transition: ease-in-out .15s all;
    display: none;
}

.carousel-control.left .glyphicon::before {
    content: '\f053';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.carousel-control.right .glyphicon::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.carousel-indicators li,
.carousel-indicators li.active {
    margin: 3px;
    width: 9px;
    height: 9px;
    background-color: rgba(255,255,255,1);
    border: none;
    border-radius: 30px;
    transition: ease-in-out .15s all;
}

.carousel-indicators li.active {
    width: 36px;
    height: 14px;
    margin: 0 3px;
}

.carousel-caption {
    top: 45%;
    padding: 0;
    text-align: left;
    text-shadow: none;
}

.carousel-caption h1 {
    margin: 0 0 45px;
    /* margin: 0 0 38px; */
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3em;
    /* font-size: 69px;
    font-weight: 200;
    letter-spacing: -0.045em; */
    text-transform: uppercase;
}

.carousel-caption h1 span {
    position: relative;
}
.carousel-caption h1 span::after {
    content: '';
    left: 0;
    bottom: -13px;
    width: 230px;
    height: 7px;
    position: absolute;
    background: url(/public/img/main/slide-underline.png);
    background-size: cover;
}

/* .carousel-caption h1 span {
    font-weight: 500;
} */

.carousel-caption p {
    font-size: 23px;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.6em;
    /* font-size: 14px;
    line-height: 1.88;
    letter-spacing: 0; */
}
.carousel-caption p &gt; strong {
    font-weight: 500;
}

@media screen and (min-width: 768px) {
    .carousel-indicators {
        bottom: 15%;
    }
}
@media (max-width: 767px) {
    .carousel-indicators {
        bottom: 30px;
    }
    .carousel-indicators li,
    .carousel-indicators li.active {
        width: 8px;
        height: 8px;
    }
    .carousel-indicators li.active {
        width: 34px;
        height: 13px;
    }
    #mainCarousel .carousel-inner {
        padding-bottom: 0;
    }
    #mainCarousel .carousel-inner .item {
        height: 500px;
    }
    .carousel-control {
        font-size: 14px;
    }
    .carousel-caption {
        right: 10%;
        left: 10%;
    }
    .carousel-caption h1 {
        font-size: 31px;
    }
    .carousel-caption p {
        font-size: 18px;
    }
    #mainCarousel .carousel-inner .item:nth-child(2) .carousel-caption p {
        font-size: 16px;
    }
    #mainCarousel .carousel-inner &gt; img {
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: 40px !important;
        width: 70px;
        position: relative;
        display: inline-block;
        margin-top: -150px;
        margin-bottom: 80px;
        z-index: 100;
    }
    #mainCarousel .carousel-inner &gt; img+img {
        margin-left: 15px;
    }
}

/* 메인 - 컨텐츠 */
/* .main-content {
    padding: 100px 0;
}

.main-sec-tit {
    font-size: 34px;
    font-weight: 500;
    letter-spacing: -0.045em;
    margin: 0 0 25px;
}

.main-sec-tit span {
    display: inline-block;
    font-size: 15px;
    color: #949494;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-left: 4px;
}

.main-business .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background: #000000;
}

.main-business .inner img {
    transition: all ease 0.55s;
}

.main-business .inner:hover img {
    transform: scale(1.15);
    opacity: 0.6;
}

.main-business h3 {
    margin: 0;
    padding: 12px;
    font-size: 17px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    transition: all ease 0.3s;
}

.main-business .inner h3 span {
    display: inline-block;
    position: relative;
}

.main-business .inner h3 span:after {
    content: "\f138";
    position: absolute;
    right: -30px;
    top: 1px;
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    opacity: 0;
    transition: 0.35s ease;
}

.main-business .inner:hover h3 {
    background: #4c8cca;
}

.main-business .inner:hover h3 span:after {
    opacity: 1;
}

@media (max-width: 767px) {

    .main-content,
    #section_7cbbc4 {
        padding: 70px 0 !important;
    }

    .main-sec-tit {
        font-size: 28px;
    }

    .main-business .inner {
        margin-bottom: 30px;
    }

    .main-business .inner h3 span {
        font-size: 16px;
    }

    .main-business&gt;div:last-child .inner {
        margin-bottom: 0;
    }
} */

/* 메인 - 게시판 */
/* #section_7cbbc4 {
    padding: 100px 0;
    background: #e2eaf0;
}

.board_box_list .page-header {
    margin: 0 0 20px;
    padding: 0;
    border-bottom: none;
}

.board_box_list {
    margin: 0 !important;
    width: 66.6%;
}

#section_7cbbc4 .container&gt;.board_box_list:first-child {
    width: 33.3%;
    padding: 0;
}

#section_7cbbc4 .container&gt;.board_box_list:last-child {
    background: #fff;
    padding: 45px 50px;
    min-height: 290px;
    border: 1px solid #cad2d8;
    border-left: none;
    border-top: 2px solid #619ad0;
}

.board_box_list .page-header {
    margin: 0 0 20px;
    padding: 0;
    border-bottom: none;
}

div[class^="board_box_"] .page-header h4 {
    margin: 0;
    font-size: 20px;
    letter-spacing: -0.035em;
}

.board_box_list ul li {
    padding: 9px 0;
}

.board_box_list ul li+li {
    border-top: 1px solid #eee;
}

.board_box_list ul li a {
    font-size: 15px;
    letter-spacing: -0.03em;
}

.board_box_list ul li span {
    font-size: 15px;
    color: #999;
}

.board_box_list ul li a:hover,
.board_box_list ul li a:focus {
    color: #1777c9;
    text-decoration: underline;
}

.main-board-contact .inner {
    display: block;
    position: relative;
    min-height: 290px;
    padding: 50px 45px;
    background: #2a4684;
    color: #fff;
}

.main-board-contact .inner::after {
    content: "";
    width: 74px;
    height: 83px;
    background: url(/public/img/main/contact_icon.png);
    position: absolute;
    right: 50px;
    bottom: 48px;
}

.main-board-contact .inner h4 {
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.06em;
}

.main-board-contact .inner p {
    margin: 0 0 40px;
    letter-spacing: -0.03em;
    font-weight: 300;
}

.main-board-contact .inner a {
    display: inline-block;
    position: absolute;
    bottom: 50px;
    left: 45px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    font-size: 13px;
    color: #fff;
    letter-spacing: -0.03em;
    transition: all 0.25s
}

.main-board-contact .inner a:hover,
.main-board-contact .inner a:focus {
    background: #111;
    color: #fff;
}

@media (max-width: 767px) {
    #section_7cbbc4 .container&gt;.board_box_list {
        width: 100% !important;
    }

    #section_7cbbc4 .container&gt;.board_box_list:last-child {
        margin-top: 30px !important;
        padding: 30px 15px;
        min-height: 200px;
    }

    .main-board-contact .inner {
        padding: 30px 15px;
    }

    .main-board-contact .inner h4 {
        font-size: 23px;
    }

    .main-board-contact .inner a {
        left: 15px;
    }

    .main-board-contact .inner::after {
        right: 30px;
    }
}

@media (min-width: 767px) and (max-width: 1024px){
    #section_7cbbc4 .container&gt;.board_box_list:first-child{
        width: 45%;
    }

    #section_7cbbc4 .container&gt;.board_box_list:last-child{
        width: 55%;
    }
} */

/* 메인 - 컨텐츠(리뉴얼) */
.main-content &gt; section {
    padding: 100px 0;
}
.main-content &gt; section &gt; .container-fluid {
    padding: 0;
}
.main-content .sec-tit {
    margin-bottom: 60px;
    text-align: center;
}
.main-content .sec-tit &gt; h2 {
    position: relative;
    display: inline-block;
    margin: 0;
    padding-left: 7px;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.main-content .sec-tit &gt; h2::before {
    content: '';
    top: 2px;
    left: -27px;
    width: 30px;
    height: 41px;
    position: absolute;
    background: url(/public/img/main/sec-tit-tip.png);
    background-size: cover;
}
.main-content .sec-tit &gt; h2 em {
    font-style: normal;
    color: #c292c9;
}
.main-content .sec-tit &gt; p {
    margin: 18px 0 0;
    font-size: 18px;
    font-weight: 500;
    color: #65656f;
}
/* KPP만의 솔루션 */
/* .main-content section.sec2 {
    padding-top: 60px;
} */
.main-content .box-solution+.box-solution {
    margin-top: 100px;
}
.main-content .box-solution .image,
.main-content .box-solution .detail {
    padding-right: 0;
    padding-left: 0;
}
.main-content .box-solution .detail {
    min-height: 306px;
    background: #f4f4f4;
}
.main-content .box-solution .image &gt; .inner {
    position: relative;
}
.main-content .box-solution .image &gt; .inner::before {
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    background: #000;
    opacity: 0.6;
}
.main-content .box-solution .image h3 {
    top: 50%;
    left: 50%;
    width: 100%;
    position: absolute;
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    transform: translate(-50%,-50%);
}
.main-content .box-solution .image h3 .tit {
    position: relative;
    display: inline-block;
}
.main-content .box-solution .image h3 .tit::after {
    content: '';
    top: 0;
    right: -50px;
    width: 41px;
    height: 27px;
    position: absolute;
    background: url(/public/img/main/icon-chk.png);
    background-size: cover;
}
.main-content .box-solution .image h3 .fw-light {
    font-weight: 200;
}
.main-content .box-solution .detail  &gt; .inner {
    top: 50%;
    position: absolute;
    display: inline-block;
    padding: 30px;
    transform: translateY(-50%);
}
.main-content .box-solution:nth-child(even) .detail  &gt; .inner {
    right: 0;
}
.main-content .box-solution .detail h4 {
    position: relative;
    margin: 0 0 40px;
    font-size: 21px;
    font-weight: 600;
    color: #2e2e2e;
    line-height: 1.3em;
}
.main-content .box-solution .detail h4::after {
    content: '';
    left: 2px;
    bottom: -20px;
    width: 23px;
    height: 3px;
    position: absolute;
    background: #eeafaf;
}
.main-content .box-solution .detail p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #65656f;
    line-height: 1.65em;
}
.main-content .box-solution .detail p+p {
    margin-top: 20px;
}
.main-content .box-solution .detail p &gt; em {
    font-weight: 500;
    font-style: normal;
    color: #c292c9;
}
/* 이벤트 배너 */
.main-content section.sec2 {
    position: relative;
    padding: 120px 0;
    text-align: center;
    background: url(/public/img/main/sec2-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.main-content section.sec2::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000;
    opacity: 0.7;
}
.main-content section.sec2 .text {
    position: relative;
    color: #fff;
}
.main-content section.sec2 .text &gt; h2 {
    position: relative;
    display: inline-block;
    margin: 0;
    font-size: 46px;
    font-weight: 600;
    word-spacing: -0.05em;
}
.main-content section.sec2 .text &gt; h2::after {
    content: '';
    top: 3px;
    right: -54px;
    width: 42px;
    height: 42px;
    position: absolute;
    background: url(/public/img/main/icon-gift-box.png);
    background-size: cover;
}
.main-content section.sec2 .text h2+span {
    position: relative;
    margin-left: 112px;
    font-size: 41px;
    font-weight: 600;
    color: #f0929d;
}
.main-content section.sec2 .text &gt; h2+span::before {
    content: '+';
    top: 15px;
    left: -42px;
    width: 32px;
    height: 32px;
    position: absolute;
    font-size: 39px;
    font-weight: 500;
    color: #fff;
    line-height: 0.8em;
    background: #ff6c7d;
    border-radius: 30px;
}
.main-content section.sec2 .text &gt; p {
    margin: 12px 0 0;
    font-size: 24px;
}
.main-content section.sec2 .text &gt; a.btn {
    margin-top: 28px;
    padding: 6px 50px;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    background: #644ab2;
    border-radius: 50px;
}
.main-content section.sec2 .text &gt; a.btn:hover {
    background: #583daa;
}
/* 팔레트 진행 프로세스 */
.main-content section.sec3 {
    position: relative;
    padding-top: 150px;
}
.main-content section.sec3::before {
    content: '';
    top: 449px;
    left: 0;
    width: 100%;
    height: 5px;
    position: absolute;
    background: #c292c9;
}
.main-content section.sec3 .sec-tit {
    margin-bottom: 100px;
}
.main-content ol.list-process {
    margin: 0 -30px;
    padding: 0 115px;
    /* padding: 0 30px; */
}
.main-content ol.list-process &gt; li {
    float: left;
    width: 20%;
    padding: 0 30px;
    text-align: center;
}
.main-content ol.list-process &gt; li .num {
    width: 62px;
    height: 55px;
    /* width: 65px;
    height: 58px; */
    position: relative;
    margin: 20px auto;
    padding: 5px;
    font-size: 30px;
    /* font-size: 33px; */
    font-weight: 600;
    color: #fff;
    background: #c292c9;
    border-radius: 100%;
}
.main-content ol.list-process &gt; li .num::after {
    content: '';
    top: 16px;
    right: -5px;
    width: 23px;
    height: 25px;
    /* width: 26px;
    height: 28px; */
    position: absolute;
    background: #c292c9;
    transform: rotate(45deg);
    border-radius: 2px;
    z-index: -1;
}
.main-content ol.list-process &gt; li span {
    font-size: 15px;
    /* font-size: 16px; */
    font-weight: 600;
    color: #5f5f5f;
    line-height: 1.6em;
}
.main-content .main-process {
    margin: 55px 80px 0;
    /* margin: 60px -7px 0; */
}
.main-content .main-process .col {
    float: left;
    width: 20%;
    margin-top: 15px;
    padding: 0 3px;
    /* padding: 0 7px; */
}
.main-content .main-process .col .inner {
    border: 1px solid #ddd;
}
.main-content .main-process ol.list-num {
    min-height: 185px;
    /* min-height: 200px; */
    margin-bottom: 0;
    padding: 15px 10px;
    /* padding: 20px 15px; */
}
.main-content .main-process ol.list-num &gt; li {
    position: relative;
    padding-left: 18px;
    font-size: 12px;
    /* font-size: 13px; */
    font-weight: 600;
    color: #080b0c;
}
.main-content .main-process ol.list-num &gt; li+li {
    margin-top: 4px;
}
.main-content .main-process ol.list-num &gt; li .num {
    top: 2px;
    left: 0;
    width: 13px;
    height: 13px;
    position: absolute;
    padding: 1px 0;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 1em;
    background: #c292c9;
    border-radius: 30px;
}
.main-content .main-process ul.list-dash {
    margin-top: 5px;
}
.main-content .main-process ul.list-dash &gt; li {
    position: relative;
    font-weight: 400;
    color: #696984;
}
.main-content .main-process ul.list-dash &gt; li::before {
    content: '';
    top: 8px;
    left: -13px;
    width: 3px;
    height: 1px;
    position: absolute;
    background: #696984;
}
.main-content .main-process .fw-light {
    font-weight: 500;
    color: #696984;
}
/* 지도 */
.main-content section.sec4 {
    padding-bottom: 0;
}
/* .main-content section.sec4 img {
    width: 100%;
} */

@media (max-width: 1199px) { /* Small·Medium·Large devices */

}
@media (max-width: 767px) { /* Small devices (col-xs-*) 모바일 */
    .main-content {
        overflow-x: hidden;
    }
    .main-content &gt; section {
        padding: 50px 0;
    }
    .main-content .sec-tit {
        margin-bottom: 40px;
    }
    .main-content .sec-tit &gt; h2 {
        font-size: 33px;
    }
    .main-content .sec-tit &gt; h2::before {
        top: 2px;
        left: -22px;
        width: 25px;
        height: 34px;
    }
    .main-content .sec-tit &gt; p {
        font-size: 17px;
    }
    .main-content .box-solution+.box-solution {
        margin-top: 50px;
    }
    .main-content .box-solution .image h3 {
        font-size: 30px;
    }
    .main-content .box-solution .image h3 .tit::after {
        top: 2px;
        right: -46px;
    }
    .main-content .box-solution .detail {
        min-height: auto;
    }
    .main-content .box-solution .detail &gt; .inner {
        padding: 30px 15px;
        position: static;
        transform: none;
    }
    .main-content .box-solution .detail h4 {
        font-size: 19px;
    }
    .main-content .box-solution .detail p {
        font-size: 15px;
    }
    .main-content section.sec2 {
        padding: 100px 0 60px;
    }
    .main-content section.sec2 .text &gt; h2 {
        font-size: 40px;
    }
    .main-content section.sec2 .text &gt; h2::after {
        top: -52px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .main-content section.sec2 .text h2+span {
        display: block;
        margin-left: 40px;
        font-size: 35px;
    }
    .main-content section.sec2 .text &gt; h2+span::before {
        top: 11px;
        left: 15px;
        width: 30px;
        height: 30px;
        font-size: 34px;
    }
    .main-content section.sec2 .text &gt; p {
        font-size: 20px;
    }
    .main-content section.sec2 .text &gt; a.btn {
        font-size: 26px;
    }
    .main-content section.sec3 {
        padding-top: 80px;
    }
    .main-content section.sec3::before {
        display: none;
    }
    .main-content section.sec3 .sec-tit {
        margin-bottom: 50px;
    }
    .main-content ol.list-process {
        margin: 0 -15px;
        padding: 0;
    }
    .main-content ol.list-process &gt; li {
        width: 33.3%;
        padding: 0 15px;
    }
    .main-content .main-process {
        margin: 30px -3px 0;
    }
    .main-content .main-process .col {
        width: 50%;
    }
    .main-content .main-process .col:nth-child(odd) {
        padding-right: 7px;
    }
    .main-content .main-process .col:nth-child(even) {
        padding-left: 7px;
    }
    .main-content ol.list-process &gt; li .num {
        width: 60px;
        height: 53px;
        margin: 15px auto;
        font-size: 28px;
    }
    .main-content ol.list-process &gt; li .num::after {
        top: 15px;
        height: 23px;
    }
    .main-content ol.list-process &gt; li span {
        font-size: 13px;
    }
    .main-content .main-process ol.list-num {
        min-height: 155px;
        padding: 15px 5px;
    }
    .main-content section.sec4 iframe {
        height: 350px;
    }
}
@media (min-width: 768px) { /* Medium·Large·Extra large devices */

}
@media (min-width: 768px) and (max-width: 1199px) { /* Medium·Large devices */

}
@media (min-width: 768px) and (max-width: 991px) { /* Medium devices (col-sm-*) */

}
@media (min-width: 992px) and (max-width: 1199px) { /* Large devices (col-md-*) */

}
@media (min-width: 1200px) { /* Extra large devices (col-lg-*) */
    .main-content .box-solution .image {
        width: 30%;
    }
    .main-content .box-solution:nth-child(odd) .image {
        margin-left: 20%;
    }
    .main-content .box-solution:nth-child(even) .image {
        margin-right: 20%;
    }
    .main-content .box-solution .detail {
        margin-top: 20px;
    }
    .main-content .box-solution .detail &gt; .inner {
        width: 65%;
    }
}




/* =============== 푸터 =============== */
.footer-wrap {
    padding: 70px 0;
    background: #fff;
    color: #65656f;
    font-weight: 500;
    font-size: 13px;
}

/* .footer-wrap .company-name {
    margin: 0 0 10px;
} */

.footer-wrap h5 {
    margin: 0 0 20px;
    font-size: 16px;
}

.footer-wrap address,
.footer-wrap ul {
    margin: 0;
}

/* .footer-wrap ul span {
    display: inline-block;
    margin-right: 10px;
} */

.footer-wrap .logo {
    padding-top: 40px;
    text-align: center;
}
.footer-wrap .logo img {
    height: 60px;
}
.footer-wrap .logo &gt; .copy {
    margin: 10px 0 0;
    display: inline-block;
    font-size: 10px;
    color: #65656f;
    transform: scale(0.8);
}

.footer-wrap .info ul &gt; li.tel,
.footer-wrap .info ul &gt; li.email {
    color: #c292c9;
}
.footer-wrap .info ul &gt; li+li {
    margin-top: 4px;
}

.footer-wrap a.btn {
    margin-top: 22px;
    padding: 8px 52px;
    font-size: 23px;
    font-weight: 600;
    color: #c292c9;
    background: #fff;
    border: 2px solid #b278ba;
    border-radius: 50px;
    box-shadow: 1px 1px 10px rgba(217,134,207,0.3);
}
.footer-wrap a.btn:hover {
    color: #fff;
    background: #b278ba;
}

.footer-wrap .pull-right {
    padding-top: 22px;
    text-align: center;
}
.footer-wrap .pull-right ul {
    margin-top: 8px;
}
.footer-wrap .pull-right ul &gt; li {
    float: left;
}
.footer-wrap .pull-right ul &gt; li+li {
    padding-left: 12px;
}
.footer-wrap .pull-right &gt; a.kakao {
    display: inline-block;
}
.footer-wrap .pull-right &gt; a.privacy {
    display: inline-block;
    padding-top: 15px;
    font-size: 11px;
    color: #65656f;
}
.footer-wrap .pull-right &gt; a.privacy:hover {
    color: #c292c9;
}

@media (max-width: 767px) {
    .footer-wrap {
        padding: 40px 0;
        font-size: 12px;
    }
    .footer-wrap .logo {
        padding: 20px 0;
    }
    .footer-wrap a.btn {
        margin-top: 18px;
        padding: 6px 48px;
        font-size: 21px;
    }
    .footer-wrap .pull-right {
        float: unset !important;
        padding-top: 25px;
    }
    .footer-wrap .pull-right ul {
        width: calc(100% - 80px);
        display: inline-block;
        margin-top: 14px;
    }
    .footer-wrap .pull-right ul &gt; li {
        float: unset;
        display: inline-block;
    }
    .footer-wrap .pull-right ul &gt; li img {
        width: 45px;
    }
    .footer-wrap .pull-right &gt; a.kakao {
        float: left;
    }
    .footer-wrap .pull-right &gt; a.kakao img {
        width: 70px;
    }
    .footer-wrap .pull-right &gt; a.privacy {
        padding-top: 10px;
    }
    /* .footer-wrap .company-name{
        margin: 15px 0;
    }
    .footer-wrap .copy {
        margin: 15px 0;
        text-align: left;
    } */
}


/* =============== 게시판 =============== */

.btn.btn-primary {
    background-color: #619ad0;
    border: 1px solid #619ad0;
    font-size: 15px;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: #3677b4;
    border: 1px solid #3677b4;
}

.badge {
    border-radius: 2px;
    font-weight: 500;
}

.checkbox a {
    color: #3677b4;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .subPage[id^="bbs"] .board_wrapper {
        margin-bottom: 0;
        margin-top: 0;
    }

    .table.table_default {
        margin-bottom: 0;
    }

    .table.table_default&gt;colgroup {
        display: none;
    }

}

@media (min-width: 320px) and (max-width: 767px) {
    .search_wrap {
        margin-bottom: 0;
    }

    .search_wrap #search_kind {
        width: 28%;
        float: left;
    }

    #search_query {
        width: 70% !important;
        float: right;
    }

    #board_write_form fieldset&gt;.text-center {
        display: flex;
    }

    #board_write_form fieldset&gt;.text-center .btn.btn-lg {
        width: 100%;
        padding: 15px;
    }

    .board_wrapper .table.board_write_table .input-group.input-group-big,
    .board_wrapper .table.board_write_table .form-control.form-control-big {
        width: 100%;
    }
}


/* =============== 주문폼 =============== */
.board_wrapper .table.board_write_table tbody tr th {
    font-size: 15px;
}

@media (max-width: 767px) {
    .board_wrapper {
        margin-top: 0;
    }
}

@media (min-width: 320px) and (max-width: 767px) {
    #form_form01 fieldset&gt;.text-center {
        display: flex;
    }

    #form_form01 fieldset&gt;.text-center .btn.btn-lg {
        width: 100%;
        padding: 15px;
    }
}


/* =============== 로그인 =============== */

.member_wrapper {
    margin: 0 auto;
    max-width: 1140px;
}

@media (max-width: 768px) {
    .member_wrapper {
        padding: 70px 15px;
    }

    .member_wrapper .login_extra ul li+li::before {
        margin: 0 10px;
    }
}


/* =============== 서브페이지 =============== */
.sub-top {
    position: relative;
    height: 250px;
    background: url(/public/img/sub/sub-top-01.jpg) no-repeat center/ cover;
}

.sub-top .tit-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding-top: 13px;
}

.sub-top .sub-top-tit {
    margin: 0 0 17px;
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.03em;
}

.sub-top .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    letter-spacing: 0;
    opacity: 0.6;
}

.sub-top .breadcrumb li {
    font-size: 14px;
    color: #fff;
}

.sub-top .breadcrumb li.active {
    color: #fff;
}

.sub-top .breadcrumb li+li:before {
    content: '\f0da';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    padding: 0 10px;
}

.sub-content {
    padding: 100px 0;
}

.sub-content section {
    margin-bottom: 100px;
}

.sub-content section:last-child {
    margin-bottom: 0;
}

.sub-con-tit {
    margin: 0 0 90px;
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    color: #111;
}

.sub-con-tit::after {
    content: "";
    width: 45px;
    height: 3px;
    background: #619ad0;
    display: block;
    margin: 25px auto 0;
}

.sub-sec-tit {
    position: relative;
    margin: 0px 0 25px;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    color: #222
}

/* .sub-sec-tit:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 28px;
    background: #619ad0;
} */

@media (max-width: 767px) {
    .sub-top {
        height: 170px;
        background-position-x: 63%;
    }

    .sub-top .tit-wrap {
        width: 100%;
    }

    .sub-top .sub-top-tit {
        margin: 0 0 10px;
        font-size: 29px;
    }

    .sub-top .breadcrumb li {
        font-size: 13px;
    }

    .sub-content {
        padding: 70px 0;
    }

    .sub-con-tit {
        margin: 0 0 50px;
        font-size: 25px;
    }

    .sub-sec-tit {
        font-size: 20px;
    }

    .sub-content section {
        margin-bottom: 50px;
    }
}

/* about */
.greeting-wrap p {
    color: #666;
}

.greeting-wrap p:last-child {
    margin-bottom: 0;
}

#about01 .list-default {
    margin-top: 30px;
}

.list-default li {
    position: relative;
    padding: 3px 0 3px 13px;
    font-size: 16px;
    line-height: 1.6;
}

.list-default li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 4px;
    height: 4px;
    background: #bbb;
}

.list-default li span {
    display: inline-block;
    margin-right: 5px;
    font-weight: 500;
}

.greeting-wrap table {
    width: 100%;
    margin-top: 40px;
}

.greeting-wrap table tr {
    border-bottom: 1px solid #eee;
}

.greeting-wrap table tr:last-child {
    border-bottom: none;
}

.greeting-wrap table tr th,
.greeting-wrap table tr td {
    padding: 10px 15px;
    font-size: 15px;
}

.greeting-wrap table tr th span {
    position: relative;
    padding-left: 15px;
    font-weight: 600;
}

.greeting-wrap table tbody tr th span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background: #1777c9;
    border-radius: 50%;
}

.greeting-wrap table a {
    text-decoration: underline;
}

#about01 tr th {
    padding: 8px 15px 8px 0;
}

.table-history {
    width: 100%;
    border-top: 2px solid #333;
    border-bottom: 1px solid #ddd;
}

.table-history tr th {
    padding: 15px;
    color: #619ad0;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    text-align: center;
    font-size: 40px;
    letter-spacing: -0.035em;
}

.table-history tr td {
    padding: 20px;
    background-color: #fff;
    border-top: 1px solid #e8e8e8;
    font-size: 15px;
    color: #666;
}

.table-history tr td .month {
    display: inline-block;
    margin-right: 5px;
    font-weight: 600;
}
#about01 .table-career{
    width: 100%;
    border-top: 2px solid #333;
    border-bottom: 1px solid #ddd;
}
#about01 .table-career tr{
    border-bottom: 1px solid #ddd;
}
#about01 .table-career tr th{
    font-size: 24px;
    padding: 15px 80px;
    text-align: center;
    color: #619ad0;
}
#about01 .table-career tr td{
    font-size: 18px;
    font-weight: 500;
    padding: 20px;
}

.location-table {
    margin: 20px 0 0;
    width: 100%;
    border-top: 2px solid #333;
}

.location-table tr th,
.location-table tr td {
    padding: 18px 15px;
    border-bottom: 1px solid #ddd !important;
    letter-spacing: -0.03em;
    word-break: keep-all;
    vertical-align: middle !important;
    font-size: 15px;
}

.location-table tr th {
    color: #333;
    background: #f5f5f5;
    text-align: center;
    font-weight: 600;
}

#daumRoughmapContainer1583485059215 {
    width: 100% !important;
}

.benefit-wrap&gt;div::after {
    content: "\f141";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    position: absolute;
    right: -10px;
    top: 100px;
    color: #ccc;
}

.benefit-wrap&gt;div:last-child::after {
    content: none;
}

.benefit-wrap .circle .inner {
    display: block;
    position: relative;
    line-height: 220px;
    margin: 0 auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    text-align: center;
    font-size: 55px;
    background: #619ad0;
    color: #fff;
}

.benefit-wrap&gt;div:nth-child(2) .inner {
    background: #2a4684;
}

.benefit-wrap&gt;div:nth-child(3) .inner {
    background: #1777c9;
}

/* .benefit-wrap .circle .inner:before {
    content: "";
    width: 110%;
    height: 110%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border: 1px dashed #619ad0;
    border-radius: 50%;
}

.benefit-wrap &gt; div:nth-child(2) .inner:before {
    border-color: #2a4684;
}
.benefit-wrap &gt; div:nth-child(3) .inner:before {
    border-color: #1777c9;
} */

.benefit-wrap dl {
    max-width: 190px;
    margin: 0 auto;
}

.benefit-wrap dl dt {
    position: relative;
    margin: 40px 0 20px;
    font-size: 22px;
    text-align: center;
    letter-spacing: -0.05em;
}

.benefit-wrap dl dd {
    text-align: left;
    margin-bottom: 10px;
    color: #666;
}

.benefit-wrap dl dd&gt;span {
    display: inline-block;
    position: relative;
    padding-left: 10px;
}

.benefit-wrap dl dd&gt;span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 3px;
    height: 3px;
    background: #666;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .greeting-wrap .desc {
        padding-top: 30px;
    }

    .greeting-wrap table colgroup col:nth-child(1) {
        width: 30%;
    }

    .greeting-wrap table colgroup col:nth-child(2) {
        width: 70%;
    }

    .table-history tr th,
    .table-history tr td {
        display: block;
    }

    .table-history tr th {
        padding: 8px 15px;
        font-size: 30px;
    }

    .table-history tr td {
        position: relative;
        padding: 15px 15px 15px 60px;
    }

    .table-history tr td .month {
        position: absolute;
        top: 15px;
        left: 15px;
    }

    .benefit-wrap&gt;div::after {
        display: none;
    }

    .benefit-wrap .circle .inner {
        width: 150px;
        height: 150px;
        line-height: 150px;
        font-size: 50px;
    }

    .benefit-wrap dl {
        margin-bottom: 50px;
    }

    .benefit-wrap dl dt {
        margin: 20px 0;
    }

    .benefit-wrap dl dd {
        text-align: center;
    }
}

/* business */

.business-part {
    margin: 0;
}

.business-part&gt;div {
    padding: 0;
}

.business-part h5 {
    font-size: 18px;
}

.business-part .bus-img {
    /* margin-bottom: 50px; */
    margin-top: 50px;
}

.business-part .inner {
    position: relative;
    min-height: 210px;
    padding: 20px 33px 5px;
    text-align: center;
    border-right: 1px dashed #ddd;
    margin-right: -1px;
}

#business03 .business-part .inner {
    min-height: 160px;
}

.business-part .inner i {
    background: #619ad0;
    color: #fff;
    font-size: 30px;
    margin-bottom: 15px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 100px;
}

.business-part&gt;div:nth-child(5) .inner {
    border-right: none;
}

.business-part&gt;div:nth-child(3) .inner i {
    background: #2a4684;
}

.business-part&gt;div:nth-child(4) .inner i {
    background: #3787ce;
}

.business-part&gt;div:nth-child(5) .inner i {
    background: #a8aaad;
}

.business-part .inner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

[id^="business"] .sub-sec-tit {
    text-align: center;
    margin: 0 0 55px;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: #333;
}

@media (max-width: 767px) {
    .business-part .inner {
        min-height: 240px;
        padding: 0 15px 30px;
        border-right: none;
    }

    .business-part .bus-img {
        margin-top: 0;
    }
}

/* =============== 팝업 =============== */
#main_popup_19 .main_popup_contents{
    padding: 0;
}

@media (max-width: 767px){
    #main_popup_19 .main_popup_contents img{
        width: 100%;
        height: auto;
    }
}</pre></body></html>