@charset "UTF-8";
/* ==================================
   ✅ Variables (CSS Custom Properties)
================================== */
:root {
  --fPrtdd: "Pretendard", sans-serif;
  --cBlk: #101A2D;
  --cOrg: #FFAB19;
  --cNv: #072151;
}

/* ==================================
   ✅ 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%;
}

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(255, 171, 25, 0.3);
}

::-moz-selection {
  background-color: rgba(255, 171, 25, 0.3);
}

::-webkit-selection {
  background-color: rgba(255, 171, 25, 0.3);
} /* 🔚 Utilities */
/* ==================================
   ✅ Scrollbar
================================== */
/* 스크롤바 설정 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* 스크롤바 막대 설정 */
::-webkit-scrollbar-thumb {
  height: 15%;
  background-color: var(--cGreen);
  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 */
:root {
  --inner: 150px;
  --hdHeight: 120px;
  --spTit: 450px;
}

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

.forMOB {
  display: none;
}

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

.header .inner,
.footer .inner {
  max-width: unset;
  padding: 0 var(--inner);
}

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

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

body.noScroll {
  overflow: hidden;
}

/* 🔚 Common */
/* header */
.header {
  background: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: var(--hdHeight);
  z-index: 1000;
  transition: all 0.3s;
  padding-top: 34px;
}
.header .inner {
  display: flex;
  height: 100%;
}
.header .logo {
  margin-left: -50px;
  margin-right: 118px;
}
.header .logo a {
  width: 250px;
  height: 50px;
}
.header__gnb .gnb__wrap {
  display: flex;
}
.header__gnb .gnb__list {
  width: 200px;
  text-align: center;
  position: relative;
}
.header__gnb .gnb__list:hover .gnb__dep1 {
  color: var(--cOrg);
}
.header__gnb .gnb__dep1 {
  height: 50px;
  align-content: center;
  font-weight: 600;
  font-size: 18px;
}
.header__gnb .gnb__dep2 {
  display: none;
  width: 100%;
  position: absolute;
  top: 85px;
  left: 0;
  padding: 16px 0;
}
.header__gnb .gnb__dep2 li a {
  padding: 16px 0;
}
.header__gnb .gnb__dep2 li:hover {
  color: var(--cOrg);
}
.header .lang {
  margin-left: auto;
  padding-top: 16px;
  font-size: 18px;
}
.header .lang__current {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
}
.header .lang__current i {
  font-size: 20px;
}
.header .lang ul {
  position: absolute;
  top: 32px;
  right: 0;
  padding: 14px 0;
  text-align: center;
  width: 100px;
  background: #fff;
  display: none;
}
.header .lang ul li {
  font-weight: 600;
}
.header .lang ul li a {
  padding: 6px 0;
}
.header .lang ul li:hover {
  font-weight: 900;
}
.header::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #F8F9FD;
  top: var(--hdHeight);
  left: 0;
  opacity: 0.05;
}
.header.active {
  background: var(--cBlk);
  color: #fff;
  height: 424px;
}
.header.active .logo {
  filter: brightness(0) invert(1);
}
.header.active .lang__current i {
  color: var(--cOrg);
}
.header.active .lang li {
  color: var(--cBlk);
}

/* footer */
.footer {
  margin-top: 100px;
  padding-top: 70px;
  padding-bottom: 50px;
  position: relative;
}
.footer::before {
  display: block;
  content: "";
  position: absolute;
  width: calc(100% - var(--inner) * 2);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 1px;
  background: var(--cBlk);
}
.footer .logo {
  margin-bottom: 40px;
}
.footer .logo a {
  width: 310px;
  height: 72px;
}
.footer__contents {
  font-size: 18px;
  align-items: end;
  display: flex;
  justify-content: space-between;
}
.footer__contents--left address {
  margin-bottom: 12px;
}
.footer__contents--left span {
  color: #858585;
  margin-right: 12px;
}
.footer__contents--right {
  text-align: right;
}
.footer__num {
  display: flex;
  gap: 24px;
}
.footer__menu {
  display: flex;
  justify-content: right;
  gap: 24px;
  margin-bottom: 8px;
}
.footer__menu li:hover {
  font-weight: 600;
}
.footer .btn-top {
  font-weight: 500;
  text-align: center;
  align-content: center;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  border: 1px solid var(--cBlk);
  position: absolute;
  right: var(--inner);
  top: 0;
}
.footer .btn-top:hover {
  background: var(--cBlk);
  color: var(--cOrg);
}

/* index */
#indexPage {
  /* hero */
  /* products */
  /* index에서 이동 버튼 */
  /* solution */
  /* tech */
  /* cs */
}
#indexPage .fp-section.bottom-align .fp-tableCell {
  align-content: end;
}
#indexPage .hero {
  background: url(/asset/images/index/hero.jpg) no-repeat center/cover;
  color: #fff;
  position: relative;
}
#indexPage .hero__title {
  font-size: 65px;
  font-weight: 800;
  margin-bottom: 12px;
}
#indexPage .hero__desc {
  font-size: 18px;
  font-weight: 300;
}
#indexPage .hero .scDown {
  position: absolute;
  bottom: 0;
  left: var(--inner);
  display: flex;
}
#indexPage .hero .scDown__bar {
  width: 2px;
  height: 184px;
  background: var(--cOrg);
  overflow: hidden;
}
#indexPage .hero .scDown__bar i {
  display: block;
  width: 100%;
  height: 8px;
  background: #fff;
  transform: translateY(-8px);
  animation: scrollDown 1.5s linear infinite;
}
@keyframes scrollDown {
  0% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(184px);
  }
}
#indexPage .hero .scDown__txt {
  font-size: 14px;
  font-weight: 500;
  transform: rotate(90deg) translateY(-24px);
  transform-origin: left top;
}
#indexPage .products {
  background: #FBFBFB;
  text-align: center;
}
#indexPage .products__title {
  margin-bottom: 50px;
}
#indexPage .products__title--sub {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
#indexPage .products__title--tit {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 14px;
}
#indexPage .products__title--desc {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}
#indexPage .products__fields {
  display: flex;
  gap: 24px;
}
#indexPage .products__field {
  padding: 10px;
  background: #fff;
  align-content: center;
  position: relative;
  box-shadow: 20px 20px 20px rgba(7, 33, 81, 0.0901960784);
  border-radius: 20px;
  height: 300px;
  flex: 1;
  transition: all 0.3s;
}
#indexPage .products__field--tit {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
#indexPage .products__field--desc {
  font-size: 18px;
}
#indexPage .products__field--img {
  width: 200px;
  height: auto;
  position: absolute;
  right: 44px;
  bottom: -67px;
}
#indexPage .products__field:hover {
  border-radius: 150px;
  background: var(--cBlk);
  color: var(--cOrg);
}
#indexPage .btn-index {
  width: 200px;
  height: 50px;
  border: 1px solid #101A2D;
  border-radius: 44px;
  padding: 14px 44px;
  align-content: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
#indexPage .btn-index:hover {
  background: var(--cBlk);
  color: var(--cOrg);
}
#indexPage .solution__top {
  margin-bottom: 70px;
}
#indexPage .solution__title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}
#indexPage .solution__products {
  font-size: 20px;
  font-weight: 300;
  color: #858585;
}
#indexPage .solution .btn-pd {
  position: absolute;
  bottom: 0;
  right: var(--inner);
}
#indexPage .solution__bottom {
  background: url(/asset/images/index/solution.jpg) no-repeat center/cover;
  width: 100%;
  height: 500px;
}
#indexPage .tech .inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
#indexPage .tech__text--tit {
  font-size: 65px;
  font-weight: 800;
  margin-bottom: 12px;
}
#indexPage .tech__text--desc {
  font-size: 20px;
  margin-bottom: 38px;
}
#indexPage .tech__text .btn-tech {
  margin-left: 0;
}
#indexPage .tech__image {
  border-radius: 20px;
  overflow: hidden;
  width: 930px;
  height: 430px;
}
#indexPage .cs {
  padding: 122px 0;
  color: #fff;
  background: url(/asset/images/index/cs.jpg) no-repeat center/cover;
  text-align: center;
}
#indexPage .cs__title {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 20px;
}
#indexPage .cs__desc {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 30px;
}
#indexPage .cs .btn-cs {
  border-color: #fff;
  background: transparent;
}

/* subPage */
.subPage {
  padding-top: 240px;
}
.subPage .sub-title {
  margin-bottom: 100px;
}
.subPage .sub-title__title {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--cBlk);
  font-size: 60px;
}
.subPage .flexArea {
  display: flex;
}
.subPage .flexArea .sideTitle {
  flex: 0 0 var(--spTit);
}
.subPage .flexArea .sideTitle h4 {
  font-size: 30px;
}
.subPage .flexArea .contentsArea {
  flex: 1;
  line-height: 1.45;
  font-size: 18px;
}
.subPage table {
  width: 100%;
  border-top: 2px solid var(--cBlk);
  margin-bottom: 50px;
  border-collapse: collapse;
  border-bottom: 1px solid var(--cBlk);
}
.subPage table thead th {
  border-bottom: 1px solid var(--cBlk);
}
.subPage table tr {
  font-size: 18px;
}
.subPage table tr:not(:last-child) {
  border-bottom: 1px solid #DEDEDE;
}
.subPage table tr th {
  padding: 30px 52px;
}
.subPage table tr th.w280 {
  width: 280px;
}
.subPage table tr td {
  align-content: center;
  padding: 30px 52px;
}
.subPage table tr td strong {
  margin-right: 20px;
}
.subPage table tr.bdb td {
  border-bottom: 1px solid var(--cBlk);
}
.subPage .w580 {
  width: calc((100% - 20px) / 2);
}

/* solution 공통 */
.solution .pageDesc {
  margin-bottom: 100px;
  text-align: center;
}
.solution .pageDesc__pd {
  font-size: 50px;
  margin-bottom: 10px;
}
.solution .pageDesc__desc {
  font-size: 18px;
  font-weight: 600;
}
.solution__sectImg {
  margin-bottom: 60px;
}
.solution__sectImg.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.solution__case {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 22px;
}
.solution__case figure {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 18px 28px;
  align-content: end;
  height: 250px;
}
.solution__case figure figcaption {
  font-size: 18px;
  color: #F8F9FD;
}
.solution__case figure.white {
  outline: 1px solid #DEDEDE;
}
.solution__case figure.white figcaption {
  color: var(--cBlk);
}
.solution .atc1 {
  margin-bottom: 100px;
}

#casting table tbody th {
  border-bottom: 1px solid var(--cBlk);
}

/* tech */
#intro .vision {
  margin-bottom: 134px;
}
#intro .vision .introGreeting {
  margin-bottom: 100px;
  align-items: end;
}
#intro .vision__spec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
  text-align: center;
}
#intro .vision__spec--item figure {
  margin-bottom: 24px;
}
#intro .vision__spec--text h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
#intro .result {
  margin-bottom: 200px;
}
#intro .goal__pd {
  display: flex;
  gap: 15px;
  margin-bottom: 60px;
}
#intro .goal__pd figure img {
  margin-bottom: 24px;
}
#intro .goal__pd figcaption {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
#intro .goal table caption {
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

#process .process {
  margin-bottom: 130px;
}
#process .process__greeting {
  margin-bottom: 100px;
}
#process .process__desc {
  font-weight: 600;
  align-items: end;
}
#process .process__desc span {
  color: var(--cNv);
}
#process .process__desc span i {
  font-style: normal;
  color: var(--cOrg);
}
#process .process__step {
  padding-left: var(--spTit);
  display: flex;
  position: relative;
}
#process .process__step::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--cBlk);
  top: 39px;
  left: 0;
}
#process .process__step--item {
  width: 206px;
}
#process .process__step--item .step {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
#process .process__step--item .circle {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cBlk);
  margin-bottom: 12px;
}
#process .process__step--item .circle.tri {
  border-radius: 0;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
#process .process__step--item .cont {
  font-size: 18px;
  font-weight: 700;
}
#process .forFlex {
  display: flex;
  gap: 10px;
}
#process .step {
  margin-bottom: 60px;
}
#process .step__conts figure {
  position: relative;
}
#process .step__conts figure .anlss {
  font-size: 18px;
  font-weight: 500;
  color: var(--cOrg);
  background: var(--cBlk);
  width: 140px;
  height: 50px;
  border-radius: 44px;
  position: absolute;
  right: 30px;
  bottom: 30px;
  text-align: center;
  align-content: center;
}
#process .step__desc {
  margin-top: 30px;
  font-size: 18px;
}
#process main {
  display: none;
}
#process main.on {
  display: block;
}
#process .tabArea {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  position: absolute;
  right: var(--inner);
  top: 310px;
}
#process .tabArea button {
  border: none;
  background: none;
  padding: 16px 38px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s;
  color: #DEDEDE;
  font-size: 24px;
  font-weight: 700;
  border-bottom: 4px solid transparent;
}
#process .tabArea button.on {
  color: var(--cNv);
  border-color: var(--cNv);
}

/* facility */
#production .line {
  margin-bottom: 60px;
}
#production .line .flexWrap {
  display: flex;
  justify-content: center;
  gap: 60px 20px;
  flex-wrap: wrap;
}
#production .line .flexWrap > div {
  width: calc((100% - 20px) / 2);
  position: relative;
}
#production .line .flexWrap figcaption {
  font-size: 18px;
  font-weight: 500;
  background: var(--cBlk);
  width: 140px;
  height: 50px;
  border-radius: 44px;
  color: #F8F9FD;
  position: absolute;
  right: 30px;
  bottom: 30px;
  text-align: center;
  align-content: center;
}
#production .facility .flexArea {
  margin-bottom: 60px;
}
#production .facility__image {
  display: flex;
  gap: 7px;
}
#production .facility table {
  border-bottom: 2px solid var(--cBlk);
}
#production .facility table caption {
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
#production .facility table tbody {
  border-bottom: 2px solid var(--cBlk);
}

#measure .facility__image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 10px;
}
#measure .facility__image img {
  height: auto;
}

/* company */
#ceo .greeting .contentsArea {
  background: url(/asset/images/company/bg-logo.svg) no-repeat right bottom/656px auto;
}
#ceo .greeting .contentsArea p {
  font-size: 18px;
  margin-bottom: 36px;
  line-height: 1.56;
}
#ceo .greeting__first {
  font-size: 20px;
  font-weight: 700;
}
#ceo .greeting .name {
  font-size: 26px;
  margin-left: 20px;
}

#overview .greeting {
  margin-bottom: 100px;
}
#overview .greeting .flexArea {
  align-items: end;
  margin-bottom: 100px;
}
#overview .about {
  margin-bottom: 200px;
}
#overview .about__title {
  font-size: 30px;
  margin-bottom: 100px;
  text-align: center;
}
#overview .about__title span {
  color: var(--cNv);
}
#overview .about__conts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
#overview .about__cont {
  text-align: center;
  height: 200px;
  padding-top: 56px;
}
#overview .about__cont:not(:last-child) {
  border-right: 1px solid #DEDEDE;
}
#overview .about__cont--dt {
  font-size: 22px;
  font-weight: 500;
  color: var(--cNv);
  margin-bottom: 14px;
}
#overview .about__cont--dd {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}
#overview .about__cont--point {
  font-size: 18px;
  font-weight: 500;
  color: var(--cOrg);
}
#overview .value {
  margin-bottom: 198px;
}
#overview .value__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
#overview .value__item figure {
  margin-bottom: 30px;
}
#overview .value__cont {
  text-align: center;
}
#overview .value__cont--tit {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
#overview .value__cont--desc {
  font-size: 18px;
  color: #858585;
}
#overview .vision {
  margin-bottom: 200px;
}
#overview .vision__conts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
#overview .vision__cont {
  text-align: center;
  background: var(--cNv);
  height: 300px;
  align-content: center;
  padding: 10px;
}
#overview .vision__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--cOrg);
  margin-bottom: 30px;
}
#overview .vision hr {
  margin: 0 auto 32px;
  border: 0;
  background: var(--cOrg);
  height: 2px;
  width: 200px;
}
#overview .vision__desc {
  color: #F8F9FD;
  font-weight: 300;
  line-height: 1.75;
}
#overview .same {
  margin-bottom: 200px;
}
#overview .same__conts {
  display: flex;
  gap: 15px;
}
#overview .same__cont {
  text-align: center;
  flex: 1;
}
#overview .same__cont figure {
  height: 100px;
  background: #F8F9FD;
  align-content: center;
  margin-bottom: 20px;
}
#overview .same__cont figure img {
  object-fit: contain;
}
#overview .same__cont--tit {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 18px;
}
#overview .same__cont--desc {
  font-size: 18px;
  color: #858585;
}
#overview .partner figure img {
  height: 64px;
}

#business main section {
  margin-bottom: 108px;
}
#business main section .title {
  margin-bottom: 62px;
  text-align: center;
}
#business main section .title__num {
  font-size: 30px;
  font-weight: 700;
  color: var(--cOrg);
  margin-bottom: 10px;
}
#business main section .title__tit {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
}
#business main section .title__sub {
  font-size: 18px;
  color: #858585;
}
#business main section .conts {
  display: grid;
}
#business main section .conts.grid3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
#business main section .conts.grid2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
#business main section .conts .item__fig {
  height: 300px;
  margin-bottom: 24px;
}
#business main section .conts .item__fig.white {
  outline: 1px solid #DEDEDE;
}
#business main section .conts .item__fig img {
  object-fit: cover;
}
#business main section .conts .item__desc {
  text-align: center;
  font-size: 18px;
}
#business main section .conts .item .deco {
  display: flex;
  justify-content: space-between;
  background: #F8F9FD;
  padding: 44px;
  align-items: center;
}
#business main section .conts .item .deco ul {
  display: flex;
  gap: 10px;
}
#business main section .conts .item .deco ul li {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--cNv);
  color: var(--cOrg);
  text-align: center;
  align-content: center;
  text-transform: uppercase;
}
#business main section .conts .item .deco dl {
  text-align: right;
  color: var(--cNv);
}
#business main section .conts .item .deco dl dt {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
#business main section .conts .item .deco dl dd {
  font-size: 18px;
  line-height: 1.5;
}

#history .pageHeader {
  width: 100%;
  height: 400px;
  align-content: center;
  text-align: center;
  background: url(/asset/images/company/history.jpg) no-repeat center/cover;
  color: #F8F9FD;
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 128px;
}
#history .sideTitle h4 {
  font-size: 40px;
  font-weight: normal;
}
#history .year {
  margin-bottom: 50px;
}
#history .year .current {
  font-size: 40px;
  font-weight: 700;
  color: var(--cOrg);
}
#history .year ul {
  border-top: 2px solid var(--cBlk);
  border-bottom: 1px solid var(--cBlk);
}
#history .year ul li {
  font-size: 18px;
  padding: 30px 50px;
  font-size: 18px;
}
#history .year ul li:not(:last-child) {
  border-bottom: 1px solid #DEDEDE;
}

#cert main ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px 40px;
}
#cert main ul li figure {
  margin-bottom: 20px;
  border: 1px solid #DEDEDE;
}
#cert main ul li p {
  text-align: center;
  font-size: 20px;
}

/* support */
#qna .inquiry__line {
  margin-bottom: 30px;
}
#qna .inquiry__line.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}
#qna .inquiry__item {
  display: flex;
  align-items: center;
  font-size: 18px;
}
#qna .inquiry__item.notCenter {
  align-items: start;
}
#qna .inquiry__item h6 {
  font-size: 18px;
  width: 180px;
}
#qna .inquiry__item h6 span {
  color: var(--cOrg);
  margin-right: 30px;
}
#qna .inquiry__item input,
#qna .inquiry__item textarea,
#qna .inquiry__item .likeInput {
  border: 1px solid #DEDEDE;
  flex: 1;
  padding: 10px;
}
#qna .inquiry__item input {
  height: 60px;
  align-content: center;
}
#qna .inquiry__item textarea {
  height: 250px;
  resize: none;
}
#qna .inquiry__item--file {
  display: flex;
  align-items: center;
}
#qna .inquiry__item .file, #qna .inquiry__item--btnDel {
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  padding: 12px 24px;
  cursor: pointer;
}
#qna .inquiry__item .file {
  margin-right: 10px;
  background: #F8F9FD;
}
#qna .inquiry__item .file:hover {
  background: var(--cNv);
  color: var(--cOrg);
}
#qna .inquiry__item--btnDel {
  border: 1px solid #DEDEDE;
  background: none;
}
#qna .inquiry__item--btnDel:hover {
  border-color: #F8F9FD;
  background: #F8F9FD;
}
#qna .inquiry__item .likeInput {
  font-size: 17px;
  color: #B3B3B3;
  margin-right: 20px;
  width: 684px;
}
#qna .inquiry .fileline .inquiry__item {
  align-items: center;
}
#qna .inquiry .agreeLine .agree {
  flex: 1;
  background: #F8F9FD;
  text-align: center;
  transition: 0.3s;
}
#qna .inquiry .agreeLine .agree__chk {
  height: 100%;
}
#qna .inquiry .agreeLine .agree__chk input {
  display: none;
}
#qna .inquiry .agreeLine .agree__chk a {
  display: inline;
  text-decoration: underline;
}
#qna .inquiry .agreeLine .agree__chk label {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  padding: 20px;
}
#qna .inquiry .agreeLine .agree:has(.agree__chk input:checked) {
  background: var(--cNv);
  color: var(--cOrg);
}
#qna .submitWrap {
  padding-top: 30px;
}
#qna .submitWrap .btn-submit {
  margin: 0 auto;
  width: 300px;
  height: 60px;
  text-align: center;
  border: 1px solid #707070;
  font-size: 18px;
  font-weight: 600;
}
#qna .submitWrap .btn-submit:disabled {
  opacity: 0.5;
  cursor: auto;
}
#qna .submitWrap .btn-submit:not(:disabled):hover {
  background: var(--cNv);
  color: var(--cOrg);
}

#location .location {
  display: flex;
  gap: 80px;
  align-items: end;
}
#location .location .map {
  width: 900px;
  height: 440px;
  position: relative;
}
#location .location .map .btn-direction {
  width: 80px;
  height: 80px;
  border: 1px solid var(--cBlk);
  background: #F8F9FD;
  position: absolute;
  right: 30px;
  bottom: 30px;
  font-size: 40px;
  text-align: center;
  align-content: center;
}
#location .location .map .btn-direction:hover {
  color: var(--cOrg);
  background: var(--cNv);
}
#location .location__text {
  padding-bottom: 42px;
}
#location .location__text h4 {
  font-size: 50px;
  margin-bottom: 50px;
}
#location .location__text address {
  margin-bottom: 30px;
}
#location .location__text address strong {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
#location .location__text address span {
  font-size: 18px;
  font-weight: 500;
}
#location .location__text--num {
  font-size: 18px;
}
#location .location__text--num strong {
  margin-right: 8px;
}

/* ==================================
   ✅ 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 .subPage .flexArea {
  gap: 20px;
}
.ENGver #process .step__conts figure .anlss,
.ENGver #production .line .flexWrap figcaption {
  width: auto;
  padding: 0 20px;
}
.ENGver #overview .vision__conts {
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 1440px) {
  .ENGver .subPage .flexArea {
    gap: 0;
  }
}

@media screen and (max-width: 1700px) {
  :root {
    --inner: 80px;
    --hdHeight: 100px;
  }
  .header {
    padding-top: 24px;
  }
  .header__gnb .gnb__list {
    width: 170px;
  }
  #indexPage section:not(.last) {
    padding-top: 40px;
  }
  .subPage table tr td strong {
    display: block;
  }
  #business main section .conts .item .deco ul li {
    width: 100px;
    height: 100px;
  }
  #location .location .map {
    width: 760px;
  }
  #location .location__text h4 {
    font-size: 48px;
  }
  #location .location__text address strong {
    font-size: 24px;
  }
}
@media screen and (max-width: 1440px) {
  .forPC {
    display: none;
  }
  .forMOB {
    display: block;
  }
  :root {
    --inner: 40px;
    --spTit: 340px;
  }
  .header .logo {
    margin-left: -20px;
  }
  /* ===========================
   GNB (모바일 오프캔버스)
   =========================== */
  /* 0) 데스크탑 흔적 강제 초기화 */
  .header__gnb {
    /* 메뉴 열림 상태 */
    /* 1) 1뎁스 리스트 */
    /* 2) 2뎁스 아코디언 */
  }
  .header__gnb .gnb__wrap {
    display: block !important;
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: 86vw;
    max-width: 420px;
    background: var(--cNv);
    color: #fff;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.35s ease-out, opacity 0.35s ease-out;
    padding: 90px 24px 80px;
    overflow: auto;
    z-index: 1050;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.25);
  }
  body.menu-open .header__gnb .gnb__wrap {
    transform: translateX(0);
    opacity: 1;
  }
  .header__gnb .gnb__list {
    display: block !important;
    width: auto !important;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: static;
  }
  .header__gnb .gnb__dep1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 6px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
  }
  .header__gnb .gnb__dep1::after {
    content: "+";
    color: #fff;
    font-size: 20px;
    font-weight: 300;
  }
  .header__gnb .is-open > .gnb__dep1::after {
    content: "–";
  }
  .header__gnb .gnb__dep2 {
    display: block !important;
    position: static !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease;
    padding: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.12);
    background: transparent;
  }
  .header__gnb .gnb__dep2 li a {
    display: block;
    padding: 12px 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
  }
  .header__gnb .gnb__dep2 li a:hover {
    color: #fff;
  }
  .header__gnb .is-open > .gnb__dep2 {
    max-height: 800px;
    opacity: 1;
  }
  /* 3) 딤드 */
  .gnbDim {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  body.menu-open .gnbDim {
    opacity: 1;
    pointer-events: auto;
  }
  /* 4) 헤더 active 높이 확장 무력화 */
  .header {
    /* 5) 언어 (우하단 고정) */
    /* 공통: 햄버거 바 */
    /* 언어 드롭다운 위치 조정 */
  }
  .header.active {
    height: var(--header-h);
    background: #fff;
    color: inherit;
  }
  .header .lang {
    position: fixed;
    right: 32px;
    bottom: 28px;
    color: #fff;
    z-index: 1060;
  }
  .header .lang i {
    color: var(--cOrg);
    font-size: 20px;
  }
  .header .lang ul {
    background: var(--cNv);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
  }
  body:not(.menu-open) .header .lang {
    display: none !important;
  }
  .header .gnbToggle {
    position: absolute;
    top: 0;
    right: var(--inner);
    width: 60px;
    height: 60px;
    background: none;
    border: none;
    border-radius: 0;
  }
  .header .gnbToggle .xi-bars {
    font-size: 40px;
  }
  .header .lang ul {
    position: absolute;
    top: -148px;
  }
  .header .lang ul li {
    color: var(--cBlk);
  }
  /* 6) body 상태 제어 */
  body.menu-open {
    overflow: hidden;
  }
  .footer {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .footer .logo {
    margin-bottom: 20px;
  }
  .subPage {
    padding-top: 150px;
  }
  .subPage .flexArea {
    flex-direction: column;
    align-items: start !important;
  }
  .subPage .flexArea .sideTitle {
    flex: auto;
    margin-bottom: 20px;
  }
  .subPage .flexArea .contentsArea {
    width: 100%;
  }
  .subPage .flexArea .sideTitle h4 br {
    display: none;
  }
  #indexPage .products__field--img {
    width: 140px;
    right: 14px;
    bottom: -67px;
  }
  #indexPage .tech .inner {
    flex-direction: column;
    align-items: start;
  }
  #indexPage .tech__text {
    margin-bottom: 40px;
  }
  #indexPage .tech__text--tit br {
    display: none;
  }
  #indexPage .cs {
    padding: 82px 0;
  }
  #indexPage .tech__image {
    width: auto;
    height: 300px;
  }
  #indexPage section:not(.last) {
    padding-top: 0;
  }
  #indexPage .solution__bottom {
    height: 380px;
  }
  #indexPage .products__field {
    height: 210px;
  }
  .footer__contents {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  .footer__contents--right {
    text-align: left;
  }
  .footer__menu {
    justify-content: start;
  }
  .footer .logo a {
    width: 178px;
    height: 42px;
  }
  #process .tabArea {
    top: 208px;
  }
  #process .process__step {
    padding-left: 0;
  }
  #business main section .conts .item .deco {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
  #business main section .conts .item .deco dl {
    text-align: center;
  }
  #business main section .conts .item .deco dl dt {
    margin-bottom: 10px;
  }
  #business main section .conts .item .deco dl dd {
    line-height: 1.3;
  }
  #cert main ul {
    grid-template-columns: repeat(4, 1fr);
  }
  .subPage .sub-title__title {
    font-size: 50px;
  }
  #qna .inquiry__line.grid3 {
    grid-template-columns: repeat(1, 1fr);
  }
  #qna .inquiry__item .likeInput {
    width: auto;
  }
  #location .location {
    flex-direction: column;
    gap: 40px;
    align-items: start;
  }
  #location .location .map {
    width: 100%;
  }
  #location .location__text h4 {
    font-size: 38px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  #overview .about__cont {
    height: 160px;
    padding-top: 36px;
  }
  #overview .about__cont--dd {
    font-size: 28px;
  }
  #overview .about__title {
    margin-bottom: 60px;
  }
  #cert main ul li p {
    font-size: 18px;
  }
  #indexPage .products__field--tit {
    font-size: 28px;
  }
  #indexPage .products__field--img {
    width: 120px;
    right: -16px;
    bottom: -57px;
  }
  #indexPage .solution .btn-pd {
    position: unset;
    margin: 20px 0 0;
  }
  .solution .pageDesc__pd {
    font-size: 45px;
    margin-bottom: 20px;
  }
  .subPage .sub-title {
    margin-bottom: 70px;
  }
  #overview .vision__conts {
    grid-template-columns: repeat(1, 1fr);
  }
  #overview .vision__title br {
    display: none;
  }
  #overview .vision__cont {
    height: auto;
    padding: 20px;
  }
  #overview .vision hr {
    margin: 0 auto 16px;
  }
  #overview .vision__title {
    margin-bottom: 20px;
  }
  #overview .vision__desc {
    line-height: 1.4;
  }
  #overview .same__conts {
    flex-direction: column;
  }
  #overview .same__cont--tit {
    margin-bottom: 0;
  }
  #overview .same__conts {
    gap: 35px;
  }
  #overview .about__conts {
    grid-template-columns: repeat(2, 1fr);
  }
  #overview .about__cont:not(:last-child) {
    border-right: 0;
  }
  #overview .value__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 18px;
  }
  #overview .value__item figure {
    margin-bottom: 20px;
  }
  #overview .value__cont--tit {
    margin-bottom: 0;
  }
  #business main section .conts.grid3,
  #business main section .conts.grid2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 768px) {
  #indexPage .products__fields {
    flex-direction: column;
  }
  #indexPage .products__field {
    height: auto;
    padding: 20px;
  }
  #indexPage .products__field--img {
    z-index: 1;
    width: 140px;
    right: -18px;
    bottom: 0;
  }
  .footer__num {
    flex-direction: column;
    gap: 4px;
  }
  #indexPage .tech__image {
    width: 100%;
    height: auto;
  }
  #indexPage .products__field {
    box-shadow: 10px 10px 10px rgba(7, 33, 81, 0.0901960784);
    padding: 40px;
  }
  .subPage table tr th.w280 {
    width: auto;
  }
  .solution__case {
    grid-template-columns: repeat(1, 1fr);
  }
  #intro .vision__spec {
    grid-template-columns: repeat(1, 1fr);
  }
  .solution .pageDesc__pd {
    font-size: 38px;
  }
  .subPage table tr td {
    padding: 30px;
  }
  #business main section .conts .item .deco dl dd br {
    display: none;
  }
  #history .pageHeader {
    height: 258px;
    font-size: 34px;
  }
  #production .line .flexWrap {
    flex-direction: column;
  }
  #production .line .flexWrap > div {
    width: 100%;
  }
  #ceo .greeting .contentsArea {
    background: url(/asset/images/company/bg-logo.svg) no-repeat right bottom/396px auto;
  }
  #cert main ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 20px;
  }
  #qna .inquiry__item h6 span {
    margin-right: 10px;
  }
  .footer {
    margin-top: 40px;
  }
  #indexPage .hero__title {
    font-size: 44px;
  }
  #qna .inquiry__item {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
  #qna .inquiry__item input,
  #qna .inquiry__item textarea {
    width: 100%;
    flex: none;
  }
  #qna .inquiry .fileline .inquiry__item {
    align-items: start;
  }
  #qna .inquiry .agreeLine .agree {
    font-size: 16px;
  }
  #indexPage section:not(.hero, .last) {
    padding-top: 110px;
  }
}
@media screen and (max-width: 500px) {
  :root {
    --inner: 20px;
    --hdHeight: 80px;
  }
  .header .logo a {
    width: 156px;
    height: 30px;
  }
  .header .gnbToggle {
    width: 40px;
    height: 40px;
  }
  #indexPage .hero {
    background: url(/asset/images/index/hero.jpg) no-repeat center right -310px/cover;
  }
  #indexPage .hero__title {
    font-size: 36px;
  }
  #indexPage .hero__desc {
    font-size: 16px;
  }
  .header__gnb .gnb__dep1 {
    justify-content: right;
    gap: 36px;
    font-size: 16px;
    height: auto;
    padding: 14px 20px;
  }
  .header__gnb .gnb__list {
    border-bottom: 0;
  }
  .header__gnb .gnb__dep2 {
    border-left: 0;
  }
  .header__gnb .gnb__dep2 li a {
    text-align: right;
    padding: 8px 36px;
  }
  #indexPage .hero .scDown__txt {
    font-size: 12px;
  }
  #indexPage section:not(.hero, .last) {
    padding-top: 70px;
  }
  #indexPage .products__title--sub {
    font-size: 14px;
  }
  #indexPage .products__title--tit {
    font-size: 26px;
  }
  #indexPage .products__title--desc {
    font-size: 14px;
  }
  #indexPage .btn-index {
    width: 160px;
    height: 40px;
    padding: 14px 24px;
  }
  #indexPage .products__fields {
    gap: 72px;
  }
  #indexPage .products__field {
    padding: 74px 20px;
  }
  #indexPage .products__field--img {
    width: 130px;
    right: 22px;
    bottom: -44px;
  }
  #indexPage .solution__title {
    font-size: 26px;
  }
  #indexPage .solution__products {
    font-size: 14px;
  }
  #indexPage .solution__bottom {
    height: 500px;
  }
  #indexPage .tech__text--tit {
    font-size: 50px;
  }
  #indexPage .tech__text--desc {
    font-size: 14px;
  }
  #indexPage .tech__image {
    width: auto;
    height: 230px;
  }
  #indexPage .tech__image img {
    object-fit: cover;
  }
  #indexPage .cs {
    padding: 102px 0;
  }
  #indexPage .cs__title {
    font-size: 40px;
  }
  #indexPage .cs__desc {
    font-size: 14px;
  }
  .footer {
    margin-top: 80px;
    padding-top: 120px;
  }
  .footer .btn-top {
    width: 60px;
    height: 60px;
    font-size: 14px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -90px;
  }
  .footer .logo {
    margin-bottom: 30px;
  }
  .footer .logo a {
    width: 183px;
    height: 47px;
    margin: 0 auto;
  }
  .footer__contents {
    font-size: 14px;
    text-align: center;
    align-items: center;
    gap: 30px;
  }
  .footer__contents--left span {
    display: block;
    margin-right: 0;
    margin-bottom: 4px;
  }
  .footer__menu {
    justify-content: center;
    margin-bottom: 30px;
  }
  .footer__copy {
    text-align: center;
    font-size: 12px;
  }
  .subPage .sub-title__title {
    font-size: 30px;
    text-align: center;
    padding-bottom: 30px;
  }
  .subPage {
    padding-top: 110px;
  }
  .subPage .sub-title {
    margin-bottom: 60px;
  }
  .solution .pageDesc__pd {
    font-size: 27px;
    margin-bottom: 6px;
  }
  .solution .pageDesc__desc {
    font-size: 16px;
  }
  .solution .pageDesc {
    margin-bottom: 60px;
  }
  .solution__sectImg {
    height: 240px;
  }
  .solution__sectImg img {
    object-fit: cover;
  }
  .subPage .flexArea .sideTitle h4 {
    font-size: 18px;
  }
  .subPage table tr th,
  .subPage table tr td {
    padding: 20px 30px;
  }
  #intro .result {
    margin-bottom: 20px;
  }
  #intro .goal__pd {
    flex-direction: column;
    gap: 30px;
  }
  #intro .goal__pd figure img {
    margin-bottom: 20px;
  }
  #intro .goal__pd figcaption {
    font-size: 14px;
  }
  .subPage table tr {
    font-size: 16px;
  }
  .solution__case figure {
    height: 146px;
    padding: 10px 16px;
  }
  .solution__case figure figcaption {
    font-size: 14px;
  }
  .solution__sectImg.grid-2 {
    grid-template-columns: repeat(1, 1fr);
    height: auto;
  }
  #intro .flexArea .sideTitle h4 {
    font-size: 20px;
    text-align: center;
  }
  .subPage .flexArea .sideTitle {
    margin-bottom: 30px;
  }
  .subPage .flexArea .contentsArea {
    font-size: 16px;
  }
  #intro .vision .introGreeting {
    margin-bottom: 60px;
  }
  #intro .vision__spec--item figure {
    margin-bottom: 20px;
  }
  #intro .vision__spec--text h4 {
    font-size: 16px;
  }
  #intro .vision {
    margin-bottom: 60px;
  }
  #process .tabArea {
    position: unset;
    gap: 0;
    padding: 0 var(--inner);
  }
  #process .tabArea button {
    padding: 16px;
    width: 50%;
    font-size: 20px;
    border-color: #ddd;
  }
  #process .flexArea .sideTitle {
    text-align: center;
    width: 100%;
  }
  #process .process__step {
    flex-direction: column;
    gap: 30px;
  }
  #process .process__step--item {
    width: auto;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
  }
  #process .process__step--item .cont br {
    display: none;
  }
  #process .process__step::before {
    width: 1px;
    height: 85%;
    background: #ddd;
    left: 5px;
    z-index: -1;
  }
  #process .process {
    margin-bottom: 60px;
  }
  #process .process__greeting {
    margin-bottom: 60px;
  }
  #process .process__step--item .circle.tri {
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
  #process .forFlex {
    flex-direction: column;
  }
  #process .step__desc {
    margin-top: 14px;
    font-size: 16px;
  }
  #process .step .flexArea .sideTitle {
    margin-bottom: 14px;
    text-align: left;
  }
  #process .step__conts figure {
    aspect-ratio: 335/230;
  }
  @supports not (aspect-ratio: 335/230) {
    #process .step__conts figure::before {
      content: "";
      float: left;
      padding-top: calc((230 / 335) * 100%);
    }
    #process .step__conts figure::after {
      content: "";
      display: block;
      clear: both;
    }
  }
  #process .step__conts figure img {
    object-fit: cover;
  }
  #process .step__conts figure .anlss,
  #production .line .flexWrap figcaption {
    font-size: 12px;
    width: 85px;
    height: 30px;
    right: 20px;
    bottom: 20px;
  }
  .subPage .w580 {
    width: 100%;
  }
  #production .line .flexWrap {
    gap: 7px;
  }
  #production .facility__image {
    flex-direction: column;
  }
  #ceo .greeting .flexArea {
    background: url(/asset/images/company/bg-logo.svg) no-repeat right top/165px auto;
  }
  #ceo .greeting .contentsArea {
    background: none;
  }
  #ceo .flexArea .sideTitle h4,
  #overview .flexArea .sideTitle h4 {
    font-size: 24px;
  }
  #ceo .flexArea .sideTitle h4 br,
  #overview .flexArea .sideTitle h4 br {
    display: block;
  }
  #ceo .greeting .contentsArea p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  #ceo .greeting .contentsArea p:has(.name) {
    text-align: center;
  }
  #ceo .greeting .name {
    font-size: 24px;
    margin-left: 6px;
  }
  #overview .greeting .flexArea {
    margin-bottom: 60px;
  }
  #overview .about__title {
    font-size: 20px;
  }
  #overview .about__conts {
    grid-template-columns: repeat(1, 1fr);
  }
  #overview .about__cont--dt {
    font-size: 18px;
    margin-bottom: 8px;
  }
  #overview .about__cont--dd {
    margin-bottom: 0;
  }
  #overview .about__cont--point {
    margin-top: 8px;
  }
  #overview .about__cont:not(:last-child) {
    border-bottom: 1px solid #DEDEDE;
  }
  #overview .about__cont {
    height: auto;
    padding: 40px;
  }
  #overview .about {
    margin-bottom: 68px;
  }
  #overview .value__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }
  #overview .value__cont--tit,
  #overview .value__cont--desc {
    font-size: 16px;
  }
  #overview .value {
    margin-bottom: 60px;
  }
  #overview .vision__cont {
    padding: 56px 20px;
  }
  #overview .vision__title {
    font-size: 18px;
  }
  #overview .vision__desc {
    font-size: 14px;
  }
  #overview .vision {
    margin-bottom: 60px;
  }
  #overview .same__cont--tit {
    font-size: 16px;
    margin-bottom: 16px;
  }
  #overview .same__cont--desc {
    font-size: 14px;
  }
  #business main section .title__num {
    font-size: 20px;
  }
  #business main section .title__tit {
    font-size: 30px;
  }
  #business main section .title__sub {
    font-size: 16px;
  }
  #business main section .title {
    margin-bottom: 30px;
  }
  #business main section .conts .item__fig {
    width: 100%;
    height: auto;
    margin-bottom: 14px;
  }
  #business main section .conts .item__desc {
    font-size: 16px;
  }
  #business main section .conts .item .deco {
    padding: 20px 10px;
    font-size: 14px;
  }
  #business main section .conts .item .deco ul li {
    width: 80px;
    height: 80px;
  }
  #business main section .conts .item .deco dl dt {
    font-size: 16px;
  }
  #business main section .conts .item .deco dl dd {
    font-size: 16px;
  }
  #history .pageHeader {
    height: 190px;
    font-size: 26px;
    margin-bottom: 60px;
  }
  #history .sideTitle h4,
  #history .year .current {
    font-size: 26px;
  }
  #history .flexArea .sideTitle {
    margin-bottom: 20px;
  }
  #history .year ul li {
    padding: 20px;
    font-size: 16px;
  }
  #cert main ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  #cert main ul li figure {
    margin-bottom: 16px;
  }
  #cert main ul li p {
    font-size: 14px;
  }
  #qna .inquiry__item--file {
    flex-direction: column;
    gap: 10px;
  }
  #qna .inquiry__item .file,
  #qna .inquiry__item--btnDel {
    width: 100%;
    margin-right: 0;
  }
  #qna .inquiry__item .likeInput {
    margin-right: 0;
  }
  #location .location .map {
    height: 240px;
  }
  #location .location__text h4 {
    font-size: 24px;
  }
  #location .location__text address strong {
    font-size: 18px;
  }
  #location .location__text address span {
    font-size: 16px;
  }
  #location .location__text--num {
    font-size: 16px;
  }
  #location .location__text address {
    margin-bottom: 20px;
  }
  #location .location .map .btn-direction {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
    font-size: 20px;
  }
  .header__gnb .gnb__wrap {
    width: 66vw;
  }
  #measure .facility__image {
    grid-template-columns: repeat(1, 1fr);
    gap: 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;
}

.btnArea .btn-arrow,
.btnArea .btn-list {
  width: 60px;
  height: 60px;
  background: #F8F9FD;
  font-size: 18px;
  text-align: center;
  align-content: center;
  color: #101A2D;
  display: block;
}

.btnArea .btn-arrow:hover,
.btnArea .btn-list:hover {
  color: #FFAB19;
  background: #072151;
}

.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: 1px solid #303030;
}

#bo_v_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-top: 2px solid #101A2D;
  border-bottom: 1px solid #101A2D;
  padding: 30px 50px;
}
#bo_v_title .writeDate {
  font-size: 18px;
  font-weight: 400;
}

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

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

#bo_v_atc {
  padding: 20px 0;
}
#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;
  }
  #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;
  }
  #bo_list tbody td {
    height: 68px;
  }
  .writeNum,
  #bo_v_title .writeDate {
    font-size: 14px;
  }
}
/* 🔚 Responsive Imports */

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