/* 원클릭 견적 */
#oneclick {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #091925;
  color: #fff;
  z-index: 9999;
}

#oneclick .oneclick_wrap {
  padding: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#oneclick .oneclick_wrap .oneclick_btn {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

#oneclick .oneclick_wrap .right_btn {
  background: #00aaff;
  border: 1px solid #00aaff;
  padding: 10px 30px;
  transition: .3s;
  border-radius: 25px;
}

#oneclick .oneclick_wrap .right_btn h3 {
  display: block;
}

#oneclick .oneclick_wrap .right_btn:hover {
  background: none;
  border: 1px solid #fff;
}

@media screen and (max-width:630px) {
  #oneclick .oneclick_wrap .left_text p {
    font-size: 15px;
  }
  #oneclick .oneclick_wrap .left_text h2 {
    font-size: 20px;
  }
  #oneclick .oneclick_wrap .right_btn {
    font-size: 15px;
    padding: 10px 20px;
  }
}

@media screen and (max-width:550px) {
  #oneclick .oneclick_wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  #oneclick .oneclick_wrap .left_text {
    width: 100%;
    text-align: center;
  }
  #oneclick .oneclick_wrap .right_btn {
    padding: 5px 10px;
  }
}

@media screen and (max-width:400px) {
  #oneclick .oneclick_wrap .left_text p {
    font-size: 12px;
  }
  #oneclick .oneclick_wrap .left_text h2 {
    font-size: 16px;
  }
  #oneclick .oneclick_wrap .right_btn {
    font-size: 12px;
  }
}


/* 서브 비주얼 */
#sub_visual {
  width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
}

#sub_visual::before {
  position: absolute;
  inset: 0;
  content: "";
  z-index: 0;
  /* 초기 상태: 약간 아래 + 살짝 확대 + 투명 */
  transform: translateY(60px) scale(1.06);
  opacity: 0;

  /* 애니메이션 */
  animation: subVisualUp 2.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
}

#sub_visual.print3d_visual::before {
  background:  
  linear-gradient(45deg, transparent, rgba(0, 0, 0, .7), transparent),
  url(../../images/sub/3d_visual.jpg)no-repeat center/cover;

}

#sub_visual.cnc_visual::before {
  background: 
  linear-gradient(45deg, black, transparent),
  url(../../images/sub/cnc_visual.png)no-repeat center/cover;
}

@keyframes subVisualUp {
  0% {
    transform: translateY(-30px) scale(1.06);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* 사용자 접근성 고려: 모션 최소화 설정 시 정지 */
@media (prefers-reduced-motion: reduce) {
  #sub_visual::before { animation: none; opacity: 1; transform: none; }
}

#sub_visual .text {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 5;
  color: #fff;
  padding-top: 50px;
}

#sub_visual .text h4 {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
}
#sub_visual .text h2 {
  font-size: 60px;
  margin-bottom: 20px;
}

#sub_visual .m_sub_text {
  padding-bottom: 10px;
  display: none;
}

#sub_visual .m_sub_text ul li p {
  display: block;
  padding: 0 0 5px 20px;
  position: relative;
  font-size: 13px;
}
#sub_visual .m_sub_text ul li p::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}

#sub_visual .sub_text {
  padding-top: 30px;
  position: absolute;
  bottom: 40px;

}

#sub_visual .sub_text ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}


#sub_visual .sub_text ul li {
  width: calc(25% - 15px);
  padding: 20px 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 15px;
  background: rgba(0, 0, 0, .6);
}

  #sub_visual .sub_text ul li p {
    min-width: 150px;
  }

#sub_visual .sub_text ul li img {
  width: 30px;
}

#sub_visual .visual_btn ul {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

  #sub_visual .visual_btn ul li a {
    display: block;
    padding: 10px 15px;
    background: #038dbe;
    border: 1px solid #038dbe;
    color: #fff;
    border-radius: 30px;
    transition: .3s;
    font-weight: 700;
  } 

  #sub_visual .visual_btn ul li a:hover {
    color: #fff;
    background: none;
    border: 1px solid #fff;
  }


@media screen and (max-width: 1024px) {
  #sub_visual {
    height: 500px;
  }
  #sub_visual .text h4 {
    font-size: 18px;
  }
  #sub_visual .text h2 {
    font-size: 45px;
    margin-bottom: 10px;
  }

  #sub_visual .sub_text {
    position: relative;
    bottom: 0;
  }

  #sub_visual .sub_text ul li {
    font-size: 15px;
  }
  #sub_visual .sub_text ul li p {
    padding-bottom: 2px;
  }
  /* #sub_visual .visual_btn ul {
    gap: 10px;
  }

  #sub_visual .visual_btn ul li a {
    padding: 10px 15px;
    background: #038dbe;
    border: 1px solid #038dbe;
    border-radius: 10px;
    transition: .3s;
  } 

  #sub_visual .visual_btn ul li a:hover {
    color: #fff;
    background: none;
    border: 1px solid #fff;
  } */
}

@media screen and (max-width: 630px) {
  #sub_visual .text {
    align-items: start;
  }
    #sub_visual .text h2 {
    font-size: 30px;
  }
  #sub_visual .sub_text ul li p {
    font-size: 12px;
  }
}

@media screen and (max-width: 500px) {
   #sub_visual .text h4 {
    font-size: 14px;
  }


  #sub_visual .m_sub_text {
    display: block;
  }

  #sub_visual .sub_text {
    display: none;
  }
  #sub_visual .sub_text ul {
    gap: 5px;

  }

  #sub_visual .sub_text ul li {
    padding: 10px 5px;
  }

  #sub_visual .sub_text ul li p {
    font-size: 12px;
  }

  #sub_visual .m_sub_text ul li p br {
    display: none;
  }
  
}
@media screen and (max-width: 400px) {
  #sub_visual .visual_btn ul {
    flex-wrap: wrap;
    gap: 10px;
  }
  #sub_visual .visual_btn ul li {
    width: 100%;
  }
  #sub_visual .visual_btn ul li:first-child a {
    background: none;
    border: 1px solid #fff;
  }
  #sub_visual .visual_btn ul li a {
    width: 100%;
    text-align: center;
    font-size: 12px;
  }
  #sub_visual .visual_btn ul li:first-child a:hover {
    background: none;
    border: 1px solid #fff;
  }



  #sub_visual .text h2 {
    font-size: 25px;
  }
}


/********************************서브공통 타이틀영역*******************************/
/*서브 인포 타이틀*/
.sub_info_title {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}

.sub_info_title h2 {
  padding-bottom: 20px;
  font-size: 30px;
}
.sub_info_title h2 br {
  display: none;
}
.sub_info_title p {
  font-size: 18px;
  color: rgba(0, 0, 0, .7);
}

.sub_info_title .point {
  position: relative;
  z-index: 1;
}
.sub_info_title .point:after {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 50%;
  background: #a2cedf;
}

/*서브 콘텐츠타이틀*/
.sub_title {
  padding-top: 100px;
  padding-bottom: 100px;
}

.sub_title h2 {
  padding-bottom: 10px;
  font-size: 30px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.sub_title .point:after {
  content: "";
  position: absolute;
  bottom: 10px;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 40%;
  background: #a2cedf;
}
.sub_title p {
  font-size: 18px;
  color: rgba(0, 0, 0, .7);
}

.sub_more_tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub_more_tit .more_wrap .more {
  font-size: 15px;
  color: rgba(0, 0, 0, .7);
  transition: .3s;
  padding-bottom: 5px;
  border-bottom: 1.5px solid rgba(0, 0, 0, .6);
}

.sub_more_tit .more_wrap .more:hover {
  font-weight: 800;
}

@media screen and (max-width:767px) {
  .sub_title {
    padding-bottom: 50px;
  }
  .sub_title h2 {
    font-size: 25px;
  }
  .sub_title p {
    font-size: 15px;
  }

  .sub_more_tit {
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 20px;
  }
  
}

@media screen and (max-width:500px) {
  .sub_title {
    padding-top: 50px;
  }
  .sub_more_tit .more_wrap {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }
  .sub_more_tit .more_wrap .more {
    font-size: 12px;
  }
  .sub_more_tit .more_wrap .more:hover {
  font-weight: 500;
}
}

@media screen and (max-width:330px) {
  .sub_title .point:after {
    display: none;
  }

}

/* 서브 섹션01 영역 */


#sub_section01 .sub_info_wrap {
  padding-bottom: 100px;
}
#sub_section01 .sub_info_wrap ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  height: 100%;
}

#sub_section01 .sub_info_wrap ul li {
  width: calc(25% - 15px);
  height: 100%;
}

#sub_section01 .sub_info_wrap .sub_info {
  width: 100%;
  padding: 50px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  border-radius: 20px;
}

#sub_section01 .sub_info_wrap .info01 {
  box-shadow: 0 0px 10px rgba(2, 141, 190, 0.3);
}
#sub_section01 .sub_info_wrap .info02 {
  box-shadow: 0 0px 10px rgba(41, 138, 90, .3);
  /* transform: translateY(50px); */
  margin-top: 50px;
}


#sub_section01 .sub_info_wrap .sub_info img {
  width: 80px;
}
#sub_section01 .sub_info_wrap .sub_info h3 {
  padding-top: 20px;
  text-align: center;
}


#sub_section01 .sub_info_wrap .sub_info .text p {
  position: relative;
  
  padding-left: 20px;
}

#sub_section01 .sub_info_wrap .sub_info .text p::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

#sub_section01 .sub_info_wrap .info01 .text p::before {
  background: #038dbe;
}

#sub_section01 .sub_info_wrap .info02 .text p::before {
  background: #298a5a;
}

@media screen and (max-width:1155px) {
  #sub_section01 .sub_info_wrap ul li {
    width: calc(50% - 10px);
  }
  #sub_section01 .sub_info_wrap .info02 {
    margin: 0;
  }
}

@media screen and (max-width:840px) {
  .sub_info_title p br {
    display: none;
  }
}

@media screen and (max-width:767px) {
  .sub_info_title h2 {
    font-size: 25px;
  }
  .sub_info_title p {
    font-size: 15px;
  }
}

@media screen and (max-width:550px) {
  .sub_info_title h2 br {
    display: block;
  }
}

@media screen and (max-width:500px) {
  .sub_info_title {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #sub_section01 .sub_info_wrap ul li {
    width: 100%;
  }
  #sub_section01 .sub_info_wrap .sub_info {
    padding: 40px 10px;
  }
  #sub_section01 .sub_info_wrap {
    padding-bottom: 50px;
  }

}
@media screen and (max-width:350px) {
  #sub_section01 .sub_info_wrap .sub_info img {
    width: 50px;
  }
  .sub_info_title p {
    font-size: 13px;
  }
    #sub_section01 .sub_info_wrap .sub_info {
    padding: 25px 10px;
  }
  #sub_section01 .sub_info_wrap .sub_info h3 {
    padding-top: 10px;
    font-size: 15px;
  }
  #sub_section01 .sub_info_wrap .sub_info .text p {
    font-size: 12px;
  }
  #sub_section01 .sub_info_wrap .sub_info .text p::before {
    width: 3px;
    height: 3px;
  }
}


/* 서브 섹션02 */
#sub_section02 {
  padding-bottom: 100px;
  background: #f8feff;
}

#sub_section02 .support_wrap {
  height: 100%;
}

#sub_section02 .support {
    display: flex;
    position: relative;
    align-items: flex-start;
}

#sub_section02 .support .img_box {
    width: 50%;
}

/*#sub_section02 .support .img_box li { height: 125vh; position: relative; overflow: hidden;}*/
/* 효과 수정 */
#sub_section02 .support .img_box {
    position: relative;
    height: 500px;
    top: 0;
}

#sub_section02 .support .img_box ul {
    width: 100%;
}

#sub_section02 .support .img_box li {
    width: 100%;
    height: 100%;
    overflow: hidden;
    will-change: clip-path;
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
}

#sub_section02 .support .img_box li.is-show {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

#sub_section02 .support .img_box li p {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    ;}

#sub_section02 .support .img_box li p img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#sub_section02 .support .txt_wrap {
    width: 50%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}

#sub_section02 .support .txt_wrap .txt_box {
    max-width: 80%;
    width: 100%;
    height: 100%;
}

#sub_section02 .support .txt_wrap .txt_box .num {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 5%;
}

#sub_section02 .support .txt_wrap .txt_box .num p {
    width: 3em;
    height: 3em;
    /* padding: 10px 6px; */
    border-radius: 100%;
    border: 1px solid #038dbe;
    font-size: var(--txt3);
    font-weight: 700;
    color: #038dbe;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-right: 1.5rem; */
    cursor: pointer;
    transition: .3s;
}
#sub_section02 .support .txt_wrap .txt_box .num p:hover {
  color: #fff;
  background-color: #038dbe;
}

#sub_section02 .support .txt_wrap .txt_box .num p.active {
    background-color: #038dbe;
    color: #fff;
}

#sub_section02 .support .txt_wrap .txt_box ul {
    position: relative;
}

#sub_section02 .support .txt_wrap .txt_box ul .txts .t1 {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    padding-top: 35px;
}

#sub_section02 .support .txt_wrap .txt_box ul .txts .t2 {
    font-size: 20px;
    padding: 20px 0;
    font-weight: 500;
}

#sub_section02 .support .txt_wrap .txt_box ul .txts .t2 .pc_break {
  display: block;
}
#sub_section02 .support .txt_wrap .txt_box ul .txts .t3 {
  line-height: 27px;
  color: rgba(0, 0, 0, .7);
}

#sub_section02 .support .txt_wrap .txt_box ul .txts .icos {
  padding-top: 20px;
  display: flex;
  gap: 20px;
}

#sub_section02 .support .txt_wrap .txt_box ul .txts .icos div {
    background-color: #f6f6f6;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    aspect-ratio: 1/1;
    padding: 20px 0;
    text-align: center;
    width: calc(23.333% - 13.333px);
}

#sub_section02 .support .txt_wrap .txt_box ul .txts .icos div img {
    width: 40px;
    height: auto;
}

#sub_section02 .support .txt_wrap .txt_box ul .txts .icos div p {
    margin-top: 10px;
    font-weight: 500;
    color: #2a83c8;
}

#sub_section02 .support .txt_wrap .txt_box ul {
    position: relative;
}

#sub_section02 .support .txt_wrap .txt_box ul > li {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
    transition: all 0.5s ease;
}

#sub_section02 .support .txt_wrap .txt_box ul > li.active {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 1024px) {
    #sub_section02 .support .txt_wrap .txt_box .num {
      gap: 10px;
    }
    #sub_section02 .support .txt_wrap .txt_box .num p {
      margin: 0;
    }
    #sub_section02 .support .txt_wrap .txt_box ul .txts .icos {
      width: 100%;
    }
    #sub_section02 .support .txt_wrap .txt_box ul .txts .icos div {
    width: calc(33.333% - 13.333px);
  }
}

@media screen and (max-width: 768px) {
  #sub_section02 .support {
    flex-wrap: wrap;
  }
  #sub_section02 .support .img_box {
    width: 100%;
    height: 300px;
  }
  #sub_section02 .support .img_box li p img {
    height: 300px;
  }
  #sub_section02 .support .txt_wrap {
    width: 100%;
    height: 400px;
  }

  #sub_section02 .support .txt_wrap .txt_box{
    max-width: 100%;
  }

  #sub_section02 .support .txt_wrap .txt_box .num p {
    font-size: 14px;
  }

  #sub_section02 .support .txt_wrap .txt_box ul .txts .t2 .pc_break {
    display: inline-block;
    margin-left: 5px;
  }
  #sub_section02 .support .txt_wrap .txt_box ul .txts .icos {
    justify-content: flex-start;
    padding-top: 0;
  }
  #sub_section02 .support .txt_wrap .txt_box ul .txts .icos div {
    width: 120px;
  }

  #sub_section02 .support .txt_wrap .txt_box ul .txts .t1 {
    padding-top: 20px;
  }


}

@media screen and (max-width: 500px) {
  #sub_section02 {
    padding-bottom: 50px;
  }
  #sub_section02 .support .txt_wrap {
    padding: 20px 0;
    height: 320px;
  }
  #sub_section02 .support .txt_wrap .txt_box ul .txts .t1 {
    padding: 0;
    margin-top: 10px;
  }
  #sub_section02 .support .txt_wrap .txt_box ul .txts .t2 {
    font-size: 15px;
    padding: 10px 0;
  }
  #sub_section02 .support .txt_wrap .txt_box ul .txts .icos {
    padding-top: 10px;
  }
  #sub_section02 .support .txt_wrap .txt_box ul .txts .icos div img {
    width: 40px;
  }

  #sub_section02 .support .txt_wrap .txt_box ul .txts .t3 {
    font-size: 12px;
  }

 }

 @media screen and (max-width: 400px) {
  #sub_section02 .support .txt_wrap .txt_box {
    max-width: none;
  }
  #sub_section02 .support .txt_wrap .txt_box .num {
    gap: 5px;
  }
  #sub_section02 .support .txt_wrap .txt_box .num p {
    /* width: 40px;
    height: 40px; */
    padding: 8px 5px;
    font-size: 12px;
  }
  #sub_section02 .support .txt_wrap .txt_box ul .txts .icos {
    gap: 10px;
  }
  #sub_section02 .support .txt_wrap .txt_box ul .txts .icos div img {
    width: 35px;
  }
  #sub_section02 .support .txt_wrap .txt_box ul .txts .icos div {
    width: 100px;
  }
  #sub_section02 .support .txt_wrap .txt_box ul .txts .icos div p {
    font-size: 14px;
  }
  
 }

/* 소재가공 영역*/
#sub_section03 {
  padding-bottom: 100px;
}

#sub_section03 .table-wrap {
  background: #f6f8fb;
  border-radius: 12px;
  padding: 12px;
}

#sub_section03 .table-wrap p {
  font-size: 13px;
  padding-top: 10px;
  color: rgba(0, 0, 0, .7);
}

/* 테이블 기본 */
#sub_section03 .material-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  font-size: 15px;
  color: #111827;
}

#sub_section03 .material-table thead th {
  text-align: left;
  padding: 16px 18px;
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
  font-size: 20px;
}

#sub_section03 .material-table th.group {
  background: #fff;
  font-weight: 600;
  color: #374151;
  border-right: 1px solid #f0f2f5;
  vertical-align: top;
  font-size: 18px;
}

#sub_section03 .material-table td,
#sub_section03 .material-table th.group {
  padding: 18px;
  vertical-align: top;
  border-bottom: 1px solid #f3f4f6;
  transition: .3s;
  text-align: start;
}

#sub_section03 .material-table tbody tr:hover td,
#sub_section03 .material-table tbody tr:hover th.group {
  background: #f9fbff;
}

/* 칩 스타일 */
#sub_section03 .chips {
  margin: 0;
  padding: 0;
  list-style: none;
}

#sub_section03 .chips li {
  padding: 9px 12px;
  margin-bottom: 8px;
  border-radius: 6px;
  background: #f3f6fb;
  color: #111;
}

#sub_section03 .chips.blue li {
  background: #eaf2ff;
  color: #1f3b72;
  display: inline-block;
}

#sub_section03 .note {
  color: #6b7280;
  white-space: nowrap;
  
}

/* 반응형 (모바일 카드형) */
@media (max-width: 768px) {
  #sub_section03 .table-wrap {
    padding: 0;
  }
  #sub_section03 .material-table thead {
    display: none;
  }
  #sub_section03 .material-table,
  #sub_section03 .material-table tbody,
  #sub_section03 .material-table tr,
  #sub_section03 .material-table td,
  #sub_section03 .material-table th.group {
    display: block;
    width: 100%;
  }
  #sub_section03 .material-table tr {
    border-bottom: 8px solid #f6f8fb;
  }
  #sub_section03 .material-table th.group {
    background: #f9fafb;
    border: none;
    border-bottom: 1px solid #eef1f5;
    border-top: 1px solid #eef1f5;
    border-radius: 8px 8px 0 0;
    padding: 12px 16px;
  }
  #sub_section03 .material-table td {
    padding: 12px 16px;
    border-bottom: 1px dashed #eef1f5;
    
  }
  #sub_section03 .material-table td ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  #sub_section03 .material-table td:nth-last-child(1) {
    border-bottom: none;
  }

  #sub_section03 .table-wrap p {
    padding: 0 10px 10px;
  }
}

@media (max-width: 500px) {
  #sub_section03 {
    padding-bottom: 50px;
  }
  #sub_section03 .chips.blue li {
    font-size: 13px;
  }
}

.contact {
    background: linear-gradient(135deg,  #b6e3ff, #ced5ff);
    border-radius: 10px;
    padding: 20px 20px 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    position: relative;
}
.contact.print_con {
  background: linear-gradient(135deg,  #ecf8ff, #e6eaff);
  margin-top: 50px;
}


.contact h3 br {
  display: none;
}

.contact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  background: url(../../images/sub/contact_icon.png)no-repeat center/contain;
  width: 40px;
  height: 40px;
}

.contact h3 {
  font-weight: 500;
  color: rgba(0, 0, 0, .7);
  font-size: 17px;
  
}
.contact h3 br {
  display: none;
}

.contact .contact_btn a {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  padding: 10px 20px;
  border-radius: 10px;
  transition: background .3s ease;
}

.contact .contact_btn a:hover {
  background: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width:1070px) {
  .contact h3 {
    font-size: 15px;
  }
  .contact .contact_btn a {
    padding: 7px 13px;
    font-size: 14px;
  }
}

@media screen and (max-width:950px) {
  .contact h3 br {
    display: block;
  }
}

@media screen and (max-width:630px) {
  .contact {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }
  .contact h3 {
    width: 100%;
    text-align: center;
  }
  .contact::before {
    display: none;
  }
  .contact h3 br {
    display: none;
  }
}



/* 서브 품질관리영역 */
#sub_section04 {
  width: 100%;
  padding-bottom: 100px;
}

#sub_section04 .sub_title h2 br {
  display: none;
}

#sub_section04 .sub_quality_wrap {
  width: 100%;
}
#sub_section04 .sub_quality {
  width: 100%;
}
#sub_section04 .sub_quality_wrap ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

#sub_section04 .sub_quality_wrap ul li {
  flex: 0 0 calc(50% - 10px); 
  height: 400px;
  position: relative;
  z-index: 5;
  overflow: hidden;
  
}
#sub_section04 .sub_quality_wrap ul .quality01::before {
  background: url(../../images/sub/sub_qualityimg01.jpg)no-repeat center/cover;
}
#sub_section04 .sub_quality_wrap ul .quality02::before {
  background: url(../../images/sub/sub_qualityimg02.jpg)no-repeat center/cover;
}
#sub_section04 .sub_quality_wrap ul .quality03::before {
  background: url(../../images/sub/sub_qualityimg03.jpg)no-repeat center/cover;
}
#sub_section04 .sub_quality_wrap ul .quality04::before {
  background: url(../../images/sub/sub_qualityimg04.jpg)no-repeat center/cover;
}

/* cnc */
#sub_section04 .sub_quality_wrap ul .quality05::before {
  background: url(../../images/sub/sub_qualityimg05.png)no-repeat center/cover;
}
#sub_section04 .sub_quality_wrap ul .quality06::before {
  background: url(../../images/sub/sub_qualityimg06.png)no-repeat center/cover;
}
#sub_section04 .sub_quality_wrap ul .quality07::before {
  background: url(../../images/sub/sub_qualityimg07.png)no-repeat center/cover;
}
#sub_section04 .sub_quality_wrap ul .quality08::before {
  background: url(../../images/sub/sub_qualityimg08.JPG)no-repeat center/cover;
}


#sub_section04 .sub_quality_wrap ul li::before {
  position: absolute;
  top: 0;
  content: "";
  width: 100%;
  height: 400px;
  filter: brightness(.6);
  transition: transform 0.5s ease, filter 0.5s ease;
  transform: scale(1);
}

#sub_section04 .sub_quality_wrap ul li:hover::before {
  transform: scale(1.05);
  filter: blur(5px) brightness(.6);
}

#sub_section04 .sub_quality_wrap ul li .text {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;  
}

#sub_section04 .sub_quality_wrap ul li .text h4 {
  font-size: 25px;
}

#sub_section04 .sub_quality_wrap ul li .text p {
  padding-left: 15px;
  margin: 3px 0;
  position: relative;
}
#sub_section04 .sub_quality_wrap ul li .text p::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-45%);
}

/* cnc */
#sub_section04 .sub_quality_wrap ul li .cnc_text_wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;  
}
#sub_section04 .sub_quality_wrap ul li .cnc_text_wrap h4 {
  font-size: 25px;
}
#sub_section04 .sub_quality_wrap ul li .cnc_text_wrap h4 br {
  display: none;
}
#sub_section04 .sub_quality_wrap ul li .cnc_text_wrap .sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
}
#sub_section04 .sub_quality_wrap ul li .cnc_text_wrap .sub_text {
  padding: 10px 0;
}

#sub_section04 .sub_quality_wrap ul li .cnc_text_wrap .bot_text h5 {
  font-size: 20px;
  padding-bottom: 20px;
}

#sub_section04 .sub_quality_wrap ul li .cnc_text_wrap .bot_text span {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  display: inline-block;
  padding: 8px 15px;
  overflow: hidden;
  color: rgba(255, 255, 255, .9);
}
#sub_section04 .sub_quality_wrap ul li .cnc_text_wrap .bot_text span::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.8);
  filter: blur(5px);
  z-index: -1;
}


@media screen and (max-width:1024px) {
  #sub_section04 .sub_quality_wrap ul li .text h4 {
    font-size: 23px;
  }
  #sub_section04 .sub_quality_wrap ul li .text p {
    margin: 2px 0;
    font-size: 15px;
  }
}

@media screen and (max-width:768px) {
  #sub_section04 .sub_title h2 br {
    display: block;
  }
  #sub_section04 .sub_title h2 span {
    display: block;
    position: relative;
    z-index: 1;
  }
  #sub_section04 .sub_title h2 span::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40%;;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    background: #a2cedf;
  }

  #sub_section04 .sub_title .point:after {
    display: none;
  }
  #sub_section04 .sub_quality_wrap ul li {
    height: 300px;
  }
  #sub_section04 .sub_quality_wrap ul li .text h4 {
    font-size: 20px;
  }
  #sub_section04 .sub_quality_wrap ul li .text p {
    margin: 2px 0;
    font-size: 12px;
  }

  /* cnc */
  #sub_section04 .sub_quality_wrap ul li .cnc_text_wrap .bot_text h5 {
    padding-bottom: 10px;
  }
  #sub_section04 .sub_quality_wrap ul li .cnc_text_wrap .bot_text span {
    font-size: 15px;
  }

 }
 @media screen and (max-width:500px) {
  #sub_section04 {
    padding-bottom: 50px;
  }
  #sub_section04 .sub_quality_wrap ul {
    gap: 10px;
  }
  #sub_section04 .sub_quality_wrap ul li {
    flex:  0 0 100%;
  }
 }

 @media screen and (max-width:390px) {
  #sub_section04 .sub_title h2 span::after {
    display: none;
  }
  #sub_section04 .sub_quality_wrap ul li .cnc_text_wrap h4 {
    font-size: 22px;
  }
  #sub_section04 .sub_quality_wrap ul li .cnc_text_wrap h4 br {
    display: block;
  }
  #sub_section04 .sub_quality_wrap ul li .cnc_text_wrap .sub {
    display: none;
  }
  #sub_section04 .sub_quality_wrap ul li .cnc_text_wrap .sub_text {
    padding: 7px 0;
  }
  #sub_section04 .sub_quality_wrap ul li .cnc_text_wrap .sub_text p {
    font-size: 15px;
  }
  #sub_section04 .sub_quality_wrap ul li::before {
    filter: brightness(.3);
  }
  #sub_section04 .sub_quality_wrap ul li .cnc_text_wrap .bot_text h5 {
    font-size: 16px;
  }
  #sub_section04 .sub_quality_wrap ul li .cnc_text_wrap .bot_text span {
    font-size: 12px;
    padding: 5px 10px;
  }
 }





 /*서브 적용 분야*/
 #sub_section05 {
  width: 100%;
  padding: 100px 0;
  /* background: linear-gradient(135deg, #ebedff, #e8f6ff); */
  background: linear-gradient(135deg, #ced5ff, #b6e3ff);
 }

 #sub_section05 .sub_field_wrap ul {
  display: flex;
  gap: 40px;
  justify-items: center;
  flex-wrap: wrap;
}

#sub_section05 .sub_field_wrap ul li {
  /* width 그대로 */
  width: calc(33.333% - 26.666px);
}

/* 카드에 스타일/호버 전담 */
#sub_section05 .sub_field_wrap ul li .card {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 40px 20px;
  transition: transform .3s ease, background .3s ease;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#sub_section05 .sub_field_wrap ul li .card:hover  {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.4);
  box-shadow: 0 0 15px rgba(102, 102, 102, 0.05);
}

#sub_section05 .sub_field_wrap .icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #7286ff, #00aaff);
  box-shadow: 0 4px 10px rgba(0, 85, 255, 0.2);
  padding: 25px;
  border-radius: 50%;
  aspect-ratio: 1/1;
}

#sub_section05 .sub_field_wrap .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

#sub_section05 .sub_field_wrap li:hover .icon img {
  transform: scale(1.1);
}

#sub_section05 .sub_field_wrap h4 {
  font-size: 20px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.6);
}
#sub_section05 .sub_field_wrap h5 {
  font-size: 16px;
  color: rgba(0, 0, 0, .6);
  margin-top: 5px;
  font-weight: 500;
}
#sub_section05 .sub_field_wrap .sub_text {
  text-align: start;
  padding-top: 5px;
  font-size: 16px;
  color: rgba(0, 0, 0, .6);
  font-weight: 500;
}

@media screen and (max-width:1200px) {
  #sub_section05 .sub_field_wrap ul {
    gap: 20px;
  }

}

@media screen and (max-width:1024px) {
  #sub_section05 .sub_field_wrap ul li {
    width: calc(50% - 10px);
  }
}

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

}

@media screen and (max-width:630px) {
  #sub_section05 .sub_field_wrap ul li {
    width: 100%;
  }

  #sub_section05 .sub_field_wrap ul li .card {
    text-align: center;
  }
}
@media screen and (max-width:500px) {
  #sub_section05 {
    padding: 50px 0;
  }
}

@media screen and (max-width:400px) {
  #sub_section05 .sub_field_wrap ul li {
    width: 100%;
  }
  #sub_section05 .sub_field_wrap h5 {
    font-size: 15px;
  }
  #sub_section05 .sub_field_wrap .sub_text {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    max-width: 240px;
  }
  #sub_section05 .sub_field_wrap .nowrap.short .sub_text {
    display: block;
    max-width: 120px;
    margin: 0 auto;
  }
  #sub_section05 .sub_field_wrap .nowrap .sub_text {
    display: block;
    max-width: 145px;
    margin: 0 auto;
  }
  #sub_section05 .sub_field_wrap .nowrap .sub_text p {
    width: 100%;
    font-size: 14px;
  }

  #sub_section05 .sub_field_wrap .sub_text p {
    width: 50%;
    display: inline-block;
    font-size: 13px;
  }
}


 /*서브 제작 사례*/
#sub_section06 {
  padding-bottom: 100px;
  background: #f8feff;
}


#sub_section06 .portfolio_wrap {
  width: 100%;
  height: 300px;
  padding-bottom: 30px;
  overflow: hidden;
}

#sub_section06 .portfolio_wrap .swiper-wrapper {
  transition-timing-function: linear;
  column-gap: 30px;
}

#sub_section06 .portfolio_wrap .swiper-slide {
  width: 300px;
}

#sub_section06 .portfolio_wrap .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  position: relative;
}
#sub_section06 .portfolio_wrap .swiper-slide .hover_text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  border-radius: 0 0 15px 15px;
  padding: 100px 0 20px;
}

/* 카드(슬라이드) 자체가 클리핑 되도록 */
#sub_section06 .portfolio_wrap .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  width: 300px;
}

/* 이미지 확대 효과 */
#sub_section06 .portfolio_wrap .swiper-slide img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1);                /* 기본 */
  transition: transform .5s ease;     /* 확대 트랜지션 */
}

/* 오버레이 텍스트: 기본 숨김(아래) */
#sub_section06 .portfolio_wrap .swiper-slide .hover_text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  transform: translateY(100%);
  opacity: 0;
  transition: transform .45s ease, opacity .45s ease;
  padding: 100px 20px 20px;
  text-align: start;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
}

#sub_section06 .portfolio_wrap .swiper-slide .hover_text p {
  font-size: 12px;
  color: rgba(255, 255, 255, .8);
}
#sub_section06 .portfolio_wrap .swiper-slide .hover_text .sub_text p {
  font-size: 15px;
  font-weight: 500;
}
#sub_section06 .portfolio_wrap .swiper-slide .hover_text .sub_text .point {
  font-weight: 800;
}


/* 호버 시: 이미지 확대 + 텍스트 슬라이드업 */
#sub_section06 .portfolio_wrap .swiper-slide:hover img {
  transform: scale(1.08);
}
#sub_section06 .portfolio_wrap .swiper-slide:hover .hover_text {
  transform: translateY(0%);
  opacity: 1;
}

@media screen and (max-width:500px) {
  #sub_section06 {
    padding-bottom: 50px;
  }
  #sub_section06 .portfolio_wrap {
    height: 200px;
  }
  #sub_section06 .portfolio_wrap .swiper-slide {
    width: 200px;
  }
  #sub_section06 .portfolio_wrap .swiper-wrapper {
    column-gap: 10px;
  }
  #sub_section06 .portfolio_wrap .swiper-slide .hover_text {
  padding: 100px 10px 10px;
}

  #sub_section06 .portfolio_wrap .hover_text h3 {
    font-size: 16px;
  }
  #sub_section06 .portfolio_wrap .swiper-slide .hover_text .sub_text p {
    font-size: 12px;
  }
  #sub_section06 .portfolio_wrap .hover_text p {
    font-size: 14px;
  }

  /* hover 효과 제거 + 텍스트 항상 노출 */
  #sub_section06 .portfolio_wrap .swiper-slide img {
    transform: none !important;
    transition: none !important;
  }
  #sub_section06 .portfolio_wrap .swiper-slide .hover_text {
    transform: translateY(0) !important;
    opacity: 1 !important;
    transition: none !important;
  }
  /* :hover 상태에서도 변화 없도록 한 번 더 고정 */
  #sub_section06 .portfolio_wrap .swiper-slide:hover img {
    transform: none !important;
  }
  #sub_section06 .portfolio_wrap .swiper-slide:hover .hover_text {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
}

/* 서브 문의 섹션 */
/* 섹션 전체 배경 */
#sub_section07 {
  width: 100%;
  padding: 120px 0;
  background: linear-gradient(135deg, #028dbe 0%, #00bfff 40%, #152a3f 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* 배경 위에 살짝 흐르는 광택 효과 (선택) */
#sub_section07::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 40%, rgba(255,255,255,0.15), transparent 60%),
              radial-gradient(circle at 80% 60%, rgba(255,255,255,0.08), transparent 70%);
  animation: shineMove 12s linear infinite;
  z-index: 0;
}
@keyframes shineMove {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

/* 내용 */
#sub_section07 .sub_inquiry {
  position: relative;
  z-index: 1;
}

#sub_section07 .sub_inquiry .inquiry_text h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

#sub_section07 .sub_inquiry .inquiry_text p {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  opacity: 0.9;
  margin-bottom: 50px;
}

/* 버튼 리스트 */
#sub_section07 .inquiry_btn ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

#sub_section07 .inquiry_btn ul li .btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#sub_section07 .inquiry_btn ul li .btn:hover {
  background: #fff;
  color: #028dbe;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* 반응형 */
@media (max-width: 768px) {
  #sub_section07 {
    padding: 80px 20px;
  }
  #sub_section07 .inquiry_btn ul {
    gap: 15px;
  }
  #sub_section07 .inquiry_btn ul li .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 500px) {
  #sub_section07 {
    padding: 50px 20px;
  }
  #sub_section07 .sub_inquiry .inquiry_text p {
    margin-bottom: 30px;
  }
  #sub_section07 .inquiry_btn ul {
    gap: 10px;
  }
  #sub_section07 .inquiry_btn ul li .btn {
    width: 100%;
    max-width: 200px;
    padding: 10px 20px;
  }
}



/* FAQ 영역 */
#faq .faq_hero {
  width: 100%;
  background: #091925;
  color: #fff;
  padding: 150px 0 50px;
}

#faq .faq_hero > div {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

#faq .faq_hero h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

#faq .faq_hero p {
  font-size: 15px;
  opacity: 0.85;
}

/* 검색 영역 */
#faq .faq_search {
  margin-top: 24px;
  min-width: 460px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

#faq .faq_search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
}

#faq .faq_search button {
  border: none;
  background: none;
  font-size: 16px;
  cursor: pointer;
}

#faq .faq_search button img {
  width: 30px;
}

/* 태그 */
#faq .faq_tags {
  margin-top: 18px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

#faq .faq_tags span {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer;
}

#faq .faq_body {
  padding: 40px 20px 80px;
}

#faq .faq_category {
  font-size: 20px;
  font-weight: 700;
  margin: 25px 0 18px;
}

#faq .faq_category:first-child {
  margin: 0 0 18px;
}

#faq .faq_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#faq .faq_item + .faq_item {
  margin-top: 8px;
}

#faq .faq_question {
  width: 100%;
  text-align: left;
  background: #ffffff;
  border: 1px solid #e3e5ee;
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow:
    0 1px 2px rgba(15,15,15,0.05),
    0 4px 12px rgba(15,15,15,0.04);
}

#faq .q_title {
  flex: 1;
}

#faq .q_arrow {
  margin-left: 12px;
  font-size: 14px;
  transition: transform 0.2s ease;
  color: rgba(0,0,0, .5);
}

#faq .faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background: #ffffff;
  border: 1px solid #e3e5ee;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

#faq .faq_item.is-open .faq_question {
  border-radius: 8px 8px 0 0;
  border-bottom-color: transparent;
}

#faq .faq_answer_inner {
  padding: 14px 18px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

#faq .faq_item.is-open .faq_answer {
  max-height: 400px;
}

#faq .faq_item.is-open .q_arrow {
  transform: rotate(180deg);
}


@media (max-width: 768px) {
  #faq .faq_hero h2 {
    font-size: 24px;
  }
  #faq .faq_search {
    min-width: 400px;
  }
}

@media (max-width: 500px) {
  #faq .faq_search {
    min-width: auto;
  }
  #faq .faq_category {
    font-size: 18px;
  }
  #faq .faq_question {
    padding: 15px 12px;
  }
  #faq .faq_answer_inner {
    padding: 15px 12px;
    font-size: 12px;
    line-height: 1.4;
  }
  #faq .q_title {
    font-size: 14px;
  }
}