@charset "UTF-8";
/* ==================================
   ✅ Variables (CSS Custom Properties)
================================== */
:root {
  --fPrtdd: "Pretendard", sans-serif;
  --cBlk: #121920;
  --cBlue: #0051AB;
}

/* ==================================
   ✅ Reset
================================== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
}

body,
textarea,
select,
input,
button,
pre {
  font-size: 16px;
  line-height: 1.2;
  font-family: var(--fPrtdd);
  font-weight: normal;
  color: var(--cBlk);
  word-break: keep-all;
  letter-spacing: -0.01em;
}

img {
  border: none;
  vertical-align: top;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
}

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* 🔚 Reset */
/* ==================================
   ✅ Form Elements
================================== */
/* IE10 이상에서 input box 에 추가된 지우기 버튼 제거 */
input::-ms-clear {
  display: none;
}

/* input type number 에서 화살표 제거 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* IE 에서 Select box 화살표 제거 */
select::-ms-expand {
  display: none;
}

/* 🔚 Form Elements */
/* ==================================
   ✅ Utilities
================================== */
.cf:after {
  content: "";
  display: block;
  clear: both;
}

::selection {
  background-color: rgba(0, 81, 171, 0.3);
}

::-moz-selection {
  background-color: rgba(0, 81, 171, 0.3);
}

::-webkit-selection {
  background-color: rgba(0, 81, 171, 0.3);
}

/* 🔚 Utilities */
/* ==================================
   ✅ Scrollbar
================================== */
/* 스크롤바 설정 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* 스크롤바 막대 설정 */
::-webkit-scrollbar-thumb {
  height: 15%;
  background-color: var(--cBlue);
  transition: all 0.3s;
}

/* 스크롤바 뒷 배경 설정 */
::-webkit-scrollbar-track {
  background-color: rgba(234, 234, 234, 0.3);
}

/* 🔚 Scrollbar */
/* ==================================
   ✅ Common Classes
================================== */
.forSR {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  position: absolute;
  top: 0;
  left: 0;
}

[class*=btn-] {
  display: block;
  transition: all 0.3s;
  cursor: pointer;
}
[class*=btn-] * {
  transition: all 0.3s;
}

/* 🔚 Common Classes */
/* ==================================
   ✅ Map (Daum RoughMap)
================================== */
.root_daum_roughmap .wrap_controllers,
.root_daum_roughmap .map_border {
  display: none;
}

.root_daum_roughmap_landing {
  width: 100% !important;
  height: 100%;
}

.root_daum_roughmap .wrap_map {
  height: 100% !important;
}

figure.map iframe {
  width: 100% !important;
  height: 100% !important;
}

/* 🔚 Map */
/* ==================================
   ✅ For Scroll
================================== */
.forScroll {
  overflow-x: auto;
  width: 100%;
  cursor: grab;
}
.forScroll::-webkit-scrollbar-thumb {
  background: rgba(234, 234, 234, 0.8);
  border-radius: 8px;
}

/* 🔚 For Scroll */
/* ==================================
   ✅ Icon Utils
================================== */
.iconRot {
  transform: rotate(-45deg);
}

/* 🔚 Icon Utils */
/* ==================================
   ✅ 스크롤다운 애니메이션
================================== */
.scdown__item {
  --distance: 10px;
  /* 위아래 이동 거리 */
  --duration: 1.6s;
  /* 한 번 왕복 시간 */
  --easing: cubic-bezier(.22, .61, .36, 1);
  /* 부드러운 감속 */
  display: inline-block;
  will-change: transform;
  animation: scdown-bob var(--duration) var(--easing) infinite alternate;
  /* 시작 위치를 기준으로 translate */
  transform: translateY(0);
}

/* 접근성: 모션 최소화 환경에서 애니메이션 끄기 */
@media (prefers-reduced-motion: reduce) {
  .scdown__item {
    animation: none !important;
    transform: none !important;
  }
}
@keyframes scdown-bob {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(var(--distance));
  }
}
/* 🔚 스크롤다운 애니메이션 */
:root {
  --inner: 150px;
  --hdHeight: 116px;
  --fsz18: 18px;
  --hdOpen: 240px;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.grid6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.grid7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.grid9 {
  display: grid;
  flex: auto;
  grid-template-columns: repeat(9, 1fr);
}

/* ==================================
   ✅ Common
================================== */
.forPC {
  display: block;
}

.forMOB {
  display: none;
}

.inner {
  margin: 0 auto;
  padding: 0 var(--inner);
  position: relative;
  height: 100%;
}

#wrap {
  width: 100%;
  min-width: 320px;
  position: relative;
}

.logo a {
  width: 100%;
  height: 100%;
  background: url(/asset/images/logo.svg) no-repeat center/contain;
}

body.noScroll {
  overflow: hidden;
}

/* 🔚 Common */
/* footer */
.footer {
  margin-top: 200px;
  padding: 60px 0;
  background: var(--cBlk);
  color: #fff;
}
.footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.footer__left-wrap {
  display: flex;
  gap: 70px;
}
.footer__left-wrap .logo {
  width: 120px;
  height: 96px;
  filter: brightness(0) invert(1);
}
.footer__info {
  margin-bottom: 24px;
}
.footer__info .name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer__info address {
  font-size: var(--fsz18);
  font-weight: 300;
  margin-bottom: 10px;
}
.footer__info .num {
  display: flex;
  gap: 18px;
}
.footer__info .num p {
  font-size: var(--fsz18);
}
.footer__copy {
  color: #959595;
  font-size: var(--fsz18);
  font-weight: 300;
}
.footer__btn-top {
  width: 80px;
  height: 80px;
  background: var(--cBlue);
  text-align: center;
  align-content: center;
  font-size: 32px;
  margin-bottom: 40px;
  margin-left: auto;
}
.footer__menu {
  display: flex;
  gap: 48px;
}
.footer__menu a {
  font-size: var(--fsz18);
  color: #959595;
  position: relative;
}
.footer__menu a:not(:first-child)::after {
  display: block;
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  background-color: #959595;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -24px;
}
.footer__menu a:hover {
  color: #fff;
  font-weight: 400;
}

/* header */
.header {
  width: 100%;
  height: var(--hdHeight);
  border-bottom: 1px solid #F5F5F5;
  z-index: 6000;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
}
.header::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  background: #fff;
  backdrop-filter: blur(10px);
  top: var(--hdHeight);
  left: 0;
  border-bottom: 1px solid #F5F5F5;
  transition: all 0.3s;
}
.header.active::before {
  height: var(--hdOpen);
}
.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 100%;
}
.header .logo {
  width: 70px;
  height: 56px;
}
.header .forPC .gnb {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.header .forPC .gnb__list {
  display: flex;
  gap: 100px;
}
.header .forPC .gnb__item {
  position: relative;
}
.header .forPC .gnb__item:hover .gnb__link {
  font-weight: 700;
  color: var(--cBlue);
}
.header .forPC .gnb__link {
  font-weight: 500;
  padding: 48px 0;
  font-size: 18px;
}
.header .forPC .gnb__depth {
  display: none;
  padding: 26px 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: var(--hdHeight);
  width: 162px;
  text-align: center;
  height: var(--hdOpen);
  border-right: 1px solid #F6F6F6;
}
.header .forPC .gnb__depth:first-of-type {
  border-left: 1px solid #F6F6F6;
}
.header .forPC .gnb__depth li {
  padding: 14px 0;
}
.header .forPC .gnb__depth:hover {
  background: #F6F6F6;
}
.header .forPC .gnb__depth1 {
  font-weight: 500;
}
.header .forPC .gnb__depth1:hover {
  color: var(--cBlue);
}
.header__lang ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__lang ul li {
  font-size: var(--fsz18);
  position: relative;
}
.header__lang ul li:not(:first-child)::before {
  display: block;
  content: "";
  position: absolute;
  width: 2px;
  height: 16px;
  background-color: var(--cBlk);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -16px;
}
.header__lang ul li.on {
  font-weight: 700;
  color: var(--cBlue);
}

/* index */
#indexPage .hero {
  height: 100vh;
  background: url(/asset/images/index/hero.jpg) no-repeat left bottom 68px/auto 680px;
}
#indexPage .hero .inner {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
}
#indexPage .hero__text {
  text-align: right;
  padding-bottom: 68px;
}
#indexPage .hero__text .name {
  font-size: 20px;
  font-weight: 700;
}
#indexPage .hero__text .main {
  margin-top: 8px;
  font-size: 68px;
  letter-spacing: -0.68px;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.08;
}
#indexPage .hero__text .scroll {
  display: block;
  width: 100px;
  margin: 140px 0 0 auto;
}
#indexPage .company {
  width: 100%;
  overflow: hidden;
  padding: 116px 0 242px;
  position: relative;
}
#indexPage .company__bg {
  width: 100%;
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#indexPage .company__bg .marquee {
  display: flex;
  white-space: nowrap;
  font-size: 150px;
  font-weight: 700;
  color: #F6F6F6;
  animation: scroll linear infinite;
  /* 기존 offset 유지 */
  /* 공통 애니메이션 */
}
#indexPage .company__bg .marquee:not(:first-child) {
  margin-top: -20px;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
#indexPage .company__text {
  padding-top: 110px;
  text-align: center;
}
#indexPage .company__text .title {
  font-size: 70px;
  font-weight: 800;
  margin-bottom: 40px;
}
#indexPage .company__text .conts p {
  font-size: var(--fsz18);
}
#indexPage .company__text .conts p strong {
  font-size: 20px;
  margin-bottom: 20px;
}
#indexPage .company__text .btn-company {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 38px;
  background: #fff;
  border: 1px solid var(--cBlk);
  width: 200px;
  margin: 34px auto 0;
}
#indexPage .company__text .btn-company span {
  font-size: 18px;
  font-weight: 600;
}
#indexPage .company__text .btn-company i {
  font-size: 20px;
}
#indexPage .company__text .btn-company:hover {
  background: var(--cBlue);
  color: #fff;
}
#indexPage .business {
  margin-bottom: 242px;
}
#indexPage .business__title {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  margin-bottom: 42px;
}
#indexPage .business__list {
  gap: 20px;
}
#indexPage .business__item {
  height: 336px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#indexPage .business__item:hover .business__wrap {
  background-color: rgba(18, 25, 32, 0);
}
#indexPage .business__wrap {
  width: 100%;
  height: 100%;
  background-color: var(--cBlk);
  color: #fff;
  position: relative;
  align-content: center;
  transition: all 0.3s;
  padding: 10px;
}
#indexPage .business__text--num {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 4px;
}
#indexPage .business__text--title {
  font-size: 30px;
  font-weight: 600;
}
#indexPage .business i {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 80px;
  color: var(--cBlue);
  font-size: 30px;
}
#indexPage .video figure {
  aspect-ratio: 16/9;
  margin: 0 auto;
  width: 1080px;
}
@supports not (aspect-ratio: 16/9) {
  #indexPage .video figure::before {
    content: "";
    float: left;
    padding-top: calc((9 / 16) * 100%);
  }
  #indexPage .video figure::after {
    content: "";
    display: block;
    clear: both;
  }
}
#indexPage .video figure iframe {
  width: 100%;
  height: 100%;
}

/* subPage */
.subPage {
  padding-top: calc(50px + var(--hdHeight));
}
.subPage .subPageTitle {
  width: 100%;
  height: 190px;
  text-align: center;
  color: #fff;
  align-content: center;
  background: var(--cBlk);
  margin-bottom: 100px;
}
.subPage .subPageTitle h2 {
  font-size: 34px;
}

/* company */
.subPage.company .desc {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
}
.subPage.company .head {
  font-size: 34px;
  margin-bottom: 30px;
}
.subPage.company .intro {
  padding-bottom: 100px;
  margin-bottom: 100px;
  border-bottom: 1px solid #DBE1E6;
}
.subPage.company .intro .head {
  font-weight: 900;
}

#ceo {
  text-align: center;
}
#ceo .conts__cont {
  margin-bottom: 50px;
}
#ceo .conts__cont .desc {
  font-size: 20px;
  font-weight: 500;
}
#ceo .conts__sign {
  margin-top: 90px;
}
#ceo .conts__sign span {
  font-size: 20px;
  font-weight: 500;
  margin-right: 20px;
}
#ceo .conts__sign strong {
  font-size: 30px;
  font-weight: 800;
}

#overview .intro {
  text-align: center;
}
#overview .conts {
  width: fit-content;
  margin: 0 auto;
}
#overview .conts dl {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  gap: 120px;
}
#overview .conts dl:not(:last-child) {
  margin-bottom: 30px;
}
#overview .conts dl dt {
  width: 70px;
  text-align-last: justify;
  flex-shrink: 0;
}
#overview .conts dl dd {
  color: #7D868F;
}
#overview .conts dl dd strong {
  color: var(--cBlk);
}

#history .history__wrap {
  display: flex;
  gap: 104px;
  justify-content: end;
}
#history .history__wrap:last-child .history__conts {
  border-bottom: 2px solid var(--cBlk);
}
#history .history__year {
  padding-top: 42px;
  text-align: right;
}
#history .history__year-title {
  font-size: 124px;
  font-weight: 900;
  margin-bottom: 12px;
}
#history .history__year-deco {
  font-size: 50px;
  font-weight: 700;
  color: #DBE1E6;
}
#history .history__conts {
  border-top: 2px solid var(--cBlk);
  width: 810px;
}
#history .history__list li {
  font-size: var(--fsz18);
  font-weight: 500;
  padding: 40px 0;
  line-height: 1.3;
}
#history .history__list li:not(:last-child) {
  border-bottom: 1px solid #DBE1E6;
}
#history .history__list li strong {
  font-weight: 800;
}

#location .info {
  margin-bottom: 100px;
}
#location .info__items {
  display: flex;
  gap: 50px;
  justify-content: center;
}
#location .info__item dt {
  font-size: 20px;
  font-weight: 700;
  color: var(--cBlue);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cBlk);
  margin-bottom: 22px;
}
#location .info__item dd {
  font-size: 18px;
  font-weight: 600;
}
#location .info__item.adrs {
  width: 800px;
}
#location .info__item.num {
  width: 350px;
}
#location .map iframe {
  width: 100%;
  height: 500px;
}

/* business */
.subPage.business .info {
  display: flex;
  gap: 64px;
}
.subPage.business .info__image {
  width: 600px;
}
.subPage.business .info__conts {
  padding-top: 34px;
  flex: 1;
}
.subPage.business .info__title {
  background: #F6F6F6;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 46px;
}
.subPage.business .info__title h3 {
  font-size: 26px;
  color: var(--cBlue);
  padding: 12px 30px;
}
.subPage.business .info__title .btn-pd {
  width: 200px;
  padding: 0 38px;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.subPage.business .info__title .btn-pd i {
  font-size: 20px;
}
.subPage.business .info__title .btn-pd:hover {
  background: var(--cBlue);
  color: #fff;
}
.subPage.business .info__wrap {
  padding: 0 36px;
}
.subPage.business .info__desc {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 38px;
}
.subPage.business .info__spec dl {
  font-size: 18px;
}
.subPage.business .info__spec dl dt {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--cBlue);
}
.subPage.business .info__spec dl dd {
  font-weight: 300;
  color: #7d868f;
}
.subPage.business .info__spec dl:not(:last-child) {
  margin-bottom: 26px;
}

/* product */
.subPage.product .intro {
  padding-bottom: 50px;
  border-bottom: 1px solid #DBE1E6;
  margin-bottom: 50px;
}
.subPage.product .intro__cate {
  font-size: 20px;
  font-weight: 700;
  color: var(--cBlue);
  margin-bottom: 12px;
}
.subPage.product .intro__tit {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}
.subPage.product .intro__desc {
  font-size: var(--fsz18);
  font-weight: 600;
}
.subPage.product .list__wrap {
  gap: 50px 8px;
}
.subPage.product .list__item figcaption {
  font-size: 18px;
  width: 100%;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--cBlk);
  font-weight: 800;
}
.subPage.product .list__image {
  height: 300px;
  position: relative;
}
.subPage.product .list__image .spec {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  background: var(--cBlk);
  padding: 12px 36px;
  font-style: normal;
}

/* quality */
#process .sectTit {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 50px;
}
#process .sectSub {
  text-align: center;
  font-size: 26px;
  color: var(--cBlue);
  font-weight: 700;
}
#process hr {
  width: 50px;
  bottom: 0;
  height: 1px;
  background: var(--cBlk);
  margin: 40px auto;
}
#process .process {
  background: #F6F6F6;
  padding: 118px 0 82px;
  z-index: -2;
  position: relative;
  overflow: hidden;
}
#process .process__list {
  position: relative;
}
#process .process__item figure {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  margin: 0 auto 30px;
}
#process .process__item figure img {
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}
#process .process__item:not(:last-child) figure::before {
  display: block;
  content: "";
  position: absolute;
  right: -100%;
  width: 100%;
  height: 1px;
  top: 75px;
  border-bottom: 2px dashed #BBC2C8;
  z-index: -1;
}
#process .process__item figcaption {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
#process .crane {
  margin-bottom: 170px;
}
#process .crane .process__item:last-child img {
  height: 198px;
}

#equipment .table {
  border-bottom: 1px solid var(--cBlk);
}
#equipment .equipTable {
  width: 100%;
  border-collapse: collapse;
}
#equipment .equipTable thead {
  border: 2px solid var(--cBlk);
  border-left: 0;
  border-right: 0;
}
#equipment .equipTable thead th {
  font-size: 20px;
  font-weight: 800;
  padding: 24px;
}
#equipment .equipTable tbody td {
  font-size: var(--fsz18);
  font-weight: 600;
  text-align: center;
  padding: 16px;
  border-bottom: 1px solid var(--cBlk);
}
#equipment .equipTable tbody td.bbGray {
  border-bottom: 1px solid #DBE1E6;
}

#certification .certi ul {
  gap: 30px 18px;
}
#certification .certi ul li figure {
  border: 1px solid #DBE1E6;
}

/* pr */
#videos .video {
  width: 1080px;
  height: auto;
  aspect-ratio: 16/9;
  margin: 0 auto;
}
@supports not (aspect-ratio: 16/9) {
  #videos .video::before {
    content: "";
    float: left;
    padding-top: calc((9 / 16) * 100%);
  }
  #videos .video::after {
    content: "";
    display: block;
    clear: both;
  }
}
#videos .video iframe {
  width: 100%;
  height: 100%;
}

#catalog .catalog__list {
  gap: 30px;
}
#catalog .catalog__item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 380/542;
  border: 1px solid #DBE1E6;
}
@supports not (aspect-ratio: 380/542) {
  #catalog .catalog__item::before {
    content: "";
    float: left;
    padding-top: calc((542 / 380) * 100%);
  }
  #catalog .catalog__item::after {
    content: "";
    display: block;
    clear: both;
  }
}
#catalog .catalog__item a {
  width: 100%;
  height: 100%;
  text-align: center;
  align-content: center;
  position: relative;
  opacity: 0;
  transition: opacity 0.3s;
}
#catalog .catalog__item a:hover {
  opacity: 1;
}
#catalog .catalog__item a::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  background: rgba(0, 80, 171, 0.8);
  top: 0;
  left: 0;
}
#catalog .catalog__title {
  margin-bottom: 22px;
  font-size: 26px;
  z-index: 1;
}
#catalog .catalog__text {
  color: #fff;
  position: relative;
  z-index: 1;
}
#catalog .catalog__text i {
  font-size: 34px;
  z-index: 1;
}

/* ==================================
   ✅ Responsive Imports
================================== */
.JAPver * {
  font-family: "Noto Sans JP", sans-serif;
  word-break: auto-phrase;
}
.JAPver .fa {
  font: normal normal normal 14px/1 FontAwesome !important;
}
.JAPver #indexPage .btn-index {
  padding: 14px 20px;
  width: fit-content;
}
.JAPver #indexPage .btn-index span {
  margin-right: 20px;
}
.JAPver .subPage .flexArea {
  gap: 20px;
}
.JAPver #production .line .flexWrap figcaption {
  width: fit-content;
  padding: 0 20px;
}
@media screen and (max-width: 1440px) {
  .JAPver .subPage .flexArea {
    gap: 0;
  }
}

.CHNver * {
  font-family: "Noto Sans SC", sans-serif;
  word-break: auto-phrase;
}
.CHNver .fa {
  font: normal normal normal 14px/1 FontAwesome !important;
}
.CHNver .subPage#intro .process__step {
  padding: 32px;
}
.CHNver .subPage#intro .process__side li {
  font-size: 12px;
}

.ENGver {
  --hdOpen: 330px;
}
.ENGver .header .forPC .gnb__item {
  width: 162px;
}
.ENGver .header .forPC .gnb__list {
  display: flex;
  gap: 0;
  text-align: center;
}
.ENGver .header .forPC .gnb__link {
  padding: 0;
  height: var(--hdHeight);
  align-content: center;
}
.ENGver #overview .conts dl dt {
  width: 150px;
  text-align-last: unset;
}
@media screen and (max-width: 1440px) {
  .ENGver #overview .conts dl {
    gap: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .ENGver #indexPage .business i {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .ENGver .footer__btn-top {
    bottom: 0;
    top: auto;
    margin-bottom: 0;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .ENGver #overview .conts dl {
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 500px) {
  .ENGver .footer__btn-top {
    bottom: auto;
    top: 0;
  }
  .ENGver #overview .conts dl dt {
    width: 100%;
  }
}

@media screen and (max-width: 1700px) {
  :root {
    --inner: 60px;
  }
  #indexPage .hero {
    background-size: auto 560px;
  }
}
@media screen and (max-width: 1440px) {
  .header .gnb__list {
    gap: 80px;
  }
  .header .gnb__depth {
    width: 142px;
  }
  #indexPage .hero {
    background-size: auto 420px;
    height: auto;
    padding-top: calc(var(--hdHeight) + 100px);
  }
  #indexPage .hero__text .main {
    font-size: 58px;
  }
  #indexPage .company__text .title {
    font-size: 60px;
  }
  #indexPage .company__bg .marquee {
    font-size: 130px;
  }
  #indexPage .video figure {
    width: 100%;
  }
  .subPage.company .head {
    font-size: 32px;
  }
  #ceo .conts__cont .desc {
    font-size: var(--fsz18);
  }
  #history .history__year-title {
    font-size: 102px;
  }
  #history .history__year-deco {
    font-size: 36px;
  }
  #history .history__wrap {
    gap: 74px;
  }
  #history .history__year {
    padding-top: 0;
  }
  .subPage.business .info__image {
    width: 440px;
  }
  .subPage.business .info__wrap {
    padding: 0 26px;
  }
  .subPage.business .info__title .btn-pd {
    width: 190px;
  }
  .subPage.business .info__title {
    margin-bottom: 26px;
  }
  .subPage.business .info__title h3 {
    font-size: 24px;
  }
  .grid4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid6,
  .grid7 {
    grid-template-columns: repeat(4, 1fr);
  }
  #process .process__list {
    gap: 40px 0;
  }
  #process .process__list .process__item {
    z-index: 1;
  }
  #videos .video {
    width: 100%;
  }
  #catalog .catalog__list {
    grid-template-columns: repeat(4, 1fr);
  }
  #process .process__item:not(:last-child) figure::before {
    right: auto;
    width: 12.7vw;
    left: 150px;
  }
}
@media screen and (max-width: 1024px) {
  .forPC {
    display: none;
  }
  .forMOB {
    display: block;
  }
  .header__wrap {
    justify-content: normal;
    gap: 30px;
  }
  .header__lang {
    margin-left: auto;
  }
  /* -----------------------------
       모바일 햄버거 버튼
  ----------------------------- */
  .moMenuBtn {
    display: flex;
    width: 28px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    cursor: pointer;
    background: none;
    border: 0;
    padding: 0;
    z-index: 9100;
  }
  .moMenuBtn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .moMenuBtn.on span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .moMenuBtn.on span:nth-child(2) {
    opacity: 0;
  }
  .moMenuBtn.on span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  /* -----------------------------
       모바일 GNB 전체 영역
       (여기가 실제 슬라이드 메뉴 컨테이너)
  ----------------------------- */
  .forMOB .gnb {
    position: fixed;
    top: var(--hdHeight);
    right: 0;
    width: 50%;
    height: calc(100vh - var(--hdHeight));
    background: #fff;
    z-index: 9000;
    overflow-y: auto;
    /* 오른쪽 → 왼쪽 슬라이드 */
    transform: translateX(100%);
    transition: transform 0.35s ease;
    /* 내부 레이아웃 */
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    /* 리스트 구조 */
    /* 1depth 아이템 */
    /* 1depth 링크 */
    /* 2depth */
    /* 2depth 링크 */
  }
  .forMOB .gnb.active {
    transform: translateX(0);
    box-shadow: -5px 5px 13px rgba(0, 0, 0, 0.0901960784);
  }
  .forMOB .gnb__list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .forMOB .gnb__item {
    position: static;
    border-bottom: 1px solid #eee;
    padding: 16px 0;
  }
  .forMOB .gnb__item:hover .gnb__link {
    color: inherit;
    font-weight: inherit;
  }
  .forMOB .gnb__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
  }
  .forMOB .gnb__depth {
    display: none;
    width: 100%;
    height: auto;
    border: 0;
    padding: 8px 0 8px 14px;
    background: transparent;
    text-align: left;
  }
  .forMOB .gnb__depth li {
    padding: 6px 0;
  }
  .forMOB .gnb__depth1 {
    display: block;
    font-size: 15px;
    font-weight: 400;
  }
  #indexPage .hero {
    background-size: auto 290px;
  }
  #indexPage .company__text .title {
    font-size: 50px;
  }
  .footer__left-wrap {
    gap: 40px;
  }
  .footer__info .num {
    flex-direction: column;
    gap: 8px;
  }
  #indexPage .company__text .btn-company span {
    font-size: 16px;
  }
  #indexPage .business__item {
    height: 286px;
  }
  #indexPage .business {
    margin-bottom: 152px;
  }
  #overview .conts dl {
    gap: 60px;
  }
  #history .history__year-title {
    font-size: 62px;
  }
  #history .history__year-deco {
    font-size: 28px;
  }
  #history .history__list li {
    padding: 30px 0;
  }
  #location .info__items {
    flex-direction: column;
  }
  #location .info__item {
    width: 100% !important;
  }
  .subPage.business .info {
    flex-direction: column;
    gap: 0;
  }
  .subPage.business .info__image {
    margin: 0 auto;
  }
  .subPage.product .list__image {
    height: 240px;
  }
  .grid6,
  .grid7 {
    grid-template-columns: repeat(3, 1fr);
  }
  #process .process__list::before,
  #process .process__list::after {
    display: none;
  }
  #process .process__item:not(:last-child) figure::before {
    width: 14.4vw;
  }
  #catalog .catalog__list {
    grid-template-columns: repeat(3, 1fr);
  }
  #catalog .catalog__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --hdHeight: 86px;
    --inner: 40px;
  }
  #indexPage .hero__text .main {
    font-size: 48px;
  }
  .header .logo {
    width: 62px;
    height: 50px;
  }
  #indexPage .hero {
    background-size: auto 220px;
  }
  #indexPage .company__bg .marquee {
    font-size: 90px;
  }
  #indexPage .company__text {
    padding-top: 0;
  }
  #indexPage .company {
    padding: 116px 0;
  }
  #indexPage .company__text .title {
    font-size: 40px;
  }
  #indexPage .company__text .btn-company {
    padding: 16px 28px;
  }
  #indexPage .business__text--title {
    font-size: 24px;
  }
  #indexPage .business__item .business__wrap {
    background-color: rgba(18, 25, 32, 0);
  }
  .footer {
    margin-top: 140px;
  }
  .footer__wrap {
    flex-direction: column;
    align-items: start;
  }
  .footer__btn-top {
    position: absolute;
    right: var(--inner);
    top: 0;
  }
  .footer__wrap {
    gap: 10px;
  }
  .subPage.company .desc {
    font-size: 18px;
  }
  .subPage.company .head {
    font-size: 30px;
  }
  .subPage.company .head {
    font-size: 26px;
  }
  #overview .conts dl {
    gap: 40px;
  }
  #history .history__wrap {
    flex-direction: column;
    gap: 24px;
  }
  #history .history__conts {
    width: 100%;
  }
  #history .history__year {
    padding-top: 34px;
    text-align: left;
  }
}
@media screen and (max-width: 500px) {
  :root {
    --inner: 20px;
    --fsz18: 16px;
    --hdHeight: 50px;
  }
  .header .logo {
    width: 32px;
    height: 26px;
  }
  .moMenuBtn {
    width: 20px;
    height: 18px;
  }
  #indexPage .company__bg .marquee {
    font-size: 98px;
  }
  .moMenuBtn.on span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  #indexPage .company__text .conts p {
    margin-bottom: 20px;
  }
  #indexPage .company__text .btn-company {
    width: 139px;
    padding: 12px 22px;
    background: var(--cBlue);
    color: #fff;
    border-color: var(--cBlue);
  }
  #indexPage .hero__text .main {
    font-size: 28px;
  }
  #indexPage .hero {
    background-size: auto 170px;
    background-position: left bottom 118px;
  }
  #indexPage .company__text .title {
    font-size: 30px;
  }
  .grid4 {
    grid-template-columns: repeat(1, 1fr);
  }
  #indexPage .business {
    margin-bottom: 62px;
  }
  .footer__wrap {
    text-align: center;
  }
  .footer__left-wrap {
    flex-direction: column;
  }
  .footer__left-wrap {
    gap: 12px;
  }
  .footer__info .name {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .footer__right {
    width: 100%;
  }
  .footer__menu {
    justify-content: center;
  }
  #history .history__year {
    padding-top: 0;
  }
  .forMOB .gnb {
    width: 80%;
  }
  .subPage.company .head {
    font-size: 24px;
    margin-bottom: 36px;
  }
  .subPage.company .desc {
    font-size: 16px;
  }
  .subPage.company .intro {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
  #ceo .conts__sign strong {
    font-size: 26px;
  }
  .subPage .subPageTitle h2 {
    font-size: 20px;
  }
  #overview .conts dl {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 16px;
  }
  #overview .conts dl dt {
    width: 100%;
    text-align-last: unset;
  }
  .footer {
    margin-top: 100px;
    padding: 32px 0;
  }
  .footer__left {
    margin-top: 88px;
  }
  .footer__left-wrap .logo {
    width: 90px;
    height: 72px;
    margin: 0 auto;
  }
  .footer__btn-top {
    width: 56px;
    height: 56px;
    font-size: 22px;
    right: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #history .history__year-title {
    font-size: 40px;
    margin-bottom: -28px;
  }
  #history .history__year-deco {
    font-size: 20px;
    text-align: right;
  }
  #history .history__conts {
    border-top: 0;
    border-bottom: 2px solid var(--cBlk);
    margin-bottom: 60px;
  }
  #history .history__list li {
    padding: 36px 0;
  }
  #location .info__items {
    padding: 0 26px;
  }
  #location .info__item dt {
    font-size: 18px;
  }
  #location .map iframe {
    height: 400px;
  }
  .subPage.business .info__image {
    width: 100%;
  }
  .subPage.business .info__title .btn-pd {
    width: auto;
    padding: 20px;
    font-size: 20px;
    color: #fff;
    background: var(--cBlue);
  }
  .subPage.business .info__title .btn-pd span {
    display: none;
  }
  .subPage.business .info__title h3 {
    padding: 16px 30px;
    font-size: 20px;
    align-content: center;
  }
  .subPage.business .info__title {
    margin-bottom: 36px;
  }
  .subPage.business .info__desc {
    font-size: 18px;
    margin-bottom: 36px;
  }
  .subPage.business .info__spec dl {
    font-size: 16px;
  }
  .subPage.product .list__image .spec {
    font-size: 14px;
  }
  .subPage.product .list__wrap {
    gap: 20px 8px;
  }
  #certification .certi ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .subPage.business .info__wrap {
    padding: 0;
  }
  .subPage.product .intro__cate {
    font-size: 18px;
  }
  .subPage.product .intro__tit {
    font-size: 22px;
  }
  .subPage .subPageTitle {
    height: 100px;
    margin-bottom: 60px;
  }
  .subPage {
    padding-top: calc(20px + var(--hdHeight));
  }
  #process .sectTit {
    font-size: 30px;
  }
  #process .sectSub {
    font-size: 24px;
  }
  .grid6,
  .grid7 {
    grid-template-columns: repeat(1, 1fr);
  }
  #process .process__item:not(:last-child) figure::before {
    display: none;
  }
  #equipment .equipTable thead th {
    font-size: 18px;
  }
  #catalog .catalog__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  #catalog .catalog__item a {
    opacity: 1;
  }
  #catalog .catalog__title {
    font-size: 16px;
    padding: 10px;
  }
}
.more_opt li {
  width: 104px;
}

.pg_wrap {
  float: unset !important;
  display: flex !important;
  justify-content: center !important;
  padding-top: 50px !important;
}

.pg_page,
.pg_current {
  border: 0 !important;
  align-content: center;
  width: 60px;
  height: 60px;
  line-height: 1;
}

.pg_current {
  border-radius: 0;
  background: none;
  color: #101A2D;
  min-width: unset;
  padding: 0;
}

.pg_page {
  background-color: transparent !important;
}

.pg_start,
.pg_end {
  background-color: #F8F9FD !important;
}

.bo_v_nb {
  line-height: 1.2;
}

.bo_v_nb li {
  display: flex;
  font-size: 1em;
}

.bo_v_nb li .nb_tit {
  white-space: nowrap;
}

.bo_v_nb li .nb_date {
  display: block;
  margin-left: auto;
}

input[type=text]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: none;
}

#bo_list tbody tr {
  border-left: 0;
}
#bo_list tbody tr:hover {
  border-left: 0;
}

/* 링크 부분 */
#bo_v_link li::after {
  display: block;
  content: "";
  clear: both;
}

#bo_v img {
  width: auto;
}

/* 공통2 */
.imgClick {
  font-size: 1rem;
  text-align: center;
  color: #ccc;
  margin-top: 20px;
}

.board .btnArea {
  width: 100%;
  position: relative;
  font-weight: 600;
  margin-top: 32px;
  display: flex;
  gap: 20px;
  justify-content: center;
  line-height: 1;
}

.btnArea .btn-arrow,
.btnArea .btn-list {
  width: 30px;
  height: 30px;
  background: none;
  font-size: 26px;
  text-align: center;
  align-content: center;
  color: #BBC2C8;
  display: block;
}

.btnArea .btn-arrow:hover,
.btnArea .btn-list:hover {
  color: #0051AB;
}

.board .btnArea .btn-arrow:hover span {
  text-decoration: underline;
}

.board .btnArea .btn-arrow i {
  font-size: 20px;
}

.board .btnArea .btn-prev {
  left: 0;
}

.board .btnArea .btn-next {
  right: 0;
}

#bo_v {
  border-bottom: 2px solid #DBE1E6;
}

#bo_v_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-top: 2px solid #DBE1E6;
  border-bottom: 2px solid #DBE1E6;
  padding: 50px 96px;
}
#bo_v_title .writeDate {
  font-size: 22px;
  font-weight: 400;
  color: #BBC2C8;
}

#bo_v_title .bo_v_tit {
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

#bo_w .bo_w_flie .file_del {
  top: 30px;
}

#bo_v_atc {
  padding: 20px 96px;
}
#bo_v_atc * {
  word-break: auto-phrase;
}

.thumnail {
  background: #e2e2e2;
  padding-top: 100px;
}

.pdInfo figure {
  position: relative;
  padding-right: 50px;
}
.pdInfo figure::before {
  display: block;
  content: "";
  position: absolute;
  width: var(--inner);
  height: 100%;
  background: #e2e2e2;
  left: calc(var(--inner) * -1);
  top: 0;
}

@media screen and (max-width: 1440px) {
  #gall_ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  #bo_v_title {
    flex-direction: column;
    gap: 10px;
    align-items: start;
    padding: 50px 0;
  }
  #bo_v_title .writeDate {
    font-size: 18px;
  }
  #bo_v_atc {
    padding: 20px 0;
  }
  #gall_ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .pdInfo {
    flex-direction: column;
    gap: 0;
  }
  #bo_v_img a.view_image {
    text-align: center;
    align-content: center;
  }
  .pdInfo figure {
    padding-left: 0;
    padding-right: 0;
  }
  .btnArea .btn-arrow {
    bottom: 0;
  }
  .pdInfo__cont .name {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  #bo_cate_ul {
    flex-wrap: wrap;
  }
  #bo_cate_ul li {
    outline: 1px solid #EFEFEF;
    flex-grow: 1;
    width: 50%;
  }
  #bo_cate_ul li:first-child {
    width: 100%;
  }
  #bo_cate_ul li a {
    width: 100%;
    height: 100%;
    margin: 0;
  }
  #bo_cate_on {
    width: 100%;
    background: #EFEFEF;
    color: #101A2D !important;
    border: 0 !important;
    font-weight: 400 !important;
  }
  #gall_ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .pdInfo__cont dl dt {
    width: 88px;
  }
  #bo_list tbody td {
    padding: 0 10px;
  }
  #bo_v_title {
    padding: 24px 0;
  }
}
@media screen and (max-width: 500px) {
  #bo_v_title .bo_v_tit {
    font-size: 18px;
  }
  #bo_cate_ul li a {
    font-size: 14px;
  }
  #bo_v_title {
    text-align: center;
    align-items: center;
  }
  #bo_v img {
    width: 100%;
    height: auto;
  }
  .tbl_head01 thead th {
    font-size: 18px;
  }
  .writeNum,
  #bo_v_title .writeDate {
    font-size: 14px;
  }
  .tbl_head01 tbody tr:hover td {
    background: none;
  }
}
/* 🔚 Responsive Imports */

/*# sourceMappingURL=style.css.map */
