@charset "utf-8";

/*-------------------------------------------------------------------
  파일정의 : sub page style
  작성날짜 : 2025-08-25 구경희
-------------------------------------------------------------------*/

/* common */

.sub-header{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 80px;
}
.sub-header span{
    width: 60px;
    height: 60px;
}
.sub-header span img{
    display: block;
    width: 100%;
    object-fit: cover;
}
.sub-header .title{
    font-size: clamp(56px, 2.9167vw, 70px);
    font-weight: 700;
    line-height: 1.4;
}
/*pagination style*/
.pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: #DADBDE;
    margin-top: 60px;
}
.pagination>ul{
    display: flex;
    align-items: center;
}
.pagination>ul li{
    padding: 0 22px;
}
.pagination >ul li.active a{
    color: #1E1F23;
}

/*tab-content-list style*/

.tab-content-list{
    display: flex;
    flex-wrap: wrap;
    gap: 40px 16px;
}

.tab-content-list>li{
    width: calc((100% - 48px) / 4);
}

.tab-content-list .img-area{
    position: relative;
    height: 0;
    padding-bottom: 100%;
    border-radius: 30px;
    margin-bottom: 16px;
    overflow: hidden;
}
.tab-content-list .img-area img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tab-content-list .txt-area .product-name{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 4px;
}
.tab-content-list .txt-area .product-desc{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #8A8C92;
}

/* e: common */
/* s: 제품 소개 */

.product{
    padding-top: 200px;
}
.product > .inner{
    padding-bottom: 300px;
}

.product .product-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.product .product-list li {
    width: calc((100% - 16px) / 2);
}
.product .product-list li .card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 36px 40px;
    border-radius: 24px;
    background: #F6F7F9;
    position: relative;
}
.product .product-list li .img-area {
    width: 170px;
    height: 170px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}
.product .product-list li .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.product .product-list li .txt-area {
    display: flex;
    flex-flow: column;
    gap: 16px;
}
.product .product-list li .txt-area .title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
}
.product .product-list li .txt-area .desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #4C4E55;
}
.product .product-list li .go-now {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #5182FE;
    position: absolute;
    right: 40px;
    top: 36px;
}
.product .product-list li .go-now::after {
    content:'';
    display: block;
    width: 20px;
    height: 20px;
    background: url("../asset/images/icon/ic_arrow_right.svg") no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
/* e: 제품 소개 */

/*s: 상품상세*/
.product-detail{
    padding-top: 120px;
}
.product-detail .detail-container img{
    width: 100%;
}
.product-detail section + section{
    padding-top: 100px;
    padding-bottom: 300px;
}
.product-detail .swiper-slide {
    height: 0;
    padding-bottom: 100%;
    position: relative;
}
.product-detail .swiper-slide a {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
}


.product-detail .product-list .img-area {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    border-radius: 30px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}
.product-detail .product-list .img-area img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}

.product-detail .navigation .btn{
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(76, 78, 85, 0.40);
    padding: 0;
}
.product-detail .navigation .btn.prev{
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 50;
}
.product-detail .navigation .btn.next{
    position: absolute;
    top: 50%;
    right: 16px;
    z-index: 50;
}
.product-detail .navigation .btn.prev::after{
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url('../asset/images/icon/ic_arrow_swiper_left.svg');
    background-size: 24px 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.product-detail .navigation .btn.next::after{
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url('../asset/images/icon/ic_arrow_swiper_right.svg');
    background-size: 24px 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.product-detail .pagination{
    margin-top: 10px;
}
.product-detail .content-wrap .swiper-pagination-bullet{
    background: #E9EAEE;
    opacity: 1;
}
.product-detail .content-wrap .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #8A8C92;
}
.product-detail section .inner{
    padding-bottom: 0;
}
/*content-head style(product-detail, portfolio-detail)*/
.content-head{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 109px;
}
.content-head .txt-area{
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 148px;
}
.content-head .txt-area span{
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    color: #BFC0C4;
}
.content-head .txt-area .title{
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
    margin: 13px 0 50px 0;
}
.content-head .txt-area .desc{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    color: #4C4E55;
}
.content-head .btn-area .btn{
    width: 100%;
}
.content-wrap{
    max-width: 542px;
    width: 100%;
    flex-shrink: 0;
}


.product-detail .tab-btn-list{
    justify-content: flex-start;
}
.detail-content-node{
    display: none;
}
.detail-content-node.active{
    display: block;
}
.content-body-list{
    display: flex;
    flex-flow: column;
    gap: 90px;
}
.content-body-list .title{
    font-size: 34px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 30px;
}

.box{
    padding: 40px 44px 50px;
    background-color: #F6F7F9;
    border-radius: 30px;
}
.box img {
    width: 100%;
}
.box.blue{
    background: #F8F9FF !important;
}
.box .tit-area{
    margin-bottom: 30px;
}
.box .tit-area .title{
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 6px;
}
.box .tit-area span{
    color: #8A8C92;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}
.img-box-wh{
    border-radius: 24px;
    background: #FFF;
    box-sizing: border-box;
}

.bullet-list{
    display: flex;
    flex-flow: column;
    gap: 16px;
}
.bullet-list li{
    position: relative;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
.bullet-list li::before{
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    margin-right: 8px;
    background-color: #1E1F23;
    vertical-align: middle;
}
.basic-guide-list{
    display: flex;
    justify-content: center;
    gap: 16px;
}
.basic-guide-list li{
    width: calc((100% - 16px) / 3);
}
.basic-guide-list .txt-area{
    margin-top: 16px;
}
.basic-guide-list .txt-area .desc{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}
.safezone-list{
    display: flex;
    flex-flow: column;
    gap: 16px;
}

.safezone-list .box.blue{
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.safezone-list .img-area{
    max-width: 219px;
    width: 100%;
    height: auto;
    position: absolute;
    top: 16px;
    right: 0;
}
.safezone-list .box.blue .tit-area {
    padding-right: 140px;
}
.keyring .img-box-wh{
    max-width: 728px;
    width: 100%;
    height: auto;
    padding: 40px 40px 30px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 68px;
}
.keyring .img-area{
    max-width: 218px;
    width: 100%;
    height: auto;
}
.keyring .img-box{
    display: flex;
    gap: 38px;
}
.keyring .img-box .img-area{
    max-width: 152px;
    width: 100%;
    height: auto;
}
.keyring .img-area .img-box{
    display: flex;
}
.keyring .txt-area{
    margin-top: 24px;
}

.epoxy-premium .img-area-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.epoxy-premium .txt-area{
    margin-top: 24px;
}
.smart-tok .box .img-box-wh{
    padding: 24px 70px;
}
.smart-tok .txt-area{
    margin-top: 24px;
}
.laser .box.blue{
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
.laser .box.blue .txt-area-wrap{
    display: flex;
    justify-content: space-between;
}
.laser-guide{
    display: flex;
    flex-flow: column;
    gap: 16px;
}
.laser-guide .img-area-wrap{
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 54px;
}
.laser-guide .img-area-wrap .img-box-wh{
    padding: 24px 19px 21px;
}
.laser-guide .img-area-wrap .img-box-wh .img-area{
   max-width: 312px;
    height: auto;
}
.laser-guide .img-area-wrap .img-area{
    max-width: 312px;
    height: auto;
}
.laser-guide .bullet-list + .bullet-list{
    margin-top: 50px;
}
.file-list{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px
}
.file-list li{
    width: calc((100% - 16px) / 2);
    padding: 40px 44px 50px;
    border-radius: 30px;
    background: #F6F7F9;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 24px
}
.file-list li .txt-area {
    font-size: 18px;
    line-height: 1.5;
}
.file-list li .img-area{
    max-width: 356px;
}
.print-list li{
    display: flex;
    flex-flow: column;
    gap: 16px;
}
.print-list .box{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 40px 44px;
    width: 100%;
}
.print-list .box .tit-area{
    margin-bottom: 24px;
}
.print-list .box .tit-area .title{
    margin-bottom: 0;
}
.print-list .box .desc{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}
.print-list li .box.blue{
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 24px;
    padding: 40px 0;
}
.print-list li .box.blue .img-area{
    width: 100%;
    height: auto;
    position: unset;
}
    .print-list .dual .box.blue .img-area,
    .print-list .epoxy .box.blue .img-area,
    .print-list .premium .box.blue .img-area,
    .print-list .laser .box.blue .img-area {
    max-width: 480px;
    }
.print-list .box.blue .title{
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0;
}
.print-list .box.blue .desc{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    word-break: break-all;
}
.print-list .box.blue span{
    color: #5182FE;
}
.print-list .box > .img-area img{
    height: auto;
}
.print-list .box .txt-area span{
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #5182FE;
    margin-top: 10px;
}
.normal > .box .img-area{
    max-width: 326px;
    width: 100%;
    height: auto;
}
.normal .box-wrap{
    width: 100%;
    display: flex;
    gap: 16px;
}
.normal .box-wrap li{
    width: calc((100% - 32px) / 3);
}
.dual > .box .img-area{
    max-width: 511px;
    width: 100%;
    height: auto;
}

.print-list .epoxy > .box .img-area{
    max-width: 479px;
    height: auto;
}


.print-list .laser > .box .img-area{
    max-width: 438px;
    width: 100%;
    height: auto;
}

/*e: 상품상세*/
/*s: 제작방법*/
.produce{
    padding-top: 200px;
}
.produce > .inner{
    padding-bottom: 300px;
}
.produce .tab-btn-list{
    justify-content: start;
}

.produce-body .basic .title{
    font-size: 34px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 30px;
}
.produce-body .safezone{
    margin-top: 90px;
}
.produce-body .safezone > .title{
    font-size: 34px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 30px;
}
.produce-body .normal > .box,
.produce-body .dual > .box,
.produce-body .epoxy > .box,
.produce-body .premium > .box,
.produce-body .laser > .box{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 40px 44px;
    width: 100%;
}
.produce-body .laser > .box .txt-area,
.produce-body .premium > .box .txt-area,
.produce-body .epoxy > .box .txt-area{
    width: 498px;
}
.produce-body .laser > .box {
    width: 100%;
}

.produce-body .normal > .box .txt-area .desc{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}

.produce-body .normal .box.blue{
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 24px;
    padding: 40px 0;
}
.produce-body .normal .box.blue .title{
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0;
}
.produce-body .normal .box.blue .desc{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    word-break: break-all;
}
.produce-body .basic,
.produce-body .epoxy-premium{
    margin-top: 160px;
}
.produce-body .normal,
.produce-body .dual,
.produce-body .epoxy,
.produce-body .premium,
.produce-body .laser{
    display: flex;
    flex-flow: column;
    gap: 16px;
}
.produce-body .dual .box.blue{
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 24px;
    padding: 40px 0;
}

.produce-body .dual .box.blue .title{
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0;
}
.produce-body .dual .box.blue .desc{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    word-break: break-all;
}
.produce-body .dual .box .desc{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}

.produce-body .epoxy .box .desc{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}
.produce-body .epoxy .box .txt-area span{
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #5182FE;
    margin-top: 10px;
}

.produce-body .epoxy .box.blue{
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 24px;
    padding: 40px 0;
}
.produce-body .epoxy .box.blue .title{
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0;
}
.produce-body .epoxy .box.blue .img-area{
    position: unset;
}
.produce-body .epoxy .box.blue .desc{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    word-break: break-all;
}
.produce-body .epoxy-premium .title{
    font-size: 34px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
}

.produce-body .premium .box .desc{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}
.produce-body .premium .box .txt-area span{
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #5182FE;
    margin-top: 10px;
}


.produce-body .premium .box.blue{
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 24px;
    padding: 40px 0;
}
.produce-body .premium .box.blue .title{
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0;
}
.produce-body .premium .box.blue .desc{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    word-break: break-all;
}
.produce-body .premium .box.blue span{
    color: #5182FE;
}
.produce-body .laser .box .desc{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}

.produce-body .laser .box.blue .img-area{
    position: unset;
}
.produce-body .laser .box.blue{
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 24px;
    padding: 40px 0;
}
.produce-body .laser .box.blue{
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0;
}
.produce-body .laser .box.blue .desc{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    word-break: break-all;
}
.produce-body .laser .box.blue span{
    color: #5182FE;
}

.produce-body .normal > .box .img-area{
    max-width: 326px;
}
.produce-body  .dual  .box .img-area{
    max-width: 479px;
    width: 100%;
}

.produce-body .epoxy .box .img-area,
.produce-body .laser .box .img-area{
    max-width: 438px;
    width: 100%;
}

.produce-body .premium .box .img-area {
    max-width: 344px;
    width: 100%;
}


.produce-body .dual .box.blue .img-area,
.produce-body .laser .box.blue .img-area,
.produce-body .premium .box.blue .img-area,
.produce-body .epoxy .box.blue .img-area{
    width: 480px;
    max-width: 100%;
}
/*e: 제작방법*/

/*s: 포트폴리오*/
.portfolio {
    padding-top: 200px;
}
.portfolio > .inner{
    padding-bottom: 300px;
}
.portfolio .tab-content-list {
    gap: 16px;
}
.portfolio .tab-content-list .img-area {
    margin-bottom: 0;
}
.portfolio .tab-content-list li a{
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}
.portfolio .tab-btn-list li .img-area{
    overflow: hidden;
}
.portfolio .tab-content-list li .img-area::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(49,51,57,0) 20%, #313339 100%);
    opacity: 0;
    transition: opacity .3s;
    z-index: 5;
    border-radius: inherit;
}
.portfolio .tab-content-list li .img-area:hover::before {
    opacity: 1;
}
.portfolio .tab-content-list li .txt-area{
    display: block;
    position: absolute;
    bottom: 44px;
    left: 0;
    z-index: 10;
    opacity:0;
    transform: translateY(10px);
    transition: all .3s .1s;
    padding: 0 44px;
    width: 100%;
}
.portfolio .tab-content-list li .txt-area p{
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 3px;
    color: #FFF;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.portfolio .tab-content-list li .txt-area span{
    color: #8A8C92;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
.portfolio .tab-content-list li .img-area:hover + .txt-area{
    opacity: 1;
    transform: translateY(0);
}
/*e: 포트폴리오*/
/*s: 포트폴리오 상세*/
.portfolio-detail{
    padding-top: 200px;
}

.portfolio-detail section{
    padding-bottom: 300px;
}
.portfolio-detail .content-wrap .img-area{
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    border-radius: 30px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}
.portfolio-detail .content-wrap .img-area img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}
.portfolio-detail .content-body{
    padding-top: 130px;
}
.portfolio-detail .img-list .img-area{
    max-width: 1200px;
}
.portfolio-detail .img-list .img-area img{
    width: 100%;
}
/*e: 포트폴리오 상세*/
/*s: 공지사항*/
.notice > .inner{
    padding-top: 200px;
    padding-bottom: 300px;
}
.notice-wrap .btn-area{
    justify-content: flex-end;
    margin-bottom: 34px;
}
.notice .notice-list li {
    font-size: clamp(22px, 1.1458vw, 40px);
}
.notice .notice-list li .num{
    font-weight: 600;
    line-height: 1.5;
}

.notice .notice-list li + li{
    border-top: 1px solid #E9EAEE;
}
.notice .notice-list li a{
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 32px 24px;
    position: relative;
}
.notice-wrap .btn-area button{
    justify-content: center;
}
.qna-list-wrap{
    border-top: 1px solid #E9EAEE;
    border-bottom: 1px solid #E9EAEE;
}
/*dropdown-list style*/

.inquiry .dropdown-list li .answer{
    height: 0;
    overflow: hidden;
    transition: .3s;
}
.inquiry .dropdown-list li .answer p{
    background-color: #F6F7F9;
    padding: 30px 68px;
    font-size: 16px;
    line-height: 1.5;
}
/*e: 공지사항*/
/*s: 공지사항 상세*/
.notice-detail > .inner{
    padding-top: 210px;
    padding-bottom: 300px;
}
.notice-detail .prev-wrap{
    margin-bottom: 20px;
}
.notice-detail .prev-wrap a{
    display: flex;
    align-items: center;
    gap: 10px;
}
.notice-detail .prev-wrap a img{
    width: 24px;
    height: 24px;
}
.notice-detail .prev-wrap a span{
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    color: #BFC0C4;
}
.notice-detail-content .title{
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
}
.notice-detail-content .contents{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    padding: 100px 0;
}
.notice-detail-list-wrap{
    border-bottom: 1px solid #E9EAEE;
}
.notice-detail-list li{
    border-top: 1px solid #E9EAEE;
}
.notice-detail-list li a{
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 32px 24px;
}
.notice-detail-list li a .arrow{
    width: 24px;
    height: 24px;
}
.notice-detail-list li a .arrow img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.notice-detail-list li a p{
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
}
/*e: 공지사항 상세*/
/*s: 제작문의*/
.inquiry section > .inner {
    margin: 0 auto;
    padding: 200px 32px 84px;
    min-height: 100vh;
    display: flex;
    flex-flow: column;
}

.produce-inquiry .sub-header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.produce-inquiry .sub-header .tit-area{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}
.produce-inquiry .sub-header .tit-area .sub-header span{
    width: 60px;
    height: 60px;
}
/*e: 제작문의*/
/*s: 1:1 문의*/
.inquiry .customer-inquiry .sub-header{
    width: 100%;
    margin-bottom: 60px;
}
.customer-inquiry .inquiry-detail .product-inquiry input[type="checkbox"] + label{
    font-size: 18px;
    line-height: 1.5;
}

.customer-inquiry input[type=text],
.customer-inquiry input[type=tel]{
    width: 100%;
    border-bottom: 2px solid #E9EAEE;
    border-radius: 0;
    outline: none;
    padding: 14px 0;
    box-sizing: border-box;
}
.customer-inquiry .inquiry-detail .input-list-wrap{
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.customer-inquiry label input{
    height: auto !important;
}
.inquiry-wrap {
    width: 100%;
}
.inquiry-wrap .checkbox-label .checkbox:has(input[type="checkbox"]){
    font-size: 0;
}

.customer-inquiry .input-list{
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 70px;
}
.inquiry-detail-wrap{
    width: 100%;
    display: flex;
    flex-flow: column;
}
.customer-inquiry .inquiry-detail{
    width: 100%;
    display: flex;
    gap: 109px;
}
.customer-inquiry .inquiry-detail > * {
    flex: 1;
}
.customer-inquiry .btn-wrap{
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 109px;
    margin-top: 10px;
}
.customer-inquiry .btn-wrap > * {
    flex: 1;
}
.customer-inquiry input[type=text], .customer-inquiry input[type=tel] {
    font-size: clamp(22px, 1.1458vw, 40px);;
}
.customer-inquiry .btn-wrap .btn.go-btn {
    width: 100% !important;
}
.customer-inquiry .btn-wrap > div{
    width: 100%;
}
.customer-inquiry .btn-wrap .load-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 14px;
}
.customer-inquiry .btn-wrap .load-area .title {
    font-size: clamp(18px, 0.938vw, 40px);
    font-weight: 500;
    line-height: 1.5;
    color: #BFC0C4;
}
.customer-inquiry .btn-wrap .load-area .load {
    font-size: 0;
    margin-top: 3px;
}
.customer-inquiry .btn-wrap .load-area .load input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.customer-inquiry .btn-wrap .load-area .load label {
    font-size: clamp(16px, 0.833vw, 28px);
    line-height: 1.5;
    text-decoration: underline;
}
.customer-inquiry .btn-wrap .load-area .file-names {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}
.customer-inquiry .btn-wrap .load-area .file-names button {
    background: #F6F7F9;
    padding: 2px 30px 2px 10px;
    border-radius: 4px;
    font-size: clamp(16px, 0.833vw, 28px);
    line-height: 1.5;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
}
.customer-inquiry .btn-wrap .load-area .file-names button::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: url("../asset/images/icon/ic_delete.png") no-repeat;
    background-size: cover;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}
.customer-inquiry .btn-wrap .sub-txt {
    font-size: clamp(16px, 0.833vw, 28px);
    font-weight: 400;
    line-height: 1.5;
    color: #8A8C92;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 24px;
    word-break: break-all;
}
.customer-inquiry .btn-wrap .checkbox-label{
    display: flex;
    flex-flow: column;
    gap: 16px;
    justify-content: center;
}
.customer-inquiry .btn-wrap .checkbox a{
    text-decoration: underline;
}
.customer-inquiry .btn-wrap .btn-box .text.red{
    color: #E74E24;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.5;
}
.product-tab-btn-wrap .tit{
    display: block;
    margin-bottom: 30px;
    font-size: clamp(18px, 0.938vw, 40px);
    font-weight: 500;
    line-height: 1.5;
    color: #BFC0C4;
}
.product-tab-btn-list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-tab-btn-wrap{
    margin-bottom: 60px;
}
.product-inquiry .text{
    font-size: clamp(16px, 0.833vw, 28px);
    font-weight: 400;
    line-height: 1.5;
    color: #8A8C92;
    margin-top: 10px;
}
.input-list span{
    display: block;
    margin-bottom: 10px;
    font-size: clamp(18px, 0.938vw, 40px);
    font-weight: 500;
    line-height: 1.5;
    color: #BFC0C4;
}
.product-inquiry .checkbox-label .checkbox{
    width: calc((100% - 16px) / 2);
}
.product-inquiry .checkbox-label span{
    font-size: clamp(18px, 0.938vw, 40px);
    font-weight: 500;
    line-height: 20px;
    color: #4C4E55;
}
.product-inquiry .input-wrap span{
    display: block;
    margin-bottom: 10px;
    font-size: clamp(18px, 0.938vw, 40px);
    font-weight: 500;
    line-height: 1.5;
    color: #BFC0C4;
}
.inquiry-detail .product-inquiry .checkbox-wrap{
    margin-bottom: 70px;
}
.inquiry-detail .product-inquiry .checkbox-wrap .checkbox-label{
    display: flex;
    flex-flow: row;
    gap: 16px;
}
/*s: 1:1 문의*/

/*s: 회사 소개*/
.company > .inner{
    padding-top: 200px;
    padding-bottom: 300px;
}
.visual-box {
    max-width: 100%;
    width: 57.29vw;
    border-radius: 30px;
    background: #F6F7F9;
    padding: 46px 50px 50px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.visual-box > .txt-area{
    display: flex;
    flex-flow: column;
    gap: 30px;
}
.visual-box > .txt-area .title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
}
.visual-box > .txt-area .text{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #4C4E55;
}
.visual-box .video-area{
    width: 100%;
}
.visual-box .video-area .video-wrap{
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
}
.visual-box .video-area video{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.visual-box.sub{
    display: block;
}
.company-list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.company-list li{
    width: calc((100% - 16px) / 2);
    box-sizing: border-box;
}
.company-list li > .inner{
    width: 100%;
    max-width: none;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    height: 100%;
}
.company-list li .img-area{
    overflow: hidden;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    --light-blue-002: ;
}
.company-list li .txt-area{
    padding: 2vw 2.39vw 3.4vw;
    position: relative;
    z-index: 10;
}
.company-list li .txt-area span{
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #5182FE;
}
.company-list li .txt-area .title{
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    color: #FFF;
    margin-bottom: 16px;
}
.company-list li .txt-area .desc,
.desc-wrap{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #BFC0C4;
    text-align: left;
}
.company-list li .txt-area .desc b {
    font-weight: 700;
    display: block;
    margin: 5px 0;
}
.company-list li .txt-area .bullet-list{
    gap: 0;
    padding-left: 8px;
}
.company-list li .txt-area .bullet-list b {
    font-weight: 700;
}
.company-list li .txt-area .bullet-list li::before{
    background-color: #BFC0C4;
}
.company-list li .txt-area .bullet-list li{
    width: 100%;
    word-break: break-all;
}
.company-body-video{
    max-width: 100%;
    width: 57.29vw;
    display: flex;
    padding: 46px 50px;
    gap: 16px;
    margin: 100px 0;
}
.company-body-video .txt-area .title{
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
}
.company-body-video .txt-area .text{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #4C4E55;
}
.company-body-video .txt-area .text + .text {
    margin-top: 12px;
}
.company-body-video .video-area{
    width: calc((100% - 16px)/2);
    flex-shrink: 0;

}
.company-body-video .video-area .video-wrap{
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
}
.company-body-video .video-area video{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.company-info{
    padding: 46px 50px;
    border-radius: 30px;
    background: #F6F7F9;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
}
.company-info .txt-area .title{
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 40px;
}
.company-info .info-list{
    margin-top: 24px;
    display: flex;
    flex-flow: column;
    gap: 12px;
}
.company-info .info-list li{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #4C4E55;
}
.company-info .map-area{
    width: 542px;
    height: 298px;
    background-color: #181818;
    border-radius: 30px;
}
/*e: 회사 소개*/
.terms > .inner{
    padding-top: 210px;
    padding-bottom: 300px;
}
.terms-wrap .prev-wrap{
    margin-bottom: 20px;
}
.terms-content .title{
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
}
.terms-content .sub-txt{
    font-size: 16px;
    line-height: 1.5;
    padding: 100px 0;
}
.terms-content .sub-txt span{
    display: block;
    font-weight: 700;
}
/*s: 약관*/

/*e: 약관*/


@media screen and (max-width: 1920px){
    .visual-box, .company-body-video {
        max-width: 1200px;
        width: 100%;
    }
}
@media screen and (max-width: 1024px){
    section:has(.visual-box) {
        background: #F6F7F9;
        margin: 0 -32px 24px;
        padding: 54px 32px 50px;
    }
    .visual-box{
        flex-flow: column;
        align-items: flex-start;
        padding: 0;
        gap: 20px;
        margin-bottom: 6px;
        background: transparent;
    }
    .product .product-list {
        gap: 8px;
    }
    .product .product-list li {
        width: 100%;
    }
    .product .product-list li .card {
        padding: 22px 24px;
        gap: 16px;
    }
    .product .product-list li .img-area {
        width: 80px;
        height: 80px;
        border-radius: 11px;
    }
    .product .product-list li .txt-area {
        gap: 8px;
    }
    .product .product-list li .txt-area .title {
        font-size: 16px;
    }
    .product .product-list li .txt-area .desc {
        font-size: 14px;
        font-weight: 400;
    }
    .product .product-list li .go-now {
        top: 22px;
        right: 24px;
        width: 26px;
        height: 26px;
    }
    .product .product-list li .go-now::after {
        width: 14px;
        height: 14px;
    }
    .portfolio .tab-content-list li .img-area::before {
        opacity: 1 !important;
    }
    .portfolio .tab-content-list li .txt-area {
        opacity: 1 !important;
        transform: translateY(0) !important;
        padding: 0 20px;
        bottom: 18px;
    }
    .portfolio .tab-content-list li .txt-area p{
        font-size: 16px;
    }
    .portfolio .tab-content-list li .txt-area span{
        font-size: 12px;
    }
    .tab-content-list > li {
        width: calc((100% - 7px) / 2);
    }

    .portfolio .tab-content-list {
        gap: 6px 7px;
    }

    .portfolio .tab-content-list li {
        width: calc((100% - 7px) / 2);
    }
    .sub-header {
        gap: 8px;
        margin-bottom: 24px;
    }

    .sub-header span {
        width: 40px;
        height: 40px;
    }

    .sub-header .title {
        font-size: 34px;
        font-weight: 700;
        line-height: 1.5;
    }

    /*content-head style*/
    .content-head {
        flex-flow: column;
        align-items: flex-start;
        gap: 20px;
    }

    .content-head .txt-area {
        gap: 24px;
    }

    .content-head .txt-area span {
        font-size: 16px;
    }

    .content-head .txt-area .title {
        font-size: 18px;
        line-height: 1.5;
        margin: 10px 0 6px 0;
    }

    .content-head .txt-area .desc {
        font-size: 14px;
    }

    .content-head .btn-area .btn {
        font-size: 16px;
        padding: 18px 0;
        border-radius: 10px;
    }

    .content-wrap {
        max-width: none;
        width: 100%;
    }
    .portfolio-detail {
        padding-top: 94px;
    }
    /*제작상품*/
    .product {
        padding-top: 84px;
    }
    .product > .inner {
        padding-bottom: 200px;
    }

    /*제작상품*/


    .company-body-video{
        flex-flow: column;
        height: 100vh;
        gap: 20px;
        padding: 0;
        margin: 0;
        justify-content: center;
    }
    .company-body-video .video-area {
        width: 100%;
    }
    .company-body-video .txt-area .title{
        font-size: 25px;
        margin-bottom: 14px;
    }
    .company-list li .txt-area .desc{
        font-size: 14px;
    }
    .produce-body .laser > .box .txt-area{
        width: 100%;
    }

    .tab-content-wrap {
        margin-top: 14px;
    }



    .tab-content-list .txt-area .product-name {
        font-size: 16px;
        margin-bottom: 2px;
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 100%;
    }

    .tab-content-list .txt-area .product-desc {
        font-size: 12px;
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 100%;
    }

    .pagination {
        margin-top: 30px;
        font-size: 16px
    }

    .pagination > ul li {
        padding: 0 16px;
    }

    .bullet-list {
        gap: 10px;
    }

    .bullet-list li {
        font-size: 12px;
        position: relative;
        padding-left: 12px;
    }

    .bullet-list li::before {
        position: absolute;
        top: 8px;
        left: 0;
    }



    /*상품 상세*/
    .product-detail {
        padding-top: 94px;
    }

    .product-detail section + section {
        padding-top: 60px;
        padding-bottom: 200px;
    }

    .product-detail section .inner {
        padding: 0 32px;
    }



    .product-detail .product-wrap {
        width: 100%;
    }

    .product-detail .navigation .btn.prev {
        left: 10px;
        transform: translateY(-50%);
    }

    .product-detail .navigation .btn.next {
        right: 10px;
        transform: translateY(-50%);
    }

    .product-detail .content-body {
        margin-top: 40px;
    }

    .content-body-list {
        gap: 50px;
    }

    .content-body-list .title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .box {
        padding: 24px;
        border-radius: 18px;
    }

    .box .tit-area {
        margin-bottom: 20px;
    }

    .box .tit-area .title {
        font-size: 16px;
        margin-top: 0;
    }

    .box .tit-area span {
        font-size: 12px;
        font-weight: 500;
        word-break: break-all;
    }
    .produce-body .premium > .box .txt-area,
    .produce-body .epoxy > .box .txt-area{
        width: 100%;
    }
    .img-box-wh {
        border-radius: 8px;
    }

    .basic-guide-list {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 20px 7px;
    }

    .basic-guide-list li {
        width: calc((100% - 7px) / 2);
    }

    .basic-guide-list li .box.blue {
        padding: 12px 11px 11px;
    }
    .basic-guide-list .txt-area{
        margin-top: 8px;
    }
    .basic-guide-list .txt-area .desc {
        font-size: 12px;
    }

    .safezone-list {
        gap: 8px;
    }

    .safezone-list .txt-area {
        padding-right: 0;
    }

    .safezone-list .txt-area .tit-area {
        margin-bottom: 42px;
    }

    .safezone-list .img-area {
        max-width: 120px;
    }

    .safezone-list .img-area img {
        height: auto;
    }

    .keyring .txt-area {
        margin-top: 20px;
    }

    .keyring .img-box {
        gap: 13px;
    }

    .keyring .img-box-wh {
        padding: 14px 14px 10px;
        gap: 23px;
    }

    .keyring > .box {
        display: flex;
        flex-flow: column;
        align-items: center;
    }

    .keyring > .box > .img-area {
        border-radius: 8px;
        overflow: hidden;
    }

    .epoxy .txt-area {
        margin-top: 20px;
    }

    .smart-tok .txt-area {
        margin-top: 20px;
    }

    .smart-tok .box .img-box-wh {
        padding: 11px 0;
    }

    .laser .box.blue .txt-area-wrap {
        flex-flow: column-reverse;
    }
    .laser-guide .bullet-list + .bullet-list{
        margin-top: 20px;
    }
    .laser-guide .img-area-wrap .img-box-wh {
        padding: 0;
        flex: 1;
    }

    .laser-guide .img-area-wrap .img-box-wh {
        max-width: 100%;
        width: auto;
    }

    .laser-guide .img-area-wrap .img-area {
        width: auto;
        height: auto;
        flex: 1;
    }

    .laser-guide .box.blue .img-area-wrap {
        flex-flow: row;
        gap: 6px;
        margin-bottom: 20px;
    }

    .file-list {
        flex-flow: column;
        gap: 6px;
    }

    .file-list li {
        width: 100%;
        padding: 24px;
        gap: 10px;
        border-radius: 18px;
    }
    .file-list li .img-area{
       max-width: 162px;
    }
    .file-list li .txt-area{
        font-size: 12px;
        line-height: 1.5;
        text-align: center;
    }
    .print-list .box {
        padding: 24px;
        flex-flow: column;
        gap: 10px;
        align-items: flex-start;
    }

    .print-list li {
        gap: 20px;
    }

    .print-list .box .tit-area {
        margin-bottom: 20px;
    }

    .print-list .box .desc, .print-list .box .txt-area span {
        margin-top: 6px;
    }

    .print-list .box .tit-area .title {
        margin-bottom: 0;
    }
    .print-list .laser .box.blue .img-area,
    .print-list li .box.blue .img-area,
    .produce-body .laser .box .img-area{
        width: 100%;

    }
    .print-list .laser .blue-box-wrap .box.blue .img-area,
    .print-list li .blue-box-wrap .box.blue .img-area {
        max-width: 66%;
    }
    .produce-body .dual .box.blue .img-area,
    .produce-body .laser .box.blue .img-area,
    .produce-body .premium .box.blue .img-area,
    .produce-body .epoxy .box.blue .img-area{
        width: 66%;
        max-width: none;
    }
    .print-list .box .desc,
    .print-list .box .txt-area span {
        font-size: 12px;
    }

    .print-list .normal .box.blue .img-area {
        padding: 0;
    }

    .normal .box-wrap {
        flex-wrap: wrap;
        gap: 20px 7px;
    }

    .normal .box-wrap li {
        width: calc((100% - 7px) / 2);
        gap: 8px;
    }

    .normal .box-wrap li .desc.is_mo {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.5;
        text-align: center;
        letter-spacing: -0.12px;
    }

    .print-list li .box.blue {
        padding: 24px 0 25px 0;
        gap: 10px;
    }

    .print-list .box.blue .title {
        font-size: 14px;
    }

    .print-list .box.blue .desc {
        font-size: 12px;
    }

    .print-list .dual >.blue-box-wrap .box.blue {
        padding: 16px 0;
    }

    .dual > .box .img-area {
        width: 100%;
    }

    .dual .box.blue .img-area {
        transform: unset;
    }

    .dual .blue-box-wrap .desc.is_mo {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: -0.12px;
        text-align: center;
        margin-top: 8px;
    }

    .print-list .epoxy .txt-area {
        margin-top: 0;
    }

    .print-list .epoxy >.blue-box-wrap > .box.blue {
        padding: 16px 0;
    }
    .epoxy .box.blue .img-area {
        transform: unset;
    }

    .epoxy .blue-box-wrap .desc.is_mo {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: -0.12px;
        text-align: center;
        margin-top: 8px;
    }

    .epoxy-premium .img-area-wrap{
        gap: 6px;
    }
    .epoxy-premium .txt-area{
        margin-top: 20px;
    }
    .print-list .premium .box.blue {
        padding: 16px 0;
    }

    .premium .box.blue .img-area {
        transform: unset;
    }

    .premium .blue-box-wrap .desc.is_mo {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: -0.12px;
        text-align: center;
        margin-top: 8px;
    }

    .premium .blue-box-wrap .desc.is_mo span {
        color: #5182FE;
    }

    .print-list .laser .box.blue {
        padding: 16px 0;
    }

    .print-list .laser .blue-box-wrap .desc.is_mo {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: -0.12px;
        text-align: center;
        margin-top: 8px;
    }

    .print-list .laser .blue-box-wrap .desc.is_mo span {
        color: #5182FE;
    }
    /*상품 상세*/

    /*제작 방법*/
    .produce > .inner{
        padding-bottom: 200px;
    }

    .produce-body .normal,
    .produce-body .dual,
    .produce-body .epoxy,
    .produce-body .premium,
    .produce-body .laser{
        gap: 20px;
    }
    .produce-body .normal > .box,
    .produce-body .dual > .box,
    .produce-body .epoxy > .box,
    .produce-body .premium > .box,
    .produce-body .laser > .box{
        padding: 24px;
        flex-flow: column;
        gap: 10px;
        align-items: flex-start;
        margin-bottom: 0;
    }

    .produce-body .normal > .box .tit-area{
        margin-bottom: 20px;
    }
    .produce-body .normal > .box .tit-area .title{
        font-size: 16px;
        margin-bottom: 0;
    }
    .produce-body .normal > .box .txt-area .desc{
        font-size: 12px;
    }
    .produce-body .normal .box-wrap li .desc.is_mo{
        margin-top: 8px;
    }

    .produce-body .epoxy > .box .desc,
    .produce-body .premium > .box .desc,
    .produce-body .laser > .box .desc{
        font-size: 12px;
    }
    .produce-body .epoxy > .box .txt-area{
        margin-top: 0;
    }
    .produce-body .epoxy > .box .tit-area .title,
    .produce-body .premium > .box .tit-area .title,
    .produce-body .laser > .box .tit-area .title{
        margin-bottom: 0;
    }
    .produce-body .epoxy .box .txt-area span,
    .produce-body .premium .box .txt-area span{
        margin-top: 6px;
        font-size: 12px;
    }

    .produce-body .normal .box.blue{
        padding: 24px 0 25px 0;
        gap: 10px;
    }

    .produce-body .normal .box.blue .title,
    .produce-body .dual >.blue-box-wrap .box.blue .title,
    .produce-body .premium > .blue-box-wrap .box.blue .title,
    .produce-body .laser .box.blue .title,
    .produce-body .epoxy >.blue-box-wrap .box.blue .title{
        font-size: 14px;
    }

    .produce-body .dual > .blue-box-wrap .box.blue,
    .produce-body .premium >.blue-box-wrap .box.blue,
    .produce-body .laser >.blue-box-wrap .box.blue,
    .produce-body .epoxy >.blue-box-wrap .box.blue{
        padding: 16px 0;
        gap: 10px;
    }

    .produce-body .laser .blue-box-wrap .desc.is_mo{
        font-size: 12px;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: -0.12px;
        text-align: center;
        margin-top: 8px;
    }
    .produce-body .laser .blue-box-wrap .desc.is_mo span{
        color: #5182FE;
    }
    .produce-body .basic,
    .produce-body .epoxy-premium{
        margin-top: 50px;
    }
    .produce-body .basic .title{
        font-size: 18px;
        margin-bottom: 16px;
    }
    .produce-body .basic .txt-area{
        margin-top: 8px;
    }
    .produce-body .safezone{
        margin-top: 50px;
    }
    .produce-body .safezone .title{
        font-size: 18px;
        margin-bottom: 16px;
    }
    .produce-body .safezone .safezone-list .box .title{
        font-size: 16px;
        margin-bottom: 20px;
    }
    .produce-body .safezone .safezone-list .box.blue .title{
        margin-bottom: 6px;
    }
    .produce-body .dual > .box{
        display: flex;
        flex-flow: column;
        gap: 10px;
        padding: 24px;
    }
    .produce-body .dual > .box .title{
        margin-bottom: 0;
    }
    .produce-body .epoxy-premium{
        margin-top: 90px;
    }
    .produce-body .epoxy-premium .title{
        font-size: 18px;
        margin-bottom: 16px;
    }
    /*제작 방법*/
    /*포트폴리오*/
    .portfolio {
        padding-top: 84px;
    }

    .portfolio > .inner {
        padding-bottom: 200px;
    }


    /*포트폴리오*/

    /*포트폴리오 상세*/


    .portfolio-detail section {
        padding-bottom: 200px;
    }

    .portfolio-detail .content-body {
        padding-top: 60px;
    }

    .portfolio .tab-content-list .img-area {
        margin-bottom: 0;
        border-radius: 18px;
    }
    /*포트폴리오 상세*/

    /*공지사항*/
    .notice > .inner {
        padding-top: 84px;
        padding-bottom: 200px;
    }
    .notice .sub-header{
        margin-bottom: 20px;
    }
    .notice-wrap .btn-area{
        margin-bottom: 14px;
        justify-content: flex-start;
    }
    .notice .notice-list li a {
        align-items: flex-start;
        padding: 20px 10px;
        gap: 12px;
    }
    .notice .notice-list li .num {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5;
    }

    .notice .notice-list li .title {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    /*공지사항*/

    /*공지사항 상세*/
    .notice-detail > .inner {
        padding-top: 84px;
        padding-bottom: 200px;
    }

    .notice-detail-content .title {
        font-size: 25px;
    }

    .notice-detail-content .contents {
        padding: 50px 0;
        font-size: 14px;
        font-weight: 400;
    }

    .notice-detail .prev-wrap {
        margin-bottom: 14px;
    }

    .notice-detail .prev-wrap {
        gap: 6px;
    }

    .notice-detail .prev-wrap img {
        width: 20px;
        height: 20px;
    }

    .notice-detail .prev-wrap a {
        gap: 6px;
    }

    .notice-detail .prev-wrap a span {
        font-size: 16px;
    }

    .notice-detail-list li a {
        padding: 20px 10px;
    }

    .notice-detail-list li a .arrow {
        width: 18px;
        height: 18px;
    }

    .notice-detail-list li a p {
        font-size: 16px;
    }
    /*공지사항 상세*/

    /*회사소개*/
    .company .sub-header{
        margin-bottom: 14px;
    }

    .visual-box .txt-area{
        flex-flow: column;
        align-items: flex-start;
        gap: 14px;
    }
    .visual-box .video-area .video-wrap{
        min-height: 0;
    }
    .visual-box > .txt-area .title{
        font-size: 25px;
    }
    .visual-box > .txt-area .text{
        font-size: 14px;
        font-weight: 400;
    }
    .company > .inner {
        padding-bottom: 200px;
    }
    .company-list{
        flex-flow: column;
        gap: 6px;
    }
    .company-list > li{
        width: 100%;
        padding: 0;
        min-height: 243px;
        position: relative;
    }
    .company-list li > .inner {
        padding: 0;
        min-height: 243px;
        border-radius: 24px;
    }
    .company-list li .img-area{
        border-radius: 24px;
    }
    .company-list li .txt-area{
        padding: 24px;
        gap: 14px;
    }
    .company-list li .txt-area span{
        font-size: 14px;
    }
    .company-list li .txt-area .title{
        font-size: 18px;
        margin-bottom: 14px;
    }
    .company-list li .txt-area .bullet-list +.desc {
        margin: 8px 0;
    }
    .company-body-video .txt-area .text{
        font-size: 14px;
        font-weight: 400;
    }
    .company-body-video .txt-area .text + .text {
        margin-top: 6px;
    }
    .company-list li .txt-area .bullet-list li{
        font-size: 14px;
    }
    .company-info{
        flex-flow: column;
        padding: 54px 32px 50px;
        gap: 20px;
        margin: 0 -32px;
        border-radius: 0;
    }
    .company-info .txt-area{
        width: 100%;
    }
    .company-info .txt-area .title{
        font-size: 25px;
        margin-bottom: 20px;
    }
    .company-info .map-area{
        width: 100%;
        border-radius: 18px;
    }
    .company-info .info-list {
        margin-top: 14px;
        gap: 6px;
    }
    .company-info .logo-area img {
        max-width: 100%;
    }
    .company-info .info-list li{
        font-size: 14px;
    }
    /*회사소개*/

    /*제작문의*/

    .produce-inquiry{
        padding-top: 0;
    }
    .inquiry .sub-header{
        flex-flow: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 14px;
    }
    .inquiry .dropdown-list li .question{
        padding: 20px 10px;
    }
    .inquiry  .dropdown-list li .question .img-area{
        position: absolute;
        top: 24px;
        left: 10px;
        width: 16px;
        height: 17px;
    }
    .inquiry .dropdown-list li .title{
        font-size: 16px;
        text-align: left;
        padding-left: 32px;
    }
    .inquiry  .dropdown-list li .question::after{
        right: 10px;
        background-size: 13px 8px;
    }
    .inquiry   .dropdown-list li .answer p{
        padding: 20px 38px;
    }
    /*제작문의*/

    /*1:1문의*/
    .inquiry .customer-inquiry .sub-header{
        width: 100%;
        flex-flow: column;
        align-items: flex-start;
        margin-bottom: 34px;
    }
    .inquiry .customer-inquiry .sub-header .title{
        font-size: 25px;
        font-weight: 600;
    }
    .inquiry .sub-header .btn-area button{
        justify-content: center;
    }
    .inquiry .customer-inquiry .inquiry-detail{
        flex-flow: column;
        gap: 20px;
    }

    .inquiry .customer-inquiry .btn-wrap{
        flex-flow: column;
        margin-top: 20px;
        gap: 8px;
    }
    .inquiry-detail .input-list{
        gap: 20px;
    }
    .inquiry .customer-inquiry input[type=text],
    .inquiry .customer-inquiry input[type=tel]{
        padding: 10px 0;
        border-bottom: 1px solid #E9EAEE;
        font-size: 18px;
    }
    .inquiry .customer-inquiry .input-list span{
        font-size: 14px;
        margin-bottom: 4px;
    }
    .inquiry-detail .product-inquiry .checkbox-wrap{
        margin-bottom: 20px;
    }
    .product-tab-btn-wrap{
        margin-bottom: 20px;
    }
    .product-tab-btn-wrap .tit{
        font-size: 14px;
        margin-bottom: 14px;
    }
    .product-tab-btn-list{
        gap: 6px;
    }
    .product-tab-btn-list .box-input input[type="radio"] + span{
        padding: 8px 14px;
        font-size: 14px;
        font-weight: 500;
        border: 1px solid #8A8C92;
    }
    .inquiry section > .inner {
        padding-top: 84px;
    }
    .inquiry-detail .product-inquiry .checkbox-wrap .checkbox-label{
        gap: 6px;
    }
    .customer-inquiry .btn-wrap .load-area .title,
    .customer-inquiry .btn-wrap .load-area .load label {
        font-size: 14px;
    }
    .customer-inquiry .btn-wrap .load-area .file-names button {
        word-break: break-all;
        white-space: wrap;
    }
    .customer-inquiry .btn-wrap .sub-txt {
        font-size: 14px;
        margin-bottom: 40px;
    }
    .inquiry .customer-inquiry  .input-wrap span{
        font-size: 14px;
        margin-bottom: 4px;
    }
    .product-inquiry .text{
        margin-top: 14px;
        font-size: 14px;
    }
    .product-inquiry .input-wrap .text{
        margin-top: 10px;
    }
    .product-inquiry .checkbox-label span{
        font-size: 16px;
    }
    .inquiry-detail-wrap .btn-wrap .checkbox-label{
        gap: 8px;
    }
    .inquiry-detail-wrap .btn-wrap .btn-box{
        width: 100%;
    }
    .inquiry-detail-wrap .btn-wrap .btn-box .text.red{
        font-size: 14px;
        margin-bottom: 4px;
    }
    .inquiry-detail-wrap .btn-wrap .btn-box .btn{
        width: 100% !important;
        max-width: none;
        padding: 18px 0;
        font-size: 16px;
        border-radius: 10px;
    }
    /*1:1 문의*/

    /*이용약관*/
    .terms > .inner {
        padding-top: 84px;
        padding-bottom: 200px;
    }

    .terms-wrap .prev-wrap {
        margin-bottom: 14px;
    }

    .terms-content .title {
        font-size: 25px;
    }

    .terms-content .sub-txt {
        font-size: 14px;
        padding: 50px 0;
    }
    /*이용약관*/
}


@media screen and (max-width: 767px) {


}



