@charset "UTF-8";
/* ==================================
   ✅ Variables (CSS Custom Properties)
================================== */
:root {
  --fNoto: "Noto Sans KR", sans-serif;
  --cBlack: #303030;
  --cGreen: #64985a;
  --cBlue: #0e1c60;
  --cGray: #b3b3b3;
} /* 🔚 Variables */
.tcBlack {
  color: var(--cBlack);
}

.tcGreen {
  color: var(--cGreen);
}

.tcBlue {
  color: var(--cBlue);
}

.tcGray {
  color: var(--cGray);
}

.bgBlack {
  background-color: var(--cBlack);
}

.bgGreen {
  background-color: var(--cGreen);
}

.bgBlue {
  background-color: var(--cBlue);
}

.bgGray {
  background-color: var(--cGray);
}

/* ==================================
   ✅ 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(--fNoto);
  font-weight: normal;
  color: var(--cBlack);
  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(194, 218, 255, 0.3);
}

::-moz-selection {
  background-color: rgba(194, 218, 255, 0.3);
}

::-webkit-selection {
  background-color: rgba(194, 218, 255, 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: 200px;
  --innerB: 120px;
  --hdHeight: 120px;
}

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

.forMOB {
  display: none;
}

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

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

#wrap {
  width: 100%;
  min-width: 320px;
  position: relative;
  padding-top: var(--hdHeight);
}

body.noScroll {
  overflow: hidden;
}

/* 🔚 Common */
/* ==================================
   ✅ Header
================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--hdHeight);
  z-index: 1000;
  background-color: #fff;
  border-bottom: 1px solid #efefef;
  /* ✅ header.hover */
  /* 🔚 header.hover */
  /* ✅ Header without GNB */
  /* 🔚 Header without GNB */
  /* ✅ Header GNB */
  /* 🔚 Header GNB */
  /* ✅ Sitemap */
  /* 🔚 Sitemap */
  /* ✅ header.onSitemap */
  /* 🔚 header.onSitemap */
}
.header::before {
  display: block;
  content: "";
  position: absolute;
  top: var(--hdHeight);
  left: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  z-index: -1;
  border-bottom: 1px solid #efefef;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
}
.header.hover::before {
  height: 240px;
  opacity: 1;
  visibility: visible;
}
.header .withoutGNB {
  position: relative;
  height: var(--hdHeight);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1004;
}
.header .withoutGNB .logo {
  width: 80px;
  height: 70px;
}
.header .withoutGNB .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/asset/images/logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.header .withoutGNB .utility {
  display: flex;
  align-items: center;
  gap: 20px;
  /* ✅ Lang Change */
  /* 🔚 Lang Change */
  /* ✅ Hamburger Button */
  /* 🔚 Hamburger Button */
}
.header .withoutGNB .utility .changeLang {
  position: relative;
  cursor: pointer;
  width: 70px;
  height: 70px;
  text-align: center;
  align-content: center;
}
.header .withoutGNB .utility .changeLang__icon {
  font-size: 20px;
}
.header .withoutGNB .utility .changeLang__menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 62px;
  background-color: #fff;
  display: none;
  z-index: 1001;
  border: 1px solid #303030;
  padding: 10px;
}
.header .withoutGNB .utility .changeLang__menu li {
  padding: 4px;
}
.header .withoutGNB .utility .changeLang__menu li i {
  font-style: normal;
}
.header .withoutGNB .utility .changeLang__menu li:hover {
  background-color: #f5f5f5;
  color: var(--cGreen);
}
.header .withoutGNB .utility .changeLang:hover .changeLang__menu {
  display: block;
}
.header .withoutGNB .utility .btn-hamburger {
  display: block;
  width: 60px;
  height: 60px;
  position: relative;
}
.header .withoutGNB .utility .btn-hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  transition: all 0.3s;
}
.header .withoutGNB .utility .btn-hamburger span.bgGreen, .header .withoutGNB .utility .btn-hamburger span.bgGray {
  width: 50%;
}
.header .withoutGNB .utility .btn-hamburger span.bgGreen {
  right: 0;
  top: 10px;
}
.header .withoutGNB .utility .btn-hamburger span.bgBlue {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header .withoutGNB .utility .btn-hamburger span.bgGray {
  left: 0;
  bottom: 10px;
}
.header .withoutGNB .utility .btn-hamburger.on span.bgGreen, .header .withoutGNB .utility .btn-hamburger.on span.bgGray {
  width: 100%;
  background: #fff;
}
.header .withoutGNB .utility .btn-hamburger.on span.bgGreen {
  transform: rotate(-45deg) translateY(-50%);
  top: 50%;
}
.header .withoutGNB .utility .btn-hamburger.on span.bgBlue {
  opacity: 0;
}
.header .withoutGNB .utility .btn-hamburger.on span.bgGray {
  transform: rotate(45deg);
  bottom: 47%;
}
.header .gnb__list:hover span::after {
  opacity: 1;
}
.header .gnb__dep1 {
  width: 180px;
  height: 70px;
  align-content: center;
  font-weight: 700;
}
.header .gnb__dep1 span {
  position: relative;
}
.header .gnb__dep1 span::after {
  display: block;
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cGreen);
  top: -10px;
  right: -10px;
  opacity: 0;
  transition: all 0.3s;
}
.header .header__gnb {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 25px;
  z-index: 1006;
}
.header .header__gnb .gnb {
  text-align: center;
}
.header .header__gnb .gnb__wrap {
  display: flex;
}
.header .header__gnb .gnb__dep2 {
  transition: all 0.2s;
  padding-top: 80px;
  display: none;
}
.header .header__gnb .gnb__dep2 li {
  font-size: 17px;
}
.header .header__gnb .gnb__dep2 li:hover {
  color: var(--cGreen);
}
.header .header__gnb .gnb__dep2 li:not(:last-child) {
  margin-bottom: 16px;
}
.header .sitemap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1002;
  background: url(/asset/images/index/sitemap.jpg) no-repeat center/cover;
  display: none;
  padding: var(--hdHeight) var(--inner);
  color: #fff;
  align-content: center;
}
.header .sitemap.on {
  display: block;
}
.header .sitemap .gnb {
  text-align: center;
}
.header .sitemap .gnb__wrap {
  display: flex;
  justify-content: center;
}
.header .sitemap .gnb__dep1 {
  font-size: 19px;
  margin-bottom: 36px;
}
.header .sitemap .gnb__dep2 li {
  transition: all 0.3s;
}
.header .sitemap .gnb__dep2 li a {
  padding: 18px 0;
}
.header.onSitemap .logo a {
  filter: brightness(0) invert(1);
}
.header.onSitemap .changeLang__icon {
  color: #fff;
}

/* 🔚 Header */
/* ----------------------------------
 * ✅ footer
 * ---------------------------------- */
.footer {
  margin-top: 120px;
  border-top: 1px solid var(--cGray);
  padding-top: 96px;
  position: relative;
}
.footer__top {
  margin-bottom: 50px;
  display: flex;
  gap: 50px;
}
.footer__top .logo a {
  width: 108px;
  height: 86px;
  background: url(/asset/images/logo.svg) no-repeat top left/contain;
}
.footer__address {
  margin-bottom: 10px;
}
.footer__address--tit {
  font-weight: 900;
  margin-bottom: 2px;
  font-size: 17px;
}
.footer__address--adrs {
  font-size: 17px;
  color: #747474;
  font-weight: 500;
}
.footer__num {
  display: flex;
  gap: 75px;
}
.footer__num dl {
  display: flex;
  gap: 17px;
  font-size: 17px;
}
.footer__num dl dt {
  color: var(--cGray);
  font-weight: 700;
}
.footer__num dl dd {
  color: #747474;
  font-weight: 500;
}
.footer__bottom {
  background: var(--cGreen);
  border-radius: 60px 60px 0px 0px;
  padding: 30px 80px;
  color: #fff;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
}
.footer__copy {
  font-weight: 500;
}
.footer__menu {
  display: flex;
  gap: 40px;
}
.footer__menu li:hover {
  text-decoration: underline;
}
.footer .btn-top {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid var(--cGray);
  text-align: center;
  align-content: center;
  font-size: 26px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -50px;
  color: var(--cGray);
}
.footer .btn-top:hover {
  color: var(--cGreen);
}

/* 🔚 footer */
/* ----------------------------------
* ✅ secTit
* ---------------------------------- */
.secTit__sub {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 11px;
  color: var(--cGreen);
}
.secTit__main {
  font-size: 60px;
  margin-bottom: 21px;
}
.secTit__desc {
  font-size: 17px;
  color: #747474;
  line-height: 1.5;
}

/* 🔚 secTit */
/* ----------------------------------
 * ✅ index
 * ---------------------------------- */
#indexPage .hero {
  position: relative;
  border-radius: 0px 0px 120px 120px;
  overflow: hidden;
  margin-bottom: 215px;
  /* 진행바 트랙 */
  /* 진행바 채움: transform 기반으로만 제어 */
}
#indexPage .hero .mySwiper {
  width: 100%;
  height: calc(100vh - var(--hdHeight));
  color: #fff;
  position: relative;
}
#indexPage .hero .swiper-slide {
  width: 100% !important;
  height: 100%;
}
#indexPage .hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#indexPage .hero .inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: var(--inner);
  z-index: 1;
  padding: 0;
}
#indexPage .hero__text {
  margin-bottom: 54px;
}
#indexPage .hero__text h2 {
  font-size: 60px;
  font-weight: 500;
}
#indexPage .hero__text h2 span {
  color: var(--cGreen);
  font-weight: 800;
}
#indexPage .hero .slider-control {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 17px;
}
#indexPage .hero .slider-control .current {
  margin-right: 12px;
  color: var(--cGreen);
}
#indexPage .hero .slider-control .total {
  margin-left: 12px;
  margin-right: 24px;
}
#indexPage .hero .swiper-pagination {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin-right: 24px;
  position: relative;
  overflow: hidden;
}
#indexPage .hero .swiper-pagination-progressbar-fill {
  background: #fff;
  transform-origin: left center;
  transform: scaleX(0);
  /* 초기 0% */
  transition: none !important;
  /* JS가 매 프레임 갱신 → 전환 제거 */
}
#indexPage .hero button.pause {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
#indexPage .hero__btn-scdown {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: url(/asset/images/index/hero_scdown.svg) no-repeat center/contain;
  position: absolute;
  left: 65px;
  bottom: 60px;
  z-index: 1;
}
#indexPage .company {
  margin-bottom: 142px;
}
#indexPage .company__cont {
  margin-top: 148px;
  background: #efefef;
  border-radius: 200px;
  position: relative;
  padding: 40px 63px;
}
#indexPage .company__cont::before {
  display: block;
  content: "Sungjin Tech";
  position: absolute;
  top: -162px;
  right: 100px;
  font-size: 168px;
  font-weight: 700;
  color: #efefef;
  z-index: -1;
}
#indexPage .company__info {
  display: flex;
  gap: 30px;
}
#indexPage .company__info dl {
  border-radius: 92px;
  background: #fff;
  text-align: center;
  padding: 36px;
  min-width: 300px;
}
#indexPage .company__info dl dt {
  color: var(--cGreen);
}
#indexPage .company__info dl dd {
  font-size: 50px;
  font-weight: 900;
}
#indexPage .company__info dl dd span {
  margin-top: 4px;
  display: block;
  font-size: 15px;
  color: #747474;
  font-weight: 400;
}
#indexPage .company__menu {
  position: absolute;
  right: 105px;
  bottom: 40px;
}
#indexPage .company__menu--btn {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  align-content: center;
  position: relative;
  margin-top: -30px;
  transition: all 0.3s;
}
#indexPage .company__menu--btn i {
  font-size: 26px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
}
#indexPage .company__menu--btn.bgBlue, #indexPage .company__menu--btn.bgGreen {
  color: #fff;
}
#indexPage .company__menu--btn.bgBlue {
  background: rgba(14, 28, 96, 0.88);
}
#indexPage .company__menu--btn.bgGreen {
  background: rgba(50, 103, 40, 0.88);
}
#indexPage .company__menu--btn.tcGreen {
  background: rgba(255, 255, 255, 0.88);
}
#indexPage .company__menu--btn:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}
#indexPage .product {
  margin-bottom: 86px;
}
#indexPage .product .secTit {
  text-align: center;
  margin-bottom: 73px;
}
#indexPage .product__cont {
  display: flex;
  justify-content: center;
}
#indexPage .product__item {
  width: 600px;
  height: 600px;
  overflow: hidden;
  position: relative;
  color: #fff;
  transition: all 0.3s;
  will-change: transform;
}
#indexPage .product__item a {
  width: 100%;
  height: 100%;
}
#indexPage .product__item.cabin {
  border-radius: 120px 0px 0px 0px;
}
#indexPage .product__item.bottom {
  border-radius: 0px 0px 120px 0px;
}
#indexPage .product__item:hover.cabin .product__text {
  background: rgba(50, 103, 40, 0.5);
}
#indexPage .product__item:hover.bottom .product__text {
  background: rgba(14, 28, 96, 0.5);
}
#indexPage .product__image {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}
#indexPage .product__text {
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 100%;
  height: 100%;
  padding: 53px 79px;
}
#indexPage .product__text--name {
  font-size: 36px;
  margin-bottom: 13px;
}
#indexPage .product__text--desc {
  font-size: 17px;
}
#indexPage .partnerMap {
  margin-bottom: 82px;
}
#indexPage .video {
  margin-bottom: 100px;
}
#indexPage .video iframe {
  aspect-ratio: 16/9;
  width: 1244px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@supports not (aspect-ratio: 16/9) {
  #indexPage .video iframe::before {
    content: "";
    float: left;
    padding-top: calc((9 / 16) * 100%);
  }
  #indexPage .video iframe::after {
    content: "";
    display: block;
    clear: both;
  }
}
#indexPage .esg .contents {
  width: 100%;
  padding: 167px 80px 119px;
  align-content: center;
  border-radius: 50px;
  background: url(/asset/images/index/esg.jpg) no-repeat center/cover;
  overflow: hidden;
}
#indexPage .esg .secTit {
  margin-bottom: 103px;
}
#indexPage .esg .secTit__desc {
  color: var(--cGreen);
}
#indexPage .esg .btn-esg {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  align-content: center;
  text-align: center;
  margin-left: 44px;
  margin-bottom: 44px;
}
#indexPage .esg .btn-esg i {
  font-size: 40px;
  transition: all 0.3s;
}
#indexPage .esg .btn-esg .hoverTxt {
  font-size: 17px;
  font-weight: 500;
  display: none;
  transition: all 0.3s;
  color: #fff;
}
#indexPage .esg .btn-esg::before {
  display: block;
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#indexPage .esg .btn-esg:hover {
  background: var(--cGreen);
}
#indexPage .esg .btn-esg:hover i {
  display: none;
}
#indexPage .esg .btn-esg:hover .hoverTxt {
  display: block;
}

/* 🔚 index */
/* ----------------------------------
 * ✅ subPage
 * ---------------------------------- */
.subPage {
  padding-top: 84px;
  /* ----------------------------------
  * ✅ 기술연구소
  * ---------------------------------- */
  /* 🔚 기술연구소 */
  /* ----------------------------------
   * ✅ company
   * ---------------------------------- */
  /* 🔚 company */
  /* ----------------------------------
   * ✅ esg
   * ---------------------------------- */
  /* 🔚 esg */
  /* ----------------------------------
   * ✅ support
   * ---------------------------------- */
  /* 🔚 support */
  /* ----------------------------------
    * ✅ facility
    * ---------------------------------- */
  /* 🔚 facility */
}
.subPage .sub-title {
  margin-bottom: 45px;
}
.subPage .sub-title__title {
  font-size: 50px;
  letter-spacing: -1.5px;
}
.subPage .tabArea {
  margin-bottom: 78px;
}
.subPage .tabArea ul {
  border-radius: 35px;
  overflow: hidden;
  background: #efefef;
  text-align: center;
  padding: 8px 10px;
  width: 100%;
  display: flex;
  gap: 20px;
}
.subPage .tabArea ul li {
  font-size: 17px;
  font-weight: 500;
  border-radius: 30px;
  flex: 1;
  transition: all 0.3s;
  align-content: center;
}
.subPage .tabArea ul li a {
  padding: 15px;
}
.subPage .tabArea ul li.on {
  background: var(--cGreen);
  color: #fff;
}
.subPage .tabArea ul li:hover:not(.on) {
  background: #ffffff;
}
.subPage .subSecTit {
  text-align: center;
  margin-bottom: 98px;
  font-size: 30px;
}
.subPage#intro .intro {
  margin-bottom: 193px;
  text-align: center;
}
.subPage#intro .intro__title {
  font-size: 40px;
  margin-bottom: 30px;
}
.subPage#intro .intro__desc {
  font-size: 17px;
  font-weight: 500;
  color: #747474;
  margin-bottom: 70px;
}
.subPage#intro .intro__vision {
  justify-content: center;
  border: 1px solid var(--cGreen);
  border-radius: 150px;
  display: flex;
  padding: 23px 36px;
  gap: 30px;
  background: #fff;
  width: fit-content;
  margin: 0 auto;
}
.subPage#intro .intro__vision li {
  padding: 50px;
  align-content: center;
  width: 250px;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
@supports not (aspect-ratio: 1/1) {
  .subPage#intro .intro__vision li::before {
    content: "";
    float: left;
    padding-top: calc((1 / 1) * 100%);
  }
  .subPage#intro .intro__vision li::after {
    content: "";
    display: block;
    clear: both;
  }
}
.subPage#intro .intro__vision li:nth-child(odd) {
  background: var(--cGreen);
  color: #fff;
}
.subPage#intro .intro__vision li:nth-child(even) {
  background: #e1ebdf;
  color: var(--cGreen);
}
.subPage#intro .intro__vision--main {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 26px;
}
.subPage#intro .intro__vision--sub {
  font-size: 17px;
}
.subPage#intro .organi {
  margin-bottom: 280px;
}
.subPage#intro .organi__center {
  padding: 60px;
  align-content: center;
  text-align: center;
  width: 326px;
  aspect-ratio: 1/1;
  background: var(--cGreen);
  border-radius: 50%;
  color: #fff;
  margin: 0 auto;
  position: relative;
}
@supports not (aspect-ratio: 1/1) {
  .subPage#intro .organi__center::before {
    content: "";
    float: left;
    padding-top: calc((1 / 1) * 100%);
  }
  .subPage#intro .organi__center::after {
    content: "";
    display: block;
    clear: both;
  }
}
.subPage#intro .organi__center--logo {
  display: block;
  width: 68px;
  height: 51px;
  background: url(/asset/images/logo.svg) no-repeat center/contain;
  filter: brightness(0) invert(1);
  margin: 0 auto 16px;
}
.subPage#intro .organi__center--name {
  font-size: 32px;
  font-weight: 700;
}
.subPage#intro .organi__center::before {
  display: block;
  content: "";
  position: absolute;
  width: 1360px;
  aspect-ratio: 1/1;
  background: url(/asset/images/lab/organi-bg.svg) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  z-index: -1;
}
@supports not (aspect-ratio: 1/1) {
  .subPage#intro .organi__center::before::before {
    content: "";
    float: left;
    padding-top: calc((1 / 1) * 100%);
  }
  .subPage#intro .organi__center::before::after {
    content: "";
    display: block;
    clear: both;
  }
}
.subPage#intro .organi__teams {
  margin-top: -33px;
  display: flex;
  justify-content: center;
  gap: 33px;
}
.subPage#intro .organi__team {
  z-index: 1;
  text-align: center;
}
.subPage#intro .organi__team > div {
  width: 238px;
  height: 68px;
  align-content: center;
  font-size: 17px;
  font-weight: 500;
  border-radius: 34px;
}
.subPage#intro .organi__team > div:not(:last-child) {
  margin-bottom: 14px;
}
.subPage#intro .organi__team--dep1 {
  background: #fff;
  color: var(--cGreen);
  border: 2px solid var(--cGreen);
}
.subPage#intro .organi__team--dep2 {
  background: #efefef;
  border: 1px solid #747474;
}
.subPage#intro .process {
  margin-bottom: 214px;
}
.subPage#intro .process__list {
  display: flex;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  gap: 56px;
  align-items: center;
  position: relative;
}
.subPage#intro .process__start, .subPage#intro .process__end {
  border: 1px solid var(--cGreen);
  border-radius: 15px;
  padding: 10px;
  width: 120px;
  height: 148px;
  align-content: center;
  color: #747474;
  flex-shrink: 0;
}
.subPage#intro .process__start p, .subPage#intro .process__end p {
  padding: 24px 0;
}
.subPage#intro .process__start p:not(:last-child), .subPage#intro .process__end p:not(:last-child) {
  border-bottom: 1px dashed var(--cGreen);
}
.subPage#intro .process__side {
  position: absolute;
  display: flex;
  gap: 20px;
  bottom: -110px;
  left: 0;
}
.subPage#intro .process__side li {
  width: 86px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  color: #fff;
  align-content: center;
  padding: 10px;
}
@supports not (aspect-ratio: 1/1) {
  .subPage#intro .process__side li::before {
    content: "";
    float: left;
    padding-top: calc((1 / 1) * 100%);
  }
  .subPage#intro .process__side li::after {
    content: "";
    display: block;
    clear: both;
  }
}
.subPage#intro .process__side::before {
  display: block;
  content: "";
  position: absolute;
  width: 1px;
  height: 101px;
  border-right: 2px dashed #747474;
  top: -80px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.subPage#intro .process__side::after {
  display: block;
  content: "";
  position: absolute;
  width: 178px;
  height: 1px;
  border-bottom: 2px dashed #747474;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.subPage#intro .process__step {
  font-weight: 500;
  flex-shrink: 0;
  width: 186px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--cGreen);
  color: #fff;
  align-content: center;
  padding: 62px;
  position: relative;
}
@supports not (aspect-ratio: 1/1) {
  .subPage#intro .process__step::before {
    content: "";
    float: left;
    padding-top: calc((1 / 1) * 100%);
  }
  .subPage#intro .process__step::after {
    content: "";
    display: block;
    clear: both;
  }
}
.subPage#intro .process__step::before {
  display: block;
  content: "▶";
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -37px;
  font-size: 18px;
  color: var(--cGreen);
}
.subPage#intro .process__step--num {
  width: 65px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  color: var(--cGreen);
  border: 1px solid var(--cGreen);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
  background: #fff;
  align-content: center;
}
@supports not (aspect-ratio: 1/1) {
  .subPage#intro .process__step--num::before {
    content: "";
    float: left;
    padding-top: calc((1 / 1) * 100%);
  }
  .subPage#intro .process__step--num::after {
    content: "";
    display: block;
    clear: both;
  }
}
.subPage#intro .process__step--work {
  line-height: 1.6;
}
.subPage#intro .process__end {
  font-weight: 700;
  position: relative;
}
.subPage#intro .process__end::before {
  display: block;
  content: "▶";
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -37px;
  font-size: 18px;
  color: #747474;
}
.subPage#intro .test__list {
  display: flex;
  gap: 18px;
}
.subPage#intro .test__item figure {
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
.subPage#intro .test__item figcaption {
  font-size: 17px;
  font-weight: 500;
  padding: 18px;
  text-align: center;
  background: var(--cGreen);
  color: #fff;
}
.subPage#results .status {
  margin-bottom: 98px;
}
.subPage#results .status__wrap {
  display: flex;
  padding: 20px 80px;
  background: #efefef;
  border-radius: 35px;
  font-size: 17px;
  justify-content: space-between;
}
.subPage#results .status__tit {
  font-weight: 700;
}
.subPage#results .status__total {
  font-weight: 500;
}
.subPage#results .status__total span {
  font-weight: 700;
  color: var(--cGreen);
}
.subPage#results .history {
  padding-left: var(--inner);
}
.subPage#results .history .historySlider {
  padding-right: var(--inner);
  padding-bottom: 70px;
}
.subPage#results .history .historySlider .swiper-slide {
  width: fit-content;
}
.subPage#results .history .historySlider .sixWrap {
  border-top: 2px solid #747474;
  border-bottom: 1px solid #747474;
  width: 750px;
}
.subPage#results .history .historySlider .sixWrap li {
  padding: 25px 100px;
  display: flex;
  align-items: center;
  gap: 100px;
}
.subPage#results .history .historySlider .sixWrap li:not(:last-child) {
  border-bottom: 1px solid #efefef;
}
.subPage#results .history .historySlider .sixWrap .year {
  font-size: 30px;
  width: 70px;
  flex-shrink: 0;
}
.subPage#results .history .historySlider .sixWrap .year.current {
  font-weight: 900;
  color: var(--cGreen);
}
.subPage#results .history .historySlider .sixWrap .cont p {
  font-size: 17px;
  font-weight: 500;
}
.subPage#results .history .historySlider .swiper-scrollbar {
  left: 0;
  height: 16px;
  background: #efefef;
  border-radius: 40px;
  max-width: 1520px;
}
.subPage#results .history .historySlider .swiper-scrollbar-drag {
  background: var(--cGreen);
}
.subPage#ceo .ceoWrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 87px;
}
.subPage#ceo .greeting__subtit {
  font-size: 20px;
  font-weight: 700;
  color: var(--cGreen);
  margin-bottom: 33px;
}
.subPage#ceo .greeting__tit {
  font-size: 60px;
  margin-bottom: 27px;
}
.subPage#ceo .greeting__tit span {
  display: block;
  color: var(--cGreen);
}
.subPage#ceo .greeting__cont {
  font-size: 17px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.subPage#ceo .greeting__cont strong {
  font-weight: 900;
}
.subPage#ceo .greeting__ceo {
  font-size: 17px;
  font-weight: 700;
}
.subPage#ceo .greeting__ceo span {
  color: var(--cGreen);
}
.subPage#ceo .greeting__ceo strong {
  font-size: 30px;
  margin-left: 10px;
}
.subPage#ceo .photo figure {
  flex-shrink: 0;
  width: 700px;
}
.subPage#ceo .photo figure img {
  height: auto;
}
.subPage.company .subSecTit {
  font-size: 20px;
  margin-bottom: 30px;
}
.subPage#overview .overview {
  margin-bottom: 148px;
}
.subPage#overview .overview__table {
  border-top: 2px solid var(--cGreen);
  border-bottom: 2px solid #747474;
  max-width: 1200px;
  margin: 0 auto;
}
.subPage#overview .overview__table dl {
  display: flex;
  font-size: 17px;
}
.subPage#overview .overview__table dl:not(:last-child) {
  border-bottom: 1px solid #b3b3b3;
}
.subPage#overview .overview__table dl dt {
  width: 306px;
  flex-shrink: 0;
  text-align: center;
  padding: 20px;
}
.subPage#overview .overview__table dl dd {
  padding: 20px;
  font-weight: 700;
}
.subPage#overview .vival {
  background: #f6f6f6;
  padding: 150px 0;
  margin-bottom: 148px;
}
.subPage#overview .vival .vision {
  margin-bottom: 90px;
}
.subPage#overview .vival .vision__text {
  text-align: center;
  font-size: 55px;
  font-weight: 700;
  color: var(--cGreen);
}
.subPage#overview .vival .vision__text strong {
  font-weight: 900;
}
.subPage#overview .vival .value__text {
  text-align: center;
  font-size: 55px;
  font-weight: 700;
  color: var(--cBlue);
  padding: 43px 23px;
  background: url(/asset/images/company/value_txt-bg.svg) no-repeat center/contain;
  margin-bottom: 41px;
}
.subPage#overview .vival .value__organi--logo {
  width: 349px;
  margin: 0 auto 20px;
}
.subPage#overview .vival .value__organi--value {
  display: flex;
  justify-content: center;
  gap: 238px;
}
.subPage#overview .vival .value__organi--value li {
  text-align: center;
}
.subPage#overview .vival .value__organi--value li:not(:last-child) {
  position: relative;
}
.subPage#overview .vival .value__organi--value li:not(:last-child)::before {
  display: block;
  content: "";
  position: absolute;
  width: 220px;
  height: 1px;
  border-bottom: 2px solid var(--cBlue);
  bottom: 38px;
  right: -230px;
}
.subPage#overview .vival .value__organi--value li figure {
  margin-bottom: 6px;
}
.subPage#overview .vival .value__organi--value li figcaption {
  font-size: 22px;
  font-weight: 700;
  color: var(--cBlue);
  margin-bottom: 6px;
}
.subPage#overview .vival .value__organi--value li p {
  font-size: 17px;
  color: #747474;
}
.subPage#overview .organiChart {
  text-align: center;
  margin-bottom: 120px;
  background: url(/asset/images/gray_bg.svg) no-repeat center 310px/616px auto;
  backdrop-filter: blur(0);
}
.subPage#overview .organiChart .organi p {
  width: 162px;
  height: 80px;
  align-content: center;
}
.subPage#overview .organiChart .organi .ceoSect {
  margin-bottom: 60px;
  position: relative;
}
.subPage#overview .organiChart .organi .ceoSect::before, .subPage#overview .organiChart .organi .ceoSect::after {
  display: block;
  content: "";
  position: absolute;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -32px;
  z-index: -1;
}
.subPage#overview .organiChart .organi .ceoSect::before {
  width: 1px;
  height: 146px;
  border-right: 2px solid var(--cBlack);
}
.subPage#overview .organiChart .organi .ceoSect::after {
  width: 824px;
  height: 1px;
  border-bottom: 2px solid var(--cBlack);
}
.subPage#overview .organiChart .organi .ceoSect .ceo {
  aspect-ratio: 1/1;
  height: auto;
  border-radius: 50%;
  font-weight: 700;
  font-size: 20px;
  background: var(--cBlack);
  color: #fff;
  margin: 0 auto 34px;
}
@supports not (aspect-ratio: 1/1) {
  .subPage#overview .organiChart .organi .ceoSect .ceo::before {
    content: "";
    float: left;
    padding-top: calc((1 / 1) * 100%);
  }
  .subPage#overview .organiChart .organi .ceoSect .ceo::after {
    content: "";
    display: block;
    clear: both;
  }
}
.subPage#overview .organiChart .organi .ceoSect .vice {
  font-size: 17px;
  font-weight: 500;
  border: 3px solid var(--cBlack);
  border-radius: 41px;
  margin: 0 auto;
  background: #fff;
}
.subPage#overview .organiChart .organi .sectDep2 {
  display: flex;
  gap: 124px;
  justify-content: center;
}
.subPage#overview .organiChart .organi .sectDep2 .mgSect,
.subPage#overview .organiChart .organi .sectDep2 .pdSect {
  position: relative;
}
.subPage#overview .organiChart .organi .sectDep2 .mgSect .dep1,
.subPage#overview .organiChart .organi .sectDep2 .pdSect .dep1 {
  border-radius: 41px;
  color: #fff;
  margin: 0 auto 30px;
}
.subPage#overview .organiChart .organi .sectDep2 .mgSect .dep2,
.subPage#overview .organiChart .organi .sectDep2 .pdSect .dep2 {
  border-radius: 41px;
  border: 3px solid var(--cGreen);
  margin: 0 auto 46px;
  background: #fff;
}
.subPage#overview .organiChart .organi .sectDep2 .mgSect .dep2.manage,
.subPage#overview .organiChart .organi .sectDep2 .pdSect .dep2.manage {
  border-color: var(--cBlue);
}
.subPage#overview .organiChart .organi .sectDep2 .mgSect .dep3,
.subPage#overview .organiChart .organi .sectDep2 .pdSect .dep3 {
  display: flex;
  gap: 17px;
}
.subPage#overview .organiChart .organi .sectDep2 .mgSect .dep3__item,
.subPage#overview .organiChart .organi .sectDep2 .pdSect .dep3__item {
  border: 1px solid #DBDBDB;
  border-radius: 10px;
  background: #EFEFEF;
  position: relative;
}
.subPage#overview .organiChart .organi .sectDep2 .mgSect .dep3__item::before,
.subPage#overview .organiChart .organi .sectDep2 .pdSect .dep3__item::before {
  display: block;
  content: "";
  position: absolute;
  width: 1px;
  height: 31px;
  border-right: 2px solid #B3B3B3;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -21px;
  z-index: -1;
}
.subPage#overview .organiChart .organi .sectDep2 .mgSect::before,
.subPage#overview .organiChart .organi .sectDep2 .pdSect::before {
  display: block;
  content: "";
  position: absolute;
  width: 1px;
  height: 244px;
  border-right: 2px solid var(--cGreen);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 102px;
  z-index: -1;
}
.subPage#overview .organiChart .organi .sectDep2 .mgSect::after,
.subPage#overview .organiChart .organi .sectDep2 .pdSect::after {
  display: block;
  content: "";
  position: absolute;
  width: 539px;
  height: 1px;
  border-bottom: 2px solid var(--cBlack);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
}
.subPage#overview .organiChart .organi .sectDep2 .pdSect::before {
  border-color: var(--cBlue);
}
.subPage#overview .certification {
  padding: 120px 0;
  background: #F6F6F6;
}
.subPage#overview .certification .certi-swiper {
  padding: 0 150px;
}
.subPage#overview .certification .certi-swiper figcaption {
  text-align: center;
  background: #EFEFEF;
  font-size: 17px;
  font-weight: 500;
  padding: 12px;
}
.subPage#overview .certification .certi-swiper .swiper-button-next,
.subPage#overview .certification .certi-swiper .swiper-button-prev {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #747474;
  font-size: 24px;
  text-align: center;
  align-content: center;
  color: #747474;
  display: block;
}
.subPage#overview .certification .certi-swiper .swiper-button-next:after,
.subPage#overview .certification .certi-swiper .swiper-button-prev:after {
  font-size: 24px;
}
.subPage#overview .certification .certi-swiper .swiper-button-next:hover,
.subPage#overview .certification .certi-swiper .swiper-button-prev:hover {
  background: #fff;
}
.subPage#overview .certification .certi-swiper .swiper-button-next:hover:after,
.subPage#overview .certification .certi-swiper .swiper-button-prev:hover:after {
  color: var(--cGreen);
}
.subPage#history .text {
  margin-bottom: 40px;
}
.subPage#history .text__desc {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}
.subPage#history .history {
  position: relative;
  border-radius: 80px;
  overflow: hidden;
  color: #fff;
  width: 100%;
  height: 700px;
  padding: 83px 100px;
  /* 배경 이미지 */
  --history-bg: url("/asset/images/company/history-2011.jpg");
}
.subPage#history .history .history__bg {
  position: absolute;
  inset: 0;
  background: var(--history-bg) no-repeat center/cover;
}
.subPage#history .history .history__head,
.subPage#history .history .history__body {
  position: relative;
  z-index: 1;
}
.subPage#history .history .history__head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}
.subPage#history .history .history__title {
  padding-left: 42px;
  font-size: 40px;
  font-weight: 700;
}
.subPage#history .history .history__title small {
  font-size: 17px;
  font-weight: 500;
  color: #B3B3B3;
  margin-left: 20px;
}
.subPage#history .history .history__tabs {
  margin-left: auto;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.subPage#history .history .history__tabs .history__tab {
  width: 120px;
  aspect-ratio: 1/1;
  padding: 0 35px;
  border-radius: 50%;
  background: #fff;
  color: var(--cGreen);
  font-weight: 700;
  border: 1px solid var(--cGreen);
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1.6;
}
@supports not (aspect-ratio: 1/1) {
  .subPage#history .history .history__tabs .history__tab::before {
    content: "";
    float: left;
    padding-top: calc((1 / 1) * 100%);
  }
  .subPage#history .history .history__tabs .history__tab::after {
    content: "";
    display: block;
    clear: both;
  }
}
.subPage#history .history .history__tabs .history__tab .active {
  display: none;
}
.subPage#history .history .history__tabs .history__tab[aria-selected=true], .subPage#history .history .history__tabs .history__tab.is-active {
  background: var(--cGreen);
  color: #fff;
}
.subPage#history .history .history__tabs .history__tab[aria-selected=true] .default, .subPage#history .history .history__tabs .history__tab.is-active .default {
  display: none;
}
.subPage#history .history .history__tabs .history__tab[aria-selected=true] .active, .subPage#history .history .history__tabs .history__tab.is-active .active {
  display: block;
}
.subPage#history .history .history__tabs .history__tab:hover {
  opacity: 0.8;
}
.subPage#history .history .history__body {
  width: 600px;
  height: 380px;
  overflow-y: auto;
  direction: rtl;
  scrollbar-gutter: stable;
  padding-left: 44px;
  /* 스크롤바 설정 */
  /* 스크롤바 막대 설정 */
  /* 스크롤바 뒷 배경 설정 */
  /* 🔚 Scrollbar */
}
.subPage#history .history .history__body::-webkit-scrollbar {
  width: 4px;
}
.subPage#history .history .history__body::-webkit-scrollbar-thumb {
  background-color: var(--cGreen);
  transition: all 0.3s;
}
.subPage#history .history .history__body::-webkit-scrollbar-track {
  background-color: #fff;
}
.subPage#history .history .history__list {
  direction: ltr;
}
.subPage#history .history .history__list li {
  display: flex;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid #B3B3B3;
  font-size: 20px;
  font-weight: 300;
}
.subPage#sustainability {
  background: url(/asset/images/gray_bg.svg) no-repeat right var(--inner) top 84px;
}
.subPage#sustainability .esgWay {
  margin-bottom: 120px;
}
.subPage#sustainability .esgWay__tit {
  font-size: 60px;
  margin-bottom: 83px;
}
.subPage#sustainability .esgWay__items {
  display: flex;
  gap: 39px;
  margin-bottom: 120px;
}
.subPage#sustainability .esgWay__item {
  text-align: center;
  color: #fff;
  align-content: center;
  border-radius: 190px;
  width: 480px;
  height: 380px;
}
.subPage#sustainability .esgWay__item--icon {
  width: 120px;
  display: block;
  margin: 0 auto;
}
.subPage#sustainability .esgWay__item--name {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 18px;
}
.subPage#sustainability .esgWay__item--desc {
  font-size: 17px;
}
.subPage#sustainability .esgWay__slider .marquee-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  -webkit-transition-timing-function: linear !important;
}
.subPage#sustainability .esgWay__slider .swiper-slide {
  border: 1px solid var(--cGreen);
  padding: 38px 41px 75px;
  border-radius: 40px;
  width: 386px;
  min-height: 472px;
  flex-shrink: 0;
}
.subPage#sustainability .esgWay__slider .swiper-slide .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.subPage#sustainability .esgWay__slider .swiper-slide .top .field {
  font-size: 30px;
  font-weight: 700;
  color: var(--cGreen);
}
.subPage#sustainability .esgWay__slider .swiper-slide .top .icon {
  width: 120px;
  height: 120px;
  filter: invert(52%) sepia(13%) saturate(1077%) hue-rotate(62deg) brightness(118%) contrast(99%);
}
.subPage#sustainability .esgWay__slider .swiper-slide .case {
  font-size: 30px;
  font-weight: 700;
  color: #747474;
  height: 74px;
}
.subPage#sustainability .esgWay__slider .swiper-slide .desc {
  font-size: 22px;
  color: #B3B3B3;
  line-height: 1.6;
}
.subPage#sustainability .esgWay__slider .swiper-slide.sc {
  border-color: var(--cBlue);
}
.subPage#sustainability .esgWay__slider .swiper-slide.sc .top .field {
  color: var(--cBlue);
}
.subPage#sustainability .esgWay__slider .swiper-slide.sc .top .icon {
  filter: invert(84%) sepia(22%) saturate(6439%) hue-rotate(212deg) brightness(88%) contrast(103%);
}
.subPage#sustainability .esgWay__slider .swiper-slide.gvnc {
  border-color: #747474;
}
.subPage#sustainability .esgWay__slider .swiper-slide.gvnc .top .field {
  color: #747474;
}
.subPage#sustainability .esgWay__slider .swiper-slide.gvnc .top .icon {
  filter: invert(48%) sepia(16%) saturate(0%) hue-rotate(227deg) brightness(90%) contrast(84%);
}
.subPage#sustainability .esgPolicy {
  background: url(/asset/images/esg/esgpolicy.jpg) no-repeat center/cover;
  padding: 120px 0;
}
.subPage#sustainability .esgPolicy__tit {
  font-size: 60px;
  margin-bottom: 80px;
  color: #326728;
}
.subPage#sustainability .esgPolicy__cont {
  background: #fff;
  border-radius: 154px;
  padding: 93px 101px;
  display: flex;
  gap: 124px;
  justify-content: space-between;
  align-items: center;
}
.subPage#sustainability .esgPolicy__text--tit {
  font-size: 30px;
  font-weight: 500;
  color: var(--cGreen);
  margin-bottom: 15px;
}
.subPage#sustainability .esgPolicy__text--desc {
  line-height: 1.4;
  font-size: 20px;
}
.subPage#sustainability .esgPolicy__dwld {
  display: flex;
  gap: 8px;
}
.subPage#sustainability .esgPolicy__dwld--text {
  font-size: 17px;
  font-weight: 700;
  width: 306px;
  height: 63px;
  text-align: center;
  align-content: center;
  border-radius: 62px;
  background: #efefef;
}
.subPage#sustainability .esgPolicy__dwld--btn {
  background: var(--cGreen);
  color: #fff;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  text-align: center;
  align-content: center;
  font-size: 20px;
}
.subPage#sustainability .esgPolicy__dwld--btn:hover {
  background: var(--cBlue);
}
.subPage#location .map {
  width: 100%;
  height: 423px;
}
.subPage#location .floating {
  position: absolute;
  bottom: 40px;
  left: 247px;
}
.subPage#location .floating .btn-direction {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--cGreen);
  color: #fff;
  font-size: 38px;
  text-align: center;
  align-content: center;
  margin-bottom: 16px;
}
.subPage#location .floating .btn-direction:hover {
  background: var(--cBlue);
}
.subPage#location .floating__info {
  background: #fff;
  padding: 28px 63px;
  border-radius: 30px;
}
.subPage#location .floating__info--company {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
}
.subPage#location .floating__info--cont {
  display: flex;
  font-size: 17px;
  gap: 14px;
}
.subPage#location .floating__info--cont:not(:last-child) {
  margin-bottom: 4px;
}
.subPage#location .floating__info--cont dt {
  color: var(--cGreen);
  font-weight: 700;
}
.subPage#location .floating__info--cont dd {
  font-weight: 500;
  color: #747474;
}
.subPage#contact .inquiry {
  border-top: 2px solid var(--cBlack);
}
.subPage#contact .inquiry__line.grid3 {
  display: flex;
  gap: 10px;
}
.subPage#contact .inquiry__item {
  display: flex;
  gap: 40px;
  padding: 46px 36px;
  flex: 1;
  border-bottom: 1px solid #B3B3B3;
}
.subPage#contact .inquiry__item h6 {
  font-size: 17px;
  font-weight: 500;
}
.subPage#contact .inquiry__item h6 span {
  color: var(--cGreen);
  font-size: 20px;
  margin-right: 26px;
  font-weight: 400;
}
.subPage#contact .inquiry__item input,
.subPage#contact .inquiry__item textarea {
  font-size: 17px;
  flex: 1;
  border: 0;
}
.subPage#contact .inquiry__item input::placeholder,
.subPage#contact .inquiry__item textarea::placeholder {
  color: #B3B3B3;
}
.subPage#contact .inquiry__item textarea {
  height: 206px;
  resize: none;
}
.subPage#contact .inquiry__item--file {
  display: flex;
  align-items: center;
}
.subPage#contact .inquiry__item .file, .subPage#contact .inquiry__item--btnDel {
  font-size: 17px;
  font-weight: 500;
  border-radius: 10px;
  text-align: center;
  padding: 12px 24px;
  border: 1px solid #747474;
  color: #747474;
  cursor: pointer;
}
.subPage#contact .inquiry__item .file:hover, .subPage#contact .inquiry__item--btnDel:hover {
  opacity: 0.8;
}
.subPage#contact .inquiry__item .file {
  margin-right: 10px;
  border-color: var(--cGreen);
  color: #fff;
  background: var(--cGreen);
}
.subPage#contact .inquiry__item .likeInput {
  font-size: 17px;
  color: #B3B3B3;
  margin-right: 42px;
}
.subPage#contact .inquiry .fileline .inquiry__item {
  align-items: center;
}
.subPage#contact .inquiry .agreeLine .agreeItem {
  border-color: var(--cBlack);
}
.subPage#contact .inquiry .agreeLine .agree__chk {
  display: flex;
  align-items: center;
}
.subPage#contact .inquiry .agreeLine .agree__chk input {
  margin-right: 10px;
}
.subPage#contact .inquiry .agreeLine .agree__chk a {
  display: inline;
  text-decoration: underline;
}
.subPage#contact .submitWrap .btn-submit {
  margin: 44px auto 0;
  width: 300px;
  height: 70px;
  background: var(--cGreen);
  color: #fff;
  align-content: center;
  text-align: center;
  border: 0;
  border-radius: 10px;
}
.subPage#contact .submitWrap .btn-submit:disabled {
  background: var(--cGray);
  cursor: auto;
}
.subPage#contact .submitWrap .btn-submit:not(:disabled):hover {
  background: var(--cBlue);
}
.subPage#line .line {
  padding: 68px 76px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 500px;
}
.subPage#line .line:not(:last-child) {
  margin-bottom: 52px;
}
.subPage#line .line__text {
  color: #fff;
}
.subPage#line .line__text--num {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.subPage#line .line__text--name {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
.subPage#line .line__text--desc {
  font-size: 17px;
  line-height: 1.6;
}
.subPage#line .line:nth-child(even) {
  text-align: right;
}
.subPage#line .line#line1 {
  background: url(/asset/images/facility/line1.jpg) no-repeat center/cover;
}
.subPage#line .line#line2 {
  background: url(/asset/images/facility/line2.jpg) no-repeat center/cover;
}
.subPage#line .line#line3 {
  background: url(/asset/images/facility/line3.jpg) no-repeat center/cover;
}
.subPage#line .line#line4 {
  background: url(/asset/images/facility/line4.jpg) no-repeat center/cover;
}
.subPage#line .line#line5 {
  background: url(/asset/images/facility/line5.jpg) no-repeat center/cover;
}
.subPage#line .line#line6 {
  background: url(/asset/images/facility/line6.jpg) no-repeat center/cover;
}
.subPage#line .line#line7 {
  background: url(/asset/images/facility/line7.jpg) no-repeat center/cover;
}
.subPage#process .process__list {
  display: grid;
  grid-template-columns: repeat(5, 250px);
  gap: 22px 20px;
  justify-content: center;
}
.subPage#process .process__step {
  height: 250px;
  border-radius: 30px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  align-content: center;
  position: relative;
}
.subPage#process .process__step a {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  align-content: center;
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
}
.subPage#process .process__step:hover a {
  background: rgba(100, 152, 90, 0.4);
  box-shadow: inset 0 0 0 2px var(--cGreen);
}
.subPage#process .process__step--num {
  font-weight: 700;
  color: #98C58F;
  position: absolute;
  right: 27px;
  bottom: 22px;
  font-size: 26px;
}
.subPage#process .process__step--name {
  color: #fff;
  font-weight: 500;
  text-align: center;
  font-size: 20px;
}
.subPage#equip {
  /* 모바일: 스크롤 래퍼 */
}
.subPage#equip .equip-swiper {
  margin-bottom: 100px;
  /* 좌우 배경색 */
  --caption-bg: #747474;
  /* 하단 캡션 바 */
  --caption-color: #fff;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  width: 100%;
}
.subPage#equip .equip-swiper__shell {
  background: #B4A69D;
}
.subPage#equip .equip-swiper .swiper {
  width: 100%;
}
.subPage#equip .equip-swiper .swiper-slide {
  display: grid;
  place-items: center;
  background: var(--bg);
}
.subPage#equip .equip-swiper .swiper-slide img {
  height: 100%;
  object-fit: contain;
  display: block;
}
.subPage#equip .equip-swiper__caption {
  color: var(--caption-color);
  background: #747474;
  text-align: center;
  font-weight: 700;
  padding: 16px;
  font-size: 20px;
}
.subPage#equip .equip-swiper .swiper-pagination {
  position: static;
  /* 컨테이너 바깥에 배치하기 위해 static */
  margin: 30px 0 0;
  text-align: center;
}
.subPage#equip .equip-swiper .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #B3B3B3;
  margin: 0 7px;
  opacity: 1;
}
.subPage#equip .equip-swiper .swiper-pagination-bullet-active {
  background: var(--cGreen);
}
.subPage#equip .equip-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 17px;
}
.subPage#equip .equip-table thead th {
  background: var(--cGreen);
  color: #fff;
  font-weight: 500;
  padding: 22px;
  text-align: center;
}
.subPage#equip .equip-table tbody td {
  padding: 30px;
  vertical-align: middle;
  border-bottom: 1px solid var(--cGreen);
  text-align: center;
  font-weight: 500;
}
.subPage#equip .equip-table tbody td.name {
  color: var(--cGreen);
  white-space: nowrap;
}
.subPage#equip .equip-table tbody tr:nth-child(2n) {
  background: #F7FAF6;
}
.subPage#equip .equip-table tbody .subsep {
  background: transparent !important;
}
.subPage#equip .equip-table tbody .subsep .bGray {
  border-color: #B3B3B3;
}
.subPage#equip .table-wrap {
  overflow-x: auto;
}
@media (max-width: 720px) {
  .subPage#equip .equip-table {
    font-size: 14px;
  }
  .subPage#equip .equip-table thead th,
  .subPage#equip .equip-table tbody td {
    padding: 12px;
  }
}

/* 🔚 subPage */
/* ==================================
   ✅ 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 .subPage#intro .process__step {
  padding: 30px;
}
.JAPver .subPage#intro .process__start p,
.JAPver .subPage#intro .process__end p {
  padding: 8px 0;
}
.JAPver .subPage#intro .process__side {
  font-size: 13px;
}
.JAPver .subPage#contact .inquiry__item {
  padding: 46px 0;
}
.JAPver .subPage#sustainability .esgWay__slider .swiper-slide {
  min-height: 552px;
}

.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 #indexPage .esg .contents {
  padding: 167px 660px 119px 80px;
}
.ENGver .subPage#intro .process__start p,
.ENGver .subPage#intro .process__end p {
  padding: 10px 0;
}
.ENGver .subPage#intro .process__step {
  padding: 22px;
}
.ENGver .subPage#intro .process__side {
  font-size: 14px;
}
.ENGver .subPage#history .history .history__tabs .history__tab {
  padding: 0 4px;
}
.ENGver .subPage#sustainability .esgWay__item {
  padding: 50px;
}
.ENGver .subPage#sustainability .esgWay__slider .swiper-slide .case {
  height: auto;
  margin-bottom: 20px;
}
.ENGver .subPage#intro .test__item figcaption {
  height: 78px;
  align-content: center;
}
.ENGver .subPage#sustainability .esgWay__slider .swiper-slide {
  min-height: 572px;
}
@media screen and (max-width: 1440px) {
  .ENGver #indexPage .esg .contents {
    padding: 167px 510px 119px 80px;
    background-position: right -290px center;
  }
}
@media screen and (max-width: 1024px) {
  .ENGver #indexPage .esg .contents {
    padding: 76px 80px;
  }
}
@media screen and (max-width: 768px) {
  .ENGver #indexPage .esg .contents {
    padding: 70px var(--inner) 230px;
    background: url(/asset/images/index/esg-mob.jpg) no-repeat right bottom/cover;
  }
}
@media screen and (max-width: 500px) {
  .ENGver .footer__menu {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

@media screen and (max-width: 1700px) {
  :root {
    --inner: 80px;
    --innerB: 80px;
  }
  .header .gnb__dep1 {
    width: 160px;
  }
  #indexPage .company__menu {
    right: 44px;
  }
  .subPage#intro .process__list,
  .subPage#overview .organiChart .organi {
    transform: scale(0.8);
    transform-origin: top;
  }
  .subPage#history .history .history__tabs .history__tab {
    width: 100px;
    padding: 0 15px;
  }
  .subPage#history .history {
    padding: 83px 60px;
  }
  .subPage#location .floating {
    left: calc(var(--inner) + 40px);
  }
}
@media screen and (max-width: 1440px) {
  .forPC {
    display: none;
  }
  .forMOB {
    display: block;
  }
  :root {
    --inner: 40px;
    --innerB: 40px;
  }
  #wrap {
    overflow: hidden;
  }
  #indexPage .company__menu {
    position: unset;
    display: flex;
    justify-content: center;
  }
  #indexPage .company__info dl {
    min-width: auto;
    flex: 1;
  }
  #indexPage .company__menu--btn {
    margin-top: 0;
  }
  #indexPage .company__cont::before {
    font-size: 98px;
    top: -97px;
    right: 120px;
  }
  #indexPage .company__cont {
    border-radius: 130px;
  }
  #indexPage .video iframe {
    width: 100%;
  }
  #indexPage .hero__btn-scdown {
    width: 60px;
    height: 60px;
  }
  .subPage#process .process__list {
    grid-template-columns: repeat(3, 250px);
  }
  .subPage#intro .intro__vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .subPage#intro .process__list {
    flex-direction: column;
    transform: scale(1);
    gap: 86px;
  }
  .subPage#intro .process__step::before {
    top: auto;
    bottom: -50px;
    transform-origin: top;
    transform: rotate(90deg) translateX(-50%);
    left: 50%;
  }
  .subPage#intro .process__side {
    position: unset;
  }
  .subPage#intro .process__side li {
    width: 146px;
  }
  .subPage#intro .process__side::before {
    display: none;
  }
  .subPage#intro .process__start::before {
    display: block;
    content: "▼";
    position: absolute;
    top: 180px;
    transform: translateX(-50%);
    left: 50%;
    font-size: 18px;
    color: #747474;
  }
  .subPage#intro .process__side::after {
    display: none;
  }
  .subPage#intro .process__end::before {
    display: none;
  }
  .subPage#ceo .ceoWrap {
    flex-direction: column;
  }
  .subPage#overview .organiChart {
    background-size: 336px auto;
  }
  .subPage#overview .organiChart .organi {
    transform: scale(0.6);
  }
  .secTit__main {
    font-size: 40px;
  }
  .subPage#sustainability .esgWay__item {
    border-radius: 40px;
    padding: 30px;
  }
  .subPage#sustainability .esgPolicy__cont {
    flex-direction: column;
    gap: 34px;
    border-radius: 94px;
  }
  .subPage#contact .inquiry__line.grid3 {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .header .sitemap {
    background: #fff;
    color: var(--cBlack);
    padding: 120px 0;
  }
  .header .sitemap .gnb__wrap {
    flex-direction: column;
    align-items: center;
  }
  .header .sitemap .gnb__list {
    width: 100%;
  }
  .header .sitemap .gnb__list.on .gnb__dep1 {
    color: var(--cGreen);
  }
  .header .sitemap .gnb__list.on .gnb__dep1::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .header .sitemap .gnb__dep1 {
    margin-bottom: 0;
    width: 100%;
    position: relative;
  }
  .header .sitemap .gnb__dep1::after {
    display: block;
    content: "\e942";
    position: absolute;
    font-family: "xeicon";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: var(--inner);
    transition: all 0.3s;
  }
  .header .sitemap .gnb__dep2 {
    background: #EFEFEF;
    padding: 15px 0;
    display: none;
  }
  .header .sitemap .gnb__dep2 li {
    color: #B3B3B3;
  }
  .header .sitemap .gnb__dep2 li a {
    font-size: 16px;
    padding: 5px 0;
  }
  .header .withoutGNB .utility .btn-hamburger.on span.bgGreen,
  .header .withoutGNB .utility .btn-hamburger.on span.bgGray {
    background: var(--cBlack);
  }
  .header .withoutGNB .utility .changeLang {
    display: none;
  }
  .header.onSitemap .withoutGNB .logo {
    display: none;
  }
  .header.onSitemap .withoutGNB .utility {
    justify-content: space-between;
    width: 100%;
  }
  .header.onSitemap .withoutGNB .utility .changeLang {
    display: block;
    width: auto;
    height: auto;
  }
  .header.onSitemap .withoutGNB .utility .changeLang__icon {
    display: none;
  }
  .header.onSitemap .withoutGNB .utility .changeLang__menu {
    border: 0;
    display: flex;
    position: unset;
    border-left: 1px solid #EFEFEF;
    padding: 0;
    transform: none;
  }
  .header.onSitemap .withoutGNB .utility .changeLang__menu li {
    border: 1px solid #EFEFEF;
    border-left: 0;
  }
  .header.onSitemap .withoutGNB .utility .changeLang__menu li.on {
    color: var(--cGreen);
    outline: 1px solid var(--cGreen);
  }
  .header.onSitemap .withoutGNB .utility .changeLang__menu li a {
    padding: 10px;
  }
  .header.onSitemap .withoutGNB .utility .btn-hamburger {
    width: 50px;
    height: 50px;
  }
  .header.onSitemap .withoutGNB .changeLang:hover .changeLang__menu {
    display: flex;
  }
  #indexPage .hero__text h2 {
    font-size: 40px;
  }
  #indexPage .company__info {
    flex-direction: column;
    margin-bottom: 86px;
  }
  #indexPage .company__menu {
    flex-direction: column;
  }
  #indexPage .company__menu--btn {
    width: 100%;
    height: 150px;
    border-radius: 90px;
    margin-top: -22px;
  }
  #indexPage .company__menu--btn i {
    display: block;
    position: unset;
    transform: unset;
    margin-bottom: 5px;
  }
  #indexPage .company__cont::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    white-space: nowrap;
    font-size: 78px;
    top: -76px;
  }
  #indexPage .product__cont {
    flex-direction: column;
  }
  #indexPage .product__item {
    width: 100%;
  }
  #indexPage .product__item img {
    object-fit: cover;
  }
  #indexPage .product__text {
    text-align: center;
  }
  #indexPage .product__text--desc {
    display: none;
  }
  #indexPage .esg .inner {
    padding: 0;
  }
  #indexPage .esg .contents {
    border-radius: 0;
    background-position: right -290px center;
    padding: 76px 80px;
    padding-right: 340px;
  }
  .footer__top {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .footer__address {
    text-align: center;
  }
  .footer__address--tit {
    margin-bottom: 30px;
  }
  .footer__num {
    flex-direction: column;
    gap: 12px;
  }
  .footer__bottom {
    flex-direction: column-reverse;
    gap: 10px;
    align-items: center;
  }
  .subPage#process .process__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .subPage#line .line__text--desc br {
    display: none;
  }
  .subPage#line .line {
    padding: 40px 26px;
  }
  .subPage#equip .equip-table tbody td {
    padding: 20px;
  }
  .subPage .subSecTit {
    margin-bottom: 48px;
  }
  .subPage#intro .test__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .subPage#ceo .photo {
    width: 100%;
  }
  .subPage#ceo .photo figure {
    width: 100%;
  }
  .subPage#overview .vival .value__organi--logo {
    width: 238px;
  }
  .subPage#overview .vival .value__organi--value {
    gap: 118px;
  }
  .subPage#overview .vival .value__organi--value li:not(:last-child)::before {
    width: 120px;
    right: -120px;
  }
  .subPage#overview .organiChart .organi {
    transform: scale(1);
  }
  .subPage#overview .organiChart .organi .ceoSect .vice {
    width: 500px;
    position: relative;
  }
  .subPage#overview .organiChart .organi .ceoSect .vice::after {
    display: block;
    content: "";
    position: absolute;
    left: 60px;
    top: 76px;
    width: 1px;
    height: 788px;
    border-right: 2px solid var(--cBlack);
  }
  .subPage#overview .organiChart .organi .sectDep2 {
    flex-direction: column;
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep1,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep1,
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep2,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep2 {
    width: 290px;
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep3,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep3 {
    flex-direction: column;
    margin: 0 auto;
    width: fit-content;
    transform: translateX(120px);
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep3__item,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep3__item {
    width: 240px;
  }
  .subPage#overview .organiChart .organi .ceoSect::before {
    bottom: auto;
    top: 160px;
    height: 56px;
  }
  .subPage#overview .organiChart .organi .ceoSect::after,
  .subPage#overview .organiChart .organi .sectDep2 .mgSect::before,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect::before,
  .subPage#overview .organiChart .organi .sectDep2 .mgSect::after,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect::after {
    display: none;
  }
  .subPage#overview .organiChart .organi .ceoSect {
    margin-bottom: 30px;
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep1,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep1,
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep2,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep2 {
    position: relative;
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep1::before, .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep1::after,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep1::before,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep1::after {
    display: block;
    content: "";
    position: absolute;
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep1::before,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep1::before {
    width: 40px;
    height: 1px;
    border-bottom: 2px solid var(--cGreen);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -40px;
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep1::after,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep1::after {
    width: 1px;
    height: 40px;
    border-right: 2px solid var(--cGreen);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 70px;
  }
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep1::before, .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep1::after {
    border-color: var(--cBlue);
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep2,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep2 {
    margin: 0 auto 30px;
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep3,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep3 {
    position: relative;
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep3::before,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep3::before {
    display: block;
    content: "";
    position: absolute;
    width: 1px;
    height: 362px;
    border-right: 2px solid var(--cBlack);
    top: -30px;
    left: -90px;
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep3__item::before,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep3__item::before {
    width: 88px;
    height: 1px;
    border-right: 0;
    border-bottom: 2px solid #EFEFEF;
    left: -88px;
    transform: translateY(-50%);
    top: 50%;
  }
  .subPage#history .history {
    border-radius: 10px;
  }
  .subPage#history .history .history__head {
    flex-direction: column;
    align-items: start;
  }
  .subPage#history .history .history__title {
    padding-left: 0;
  }
  .subPage#history .history .history__tabs {
    margin-left: 0;
  }
  #clients main {
    padding-bottom: 180px;
  }
  .subPage#sustainability .esgWay__items {
    gap: 8px;
  }
}
@media screen and (max-width: 768px) {
  #indexPage .esg .contents {
    padding: 70px var(--inner) 230px;
    background: url(/asset/images/index/esg-mob.jpg) no-repeat right bottom/cover;
  }
  #indexPage .esg .secTit__desc {
    filter: brightness(0.5);
  }
  #indexPage .esg .secTit__desc br {
    display: none;
  }
  .footer__bottom {
    border-radius: 30px 30px 0px 0px;
    padding: 30px 10px;
  }
  .subPage#results .history .historySlider .sixWrap {
    width: 100%;
  }
  .subPage#results .history .historySlider .sixWrap li {
    padding: 25px 10px;
    gap: 30px;
  }
  .subPage .tabArea .inner {
    padding: 0;
  }
  .subPage .tabArea .current {
    position: relative;
    padding: 10px var(--inner);
    border-bottom: 1px solid #EFEFEF;
  }
  .subPage .tabArea .current::after {
    display: block;
    content: "\e942";
    position: absolute;
    font-family: "xeicon";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: var(--inner);
    transition: all 0.3s;
  }
  .subPage .tabArea .current.open::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .subPage .tabArea ul {
    position: absolute;
    background: #fff;
    top: 40px;
    left: 0;
    flex-direction: column;
    padding: 0;
    border-radius: 0;
    text-align: left;
    gap: 0;
    display: none;
    z-index: 5;
  }
  .subPage .tabArea ul li {
    font-size: 14px;
    border-bottom: 1px solid #EFEFEF;
    border-radius: 0;
  }
  .subPage .tabArea ul li.on {
    background: none;
    color: var(--cGreen);
  }
  .subPage .tabArea ul li a {
    padding: 10px var(--inner);
  }
  .subPage#ceo .greeting__tit {
    font-size: 40px;
  }
  .subPage#overview .overview__table dl dt {
    width: 146px;
  }
  .subPage#overview .vival .vision__text,
  .subPage#overview .vival .value__text {
    font-size: 40px;
  }
  .subPage#overview .organiChart .organi .ceoSect .vice {
    width: 410px;
  }
  .subPage#overview .organiChart .organi .ceoSect .vice::after {
    left: 40px;
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep1::before,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep1::before {
    width: 14px;
    left: -14px;
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep3__item,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep3__item {
    width: 160px;
  }
  .subPage#overview .vival .value__organi--logo {
    width: 198px;
  }
  .subPage#overview .vival .value__organi--value {
    gap: 58px;
  }
  .subPage#overview .vival .value__organi--value li:not(:last-child)::before {
    width: 50px;
    right: -50px;
  }
  .subPage#history .text__desc {
    font-size: 26px;
  }
  .subPage#history .history {
    padding: 83px 30px;
  }
  .subPage#history .history .history__tabs .history__tab {
    width: 80px;
    line-height: 1.2;
  }
  .subPage#history .history .history__body {
    width: 100%;
    padding-left: 24px;
  }
  .subPage#history .history .history__list li {
    flex-direction: column;
    gap: 8px;
  }
  .subPage#sustainability .esgWay__tit,
  .subPage#sustainability .esgPolicy__tit {
    font-size: 40px;
    margin-bottom: 43px;
  }
  .subPage#sustainability .esgWay__items {
    flex-direction: column;
    gap: 18px;
  }
  .subPage#sustainability .esgWay__item {
    width: 100%;
    height: 290px;
  }
  .subPage#sustainability .esgWay__item--name {
    font-size: 30px;
  }
  .subPage#sustainability .esgWay__slider .swiper-slide {
    width: 70%;
  }
  .subPage#sustainability .esgPolicy__cont {
    border-radius: 34px;
    padding: 52px 30px;
  }
  .subPage#contact .inquiry__item {
    padding: 46px 0;
  }
  .subPage#contact .inquiry__item h6 span {
    margin-right: 4px;
  }
  .subPage#contact .inquiry .fileline .inquiry__item,
  .subPage#contact .inquiry .agreeLine .agreeItem {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .subPage#location main .inner {
    padding: 0;
  }
  .subPage#location .map {
    width: 100%;
    height: 813px;
  }
  .subPage#location .floating {
    left: var(--inner);
  }
  .subPage#location .floating__info {
    padding: 28px 32px;
  }
}
@media screen and (max-width: 500px) {
  :root {
    --inner: 20px;
    --innerB: 20px;
    --hdHeight: 90px;
  }
  .header {
    height: var(--hdHeight);
  }
  .header .withoutGNB .logo {
    width: 68px;
    height: 50px;
  }
  #indexPage .hero {
    border-radius: 0px 0px 40px 40px;
    margin-bottom: 50px;
  }
  #indexPage .hero .inner {
    top: 74px;
    transform: none;
  }
  #indexPage .hero__text {
    padding-right: var(--inner);
  }
  #indexPage .hero__text h2 {
    font-size: 30px;
  }
  #indexPage .hero__btn-scdown {
    width: 48px;
    height: 48px;
    left: var(--inner);
    bottom: var(--inner);
  }
  #indexPage .hero .slider-control {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -270px;
    font-size: 14px;
  }
  #indexPage .hero .swiper-pagination {
    width: 100px;
  }
  #indexPage .hero .swiper-slide img {
    object-position: calc(100% + 200px) 50%;
  }
  .secTit__sub {
    font-size: 16px;
  }
  .secTit__main {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .secTit__desc {
    font-size: 14px;
  }
  .secTit__desc br {
    display: none;
  }
  #indexPage .company__cont {
    margin-top: 88px;
    border-radius: 20px;
    padding: 40px 20px;
  }
  #indexPage .company__cont::before {
    font-size: 50px;
    top: -46px;
  }
  #indexPage .product__item.cabin {
    border-radius: 40px 0px 0px 0px;
  }
  #indexPage .product__item {
    height: 334px;
  }
  #indexPage .product__text {
    padding: 14px;
  }
  #indexPage .product__text--name {
    font-size: 26px;
  }
  #indexPage .product__item.bottom {
    border-radius: 0px 0px 40px 0px;
  }
  .partnerMap .country .name {
    display: none;
  }
  .partnerMap .secTit {
    transform: translateY(170px);
  }
  #indexPage .partnerMap {
    margin-bottom: 220px;
  }
  #indexPage .video {
    margin-bottom: 56px;
  }
  #indexPage .esg .contents {
    padding: 70px var(--inner) 36px;
  }
  .footer__info {
    width: 100%;
  }
  .footer__address--adrs {
    text-align: left;
  }
  .footer__address {
    margin-bottom: 20px;
  }
  .footer__bottom {
    border-radius: 10px 10px 0px 0px;
    font-size: 12px;
  }
  .footer__menu {
    gap: 14px;
  }
  .footer .btn-top {
    width: 80px;
    height: 80px;
    top: -40px;
  }
  .header .sitemap .gnb__dep1 {
    font-size: 14px;
    height: 40px;
  }
  .header .sitemap .gnb__dep2 li a {
    font-size: 14px;
  }
  .header.onSitemap .withoutGNB .utility .changeLang {
    font-size: 12px;
  }
  .header.onSitemap .withoutGNB .utility .btn-hamburger {
    width: 26px;
    height: 26px;
  }
  .header .withoutGNB .utility .btn-hamburger.on span.bgGray {
    bottom: 41%;
  }
  .subPage {
    padding-top: 24px;
  }
  .subPage .sub-title {
    margin-bottom: 24px;
  }
  .subPage .sub-title__title {
    font-size: 26px;
    text-align: center;
  }
  .subPage .tabArea {
    margin-bottom: 24px;
  }
  .subPage#process .process__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .subPage#process .process__step {
    height: 330px;
  }
  .subPage#equip .equip-swiper__caption {
    font-size: 16px;
    padding: 8px;
  }
  .subPage#equip .equip-swiper {
    margin-bottom: 40px;
  }
  .subPage#equip .equip-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
  .subPage#equip .equip-swiper .swiper-pagination {
    margin: 8px 0 0;
  }
  .subPage#intro .intro__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .subPage#intro .intro__desc {
    font-size: 14px;
  }
  .subPage#intro .intro__vision {
    grid-template-columns: repeat(1, 1fr);
  }
  .subPage#intro .intro__vision li {
    padding: 40px;
  }
  .subPage#intro .organi {
    margin-bottom: 118px;
  }
  .subPage#intro .organi__teams {
    gap: 15px;
  }
  .subPage#intro .organi__team > div {
    width: 160px;
    font-size: 14px;
  }
  .subPage#intro .process__side {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .subPage#intro .process__side li {
    aspect-ratio: auto;
    border-radius: 28px;
    padding: 12px;
    width: 100%;
    height: auto;
  }
  .subPage#intro .process__list {
    gap: 104px;
  }
  .subPage#intro .process__start::before {
    top: 186px;
  }
  .subPage#intro .process__end {
    margin-top: -30px;
  }
  .subPage#intro .process {
    margin-bottom: 100px;
  }
  .subPage#intro .test__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .subPage#intro .process__step::before {
    bottom: -60px;
  }
  .subPage#results .status {
    margin-bottom: 24px;
  }
  .subPage#results .status__wrap {
    gap: 4px;
    flex-direction: column;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
  }
  .subPage .subSecTit {
    margin-bottom: 64px;
    font-size: 22px;
  }
  .subPage#ceo .greeting__subtit {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .subPage#ceo .greeting__tit {
    font-size: 30px;
    margin-bottom: 37px;
  }
  .subPage#ceo .greeting__cont {
    font-size: 16px;
  }
  .subPage#ceo .greeting__ceo {
    font-size: 14px;
  }
  .subPage#ceo .greeting__ceo strong {
    font-size: 25px;
  }
  .subPage#overview .overview {
    margin-bottom: 52px;
  }
  .subPage#overview .overview__table dl {
    flex-direction: column;
    gap: 2px;
    font-size: 16px;
    padding: 24px;
  }
  .subPage#overview .overview__table dl dt {
    width: 100%;
    padding: 0;
  }
  .subPage#overview .overview__table dl dd {
    padding: 0;
    text-align: center;
  }
  .subPage#overview .vival {
    padding: 50px 0;
  }
  .subPage#overview .vival .vision {
    margin-bottom: 50px;
  }
  .subPage#overview .vival .value__text {
    padding: 22px;
  }
  .subPage#overview .vival .value__organi--logo {
    width: 256px;
  }
  .subPage#overview .vival .value__organi--value {
    flex-direction: column;
    gap: 48px;
  }
  .subPage#overview .vival .value__organi--value li figure {
    width: 150px;
    margin: 0 auto 6px;
  }
  .subPage#overview .vival .value__organi--value li:not(:last-child)::before {
    right: auto;
    left: 50%;
    transform: rotate(90deg) translateX(-50%);
    transform-origin: left;
    width: 26px;
    bottom: -26px;
  }
  .subPage#overview .organiChart .organi .ceoSect .vice {
    width: 296px;
  }
  .subPage#overview .organiChart .organi p {
    height: 60px;
  }
  .subPage.company .subSecTit {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .subPage#overview .vival .vision__text,
  .subPage#overview .vival .value__text {
    font-size: 26px;
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep1,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep1,
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep2,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep2 {
    width: 180px;
  }
  .subPage#overview .organiChart .organi .ceoSect {
    margin-bottom: 24px;
  }
  .subPage#overview .organiChart .organi .ceoSect .vice::after {
    top: 56px;
    height: 636px;
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep1::before,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep1::before {
    width: 12px;
    left: -12px;
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep1,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep1 {
    margin: 0 auto 14px;
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep1::after,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep1::after {
    top: 60px;
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep3,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep3 {
    transform: translateX(50px);
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep3::before,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep3::before {
    left: -30px;
    height: 292px;
  }
  .subPage#overview .organiChart .organi .sectDep2 .mgSect .dep3__item::before,
  .subPage#overview .organiChart .organi .sectDep2 .pdSect .dep3__item::before {
    width: 28px;
    left: -28px;
  }
  .subPage#history .text {
    margin-bottom: 38px;
  }
  .subPage#history .text__desc {
    font-size: 22px;
  }
  .subPage#history .history {
    padding: 52px 22px;
  }
  .subPage#history .history .history__title {
    font-size: 30px;
  }
  .subPage#history .history .history__title .small {
    margin-left: 14px;
    font-size: 15px;
  }
  .subPage#history .history .history__head {
    gap: 22px;
    margin-bottom: 30px;
  }
  .subPage#history .history .history__tabs {
    gap: 8px;
  }
  .subPage#history .history .history__tabs .history__tab {
    font-size: 12px;
    width: 66px;
  }
  .subPage#history .history .history__list li {
    font-size: 16px;
  }
  .subPage#sustainability .esgWay {
    margin-bottom: 50px;
  }
  .subPage#sustainability .esgWay .inner {
    padding: 0;
  }
  .subPage#sustainability .esgWay__tit,
  .subPage#sustainability .esgPolicy__tit {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
  }
  .subPage#sustainability .esgWay__item {
    height: 380px;
    border-radius: 0;
  }
  .subPage#sustainability .esgWay__items {
    gap: 0;
  }
  .subPage#sustainability .esgWay__item--desc {
    font-size: 14px;
  }
  .subPage#sustainability .esgWay__slider .swiper-slide {
    width: 274px;
    padding: 30px;
  }
  .subPage#sustainability .esgWay__slider .swiper-slide .top {
    margin-bottom: 12px;
  }
  .subPage#sustainability .esgWay__slider .swiper-slide .top .field {
    font-size: 20px;
  }
  .subPage#sustainability .esgWay__slider .swiper-slide .top .icon {
    width: 86px;
    height: 86px;
  }
  .subPage#sustainability .esgWay__slider .swiper-slide .case {
    font-size: 20px;
    height: 66px;
  }
  .subPage#sustainability .esgWay__slider .swiper-slide .desc {
    font-size: 14px;
  }
  .subPage#sustainability .esgPolicy {
    padding: 60px 0 90px;
  }
  .subPage#sustainability .esgPolicy__tit {
    margin-bottom: 40px;
  }
  .subPage#sustainability .esgPolicy__text--tit {
    font-size: 20px;
    text-align: center;
  }
  .subPage#sustainability .esgPolicy__text--desc {
    font-size: 14px;
  }
  .subPage#sustainability .esgPolicy__cont {
    gap: 40px;
    border-radius: 34px;
    padding: 42px 18px;
  }
  .subPage#sustainability .esgPolicy__dwld--text {
    font-size: 14px;
    width: 244px;
    height: 50px;
  }
  .subPage#sustainability .esgPolicy__dwld--btn {
    width: 50px;
    height: 50px;
  }
  .subPage#contact .inquiry__item {
    padding: 20px 0;
    flex-direction: column;
    gap: 8px;
  }
  .subPage#contact .inquiry__item--file {
    flex-wrap: wrap;
  }
  .subPage#contact .inquiry__item .likeInput {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .subPage#contact .inquiry .fileline .inquiry__item,
  .subPage#contact .inquiry .agreeLine .agreeItem {
    gap: 10px;
  }
  .subPage#contact .submitWrap .btn-submit {
    margin: 24px auto 0;
    height: 60px;
    width: 100%;
  }
  .subPage#location .map {
    height: 650px;
  }
  .subPage#location .floating__info--company {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .subPage#location .floating__info {
    border-radius: 10px;
    max-width: calc(100% - var(--inner));
  }
  .subPage#location .floating .btn-direction {
    width: 80px;
    height: 80px;
  }
  .subPage#contact .inquiry__line.grid3 {
    gap: 0;
  }
  .footer__num dl {
    flex-direction: column;
    gap: 4px;
  }
  .subPage#overview .certification .certi-swiper {
    padding: 0;
  }
}
.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: 70px;
  height: 70px;
  line-height: 1;
}

.pg_current {
  border-radius: 50%;
  background: var(--cGreen);
  min-width: unset;
  padding: 0;
}

.pg_page {
  background-color: transparent !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: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #747474;
  font-size: 24px;
  text-align: center;
  align-content: center;
  color: #747474;
  display: block;
}

.btnArea .btn-arrow:hover,
.btnArea .btn-list:hover {
  color: #64985A;
}

.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 #64985A;
  border-bottom: 1px solid #64985A;
  padding: 24px 15px;
}
#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: #64985A !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: 16px;
  }
  #bo_cate_ul li a {
    font-size: 14px;
  }
  #bo_v_title {
    text-align: center;
    align-items: center;
  }
  #bo_v img {
    width: 100%;
    height: auto;
  }
}
/* 🔚 Responsive Imports */

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