@charset "UTF-8";
:root {
  --fPrtdd: "Pretendard", sans-serif;
  --cBlk: #191F38;
  --cBlue: #1988F0;
  --cGray: #808080;
  --inner: 100px;
  --indexInner: 244px;
  --hdHeight: 100px;
  --pt20: 20px;
  --fsz100: clamp(66px, 5.21vw, 100px);
  --fsz90: clamp(60px, 4.69vw, 90px);
  --fsz80: clamp(36px, 4.17vw, 80px);
  --fsz70: clamp(46px, 3.65vw, 70px);
  --fsz66: clamp(44px, 3.44vw, 66px);
  --fsz56: clamp(36px, 2.92vw, 56px);
  --fsz50: clamp(24px, 2.6vw, 50px);
  --fsz46: clamp(30px, 2.4vw, 46px);
  --fsz40: clamp(32px, 2.08vw, 40px);
  --fsz36: clamp(24px, 1.88vw, 36px);
  --fsz30: clamp(26px, 1.56vw, 30px);
  --fsz26: clamp(20px, 1.35vw, 26px);
  --fsz24: clamp(20px, 1.25vw, 24px);
  --fsz22: clamp(18px, 1.15vw, 22px);
  --fsz20: clamp(18px, 1.04vw, 20px);
  --fsz18: clamp(16px, 0.84vw, 18px);
  --fsz17: clamp(16px, 0.89vw, 17px);
  --fsz16: clamp(14px, 0.83vw, 16px);
  --fsz14: clamp(12px, 0.73vw, 14px);
}

@media screen and (max-width: 1700px) {
  :root {
    --indexInner: 100px;
    --inner: 80px;
  }
}
@media screen and (max-width: 1440px) {
  :root {
    --indexInner: 60px;
    --inner: 60px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --indexInner: 40px;
    --inner: 40px;
    --fsz20: clamp(16px, 1.04vw, 20px);
    --fsz30: clamp(22px, 1.56vw, 30px);
    --fsz40: clamp(21px, 2.08vw, 40px);
    --fsz70: clamp(34px, 3.65vw, 70px);
  }
}
@media screen and (max-width: 500px) {
  :root {
    --indexInner: 34px;
    --inner: 20px;
    --hdHeight: 60px;
    --fsz100: clamp(60px, 5.21vw, 100px);
    --fsz66: clamp(32px, 3.44vw, 66px);
    --fsz56: clamp(30px, 2.92vw, 56px);
    --fsz46: clamp(24px, 2.4vw, 46px);
    --fsz40: clamp(22px, 2.08vw, 40px);
    --fsz30: clamp(20px, 1.56vw, 30px);
    --fsz22: clamp(16px, 1.15vw, 22px);
    --fsz18: clamp(14px, 0.84vw, 18px);
  }
}
/* ==================================
   ✅ Reset
================================== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
}

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

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

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

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

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

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

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

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

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

::selection {
  background-color: rgba(25, 136, 240, 0.3);
}

::-moz-selection {
  background-color: rgba(25, 136, 240, 0.3);
}

::-webkit-selection {
  background-color: rgba(25, 136, 240, 0.3);
}

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

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

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

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

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

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

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

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

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

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

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

/* 🔚 Icon Utils */
.forFlex {
  display: flex;
}

.slick-track {
  height: 100%;
}

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

.forMOB {
  display: none;
}

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

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

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

body.noScroll {
  overflow: hidden;
}

/* 🔚 Common */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--hdHeight);
  background: #fff;
  z-index: 6000;
}
.header .inner {
  display: flex;
  gap: 21.6vw;
  align-items: center;
  height: 100%;
}
.header .logo {
  width: 260px;
  height: 60px;
}
.header__gnb #gnb {
  display: flex;
}
.header__gnb #gnb .gnb-list {
  position: relative;
  display: flex;
  align-items: center;
}
.header__gnb #gnb .gnb-list > li {
  /* -------------------------------
              DEPTH 2 (gnb-dep-02)
        -------------------------------- */
  /* -------------------------------
               DEPTH 2 + CONTENT WRAP
        -------------------------------- */
}
.header__gnb #gnb .gnb-list > li > a {
  position: relative;
  font-size: var(--fsz18);
  font-weight: 500;
  width: 170px;
  text-align: center;
  height: var(--hdHeight);
  align-content: center;
}
.header__gnb #gnb .gnb-list > li > a::after {
  transition: 0.3s;
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  z-index: 100;
}
.header__gnb #gnb .gnb-list > li > a.on::after {
  width: 100%;
  background-color: var(--cBlue);
  z-index: 200;
}
.header__gnb #gnb .gnb-list > li > a.on + .gnb-content-wrap {
  visibility: visible;
  opacity: 1;
  z-index: 150;
}
.header__gnb #gnb .gnb-list > li .gnb-dep-02 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: absolute;
  left: 0;
  top: calc(var(--hdHeight) + 50px);
  z-index: 100;
  gap: 22px 0;
}
.header__gnb #gnb .gnb-list > li .gnb-dep-02 li {
  width: 200px;
  padding: 0 24px;
  font-size: var(--fsz17);
}
.header__gnb #gnb .gnb-list > li .gnb-dep-02 > li > a:hover {
  color: var(--cBlue);
}
.header__gnb #gnb .gnb-list > li .gnb-content-wrap {
  visibility: hidden;
  opacity: 0;
}
.header__gnb #gnb .gnb-list > li .gnb-content-wrap .gnb-content {
  z-index: 1;
  display: flex;
  align-items: flex-start;
  position: fixed;
  left: 0;
  top: var(--hdHeight);
  width: 100%;
  height: 120px;
  background-color: #fff;
  padding: 38px var(--inner) 42px;
  border-bottom: 1px solid #F3F3F3;
  border-top: 1px solid #F3F3F3;
}
.header__gnb #gnb .gnb-list > li .gnb-content-wrap .gnb-content .txt-wrap {
  font-size: var(--fsz18);
}
.header__gnb #gnb .gnb-list > li .gnb-content-wrap .gnb-content .txt-wrap strong {
  color: var(--cBlue);
  margin-bottom: 4px;
}
.header__gnb #gnb .gnb-list > li .gnb-content-wrap .gnb-content .txt-wrap p {
  font-weight: 500;
}
.header__lang {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: var(--inner);
}
.header__lang a {
  width: 100px;
  height: 44px;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 5px;
  background: #F3F3F3;
}
.header__lang a i {
  font-size: 19px;
}
.header__lang a span {
  font-size: var(--fsz16);
}
.header__lang a:hover {
  background: var(--cBlue);
  color: #fff;
}

.footer {
  margin-top: 100px;
  background: var(--cBlk);
  color: #fff;
  padding: 52px 0;
}
.footer__adm {
  margin-bottom: 22px;
}
.footer__adm .btn-adm {
  font-size: 30px;
  color: var(--cBlue);
  width: 48px;
  height: 48px;
  border: 2px solid var(--cBlue);
  border-radius: 50%;
  text-align: center;
  align-content: center;
}
.footer__adm .btn-adm:hover {
  border-color: #fff;
  color: #fff;
}
.footer__main {
  display: flex;
  gap: 11.98vw;
  align-items: center;
  margin-bottom: 48px;
}
.footer__logo {
  width: 22.08vw;
  height: 3.85vw;
  filter: brightness(0) invert(1);
}
.footer__logo a {
  background-image: url(/asset/images/logo-w.svg);
}
.footer__conts {
  font-size: var(--fsz18);
}
.footer__conts dl {
  margin-bottom: 20px;
  display: flex;
  gap: 22px;
}
.footer__conts dl:last-child {
  margin-bottom: 0;
}
.footer__conts dl dt {
  font-weight: 500;
  width: 62px;
  flex-shrink: 0;
}
.footer__conts dl dt i {
  margin-right: 10px;
}
.footer__conts dl dd {
  font-weight: 300;
  color: #C7C7C7;
}
.footer__conts .forFlex {
  gap: 36px;
}
.footer__info {
  display: flex;
  color: var(--cGray);
  justify-content: space-between;
}
.footer__copy {
  font-weight: 300;
}
.footer .btn-terms {
  font-weight: 500;
}
.footer .btn-top {
  text-align: center;
  width: fit-content;
  position: absolute;
  right: var(--inner);
  top: 0;
}
.footer .btn-top p {
  width: 66px;
  height: 66px;
  text-align: center;
  align-content: center;
  background: var(--cBlue);
  margin-bottom: 10px;
}
.footer .btn-top p i {
  font-size: 26px;
}
.footer .btn-top span {
  font-size: 18px;
  font-weight: 500;
}

/* indexPage */
#indexPage {
  overflow: hidden;
}
#indexPage .pinArea {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#indexPage .pinArea .text {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: var(--cBlue);
  opacity: 0;
  position: fixed;
}
#indexPage .pinArea .text h2 {
  font-size: var(--fsz100);
  margin-bottom: 16px;
}
#indexPage .pinArea .text p {
  font-size: var(--fsz20);
  font-weight: 500;
}
#indexPage .pinArea .text.is-inside {
  position: absolute;
}
#indexPage .pinArea .inner {
  width: 100%;
  height: 100%;
}
#indexPage .hero {
  position: relative;
  height: calc(100vh - var(--hdHeight) - 150px);
  margin-top: var(--hdHeight);
}
#indexPage .hero .scDown {
  position: absolute;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
#indexPage .hero .scDown span {
  font-size: var(--fsz14);
  font-weight: 600;
}
#indexPage .hero .scDown__bar {
  display: block;
  width: 1px;
  height: 100px;
  background: var(--cBlk);
  position: relative;
  margin: 14px auto 0;
}
#indexPage .hero .scDown__bar::after {
  display: block;
  content: "";
  position: absolute;
  width: 3px;
  height: 30px;
  background: var(--cBlk);
  position: absolute;
  top: 0;
  left: -1px;
  animation: scDown 1.5s infinite;
}
@keyframes scDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(250%);
  }
}
#indexPage .mainSlider {
  will-change: transform, border-radius;
  overflow: hidden;
  position: relative;
  height: calc(100vh - var(--hdHeight));
  margin: 0 auto;
}
#indexPage .mainSlider .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#indexPage .mainSlider .text {
  color: #fff;
}
#indexPage .mainSlider .sliderInner {
  height: 100%;
}
#indexPage .mainSlider .slider {
  position: relative;
  z-index: -1;
}
#indexPage .mainSlider .slider,
#indexPage .mainSlider .slider__list,
#indexPage .mainSlider .slider__list > div {
  height: 100%;
}
#indexPage .mainSlider .slider__list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#indexPage .horizArea {
  overscroll-behavior: none;
  width: 400%;
  height: 100vh;
  display: flex;
  flex-wrap: nowrap;
}
#indexPage .business {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 41.67vw auto;
  background-color: var(--cBlk);
  width: 100vw;
  height: 100vh;
  color: #fff;
  align-content: center;
}
#indexPage .business .split > span {
  display: inline-block;
}
#indexPage .business .inner {
  padding: 0 var(--indexInner);
}
#indexPage .business .title {
  margin-bottom: 126px;
}
#indexPage .business .title__sub {
  font-weight: 700;
  font-size: var(--fsz16);
  margin-bottom: 14px;
}
#indexPage .business .title__main {
  font-size: var(--fsz80);
  font-weight: 800;
}
#indexPage .business .desc {
  font-size: var(--fsz22);
  font-weight: 500;
  margin-left: auto;
  width: fit-content;
  max-width: 520px;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
}
#indexPage .business .desc p:not(:last-child) {
  margin-bottom: 32px;
}
#indexPage .business .btn-more {
  width: 90px;
  height: 180px;
  text-align: center;
  align-content: center;
  position: absolute;
  bottom: 0;
  left: var(--indexInner);
}
#indexPage .business .btn-more span {
  color: #fff;
  font-size: var(--fsz18);
  font-weight: 500;
  display: block;
  margin-bottom: 50px;
}
#indexPage .business .btn-more i {
  font-size: var(--fsz30);
  color: var(--cBlue);
}
#indexPage .business .btn-more:hover span {
  color: var(--cBlue);
}
#indexPage .develop {
  height: 100vh;
  background: url(/asset/images/index/develop.jpg) no-repeat center/cover;
  align-content: center;
}
#indexPage .develop .inner {
  padding: 0 var(--indexInner);
}
#indexPage .develop .text {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#indexPage .develop .text__left--sub {
  font-size: var(--fsz16);
  font-weight: 700;
  margin-bottom: 16px;
}
#indexPage .develop .text__left--main {
  font-size: var(--fsz66);
  font-weight: 800;
  line-height: 1.36;
}
#indexPage .develop .text__right {
  font-size: var(--fsz40);
  position: relative;
}
#indexPage .develop .text__right::after {
  display: block;
  content: "";
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 208px;
  height: 4px;
  background: var(--cBlue);
  left: -260px;
}
#indexPage .develop .text__right strong {
  font-weight: 800;
}
#indexPage .video {
  background: var(--cBlk);
  padding: 150px 0 100px;
}
#indexPage .video figure {
  aspect-ratio: 16/9;
  margin: 0 auto;
  width: 1280px;
  height: auto;
  border: 1px solid #C7C7C7;
  padding: 44px 4.17vw;
}
@supports not (aspect-ratio: 16/9) {
  #indexPage .video figure::before {
    content: "";
    float: left;
    padding-top: calc((9 / 16) * 100%);
  }
  #indexPage .video figure::after {
    content: "";
    display: block;
    clear: both;
  }
}
#indexPage .video figure iframe {
  width: 100%;
  height: 100%;
}
#indexPage .cs {
  padding: 10px 0;
}
#indexPage .cs__wrap {
  display: flex;
}
#indexPage .cs__item {
  outline: 1px solid #F3F3F3;
  display: flex;
  flex: auto;
  padding: 2.4vw 3.85vw;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s;
}
#indexPage .cs__item p {
  height: 50px;
  padding-left: clamp(50px, 3.44vw, 66px);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  font-size: var(--fsz20);
  font-weight: 500;
  align-content: center;
}
#indexPage .cs__item:hover {
  background: var(--cBlk);
  color: #fff;
}
#indexPage .cs__item:hover i {
  color: var(--cBlue);
}

/* subpage */
.subPage {
  padding-top: calc(var(--hdHeight) + 100px);
}
.subPage .sub-header {
  margin-bottom: 108px;
}
.subPage .sub-header .sub-title {
  font-size: var(--fsz56);
  margin-bottom: 16px;
}
.subPage .sub-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 46px;
}
.subPage .sub-header .breadcrumb a {
  font-size: var(--fsz16);
  font-weight: 500;
}
.subPage .sub-header .breadcrumb .home {
  font-size: var(--fsz20);
}
.subPage .sub-header .breadcrumb .arrow {
  font-size: var(--fsz20);
}
.subPage .sub-header .breadcrumb .current {
  color: var(--cBlue);
  font-weight: 700;
  font-size: var(--fsz16);
}
.subPage .sub-header .page-desc p {
  font-size: var(--fsz18);
  font-weight: 500;
}
.subPage__tab {
  margin: 0 auto 86px;
  width: fit-content;
}
.subPage__tab ul {
  display: flex;
  gap: 60px;
}
.subPage__tab ul li {
  font-size: var(--fsz18);
  font-weight: 500;
  color: #B4B4B4;
  position: relative;
  text-align: center;
}
.subPage__tab ul li:not(:last-child)::after {
  display: block;
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  background: #C7C7C7;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
}
.subPage__tab ul li.on {
  color: var(--cBlk);
}
.subPage .title {
  text-align: center;
  margin-bottom: 52px;
}
.subPage .title__desc {
  font-size: var(--fsz22);
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--cGray);
}
.subPage .title__title {
  font-size: var(--fsz70);
}
.subPage .title__title span {
  font-size: var(--fsz50);
}
.subPage .table table {
  width: 100%;
  font-size: var(--fsz18);
  border-collapse: collapse;
}
.subPage .table table thead tr th {
  padding: 26px;
  border-top: 2px solid var(--cBlk);
  border-bottom: 2px solid var(--cBlk);
}
.subPage .table table tbody tr th {
  text-align: center;
  border-bottom: 1px solid var(--cBlk);
  padding: 16px 38px;
}
.subPage .table table tbody tr td {
  text-align: center;
  padding: 16px 38px;
  border-bottom: 1px solid var(--cBlk);
}

.subPage.company .case__title {
  font-size: var(--fsz30);
  margin-bottom: 28px;
}
.subPage.company .case__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.subPage.company .case__item figure {
  margin-bottom: 12px;
}
.subPage.company .case__item figcaption {
  text-align: center;
  font-size: var(--fsz18);
}
.subPage.company main section:not(:last-child) {
  margin-bottom: 204px;
}
.subPage.company main .cont {
  margin-bottom: 60px;
}

#overview .desc {
  margin-bottom: 6.77vw;
  text-align: center;
}
#overview .desc__img {
  margin-bottom: 6.77vw;
}
#overview .desc__main {
  font-size: var(--fsz40);
  margin-bottom: 24px;
  line-height: 1.35;
}
#overview .desc__main strong {
  font-weight: 600;
}
#overview .desc__sub {
  font-size: var(--fsz18);
  color: var(--cGray);
  line-height: 1.44;
}
#overview .info {
  display: flex;
  gap: 40px;
}
#overview .info__table {
  width: 50.52vw;
  flex-shrink: 0;
  border-top: 2px solid var(--cBlk);
}
#overview .info__table dl {
  display: flex;
  padding: 2.08vw 0;
  font-size: var(--fsz20);
  border-bottom: 1px solid var(--cGray);
}
#overview .info__table dl dt {
  width: 10.21vw;
  text-align: center;
  font-weight: 600;
  flex-shrink: 0;
}
#overview .info__table dl dd {
  padding: 0 2.29vw;
}

#technology .ndt__tech {
  display: flex;
  gap: 62px;
}
#technology .ndt__tech figure {
  width: 44.38vw;
  border: 1px solid var(--cBlk);
}
#technology .ndt__info {
  margin-top: auto;
}
#technology .ndt__info h4 {
  font-size: var(--fsz30);
  margin-bottom: 14px;
}
#technology .ndt__info--desc {
  font-size: var(--fsz18);
  color: var(--cBlue);
  margin-bottom: 28px;
}
#technology .ndt__info ul {
  border-top: 2px solid var(--cBlk);
  border-bottom: 1px solid var(--cBlk);
  padding: 18px 16px;
}
#technology .ndt__info ul li {
  padding: 8px 0;
  position: relative;
  padding-left: 1rem;
}
#technology .ndt__info ul li::before {
  content: "-";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
#technology .aero__spec {
  display: flex;
  gap: 20px;
}
#technology .aero__spec figure {
  position: relative;
}
#technology .aero__spec figure figcaption {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2.5vw;
  width: 100%;
  padding: 0 20px;
}
#technology .aero__spec figure.wt {
  color: #fff;
}
#technology .aero__spec--tit {
  font-weight: 700;
  font-size: var(--fsz20);
  margin-bottom: 4px;
}
#technology .aero__spec--desc {
  font-weight: 500;
  font-size: var(--fsz18);
}
#technology .space__tech {
  display: flex;
  gap: 60px;
}
#technology .space__tech figure {
  border: 1px solid var(--cBlk);
  padding: 118px 102px;
  width: 45.52vw;
  flex-shrink: 0;
}
#technology .space__info {
  margin-top: auto;
  flex: 1;
}
#technology .space__info h4 {
  font-size: var(--fsz30);
  margin-bottom: 22px;
}
#technology .space__table {
  border-top: 2px solid var(--cBlk);
  margin-bottom: 22px;
}
#technology .space__table dl {
  border-bottom: 1px solid var(--cBlk);
  padding: 14px 30px;
  font-size: var(--fsz18);
  display: flex;
}
#technology .space__table dl dt {
  font-weight: 600;
  width: 76px;
  margin-right: 22px;
}
#technology .space__table dl dd {
  align-content: center;
}
#technology .space .btn-more {
  display: flex;
  color: #fff;
  font-size: var(--fsz20);
  font-weight: 700;
  background: var(--cBlk);
  padding: 18px 30px;
  justify-content: space-between;
  align-items: center;
}
#technology .space .btn-more:hover {
  background: var(--cBlue);
}

#history .history .years {
  display: flex;
  gap: 13.44vw;
}
#history .history .years:not(:last-child) {
  margin-bottom: 200px;
}
#history .history .years__image {
  width: 40.63vw;
  flex-shrink: 0;
  position: relative;
}
#history .history .years__image::before {
  display: block;
  content: attr(data-years);
  position: absolute;
  top: 30px;
  right: -6.88vw;
  font-size: var(--fsz90);
  font-weight: 800;
}
#history .history .years__image figure {
  position: relative;
  overflow: hidden;
}
#history .history .years__image figure::after {
  display: block;
  content: attr(data-years);
  position: absolute;
  top: 30px;
  right: -6.88vw;
  font-size: var(--fsz90);
  font-weight: 800;
}
#history .history .years__image figure.wt {
  color: #fff;
}
#history .history .years__item:not(:last-child) {
  margin-bottom: 32px;
}
#history .history .years__year {
  font-size: var(--fsz24);
  font-weight: 800;
  margin-bottom: 6px;
}
#history .history .years__cont {
  font-weight: 500;
  font-size: var(--fsz18);
}
#history .menu {
  position: fixed;
  right: var(--inner);
  bottom: 30px;
  z-index: 600;
}
#history .menu ul {
  display: flex;
  padding: 16px 36px;
  background: #F3F3F3;
  border-radius: 46px;
  gap: 1.35vw;
}
#history .menu ul li {
  padding: 0.94vw 2.81vw;
  text-align: center;
  background: #fff;
  color: var(--cBlue);
  font-size: var(--fsz18);
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
}
#history .menu ul li.on {
  background: var(--cBlk);
  color: #fff;
}

.subPage.business .business__tab {
  margin-bottom: 100px;
}
.subPage.business .business__tab ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px 18px;
}
.subPage.business .business__tab ul li {
  text-align: center;
  border: 1px solid #F3F3F3;
  color: #B7B7B7;
  font-size: var(--fsz18);
  align-content: center;
}
.subPage.business .business__tab ul li a {
  padding: 20px;
}
.subPage.business .business__tab ul li.on {
  background: var(--cBlue);
  color: #fff;
  font-weight: 600;
}
.subPage.business.ndt .ndt__main {
  margin-bottom: 60px;
}
.subPage.business.ndt .ndt__main-tit {
  text-align: center;
  font-size: var(--fsz40);
  margin-bottom: 50px;
}
.subPage.business.ndt .ndt__main-image {
  max-width: 850px;
  margin: 0 auto;
}
.subPage.business.ndt .ndt__function-tit,
.subPage.business.ndt .ndt__performance-tit {
  font-size: var(--fsz24);
  padding: 26px 56px;
}
.subPage.business.ndt .ndt__function {
  margin-bottom: 40px;
}
.subPage.business.ndt .ndt__function-wrap {
  border-top: 2px solid var(--cBlk);
  border-bottom: 2px solid var(--cBlk);
  padding: 26px 56px;
}
.subPage.business.ndt .ndt__function-wrap ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 6.88vw;
}
.subPage.business.ndt .ndt__function-wrap ul li {
  padding: 26px 10px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: var(--fsz18);
}
.subPage.business.ndt .ndt__function-wrap ul li i {
  color: var(--cBlue);
  margin-right: 10px;
}
.subPage.business.ndt .ndt__function-wrap ul li.bb {
  border-bottom: 1px solid #C7C7C7;
}
.subPage.business.ndt .ndt__images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 100px;
}
.subPage.business.ndt .ndt__images figure {
  position: relative;
}
.subPage.business.ndt .ndt__images figure figcaption {
  color: #fff;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent 0, var(--cBlk) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 12px 26px;
  text-align: right;
  align-content: end;
  font-size: var(--fsz20);
  font-weight: 700;
}
.subPage.business.ndt .ndt__performance {
  max-width: 850px;
  margin: 0 auto;
}
.subPage.business.ndt .ndt__performance-table {
  border-top: 2px solid var(--cBlk);
}
.subPage.business.ndt .ndt__performance-table dl {
  font-size: var(--fsz18);
  padding: 16px 36px;
  display: flex;
  line-height: 1.89;
  border-bottom: 1px solid var(--cGray);
}
.subPage.business.ndt .ndt__performance-table dl dt {
  width: 352px;
  flex-shrink: 0;
}
.subPage.business.ndt .ndt__performance-table dl dd {
  font-weight: 600;
}

#clients .clients ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px 20px;
}
#clients .clients ul li {
  border: 1px solid #F3F3F3;
}

#location .conts {
  display: flex;
  gap: 6.04vw;
}
#location .conts .map {
  min-width: 46.88vw;
  height: 400px;
}
#location .conts .info {
  padding-top: 118px;
}
#location .conts .info__name {
  margin-bottom: 26px;
  padding-top: 108px;
  background: url(/asset/images/cs/logo.svg) no-repeat left top/140px auto;
  font-size: var(--fsz30);
}
#location .conts .info dl {
  display: flex;
  font-size: var(--fsz20);
}
#location .conts .info dl dt {
  width: 60px;
  font-weight: 700;
  color: var(--cGray);
}
#location .conts .info .forFlex {
  gap: 40px;
}
#location .conts .info .add {
  margin-bottom: 12px;
}

#airparts .parts ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 12px;
}
#airparts .parts ul li figure {
  border: 1px solid #F3F3F3;
  margin-bottom: 20px;
}
#airparts .parts ul li figcaption {
  text-align: center;
  font-size: var(--fsz20);
  font-weight: 700;
}

.subPage.aero .main-tit {
  font-size: var(--fsz40);
  text-align: center;
  margin-bottom: 50px;
}
.subPage.aero .main-cont {
  border: 1px solid var(--cBlk);
  display: flex;
  margin-bottom: 30px;
}
.subPage.aero .main-cont .sum {
  padding: 74px 7.08vw;
}
.subPage.aero .main-cont .sum img {
  object-fit: contain;
}
.subPage.aero .main-cont .spec {
  background: #F3F3F3;
  padding: 54px 4.69vw;
}
.subPage.aero .main-cont .spec figure {
  margin-bottom: 36px;
}
.subPage.aero .main-cont .spec__table dl {
  font-size: var(--fsz18);
  display: flex;
  gap: 40px;
  font-weight: 600;
}
.subPage.aero .main-cont .spec__table dl:not(:last-child) {
  margin-bottom: 16px;
}
.subPage.aero .main-cont .spec__table dl dt {
  width: 110px;
  color: var(--cGray);
}
.subPage.aero .images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
#uav-recon .character {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
#uav-recon .character__item {
  padding: 3.65vw;
  background: #F3F3F3;
  text-align: center;
}
#uav-recon .character__icon {
  display: block;
  width: 70px;
  height: 70px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0 auto 24px;
}
#uav-recon .character__tit {
  font-size: var(--fsz26);
  font-weight: 700;
  margin-bottom: 42px;
}
#uav-recon .character__spec {
  height: 176px;
  align-content: center;
}
#uav-recon .character__spec li {
  font-size: var(--fsz18);
}
#uav-recon .character__spec li:not(:last-child) {
  margin-bottom: 18px;
}
#uav-recon .table {
  margin-bottom: 150px;
}
#uav-recon .table table tbody tr th {
  font-weight: 400;
}
#uav-recon .table table tbody tr td {
  font-weight: 600;
}
#uav-recon .tech {
  margin-bottom: 150px;
}
#uav-recon .tech h4 {
  text-align: center;
  font-size: var(--fsz26);
  margin-bottom: 50px;
}
#uav-recon .tech__wrap {
  display: flex;
  gap: 36px;
}
#uav-recon .tech__item {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--cBlk);
}
#uav-recon .tech__tit {
  height: 46px;
  background: #F3F3F3;
  font-size: var(--fsz26);
  align-content: center;
  margin-bottom: 28px;
  font-weight: 700;
}
#uav-recon .tech__desc {
  font-size: var(--fsz18);
  font-weight: 700;
  margin-bottom: 34px;
}
#uav-recon .tech__desc span {
  font-weight: 400;
}
#uav-recon .tech__image {
  margin-bottom: 40px;
}
#uav-recon .tech__spec {
  padding: 0 20px;
  gap: 18px 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#uav-recon .tech__spec li {
  width: 96px;
}
#uav-recon .tech__spec.gcs li {
  width: 124px;
}
#uav-recon .tech__spec--name {
  text-align: center;
  font-weight: 600;
  font-size: var(--fsz16);
}
#uav-recon .tech__icon {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#uav-recon .gimbal__title {
  font-size: var(--fsz40);
  margin-bottom: 12px;
}
#uav-recon .gimbal__desc {
  font-size: var(--fsz18);
  margin-bottom: 38px;
}
#uav-recon .gimbal .forFlex {
  gap: 34px;
}
#uav-recon .gimbal .table {
  line-height: 1.33;
  flex: 1;
}
#uav-recon .gimbal .table tbody {
  border-top: 2px solid var(--cBlk);
}
#uav-recon .gimbal .table tbody tr td {
  text-align: left;
  font-weight: 400;
}
#uav-recon .gimbal .table tbody tr td:last-child {
  font-weight: 600;
}
#uav-recon .gimbal .image {
  width: 28.65vw;
}
#uav-recon .gimbal .image figure:not(:last-child) {
  margin-bottom: 18px;
}

#propellant-tank .tank {
  display: flex;
  gap: 24px;
  margin-bottom: 68px;
}
#propellant-tank .tank figure {
  border: 1px solid #F3F3F3;
  width: 49.06vw;
}
#propellant-tank .tank__info {
  flex: 1;
}
#propellant-tank .tank__info h4 {
  font-size: var(--fsz30);
  margin-bottom: 22px;
}
#propellant-tank .tank__spec .table {
  margin-bottom: 64px;
}
#propellant-tank .tank__spec .table table {
  border-top: 2px solid var(--cBlk);
}
#propellant-tank .tank__spec .table table th {
  width: 138px;
  padding: 16px 28px;
  font-weight: 400;
}
#propellant-tank .tank__spec .table table td {
  text-align: left;
  font-weight: 600;
  padding: 16px 0;
}
#propellant-tank .tank__tech ul li {
  padding: 12px;
  font-size: var(--fsz18);
  text-align: center;
  background: var(--cBlk);
  color: #fff;
}
#propellant-tank .tank__tech ul li:not(:last-child) {
  margin-bottom: 6px;
}
#propellant-tank .factory h4 {
  font-size: var(--fsz30);
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--cBlk);
}
#propellant-tank .factory ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px 20px;
}
#propellant-tank .factory ul li figure {
  margin-bottom: 20px;
}
#propellant-tank .factory ul li figcaption {
  font-size: var(--fsz18);
  text-align: center;
  font-weight: 600;
}
#propellant-tank .factory ul li:nth-child(1) {
  grid-area: 1/1/2/3;
}

.subPage.space .equip {
  max-width: 850px;
  margin: 0 auto;
}
.subPage.space .equip h3 {
  text-align: center;
  font-size: var(--fsz40);
  margin-bottom: 46px;
}
.subPage.space .equip figure {
  margin-bottom: 52px;
}
.subPage.space .equip .table tbody th {
  font-weight: 400;
}
.subPage.space .equip .table tbody td:last-child {
  font-weight: 700;
}

.subPage.green .green__secTit {
  font-size: var(--fsz30);
  padding-bottom: 22px;
  border-bottom: 2px solid var(--cBlk);
  margin-bottom: 10px;
}
.subPage.green .green__secTit.nobb {
  border-bottom: 0;
  margin-bottom: 0;
}
.subPage.green .bd {
  border: 1px solid #F3F3F3;
}

#renewable-fuel-combustion .dryer {
  margin-bottom: 50px;
  display: flex;
  gap: 84px;
}
#renewable-fuel-combustion .dryer figure {
  width: 44.27vw;
  flex-shrink: 0;
}
#renewable-fuel-combustion .dryer__info {
  margin-top: auto;
}
#renewable-fuel-combustion .dryer__info h3 {
  font-size: var(--fsz46);
  font-weight: 800;
  margin-bottom: 24px;
}
#renewable-fuel-combustion .dryer__desc {
  font-size: var(--fsz22);
  line-height: 1.45;
  margin-bottom: 54px;
}
#renewable-fuel-combustion .dryer__aplc-tit {
  font-size: var(--fsz30);
  font-weight: 700;
  margin-bottom: 10px;
}
#renewable-fuel-combustion .dryer__aplc ul li {
  font-size: var(--fsz18);
  line-height: 1.44;
}
#renewable-fuel-combustion .lowTemper {
  margin-bottom: 98px;
}
#renewable-fuel-combustion .lowTemper__cont {
  display: flex;
}
#renewable-fuel-combustion .lowTemper__cont figure:nth-child(1) {
  padding: 34px 5.73vw;
}
#renewable-fuel-combustion .rpf {
  display: flex;
  gap: 20px;
}
#renewable-fuel-combustion .rpf .configure figure {
  padding: 26px 106px;
}
#renewable-fuel-combustion .rpf .system figure {
  padding: 36px 112px 30px;
}
#renewable-fuel-combustion .rpf .system figcaption {
  margin-top: 34px;
  text-align: center;
  font-size: var(--fsz18);
  font-weight: 700;
}

#smart-safety-light .main {
  display: flex;
  gap: 190px;
  justify-content: space-between;
  margin-bottom: 60px;
}
#smart-safety-light .main__info-function {
  margin-bottom: 60px;
}
#smart-safety-light .main__info-tit {
  font-size: var(--fsz30);
  font-weight: 700;
  margin-bottom: 20px;
}
#smart-safety-light .main__info dl {
  font-size: var(--fsz18);
  display: flex;
}
#smart-safety-light .main__info dl:not(:last-child) {
  margin-bottom: 20px;
}
#smart-safety-light .main__info dl dt {
  font-weight: 800;
  width: 17.71vw;
  flex-shrink: 0;
}
#smart-safety-light .main figure {
  width: 480px;
}
#smart-safety-light .system {
  margin-bottom: 100px;
}
#smart-safety-light .system__image {
  display: flex;
  gap: 50px;
  align-items: end;
  padding: 40px 188px 40px 76px;
}
#smart-safety-light .spec {
  margin-bottom: 100px;
}
#smart-safety-light .spec table {
  caption-side: bottom;
}
#smart-safety-light .spec table caption {
  text-align: right;
  margin-top: 14px;
  color: var(--cGray);
}
#smart-safety-light .spec table .bold {
  font-weight: 600;
}
#smart-safety-light .spec table .bgGray {
  background: rgba(243, 243, 243, 0.4);
}
#smart-safety-light .spec table tbody th {
  font-weight: 400;
}
#smart-safety-light .spec table .tal {
  text-align: left;
}
#smart-safety-light .certi ul {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}
#smart-safety-light .certi ul li figure {
  border: 1px solid #F3F3F3;
}

#graphene-ptc .main {
  margin-bottom: 100px;
  font-size: var(--fsz18);
  line-height: 1.33;
}
#graphene-ptc .main__cont {
  display: flex;
  gap: 3.23vw;
}
#graphene-ptc .main__cont figure {
  width: 44.27vw;
  flex-shrink: 0;
}
#graphene-ptc .main__desc {
  margin-top: auto;
}
#graphene-ptc .main__desc-cont {
  margin-bottom: 60px;
}
#graphene-ptc .main__desc-cont p:not(:last-child) {
  margin-bottom: 22px;
}
#graphene-ptc .main__spec-tit {
  font-size: var(--fsz20);
  font-weight: 700;
  margin-bottom: 22px;
}
#graphene-ptc .spec {
  margin-bottom: 100px;
  display: flex;
  gap: 14px;
}
#graphene-ptc .spec__tit {
  font-size: var(--fsz20);
  font-weight: 700;
  margin-bottom: 1.04vw;
}
#graphene-ptc .spec figure {
  border: 1px solid var(--cBlk);
  margin-bottom: 1.77vw;
}
#graphene-ptc .spec figcaption {
  text-align: center;
  font-size: var(--fsz18);
}
#graphene-ptc .appli__title {
  font-size: var(--fsz20);
  font-weight: 700;
  margin-bottom: 16px;
}
#graphene-ptc .appli .type {
  display: flex;
  background: #F5F5F5;
  height: 190px;
}
#graphene-ptc .appli .type:not(:last-child) {
  margin-bottom: 20px;
}
#graphene-ptc .appli .type__tit {
  width: 15vw;
  flex-shrink: 0;
  text-align: center;
  align-content: center;
  font-size: var(--fsz22);
  font-weight: 700;
}
#graphene-ptc .appli .type__items {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.56vw;
}
#graphene-ptc .appli .type__items figure {
  height: 100%;
  position: relative;
  overflow: hidden;
}
#graphene-ptc .appli .type__items figure figcaption {
  text-align: right;
  position: absolute;
  bottom: 16px;
  right: 22px;
  font-size: var(--fsz18);
  color: #fff;
  font-weight: 700;
}

#aerosquare-insulation .main {
  margin-bottom: 126px;
}
#aerosquare-insulation .main__wrap {
  display: flex;
  gap: 3.23vw;
}
#aerosquare-insulation .main__images {
  width: 59.48vw;
  display: flex;
  gap: 30px;
}
#aerosquare-insulation .main__spec {
  margin-top: auto;
}
#aerosquare-insulation .main__spec-tit {
  font-size: var(--fsz20);
  font-weight: 700;
  margin-bottom: 22px;
}
#aerosquare-insulation .main__spec ul li {
  font-size: var(--fsz18);
  line-height: 1.66;
}
#aerosquare-insulation .tech {
  height: 642px;
  background: url(/asset/images/business/green/aerosquare-insulation-tech.jpg) no-repeat center/contain;
  margin-bottom: 70px;
}
#aerosquare-insulation .tech__intro-tit {
  font-size: var(--fsz20);
  font-weight: 700;
  margin-bottom: 22px;
}
#aerosquare-insulation .tech__intro ul li {
  font-size: var(--fsz18);
  line-height: 1.66;
}
#aerosquare-insulation .core {
  text-align: center;
}
#aerosquare-insulation .core__tit {
  font-size: var(--fsz20);
  font-weight: 700;
  margin-bottom: 30px;
}
#aerosquare-insulation .core__desc {
  font-size: var(--fsz26);
  font-weight: 700;
  margin-bottom: 30px;
}
#aerosquare-insulation .core__desc span {
  color: var(--cBlue);
}
#aerosquare-insulation .core__table {
  display: flex;
  gap: 20px;
}
#aerosquare-insulation .core__table table {
  flex: 1;
  font-size: var(--fsz18);
  border-collapse: collapse;
}
#aerosquare-insulation .core__table table th {
  padding: 28px;
  background: #F3F3F3;
  border-top: 2px solid var(--cBlk);
  border-bottom: 2px solid var(--cBlk);
}
#aerosquare-insulation .core__table table td {
  border-bottom: 1px solid var(--cBlk);
  padding: 26px;
}

#intro {
  margin-bottom: -100px;
}
#intro .task {
  background: var(--cBlue);
  padding: 100px 10.21vw;
}
#intro .task ul {
  display: flex;
  gap: 2.71vw;
}
#intro .task ul li {
  background: #fff;
  border-radius: 35px;
  padding: 64px 24px 36px;
  box-shadow: 3px 3px 0 rgba(53, 69, 133, 0.3);
}
#intro .task__cate {
  padding: 0 26px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
#intro .task__cate .circle {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cBlue);
}
#intro .task__cate span {
  font-size: var(--fsz16);
}
#intro .task__title {
  padding: 0 26px;
  font-size: var(--fsz36);
  font-weight: 700;
  margin-bottom: 106px;
}
#intro .task figure {
  border-radius: 133px;
  overflow: hidden;
}

#education {
  margin-bottom: -100px;
}
#education .conts {
  background: var(--cBlue);
  padding: 98px 0 100px;
}
#education .conts .text {
  display: flex;
  gap: 36px;
  margin: 0 auto 80px;
  justify-content: center;
}
#education .conts .text__item {
  background: #fff;
  border-radius: 156px;
  text-align: center;
  align-content: center;
  width: 564px;
  height: 294px;
}
#education .conts .text__num {
  font-size: var(--fsz18);
  font-weight: 500;
  color: var(--cBlue);
  margin-bottom: 14px;
}
#education .conts .text__sub {
  font-size: var(--fsz18);
  margin-bottom: 14px;
  color: var(--cGray);
}
#education .conts .text__main {
  font-size: var(--fsz30);
  font-weight: 700;
}
#education .conts .image {
  display: flex;
  gap: 34px;
  justify-content: center;
}
#education .conts .image figure {
  width: 270px;
  height: auto;
  aspect-ratio: 27/26;
  overflow: hidden;
  border-radius: 50%;
}
@supports not (aspect-ratio: 27/26) {
  #education .conts .image figure::before {
    content: "";
    float: left;
    padding-top: calc((26 / 27) * 100%);
  }
  #education .conts .image figure::after {
    content: "";
    display: block;
    clear: both;
  }
}

#service {
  margin-bottom: -100px;
}
#service .conts {
  background: var(--cBlue);
  padding: 98px 0 100px;
}
#service .conts .text {
  display: flex;
  gap: 36px;
  margin: 0 auto 80px;
  justify-content: center;
}
#service .conts .text__cate {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
#service .conts .text__cate .circle {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cBlue);
}
#service .conts .text__cate span {
  font-size: var(--fsz16);
}
#service .conts .text__item {
  background: #fff;
  border-radius: 35px;
  width: 404px;
  height: 15.31vw;
  padding: 3.23vw 50px;
}
#service .conts .text__main {
  font-size: var(--fsz30);
  font-weight: 700;
}
#service .conts .image {
  display: flex;
  gap: 34px;
  justify-content: center;
}
#service .conts .image figure {
  width: 270px;
  height: auto;
  aspect-ratio: 27/26;
  overflow: hidden;
  border-radius: 50%;
}
@supports not (aspect-ratio: 27/26) {
  #service .conts .image figure::before {
    content: "";
    float: left;
    padding-top: calc((26 / 27) * 100%);
  }
  #service .conts .image figure::after {
    content: "";
    display: block;
    clear: both;
  }
}

#uav-p-project .main-cont .sum {
  padding: 0;
}

.subPage.gallTable .cert-grid {
  padding: 0 8.33vw;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 50px 28px;
  margin-bottom: 98px;
}
.subPage.gallTable .cert-item {
  min-width: 0;
  cursor: pointer;
  height: fit-content;
}
.subPage.gallTable .cert-item img {
  outline: 1px solid #F3F3F3;
  margin-bottom: 14px;
}
.subPage.gallTable .cert-item figcaption {
  text-align: center;
  font-size: var(--fsz18);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.subPage.gallTable .cert-item:hover img {
  outline: 2px solid var(--cBlue);
}
.subPage.gallTable .cert-popup {
  display: none;
  aspect-ratio: 3/4;
  background: #efefef;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  padding: 20px;
  z-index: 7000;
  text-align: center;
}
@supports not (aspect-ratio: 3/4) {
  .subPage.gallTable .cert-popup::before {
    content: "";
    float: left;
    padding-top: calc((4 / 3) * 100%);
  }
  .subPage.gallTable .cert-popup::after {
    content: "";
    display: block;
    clear: both;
  }
}
.subPage.gallTable .cert-popup .close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: var(--fsz24);
  cursor: pointer;
  width: 36px;
  height: 36px;
  background: var(--cBlue);
  border-radius: 10px;
  border: 0;
  color: #fff;
}
.subPage.gallTable .cert-popup h3 {
  text-align: center;
  font-size: var(--fsz20);
  margin: 56px 0 20px;
}
.subPage.gallTable .cert-popup img {
  outline: 1px solid #F3F3F3;
  height: 50vh;
  width: auto;
}
.subPage.gallTable .cert-popup.on {
  display: block;
}
/* ==================================
   ✅ 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-default {
  padding: 14px 20px;
  width: fit-content;
}
.JAPver #indexPage .btn-default 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 .logo {
  width: 23.96vw;
  height: 1.77vw;
}
.ENGver .logo a {
  background-image: url(/asset/images/logo-eng.svg);
}
.ENGver .header .inner {
  gap: 11.6vw;
}
.ENGver #indexPage .develop .text {
  flex-direction: column;
  gap: 90px;
  text-align: center;
}
.ENGver #indexPage .develop .text__right::after {
  display: none;
}
.ENGver #technology .space__table dl dt {
  width: 106px;
}
.ENGver .subPage.business.ndt .ndt__function-tit,
.ENGver .subPage.business.ndt .ndt__performance-tit {
  text-transform: uppercase;
}
.ENGver .footer__conts dl {
  flex-direction: column;
  gap: 4px;
}
.ENGver .footer__conts dl dt {
  width: auto;
}
.ENGver #service .conts .text__item {
  height: auto;
}
.ENGver #location .conts .info .add {
  flex-direction: column;
}
.ENGver .footer__logo {
  width: 19.79vw;
  height: 5.57vw;
}
.ENGver .footer__logo a {
  background-image: url(/asset/images/logo-w-eng.svg);
}
.ENGver #aerosquare-insulation .tech {
  background: none;
  height: auto;
  margin-bottom: 200px;
}
.ENGver #indexPage .business .desc {
  max-width: 770px;
}
@media screen and (max-width: 1440px) {
  .ENGver .logo {
    width: 34.96vw;
    height: 2.77vw;
  }
  .ENGver .footer__logo {
    width: 21.79vw;
    height: 8.57vw;
  }
  .ENGver .footer__main {
    gap: 4.98vw;
  }
  .ENGver .footer__conts dl {
    padding-right: calc(var(--inner) + 20px);
  }
}
@media screen and (max-width: 1024px) {
  .ENGver .logo {
    width: 49.96vw;
    height: 4.77vw;
  }
  .ENGver .footer__logo {
    width: 29.79vw;
    height: 8.77vw;
  }
  .ENGver .footer__conts dl {
    padding-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .ENGver {
    --fsz70: clamp(26px, 3.65vw, 70px);
  }
  .ENGver .header .logo {
    width: 65.33vw;
    height: 10.4vw;
  }
  .ENGver .footer__logo {
    width: 37.79vw;
    height: 12.77vw;
  }
  .ENGver #technology .space__table dl dt {
    width: auto;
    margin-right: 0;
  }
  .ENGver #technology .space__table dl {
    flex-direction: column;
    gap: 4px;
  }
  .ENGver #technology .ndt__tech {
    gap: 22px;
  }
}

@media screen and (max-width: 1700px) {
  .header .inner {
    gap: 10.6vw;
  }
  .header__gnb #gnb .gnb-list > li > a {
    width: 150px;
  }
  #indexPage .business .desc {
    min-width: 264px;
  }
  #indexPage .develop .text__left--sub {
    font-size: var(--fsz20);
  }
  .footer__main {
    align-items: start;
  }
}
@media screen and (max-width: 1440px) {
  body.no-scroll {
    overflow: hidden;
  }
  .forPC {
    display: none;
  }
  .forMOB {
    display: block;
  }
  .btn-bar {
    font-size: clamp(36px, 2.6vw, 50px);
    height: 36px;
  }
  .btn-bar .xi-arrow-left {
    display: none;
  }
  .btn-bar.on .xi-bars {
    display: none;
  }
  .btn-bar.on .xi-arrow-left {
    display: block;
  }
  .header .inner {
    justify-content: space-between;
  }
  .gnb-content {
    display: none;
  }
  .mobMenu {
    display: none;
    width: 100%;
    height: calc(100vh - var(--hdHeight));
    position: fixed;
    top: var(--hdHeight);
    right: 0;
    background: var(--cBlk);
    color: #fff;
    z-index: 700;
    padding: 20px 0 0;
    overflow-y: auto;
    flex-direction: column;
  }
  .mobMenu__gnb {
    margin-bottom: 40px;
  }
  .mobMenu__gnb .gnb-list > li {
    margin-bottom: 20px;
  }
  .mobMenu__gnb .gnb-dep-01 {
    padding: 20px 0;
    font-size: var(--fsz36);
    font-weight: 500;
  }
  .mobMenu__gnb .gnb-dep-02 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
  .mobMenu__gnb .gnb-dep-02 li a {
    padding: 8px 0;
    color: #C7C7C7;
    font-size: var(--fsz20);
  }
  .mobMenu__lang {
    background: rgba(16, 16, 16, 0.2);
    width: 100%;
    height: 60px;
    text-align: right;
    padding: 20px var(--inner);
    align-content: center;
    margin-top: auto;
  }
  .mobMenu__lang a {
    justify-content: right;
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--fsz26);
    font-weight: 500;
  }
  #indexPage .video figure {
    width: 100%;
  }
  .footer__logo {
    width: 254px;
    height: 46px;
  }
  .subPage {
    padding-top: calc(var(--hdHeight) + 40px);
  }
  .subPage.gallTable .cert-grid {
    padding: 0;
  }
  #clients .clients ul {
    grid-template-columns: repeat(5, 1fr);
  }
  .subPage.aero .main-cont .spec__table dl {
    flex-direction: column;
    gap: 4px;
  }
  #uav-recon .character__spec {
    height: auto;
  }
  #uav-recon .character__item {
    padding: 3.65vw 1.65vw;
  }
  #technology .ndt__tech figure,
  #propellant-tank .tank figure,
  #renewable-fuel-combustion .dryer figure {
    height: fit-content;
  }
  #technology .ndt__tech figure img,
  #propellant-tank .tank figure img,
  #renewable-fuel-combustion .dryer figure img {
    object-fit: contain;
    object-position: top center;
  }
  #propellant-tank .tank figure {
    width: 38.06vw;
  }
  #smart-safety-light .main__info dl {
    gap: 20px;
  }
  #smart-safety-light .system__image {
    padding: 40px 76px;
  }
  #intro .task__title {
    margin-bottom: 46px;
  }
  #intro .task {
    padding: 100px 0;
  }
  #education .conts .text__item {
    height: 204px;
  }
  #service .conts .text__item {
    height: auto;
  }
}
@media screen and (max-width: 1024px) {
  #indexPage .video {
    padding: 100px 0;
  }
  .footer__main {
    flex-direction: column;
    gap: 4.98vw;
  }
  .footer__conts dl dt i {
    margin-right: 2px;
  }
  #overview .info {
    flex-direction: column;
  }
  #overview .info__image {
    width: 50%;
    margin: 0 auto;
  }
  #overview .info__table {
    width: 60.52vw;
    margin: 0 auto;
  }
  #technology .ndt__tech {
    flex-direction: column;
  }
  #technology .ndt__tech figure {
    width: 100%;
  }
  .subPage.company .case__list {
    grid-template-columns: repeat(3, 1fr);
  }
  #technology .space__tech {
    flex-direction: column;
  }
  #technology .space__tech figure {
    width: 100%;
    padding: 78px;
  }
  #history .history .years__image {
    width: 63.63vw;
  }
  #history .history .years {
    flex-direction: column;
    gap: 4.44vw;
  }
  .subPage.gallTable .cert-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .subPage.business .business__tab ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .subPage.business.ndt .ndt__function-tit,
  .subPage.business.ndt .ndt__performance-tit {
    padding: 26px 0;
  }
  .subPage.business.ndt .ndt__function-wrap {
    padding: 10px;
  }
  .subPage.business.ndt .ndt__function-wrap ul {
    gap: 0 3.88vw;
  }
  .subPage.business.ndt .ndt__images {
    grid-template-columns: repeat(2, 1fr);
  }
  #clients .clients ul {
    grid-template-columns: repeat(4, 1fr);
  }
  .subPage__tab ul {
    display: flex;
    gap: 40px;
  }
  .subPage__tab ul li:not(:last-child)::after {
    right: -20px;
  }
  .subPage.aero .main-cont {
    flex-direction: column;
  }
  .subPage.aero .main-cont .spec__table dl {
    flex-direction: row;
  }
  .subPage.aero .images {
    grid-template-columns: repeat(2, 1fr);
  }
  #uav-recon .character {
    grid-template-columns: repeat(2, 1fr);
  }
  #uav-recon .character__tit {
    margin-bottom: 22px;
  }
  #uav-recon .tech__wrap {
    flex-direction: column;
  }
  #uav-recon .gimbal .forFlex {
    flex-direction: column-reverse;
  }
  #uav-recon .gimbal .image {
    width: auto;
    display: flex;
    gap: 20px;
  }
  #uav-recon .gimbal .image img {
    object-fit: contain;
  }
  #uav-recon .gimbal .image figure:not(:last-child) {
    margin-bottom: 0;
  }
  #propellant-tank .tank {
    flex-direction: column;
  }
  #propellant-tank .tank figure {
    width: 100%;
  }
  #propellant-tank .factory ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .subPage.space .equip figure {
    height: 60vw;
  }
  .subPage.space .equip figure img {
    object-fit: contain;
  }
  .subPage.space .equip figure .footer__conts dl {
    gap: 0;
  }
  #renewable-fuel-combustion .dryer {
    flex-direction: column;
    gap: 34px;
  }
  #renewable-fuel-combustion .dryer figure {
    width: 100%;
  }
  #renewable-fuel-combustion .rpf {
    flex-direction: column;
    gap: 40px;
  }
  #smart-safety-light .main {
    flex-direction: column;
    gap: 30px;
  }
  #smart-safety-light .main figure {
    margin: 0 auto;
  }
  #smart-safety-light .system__image {
    padding: 10px 0;
  }
  #smart-safety-light .certi ul {
    grid-template-columns: repeat(5, 1fr);
  }
  #graphene-ptc .main__cont {
    flex-direction: column;
  }
  #graphene-ptc .main__cont figure {
    width: 100%;
  }
  #graphene-ptc .spec {
    flex-direction: column;
  }
  #graphene-ptc .appli .type__items {
    grid-template-columns: repeat(2, 1fr);
  }
  #graphene-ptc .appli .type {
    height: auto;
    flex-direction: column;
  }
  #graphene-ptc .appli .type__tit {
    padding: 20px;
    width: 100%;
  }
  #graphene-ptc .appli .type__tit br {
    display: none;
  }
  #aerosquare-insulation .main__wrap {
    flex-direction: column;
  }
  #aerosquare-insulation .main__images {
    width: 100%;
  }
  #aerosquare-insulation .tech {
    background-size: auto 50%;
  }
  #intro .task__cate,
  #intro .task__title {
    padding: 0;
  }
  #service .conts .text {
    flex-direction: column;
  }
  #service .conts .text__item {
    width: 100%;
  }
  #service .conts .text__main br {
    display: none;
  }
  #location .conts .info .forFlex {
    flex-direction: column;
    gap: 4px;
  }
  #location .conts .info .add {
    flex-direction: column;
  }
  #location .conts {
    align-items: end;
  }
  #location .conts .info {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  #indexPage .pinArea .text h2 {
    font-weight: 800;
  }
  #indexPage .hero {
    height: calc(100vh - var(--hdHeight) - 70px);
  }
  #indexPage .business .title {
    margin-bottom: 46.47vw;
  }
  #indexPage .business {
    background-size: calc(80% - var(--indexInner) * 2) auto;
    height: auto;
    background-position: left var(--indexInner) top 27.47vw;
    align-content: normal;
    padding: calc(var(--hdHeight) + 20px) 0;
  }
  #indexPage .business .desc {
    margin-left: 0;
    margin-bottom: 20px;
  }
  #indexPage .business .btn-more {
    position: relative;
  }
  #indexPage .business .desc p:not(:last-child) {
    margin-bottom: 12px;
  }
  #indexPage .business .btn-more {
    width: 100%;
    height: auto;
    border: 1px solid #B7B7B7;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: auto;
    left: auto;
  }
  #indexPage .business .btn-more span {
    margin-bottom: 0;
  }
  #indexPage .business .btn-more span br {
    display: none;
  }
  #indexPage .develop .text {
    flex-direction: column;
    text-align: center;
  }
  #indexPage .develop .text__left {
    margin-bottom: 23.23vw;
  }
  #indexPage .develop .text__right::after {
    display: none;
  }
  #technology .aero__spec {
    flex-direction: column;
  }
  #history .history .years__image::before,
  #history .history .years__image figure::after {
    right: -17.88vw;
  }
  .subPage__tab ul {
    flex-wrap: wrap;
    gap: 20px 40px;
    justify-content: center;
  }
  .subPage.business .business__tab ul li a {
    padding: 10px 20px;
  }
  .subPage.business.ndt .ndt__performance-table dl dt {
    width: 27.34vw;
  }
  #clients .clients ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .mobMenu__gnb .gnb-dep-02 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .subPage.business .business__tab {
    margin-bottom: 40px;
  }
  #airparts .parts ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .subPage.aero .main-cont .spec__table dl br {
    display: none;
  }
  #propellant-tank .factory ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .subPage.business .business__tab ul {
    grid-template-columns: repeat(2, 1fr);
  }
  #smart-safety-light .main__info dl {
    flex-direction: column;
    gap: 6px;
  }
  #smart-safety-light .main__info dl dt {
    width: 100%;
  }
  #smart-safety-light .certi ul {
    grid-template-columns: repeat(4, 1fr);
  }
  #aerosquare-insulation .core__table {
    flex-direction: column;
  }
  #media_catalog #gall_ul {
    grid-template-columns: repeat(2, 1fr);
  }
  #service .conts .text__item {
    padding: 6.23vw;
  }
  #location .conts {
    flex-direction: column;
    align-items: start;
  }
  #location .conts .map {
    width: 100%;
  }
  #location .conts .info .add {
    flex-direction: row;
  }
}
@media screen and (max-width: 500px) {
  .header .logo {
    width: 45.33vw;
    height: 10.4vw;
  }
  #technology .ndt__info ul li::before {
    top: 8px;
    transform: unset;
  }
  #indexPage .pinArea .text h2 {
    width: 100vw;
    padding: 0 var(--inner);
  }
  #indexPage .pinArea .text p {
    padding: 0 var(--inner);
  }
  #indexPage .business {
    padding: calc(var(--hdHeight) + 20px) 0;
    background-size: calc(100% - var(--indexInner) * 2) auto;
    background-position: left var(--indexInner) top 43.47vw;
  }
  #indexPage .business .title {
    margin-bottom: 66.47vw;
  }
  #indexPage .develop {
    padding: 29.33vw 0 0;
  }
  #indexPage .develop .text {
    margin-top: -29.33vw;
  }
  #indexPage .develop .text__left {
    margin-bottom: 53.23vw;
  }
  #indexPage .video figure {
    padding: 0;
  }
  #indexPage .cs .inner {
    padding: 0;
  }
  #indexPage .cs__wrap {
    flex-direction: column;
  }
  #indexPage .cs__item {
    padding: 2.4vw 13.33vw;
  }
  .footer {
    margin-top: 80px;
  }
  .footer__adm .btn-adm {
    font-size: 22px;
    width: 36px;
    height: 36px;
  }
  .footer .btn-top p {
    width: 46px;
    height: 46px;
  }
  .footer .btn-top p i {
    font-size: 18px;
  }
  .footer .btn-top span {
    display: none;
  }
  .footer__conts .forFlex {
    flex-direction: column;
    gap: 0;
  }
  .footer__conts dl:last-child,
  .footer__conts dl:last-child {
    margin-bottom: 10px;
  }
  .footer__info {
    flex-direction: column-reverse;
  }
  .footer .btn-terms {
    color: #fff;
    margin-bottom: 20px;
  }
  .footer__main {
    margin-bottom: 12px;
  }
  .mobMenu__gnb .gnb-dep-02 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 16px;
  }
  .subPage .sub-header {
    text-align: center;
    margin-bottom: 70px;
  }
  .subPage .sub-header .breadcrumb {
    justify-content: center;
  }
  .page-desc {
    display: none;
  }
  .subPage .title__desc {
    margin-bottom: 6px;
  }
  .subPage .title__title {
    font-weight: 900;
  }
  .subPage .title {
    margin-bottom: 40px;
  }
  #overview .desc__img {
    margin-bottom: 16vw;
  }
  #overview .info__image {
    width: 100%;
  }
  #overview .info__table {
    width: 100%;
  }
  #overview .info__table dl {
    flex-direction: column;
    gap: 10px;
    padding: 8vw var(--inner);
  }
  #overview .info__table dl dd {
    padding: 0;
  }
  #overview .info__table dl #overview .info__table dl dt {
    width: 100%;
    text-align: left;
  }
  #overview .desc {
    margin-bottom: 16vw;
  }
  .subPage.company .case__title {
    margin-bottom: 12px;
  }
  .subPage.company .case__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 8px;
  }
  .subPage.company .case__item figure {
    margin-bottom: 8px;
  }
  .subPage.company main section:not(:last-child) {
    margin-bottom: 80px;
  }
  #technology .space__tech figure {
    padding: 16px;
  }
  #history .history .years__image {
    width: 100%;
  }
  #history .history .years__image::before {
    position: relative;
    right: auto;
    top: 0;
  }
  #history .history .years__image figure::after {
    display: none;
  }
  #history .history .years__image.current::before {
    color: var(--cBlue);
  }
  #history .history .years__item:not(:last-child) {
    margin-bottom: 14px;
  }
  #history .history .years:not(:last-child) {
    margin-bottom: 110px;
  }
  #history .menu ul {
    padding: 16px;
    max-width: 100%;
  }
  .subPage.gallTable .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .subPage.gallTable .table {
    display: none;
  }
  .subPage .sub-header .breadcrumb {
    gap: 4px;
  }
  .subPage.ndt .subPage__tab, .subPage.green .subPage__tab {
    padding-bottom: 20px;
    overflow-x: auto;
  }
  .subPage.ndt .subPage__tab ul, .subPage.green .subPage__tab ul {
    flex-wrap: unset;
    justify-content: start;
  }
  .subPage__tab {
    margin: 0 auto 62px;
    width: 100%;
  }
  .subPage__tab ul li {
    white-space: nowrap;
  }
  .subPage.business .business__tab ul {
    gap: 0;
  }
  .subPage.business.ndt .ndt__main-tit {
    margin-bottom: 18px;
  }
  .subPage.business.ndt .ndt__main {
    margin-bottom: 28px;
  }
  .subPage.business.ndt .ndt__function-tit,
  .subPage.business.ndt .ndt__performance-tit {
    padding: 20px 0;
  }
  .subPage.business.ndt .ndt__function-wrap ul {
    gap: 0;
    grid-template-columns: repeat(1, 1fr);
  }
  .subPage.business.ndt .ndt__function-wrap ul li {
    padding: 18px 0;
  }
  .subPage.business.ndt .ndt__function-wrap ul li:not(:last-child) {
    border-bottom: 1px solid #C7C7C7;
  }
  .subPage.business.ndt .ndt__function-wrap {
    padding: 0;
  }
  .subPage.business.ndt .ndt__images {
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
    margin-bottom: 30px;
  }
  .subPage.business.ndt .ndt__performance-table dl {
    padding: 16px 0;
  }
  #clients .clients ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  #airparts .parts ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 6px;
  }
  #airparts .parts ul li figure {
    margin-bottom: 6px;
  }
  .subPage.aero .main-tit {
    margin-bottom: 20px;
  }
  .subPage.aero .main-cont .sum {
    padding: 7.08vw;
  }
  .subPage.aero .main-cont .spec__table dl dt {
    flex-shrink: 0;
  }
  .subPage.aero .images {
    grid-template-columns: repeat(1, 1fr);
  }
  #uav-recon .character {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
  #uav-recon .character__item {
    padding: 16vw 1.65vw;
  }
  #uav-recon .character__icon {
    width: 58px;
    height: 58px;
  }
  #uav-recon .character__tit {
    margin-bottom: 32px;
  }
  #uav-recon .tech__spec li {
    width: 64px;
  }
  #uav-recon .tech__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 8px;
  }
  #uav-recon .tech__spec {
    padding: 0;
    gap: 10px 26px;
  }
  #uav-recon .tech__image {
    margin-bottom: 26px;
  }
  #uav-recon .tech__item {
    padding-bottom: 24px;
  }
  #uav-recon .tech__spec.gcs li {
    width: 94px;
  }
  #uav-recon .tech {
    margin-bottom: 60px;
  }
  #uav-recon .gimbal .image {
    flex-direction: column;
    gap: 10px;
  }
  #uav-recon .gimbal__desc {
    margin-bottom: 20px;
  }
  .subPage.space .equip figure {
    height: auto;
  }
  .subPage.space .equip h3 {
    margin-bottom: 24px;
  }
  .subPage.space .equip figure {
    margin-bottom: 20px;
  }
  #renewable-fuel-combustion .dryer__info h3 {
    margin-bottom: 16px;
  }
  #renewable-fuel-combustion .lowTemper__cont {
    flex-direction: column;
  }
  #renewable-fuel-combustion .lowTemper__cont figure:nth-child(1),
  #renewable-fuel-combustion .rpf .configure figure,
  #renewable-fuel-combustion .rpf .system figure {
    padding: 5.73vw;
  }
  #renewable-fuel-combustion .rpf .system figcaption {
    margin-top: 14px;
  }
  #smart-safety-light .main figure {
    width: 100%;
  }
  #smart-safety-light .system__image {
    flex-direction: column;
  }
  #smart-safety-light .certi ul {
    grid-template-columns: repeat(2, 1fr);
  }
  #intro .task ul {
    flex-direction: column;
  }
  #intro .task ul li {
    padding: 52px 24px 30px;
  }
  #education .conts .text {
    flex-direction: column;
  }
  #education .conts .text__item {
    width: 100%;
  }
  #education .conts .image,
  #service .conts .image {
    flex-direction: column;
  }
  #education .conts .image figure,
  #service .conts .image figure {
    margin: 0 auto;
  }
  #service .conts .text__item {
    padding: 10.23vw 6.23vw;
  }
}
.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: #1988F0;
  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;
}

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

.board .btnArea {
  width: 100%;
  position: relative;
  margin-top: 32px;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.btnArea .btn-arrow,
.btnArea .btn-list {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  align-content: center;
  color: #000;
  display: block;
  border-radius: 10px;
}

.btnArea .btn-arrow:hover,
.btnArea .btn-list:hover {
  color: #1988F0;
}

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

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

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

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

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

#bo_v_title {
  border-bottom: 2px solid #101A2D;
  padding-bottom: 14px;
}
#bo_v_title .writeDate {
  font-size: 18px;
  font-weight: 400;
}

#bo_v_title .bo_v_tit {
  font-size: var(--fsz56);
  margin-bottom: 50px;
}

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

#bo_v_atc {
  padding: 50px 0;
}
#bo_v_atc * {
  word-break: auto-phrase;
}
#bo_v_atc iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.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;
}

.tbl_head01 thead th {
  padding: 20px 10px;
}

#bo_v_title .writeDate {
  color: #1988F0;
  font-size: 16px;
  font-weight: 500;
}

@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 {
    flex-grow: 1;
    width: 50%;
  }
  #bo_cate_ul li:first-child {
    width: 100%;
  }
  #bo_cate_ul li a {
    width: 100%;
    height: 100%;
    margin: 0;
    text-align: center;
  }
  #bo_cate_on {
    width: 100%;
    background: #1988F0;
    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: 10px;
  }
  #bo_v_title {
    padding: 24px 0;
  }
}
@media screen and (max-width: 500px) {
  #bo_v_title .bo_v_tit {
    font-size: 24px;
  }
  #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 */
