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

/* 여기서 부터 반응형 */
@media all and (min-width: 1280px) and (max-width: 1439px) {
    /*스타일입력*/
    body {
        font-size: 14px;
    }

    .prdt-card {
        width: 300px;
    }

}

@media all and (max-width: 1279px) {
    .container {
        max-width: 92%;
        margin: 0 auto;
    }

    /*스타일입력*/
    body {
        font-size: 14px;
    }

    .banner-content h1 {
        color: var(--white);
        font-size: 3em;
        font-weight: 700;
        margin-bottom: 32px;
        opacity: 0.85;
    }

    .banner-content h3 {
        font-size: 1.7em;
        font-family: "Pretendard", sans-serif;
        font-weight: 300;
        line-height: 1.5;
        color: var(--white);
        opacity: 0.85;
    }

    .lot-area h1 {
        font-size: 3em;
        margin-bottom: 16px;
    }

    .lot-area p {
        font-size: 1.2em;
        font-weight: 400;
    }

    .newsletter-area .main-title h1 {
        color: #fff;
        font-size: 3em;
        margin-bottom: 30px;
    }

    .newsletter-area .main-title p {
        color: #fff;
        font-size: 1.7em;
        font-weight: 400;
        line-height: 1.5;
    }

    /*.product-area .prdt-card:last-child {*/
    /*    display: none;*/
    /*}*/

    .product-area .card_wrap .prdt-card {
        width: 32%;
    }

    .prdt-card {
        width: 300px;
    }

    .number-title {
        min-width: 360px;
    }
}

@media all and (max-width: 1030px){
    .product .card_wrap .prdt-card {
        width: 32%;
    }

    .product .card_wrap {
        column-gap: 0;
        justify-content: space-between;
    }
}

@media all and (max-width: 992px) {
    .header_area .navbar {
        padding: 13px 0;
    }

    .header_area .navbar-brand {
        display: block;
        width: 100px;
        height: 24px;
        background: url("../img/mobile_white.png") center no-repeat;
    }

    .header_area.navbar_fixed .navbar-brand, .header_area:hover .navbar-brand {
        background: url("../img/mobile_bk.png") center no-repeat;
    }

    .header_area .header-btn {
        width: 100px;
        font-size: 1em;
        height: 34px;
        line-height: 34px;
    }

    /**/
    .menu_btn {
        display: block;
        margin-left: 30px;
        width: 24px;
        height: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        position: relative;
        cursor: pointer;
        background: url("../img/menu_ico_white.png") center no-repeat;
    }

    .menu_btn.is--active {
        background: url("../img/close_ico.png") center no-repeat;
    }

    .header_area.navbar_fixed .menu_btn:not(.is--active), .header_area:hover .menu_btn:not(.is--active) {
        background: url("../img/menu_ico_black.png") center no-repeat;
    }

    /*햄버거 메뉴*/
    .menu_btn .line {
        position: absolute;
        left: 0;
        width: 14px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
    }

    .menu_btn .line:first-child {
        top: 0;
    }

    .menu_btn .line:nth-child(2) {
        top: 13px;
    }

    .menu_btn .line:last-child {
        bottom: 0;
    }

    .menu_btn.is--active .line:first-child {
        -webkit-transform: translateY(13px) rotate(-45deg);
        transform: translateY(13px) rotate(-45deg);
    }

    .menu_btn.is--active .line:nth-child(2) {
        opacity: 0;
    }

    .menu_btn.is--active .line:last-child {
        -webkit-transform: translateY(-14px) rotate(45deg);
        transform: translateY(-14px) rotate(45deg);
    }

    /*메뉴 패널 안쪽부분*/
    .menu-panel &gt; .menu-list {
        width: 100%;
        z-index: 1;
        height: auto;
        text-align: left;
    }

    .menu-panel &gt; .menu-list &gt; li {
        clear: both;
        width: 100%;
        border-bottom: 1px solid #dcdcdc;
    }

    .menu-panel &gt; .menu-list &gt; .menu-label &gt; .menu-list__text {
        font-size: 1em;
        padding-left: 16px;
        color: var(--primary);
        font-weight: 700;
        width: calc(100% - 60px);
        display: inline-block;
        height: 52px;
        line-height: 52px;
    }


    /*1차 메뉴의 - + 부분*/
    .menu-panel ul li .menu-list__arrow {
        height: 24px;
        width: 24px;
        float: right;
        cursor: pointer;
        margin: 14px 16px 14px 0;
        background: url("../img/close_arrow_ico.png") center no-repeat;
    }

    .menu-panel .sub-menu {
        display: none;
        width: 100%;
    }

    .menu-panel .sub-menu:after {
        content: '';
        display: block;
        clear: both;
    }

    .menu-panel .sub-menu li {
        float: left;
        height: 40px;
        width: 100%;
    }


    .menu-panel .sub-menu li a {
        display: block;
        width: 100%;
        height: 100%;
        line-height: 40px;
        vertical-align: middle;
        padding-left: 36px;
        font-size: 1em;
        color: var(--content);
    }

    .menu-panel {
        left: -100%;
    }

    .menu-panel.is--active {
        left: 0;
        overflow: scroll;
    }

    /* active */
    .menu-list &gt; .menu-label.is--open .menu-list__text {
        color: var(--primary);
    }

    .menu-list &gt; .menu-label.is--open .sub-menu {
        display: block;
        background: #f8f8f8;
    }

    .menu-list &gt; .menu-label.is--open .menu-list__arrow {
        background: url("../img/open_arrow_ico.png") center no-repeat;
    }

    /**/
    .header_area:hover {
        background: var(--white);
    }

    /* 네비게이션 영역 */
    .header_area .nav_wrap {
        display: none;
    }

    .header-inquiry {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* LOT */
    .lot-area {
        flex-direction: column;
    }

    /**/
    .business-area, .service-area, .product-area, .newsletter-area {
        height: auto;
    }

    .tab_container {
        padding-bottom: 60px;
    }

    .tabs .tab-header {
        width: 144px;
    }

    .tabs .tab-indicator {
        left: 141px;
    }

    .product-area .card_wrap {
        gap: 10px;
    }

    .business-area .card_wrap {
        flex-direction: column;
        padding-bottom: 80px;
    }

    /**/
    .service-item-wrap {
        flex-direction: column;
    }

    /**/
    .newsletter-area {
        padding-bottom: 120px;
    }

    /**/
    .footer_area .footer_inner {
        gap: 80px;
    }

    /* 2024114 추가 subpage */
    .sub-page-contents .company_info_bg, .business-process-bg, .sub-page-contents .org_info_bg, .direction_map, .mold_injection .mold_bg, .mold_injection .injection_bg, .contact_info_bg, .data_analytics_bg, .product_cond_bg {
        height: 600px;
    }

    .contents_img_wrap {
        height: 480px;
    }

    .analy_item, .solution_item {
        flex-direction: column;
    }

    .analy_contents {
        text-align: center;
    }

}

@media all and (max-width: 940px) {
    .product-tab .child-tab .tablinks {

    }
}

@media all and (max-width: 930px) {
    .prdt-card {
        width: 300px;
        height: 420px;
    }

    .product .card_wrap .prdt-card {

    }

    .prdt-card img {
        height: 335px;
    }

    .number-title {
        min-width: 320px;
    }

    .product-area .prdt-card:last-child {
        display: none;
    }

    .product-area .card_wrap .prdt-card {
        width: 47%;
    }
}

@media all and (max-width: 830px) {
    .prdt-card {
        width: 260px;
        height: 400px;
    }

    .prdt-card img {
        height: 315px;
    }

    .number-title {
        min-width: 100%;
    }

    .lot-manage-wrap .lot-manage-row {
        flex-direction: column;
        gap: 8px
    }

    .request_ico_wrap {
        flex-wrap: wrap;
        gap: 14px;
    }

    .modal-content {
        width: 86%;
    }
}

@media all and (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .footer_area {
        height: 100%;
    }

    .footer_area .footer_inner {
        flex-direction: column;
        gap: 60px;
    }

    .banner-content h1 {
        color: var(--white);
        font-size: 1.85em;
        font-weight: 700;
        opacity: 0.85;
    }

    .banner-content h3 {
        font-size: 1.14em;
        font-family: "Pretendard", sans-serif;
        font-weight: 300;
        line-height: 1.5;
        color: var(--white);
        opacity: 0.85;
    }

    .newsletter-area .main-title h1 {
        color: #fff;
        font-size: 1.85em;
        margin-bottom: 30px;
    }

    .newsletter-area .main-title p {
        color: #fff;
        font-size: 1.14em;
        font-weight: 400;
        line-height: 1.5;
    }

    .lot-area {
        height: 780px;
    }

    .lot-area h1 {
        font-size: 1.85em;
        margin-bottom: 16px;
    }

    .lot-area p {
        font-size: 1em;
        font-weight: 400;
    }

    .service-area p {
        font-size: 1em;
    }

    .service-area .service-item {
        padding: 32px 0;
    }

    .service-area h3 {
        color: var(--black);
        font-weight: 700;
        font-size: 1.28em;
    }

    .service-area .feature-icon {
        margin-bottom: 24px;
    }

    .service-area .feature-icon img {
        width: 70px;
    }

    .contact-btn {
        width: 168px;
        height: 48px;
        display: inline-block;
        font-size: 1em;
        font-weight: 600;
        color: #fff;
        background: rgba(106, 106, 106, 0.6);
        border: 1px solid #fff;
        border-radius: 70px;
        text-align: left;
        padding-left: 30px;
        position: relative;
        line-height: 48px;
        vertical-align: middle;
        transition-duration: 0.5s;
    }

    .arrow_ico {
        width: 18px;
        height: 18px;
        display: inline-block;
        background: url("../img/arrow_ico.png") center center no-repeat;
        transition-duration: 0.3s;
    }

    .contact-btn .arrow_ico {
        position: absolute;
        right: 30px;
        top: 50%;
        margin-top: -9px;
    }

    .business-title h1, .service-area h1, .product-area h1 {
        font-size: 1.85em;
    }

    .card-img-top {
        height: 180px;
        object-fit: cover;
    }

    .card-title {
        margin-bottom: 8px;
    }

    .card-body {
        height: 120px;
        padding: 20px;
    }

    .business-area .card .card-title {
        font-size: 1.28em;
    }

    .business-area .card .card-text {
        font-size: 1em;
    }

    .business-more-btn {
        font-size: 1em;
        margin-top: 22px;
    }

    /**/
    .product-area .card_wrap .prdt-card:nth-child(4) {
        display: none;
    }

    .lot-left .lot-text-area, .lot-right .lot-text-area {
        margin-top: 60px;
        margin-left: 20px;
    }

    .lot-left .lot-btn-area, .lot-right .lot-btn-area {
        margin-left: 20px;
        margin-bottom: 60px;
    }

    .tabs .tab-header {
        width: 126px;
    }

    .tabs .tab-indicator {
        left: 123px;
    }

    /* 2024114 추가 subpage */
    .sub-page-contents .company_info_bg, .business-process-bg, .sub-page-contents .org_info_bg, .direction_map, .mold_injection .mold_bg, .mold_injection .injection_bg, .contact_info_bg, .data_analytics_bg, .product_cond_bg {
        height: 500px;
    }

    .contents .company_iso {
        flex-direction: column;
        gap: 60px;
        justify-content: center;
        align-items: center;
    }

    .company_iso:last-child {
        flex-direction: column-reverse;
    }

    .company_iso:last-child .contents_text_wrap {
        padding-right: 0;
    }

    .contents_img_wrap {
        width: auto;
        height: 380px;
    }

    .contents_text_wrap {
        width: auto;
        padding: 0;
        text-align: center;
    }

    .org_chart {
        display: none;
    }

    .org_chart_mobile {
        display: block;
        margin-top: 80px;
    }

    .facility_table {
        margin-top: 80px;
    }

    .send_btn_wrap .send_btn {
        font-weight: 600;
        font-size: 1.3em;
        color: var(--white);
        background-color: var(--primary);
        width: 320px;
        height: 60px;
        cursor: pointer;
        border-radius: 99px;
        transition: 0.3s;
    }

    .product .card_wrap .prdt-card {
        width: 46%;
        height: 360px;
    }

    .product .card_wrap .prdt-card img {
        height: 275px;
    }
}

@media all and (max-width: 700px) {
    .tab_container {
        overflow-x: scroll;
    }

    .tabs {
        border: 0;
        box-shadow: none;
    }

    .tabs .tab-header {
        width: 134px;
    }

    .tabs .tab-indicator {
        left: 131px;
    }

    .prdt-card {
        width: 220px;
        height: 360px;
    }

    .prdt-card img {
        height: 275px;
    }

    .request_ico_wrap li {
        width: 30%;
    }

    .request_ico_wrap.request_mobile {
        display: flex;
        flex-wrap: wrap;
    }

    .request_ico_wrap:not(.request_mobile) {
        display: none;
    }

    .request_process {
        margin-top: 40px;
        margin-bottom: 80px;
    }

    .analy_item_ico, .solution_ico {
        min-width: 70px;
        height: 70px;
        background-size: cover;
    }

    .analy_wrap {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(calc(100% - 24px), auto));
        column-gap: 0;
        row-gap: 10px;
        margin-bottom: 80px;
    }
}


@media all and (max-width: 600px) {
    .tab_container {
        overflow-x: scroll;
    }

    .tabs {
        border: 0;
        box-shadow: none;
    }

    .tabs .tab-header {
        width: 134px;
    }

    .tabs .tab-indicator {
        left: 131px;
    }

    .prdt-card {
        width: 210px;
        height: 220px;
    }

    .product .card_wrap .prdt-card {
        /*width: 170px;*/
        /*height: 220px;*/
    }

    .prdt-card img {
        height: 154px;
    }

    .product-area .tab-content .card_wrap {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .product-area .card_wrap .prdt-card {
        width: 88%;
    }

    .product-area .card_wrap .prdt-desc-wrap {
        height: 66px;
        padding: 18px 22px;
    }

    /* dqline page */
    /* 2024114 추가 subpage */
    .sub-page-contents .company_info_bg, .business-process-bg, .sub-page-contents .org_info_bg, .direction_map, .mold_injection .mold_bg, .mold_injection .injection_bg, .contact_info_bg, .data_analytics_bg, .product_cond_bg {
        height: 330px;
    }

    .inquiry_btn img {
        width: 18px;
        height: 18px;
    }

    .inquiry_button_area .inquiry_button_wrap {
        gap: 8px;
    }

    .inquiry_button_area .inquiry_btn {
        width: 94px;
        height: 40px;
        line-height: 40px;
        font-weight: 500;
        font-size: 1em;
        gap: 4px;
    }
}

@media all and (max-width: 500px) {
    .tabs .tab-header {
        width: 128px;
    }

    .tabs .tab-indicator {
        left: 125px;
    }

    .product .card_wrap .prdt-card {
        width: 48%;
        height: 275px;
    }

    .product .card_wrap .prdt-card img {
        height: 209px;
    }

    .product .card_wrap .prdt-desc-wrap {
        height: 66px;
        padding: 18px 22px;
    }
}

@media all and (max-width: 480px) {
    body {
        font-size: 12px;
    }

    /* 네비게이션 영역 */
    .nav_wrap {
        display: none;
    }

    .newsletter-area .main-title h1 {
        color: #fff;
        font-size: 2.8em;
        margin-bottom: 30px;
    }

    .newsletter-area .main-title p {
        color: #fff;
        font-size: 1.1em;
        font-weight: 400;
        line-height: 1.5;
    }

    /* dqline page */
    /* 2024114 추가 subpage */
    .sub-page-contents .company_info_bg, .business-process-bg, .sub-page-contents .org_info_bg, .direction_map, .mold_injection .mold_bg, .mold_injection .injection_bg, .contact_info_bg, .data_analytics_bg, .product_cond_bg {
        height: 235px;
    }

    .sub-page-nav .container {
        margin-top: 24px;
    }

    .sub-navigation li {
        padding-right: calc(16px + 4px);
    }

    .sub-page-tit {
        margin-bottom: 24px;
    }

    .sub-page-tit h1 {
        font-size: 1.85em;
    }

    .contents-page-title {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .org_chart_mobile {
        display: block;
        margin-top: 40px;
    }

    .contents-page-title p {
        font-size: 1.16em;
    }

    .contents_text_wrap h3 {
        font-size: 1.85em;
    }

    .contents_text_wrap p {
        font-size: 1.16em;
    }

    .contents_img_wrap {
        width: auto;
        height: 235px;
    }

    .contents .company_iso {
        margin: 40px 0;
    }

    .sub-tab-link a.tab-item {
        width: 82px;
        height: 36px;
        line-height: 36px;
    }


    .direction_info .direct_addr {
        padding-left: calc(18px + 12px);
        background: url("../img/pin_ico_mobile.png") left top no-repeat;
    }

    .direction_info .direct_tel {
        padding-left: calc(18px + 12px);
        background: url("../img/tel_ico_sm_mobile.png") left top no-repeat;
    }

    .child-tab .tablinks {
        width: 120px;
        height: 44px;
        line-height: 44px;
    }

    .tab_content {
        padding: 40px 0;
    }

    .facilities thead tr, .facilities tbody tr {
        height: 44px;
    }

    .facilities thead th, .facilities tbody td {
        font-size: 1.16em;
    }

    .facility_swipers {
        margin-top: 24px;
        padding-bottom: 20px;
    }

    .swiper {
        height: 120px;
    }

    .swiper-slide {
        border-radius: 6.9px;
    }

    .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
        margin-right: 6px !important;
    }

    .swiper-pagination-bullet-active {
        width: 22px !important;
    }

}


@media all and (max-width: 400px) {

    .product-area .prdt-card, .product .prdt-card {
        width: 160px;
        height: 212px;
    }

    .product-area .prdt-card img, .product .prdt-card img {
        height: 146px;
    }

    .card_wrap {
        flex-direction: column;
    }

    .prdt-desc-wrap {
        height: 66px;
        padding: 18px 22px;
    }

    .product-tab .container {
        max-width: 100%;
    }
}

@media all and (max-width: 360px) {
    .product-tab .child-tab .tablinks {
        width: 100px;
    }

    .product-area .prdt-card {
        width: 140px;
        height: 212px;
    }

    .product .card_wrap .prdt-card {
        width: 48%;
        height: 212px;
    }

    .product .card_wrap .prdt-card img {
        height: 146px;
    }

    .product .card_wrap .prdt-desc-wrap {
        height: 66px;
        padding: 18px 22px;
    }
}

</pre></body></html>