@charset "UTF-8";
* {
  line-height: 140%;
}

html {
  overflow-x: hidden;
  scroll-behavior: auto;
}

.head-inquiry {
  width: auto;
  padding: 0 16px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 99px;
}
.head-inquiry span {
  padding: 0;
  background: none;
}

header {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(30px);
  max-width: none;
  -webkit-transition: background 0.3s ease, border-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.35s ease;
  transition: background 0.3s ease, border-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.35s ease;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s ease;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.35s ease;
}
@media (max-width: 1024px) {
  header {
    overflow: hidden;
    top: 0 !important;
  }
}
@media (max-width: 1024px) {
  header .lang {
    margin-top: -4px;
  }
}
header.main {
  top: 0;
}
header.main.fixed nav {
  background-color: transparent;
  backdrop-filter: none;
}
header.main.active2 {
  background-color: rgb(0, 0, 0);
  backdrop-filter: blur(30px);
}
header.main.active2 nav {
  background-color: rgb(0, 0, 0);
}
header.hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
header nav {
  padding: 0 calc((100% - 2000px) / 2);
  width: 100%;
  margin: 0 auto;
  position: relative;
  -webkit-transition: 0;
  transition: 0;
}
@media (max-width: 1024px) {
  header nav {
    padding: 10px 0;
  }
}
header .menu > ul > li:nth-child(2) > ul {
  padding: 0 300px;
}
header .right .allmenu-btn {
  border: none;
  background-color: transparent;
}

.swiper-section {
  position: relative;
}

.wrapper {
  max-width: none;
}

.com-title {
  margin-bottom: 40px;
}
.com-title span {
  font-size: 24px;
  font-weight: 700;
  color: #b7b7b7;
}
.com-title h2 {
  color: #1e1e1e;
  font-size: 48px;
  font-weight: 700;
  margin-top: 10px;
}

section .inner {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-section .slide-btn {
  backdrop-filter: blur(10px);
}
.hero-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .mySwiper {
  list-style: none;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.hero-section .mySwiper .swiper-slide {
  width: 100%;
}
.hero-section .mySwiper .text {
  max-width: 2000px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
.hero-section .mySwiper .text .slide-title {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
}
.hero-section .mySwiper .text .slide-sub {
  color: #fff;
  font-size: 32px;
  margin-top: 40px;
}
.hero-section .slide-controls {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, calc(-50% + 100px + 130px));
          transform: translate(-50%, calc(-50% + 100px + 130px));
  z-index: 2;
}
@media (max-width: 1024px) {
  .hero-section .slide-controls {
    height: 25px;
  }
}
.hero-section .slide-controls .progress-wrap {
  left: 26px;
}

.slide-btn {
  display: inline-block;
  position: relative; /* 추가 */
  gap: 14px;
  padding: 14px 40px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 24px;
  margin-top: 40px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  -webkit-transition: color 0.6s ease;
  transition: color 0.6s ease; /* 추가 */
}
.slide-btn::before {
  content: "";
  position: absolute; /* 추가 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.slide-btn span {
  position: relative; /* 추가 - ::before 위로 올라오게 */
  z-index: 1; /* 추가 */
  padding-right: 21px;
  background: url(../images/main/new/ico_more.svg) no-repeat right center;
}
.slide-btn:hover {
  color: #333;
}
.slide-btn:hover::before { /* after → before */
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.slide-btn:hover span {
  background: url(../images/main/new/ico_more_black.svg) no-repeat right center;
}

/* Controls */
.slide-controls {
  max-width: 2000px;
  width: 100%;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.slide-controls .swiper-btn {
  width: 28px;
  height: 28px;
  background-position: center;
  background-size: auto !important;
  background-repeat: no-repeat;
}
.slide-controls .swiper-btn.prev {
  background-image: url(../images/main/new/ico_prev2.svg);
}
.slide-controls .swiper-btn.next {
  background-image: url(../images/main/new/ico_next2.svg);
}
.slide-controls .progress-wrap {
  left: 26px;
}
.slide-controls .play-btn {
  display: block;
  width: 12px;
  height: 16px;
  background: url(../images/main/new/ico_stop.svg) no-repeat 0 0;
  cursor: pointer;
}
.slide-controls .play-btn.paused {
  background: url(../images/main/new/ico_play.svg) no-repeat 0 0;
}
.slide-controls .swiper-pagination {
  width: auto;
  position: static;
  color: #fff;
}
.slide-controls .swiper-pagination span {
  font-size: 18px;
}
.slide-controls .swiper-pagination span.swiper-pagination-total {
  margin-left: 77px;
}
.slide-controls .progress-wrap {
  width: 53px;
  height: 4px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 76px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.slide-controls .progress-wrap::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #ebebeb;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.slide-controls .progress-bar {
  width: 0%;
  height: 100%;
  background: #fff;
  -webkit-transition: width 0.1s linear;
  transition: width 0.1s linear;
}

.hero-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.hero-arrow:hover {
  opacity: 0.75;
}

.hero-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-current {
  font-weight: 600;
  font-size: 15px;
}

.hero-total {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-progress-wrap {
  width: 56px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.hero-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #fff;
  -webkit-transition: width linear;
  transition: width linear;
}

.hero-play-pause {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0.85;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.hero-play-pause:hover {
  opacity: 1;
}

.intro-wrap {
  position: relative;
  height: 350vh;
}
.intro-wrap .intro-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 clamp(40px, 10.9375vw, 280px);
}
.intro-wrap .intro-pin .intro-headline {
  font-size: clamp(26px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.025em;
  word-break: keep-all;
  max-width: 1178px;
  width: 100%;
  margin: 0;
}
@media (min-width: 1921px) {
  .intro-wrap .intro-pin .intro-headline {
    font-size: 72px;
  }
}
@media (min-width: 1656px) and (max-width: 1920px) {
  .intro-wrap .intro-pin .intro-headline {
    font-size: 56px;
  }
}
.intro-wrap .intro-pin .intro-headline .intro-word {
  display: inline;
  color: rgba(27, 27, 32, 0.1);
  will-change: color;
}

.intro-bottom {
  padding: 340px 0 80px;
}
.intro-bottom .com-title h2 {
  font-size: 64px;
}

.ax-wrap {
  position: relative;
  height: 620vh;
}
.ax-wrap .ax-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.ax-wrap {
  /* ── 슬라이드 패널 ── */
}
.ax-wrap .ax-slide {
  position: absolute;
  inset: 0;
  background: #212034;
  will-change: clip-path;
  overflow: hidden;
}
.ax-wrap .ax-slide img {
  position: absolute;
  inset: -5% 0;
  width: 100%;
  height: 110%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  will-change: transform;
}
.ax-wrap .ax-slide:nth-child(1) {
  z-index: 1;
  clip-path: inset(0 0% 0 0);
}
.ax-wrap .ax-slide:nth-child(2) {
  z-index: 2;
  clip-path: inset(0 0 0 100%);
}
.ax-wrap .ax-slide:nth-child(3) {
  z-index: 3;
  clip-path: inset(0 0 0 100%);
}
.ax-wrap .ax-slide:nth-child(4) {
  z-index: 4;
  clip-path: inset(0 0 0 100%);
}
.ax-wrap {
  /* 좌측 블렌드 */
}
.ax-wrap .ax-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#212034), color-stop(10%, #212034), color-stop(22%, rgba(33, 32, 52, 0.75)), color-stop(42%, rgba(33, 32, 52, 0)));
  background: linear-gradient(90deg, #212034 0%, #212034 10%, rgba(33, 32, 52, 0.75) 22%, rgba(33, 32, 52, 0) 42%);
}
.ax-wrap {
  /* ── 탭 바 ── */
}
.ax-wrap .ax-tabs {
  width: 100%;
  max-width: 2000px;
  position: absolute;
  top: 120px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.ax-wrap .ax-tabs .ax-tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  opacity: 0.2;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.ax-wrap .ax-tabs .ax-tab.active {
  opacity: 1;
}
.ax-wrap .ax-tabs .ax-tab .ax-tab-line {
  height: 5px;
  background: #d9d9d9;
}
.ax-wrap .ax-tabs .ax-tab .ax-tab-label {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.ax-wrap {
  /* ── 텍스트 영역 ── */
}
.ax-wrap .ax-text {
  width: 100%;
  max-width: 2000px;
  position: absolute;
  bottom: 146px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 45px;
  opacity: 1;
  will-change: opacity, transform;
}
.ax-wrap .ax-text .ax-text-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}
.ax-wrap .ax-text {
  /* stagger 대상 */
}
.ax-wrap .ax-text .ax-sub,
.ax-wrap .ax-text .ax-title,
.ax-wrap .ax-text .ax-desc,
.ax-wrap .ax-text .ax-btn {
  opacity: 0;
  -webkit-transform: translateY(28px);
          transform: translateY(28px);
  will-change: opacity, transform;
}
.ax-wrap .ax-text .ax-sub {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
}
.ax-wrap .ax-text .ax-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.025em;
}
@media (min-width: 1921px) {
  .ax-wrap .ax-text .ax-title {
    font-size: 64px;
  }
}
@media (min-width: 1024px) and (max-width: 1920px) {
  .ax-wrap .ax-text .ax-title {
    font-size: 56px;
  }
}
.ax-wrap .ax-text .ax-desc {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin-top: 16px;
}
.ax-wrap .ax-text .ax-btn {
  -webkit-transition: background 0.2s, border-color 0.2s;
  transition: background 0.2s, border-color 0.2s;
  margin-top: 60px;
}
.ax-wrap .ax-text .ax-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.ax-wrap .ax-text .ax-btn svg {
  width: 7px;
  height: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.service {
  height: 100vh;
  background-color: #f4f4f4;
  padding: 140px 20px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.service .tab li.active a {
  color: #fff;
  background-color: #1e1e1e;
  font-weight: 700;
}
.service .tab li a {
  display: inline-block;
  padding: 14px 40px;
  font-size: 20px;
  color: #555;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.05);
}
.service .tab-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service .slide-controls {
  width: auto;
  max-width: none;
  position: static;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.service .slide-controls .swiper-pagination {
  color: #303030;
}
.service .slide-controls .progress-wrap {
  left: 25px;
}
.service .slide-controls .progress-wrap .progress-bar {
  background-color: #303030;
}
.service .slide-controls .swiper-btn.prev {
  background-image: url(../images/main/new/ico_prev_black.svg);
}
.service .slide-controls .swiper-btn.next {
  background-image: url(../images/main/new/ico_next_black.svg);
}
.service .slide-controls .play-btn {
  background: url(../images/main/new/ico_stop_black.svg) no-repeat 0 0;
}
.service .slide-controls .play-btn.paused {
  background: url(../images/main/new/ico_play_black.svg) no-repeat 0 0;
}
.service .mySwiper {
  margin-top: 40px;
}
.service .mySwiper .swiper-slide {
  width: 400px;
  height: auto;
  min-height: 388px;
  border-radius: 16px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.service .mySwiper .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  padding: 2px;
  background: #33987a;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #000));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.service .mySwiper .swiper-slide:hover {
  -webkit-box-shadow: 0 4px 8px 0 rgba(51, 152, 122, 0.16);
          box-shadow: 0 4px 8px 0 rgba(51, 152, 122, 0.16);
}
.service .mySwiper .swiper-slide:hover::after {
  opacity: 1;
}
.service .mySwiper .swiper-slide:hover a::after {
  width: 56px;
  height: 40px;
  background: url(../images/main/new/ico_service_link_white.svg) no-repeat center;
  border-radius: 20px;
  background-color: #33987a;
}
.service .mySwiper .swiper-slide .border-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.service .mySwiper .swiper-slide .border-svg rect {
  fill: none;
  stroke: #33987A;
  stroke-width: 2;
  /* 핵심 */
  stroke-dasharray: 1800;
  /* 전체 둘레 길이 근사 */
  stroke-dashoffset: 1800;
  -webkit-transition: stroke-dashoffset 2s cubic-bezier(0.22, 1, 0.36, 1);
  transition: stroke-dashoffset 2s cubic-bezier(0.22, 1, 0.36, 1);
}
.service .mySwiper .swiper-slide:hover .border-svg rect {
  stroke-dashoffset: 0;
}
.service .mySwiper .swiper-slide a {
  display: block;
  padding: 40px 40px 80px;
}
.service .mySwiper .swiper-slide a::after {
  content: "";
  width: 25px;
  height: 32px;
  background: url(../images/main/new/ico_service_link.svg) no-repeat 0 0;
  position: absolute;
  bottom: 28px;
  left: 40px;
}
.service .mySwiper dl {
  margin-top: 27px;
}
.service .mySwiper dl dt {
  color: #777;
  font-size: 18px;
  font-weight: 700;
}
.service .mySwiper dl dd {
  color: #1e1e1e;
  font-size: 32px;
  font-weight: 700;
  margin-top: 6px;
}
.service .mySwiper p {
  color: #666;
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .intro-headline {
    font-size: clamp(22px, 5vw, 48px);
  }
}
@media (max-width: 768px) {
  .ax-tabs {
    top: 24px;
    left: 20px;
    right: 20px;
    gap: 10px;
  }
  .ax-tab-label {
    font-size: 10px;
    white-space: normal;
  }
  .ax-title {
    font-size: clamp(26px, 7vw, 44px);
  }
}
@media (max-width: 520px) {
  .intro-pin {
    padding: 0 24px;
  }
  .intro-headline {
    font-size: clamp(20px, 5.5vw, 36px);
  }
}
.news {
  padding: 120px 20px 240px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news .com-title {
  position: relative;
}
.news .com-title .more-btn {
  color: #303030;
  font-size: 24px;
  padding: 5px 52px 5px 0;
  background: url(../images/main/new/ico_more2.svg) no-repeat right center;
  position: absolute;
  bottom: 16px;
  right: 0;
}
.news .news-card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.news .news-card-list li a {
  display: block;
}
.news .news-card-list li .thumb {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.news .news-card-list li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.news .news-card-list li .tit {
  height: 62px;
  font-size: 24px;
  font-weight: 700;
  color: #1e1e1e;
  margin-top: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news .news-card-list li .date {
  display: block;
  font-size: 20px;
  color: #aaa;
  margin-top: 12px;
}
.news .news-notice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.news .news-notice-list li {
  border-radius: 16px;
  background-color: #f4f4f4;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.news .news-notice-list li a {
  display: block;
  padding: 32px;
  position: relative;
}
.news .news-notice-list li a::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/main/new/ico_more3.svg) no-repeat 0 0;
  position: absolute;
  bottom: 32px;
  right: 32px;
}
.news .news-notice-list li .category {
  display: block;
  color: #1E1E1E;
  font-size: 18px;
  font-weight: 700;
  opacity: 0.7;
}
.news .news-notice-list li .tit {
  height: 62px;
  color: #1E1E1E;
  font-size: 24px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 6px 0 12px;
  padding-right: 35px;
}
.news .news-notice-list li .date {
  color: #aaa;
  font-size: 20px;
}
.news .news-notice-list li:hover {
  background-color: #323143;
}
.news .news-notice-list li:hover .category,
.news .news-notice-list li:hover .tit,
.news .news-notice-list li:hover .date {
  color: #fff;
}
.news .news-notice-list li:hover a::after {
  background: url(../images/main/new/ico_more3_on.svg) no-repeat 0 0;
}

.history {
  padding: 120px 0;
  background-color: #F4F4F4;
  overflow: hidden;
}
.history .com-title {
  text-align: center;
}
.history .history-count {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 100px;
  margin-top: 78px;
}
.history .history-count li {
  padding: 0 60px;
  border-left: 1px solid rgba(4, 4, 4, 0.1);
}
.history .history-count li:first-child {
  border-left: none;
}
.history .history-count li .label {
  display: block;
  font-size: 18px;
  color: #1E1E1E;
  font-weight: 700;
}
.history .history-count li .num {
  color: #1E1E1E;
  font-size: 140px;
  font-weight: 700;
  display: inline-block;
  min-width: 1ch;
  font-variant-numeric: tabular-nums;
  -webkit-font-feature-settings: "tnum";
          font-feature-settings: "tnum";
}
.history .history-count li .num em {
  font-size: 28px;
  font-weight: 400;
  margin-left: 20px;
}
.history .history-count li:nth-child(1) .num {
  min-width: 1ch;
}
.history .history-count li:nth-child(2) .num {
  min-width: 2ch;
}
.history .history-count li:nth-child(3) .num {
  min-width: 3ch;
}
.history .history-count li:nth-child(4) .num {
  min-width: 4ch;
}
.history .partner {
  margin-top: 70px;
}
.history .partner .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90px;
  height: 90px;
  position: relative;
  text-align: center;
}
.history .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.notice {
  padding: 240px 20px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.notice .contact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.notice .contact-list li {
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.notice .contact-list li:nth-child(1) {
  background-image: url(../images/main/new/notice_bg1.png);
}
.notice .contact-list li:nth-child(2) {
  background-image: url(../images/main/new/notice_bg2.png);
}
.notice .contact-list li:nth-child(3) {
  background-image: url(../images/main/new/notice_bg3.png);
}
.notice .contact-list li a {
  display: block;
  position: relative;
  padding: 40px;
}
.notice .contact-list li:nth-child(2) .bg::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(30, 120, 80, 0.55)), to(rgba(30, 120, 80, 0.2)));
  background: linear-gradient(to bottom, rgba(30, 120, 80, 0.55) 0%, rgba(30, 120, 80, 0.2) 100%);
}
.notice .contact-list li .txt strong {
  color: #FFF;
  font-size: 36px;
  font-weight: 700;
}
.notice .contact-list li .txt p {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  margin-top: 16px;
}

.inquiry {
  padding: 74px 0;
  position: relative;
  overflow: hidden;
}
.inquiry::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/main/new/inquiry_bg.png) no-repeat center;
  background-size: cover;
  -webkit-transform: scale(var(--inquiry-scale, 1));
          transform: scale(var(--inquiry-scale, 1));
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
  z-index: -1;
}
@media (max-width: 768px) {
  .inquiry::before {
    background-position: center;
  }
}
.inquiry .com-title {
  text-align: center;
  margin-bottom: 40px;
}
.inquiry .com-title h2 {
  font-size: 48px;
  color: #fff;
}
.inquiry .com-title span {
  display: block;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  margin-top: 16px;
}
.inquiry .slide-btn {
  display: block;
  width: 270px;
  margin: 0 auto;
  text-align: center;
}

footer {
  background-color: #1E1E1E;
}
footer .inner {
  max-width: 2000px;
}
footer .top {
  border-color: #454545;
}
footer .top .address {
  color: #fff;
}
footer .bottom ul li a {
  color: #fff;
}

@media (min-width: 2561px) {
  html {
    max-width: 2100px;
    margin: 0 auto;
  }
  header {
    max-width: 2100px;
  }
}
@media (max-width: 2000px) {
  header .logo {
    margin-left: 20px;
  }
  header .right {
    margin-right: 20px !important;
  }
  .hero-section .mySwiper .text {
    padding: 0 20px;
  }
  .hero-section .slide-controls {
    margin-left: 20px;
  }
  .ax-wrap .ax-text {
    padding: 0 100px;
  }
  .ax-wrap .ax-tabs {
    padding: 0 100px;
  }
}
@media (max-width: 1280px) {
  section .inner {
    padding: 0 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .com-title h2 {
    font-size: 40px;
  }
  .com-title span {
    font-size: 20px;
  }
  .hero-section .mySwiper .text .slide-title {
    font-size: 56px;
  }
  .hero-section .mySwiper .text .slide-sub {
    font-size: 28px;
  }
  .intro-bottom {
    padding: 220px 20px 80px;
  }
  .intro-bottom .com-title h2 {
    font-size: 52px;
  }
  .ax-wrap .ax-tabs {
    gap: 24px;
  }
  .ax-wrap .ax-text .ax-title {
    font-size: 48px;
  }
  .ax-wrap .ax-text .ax-desc {
    font-size: 22px;
  }
  .service .mySwiper .swiper-slide {
    width: 340px;
  }
  .service .tab-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .service .tab li a {
    padding: 12px 30px;
    font-size: 18px;
  }
  .news .news-card-list {
    gap: 16px;
  }
  .news .news-notice-list {
    gap: 12px;
  }
  .history .history-count li {
    padding: 0 30px;
  }
  .history .history-count li .num {
    font-size: 100px;
  }
}
/* ==================================================
   1024
================================================== */
@media (max-width: 1024px) {
  section .inner {
    padding: 0;
  }
  .com-title {
    margin-bottom: 32px;
  }
  .com-title h2 {
    font-size: 36px;
  }
  .com-title span {
    font-size: 18px;
  }
  .hero-section .mySwiper .text {
    padding: 0 100px;
  }
  .hero-section .mySwiper .text .slide-title {
    font-size: 46px;
  }
  .hero-section .mySwiper .text .slide-sub {
    font-size: 22px;
    margin-top: 20px;
  }
  .hero-section .slide-controls {
    bottom: 200px;
    margin-left: 100px;
  }
  .slide-btn {
    font-size: 18px;
    padding: 12px 28px;
  }
  .intro-bottom {
    padding: 220px 40px 80px;
  }
  .intro-bottom .com-title h2 {
    font-size: 48px;
  }
  .service {
    height: auto;
    padding: 100px 40px;
  }
  .service .tab {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 10px;
    gap: 12px;
  }
  .service .tab a {
    font-size: 16px;
  }
  .ax-wrap {
    height: 100%;
    overflow: hidden;
  }
  .ax-wrap .ax-pin {
    height: auto;
    position: static;
    overflow: visible;
    clip-path: none !important;
  }
  .ax-wrap .ax-slide {
    height: 500px;
    clip-path: none !important;
    position: relative;
  }
  .ax-wrap .ax-slide img {
    position: static;
    inset: auto;
  }
  .ax-wrap .ax-text {
    padding: 0 100px;
    bottom: 90px;
  }
  .ax-wrap .ax-text .ax-title,
  .ax-wrap .ax-text .ax-desc,
  .ax-wrap .ax-text .ax-btn {
    opacity: 1;
  }
  .ax-wrap .ax-text .ax-btn {
    margin-top: 30px;
  }
  .ax-wrap .ax-text .ax-title {
    font-size: 36px;
  }
  .news {
    padding: 120px 40px 240px;
    height: auto;
  }
  .news .news-card-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .news .news-notice-list {
    grid-template-columns: 1fr;
  }
  .news .com-title h2 {
    padding-right: 110px;
  }
  .news .com-title .more-btn {
    font-size: 20px;
    padding: 5px 45px 5px 0;
    background-size: 33px;
  }
  .history {
    padding: 80px 100px;
  }
  .history .history-count {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px;
  }
  .history .history-count li {
    border: none;
  }
  .history .history-count li .num {
    font-size: 90px;
  }
  .notice {
    padding: 120px 40px;
  }
  .notice .contact-list li .txt strong {
    font-size: 32px;
  }
  .inquiry {
    background-size: cover !important;
    padding: 80px 100px;
  }
  .inquiry .com-title h2 {
    font-size: 36px;
  }
}
/* ==================================================
   768
================================================== */
@media (max-width: 768px) {
  .com-title h2 {
    font-size: 30px;
    line-height: 1.4;
  }
  .com-title span {
    font-size: 16px;
  }
  .hero-section {
    min-height: 700px;
  }
  .hero-section .mySwiper .text {
    padding: 0 40px;
  }
  .hero-section .mySwiper .text .slide-title {
    font-size: 34px;
  }
  .hero-section .mySwiper .text .slide-sub {
    font-size: 18px;
  }
  .hero-section .slide-controls {
    bottom: 120px;
    margin-left: 40px;
  }
  .slide-btn {
    font-size: 16px;
    padding: 12px 24px;
  }
  .intro-bottom {
    padding: 120px 20px 60px;
  }
  .intro-bottom .com-title h2 {
    font-size: 32px;
  }
  /* AX 모바일 전용 */
  .ax-wrap {
    height: auto;
  }
  .ax-wrap .ax-pin {
    position: relative;
    height: auto;
  }
  .ax-wrap .ax-slide {
    height: 400px;
    position: relative;
  }
  .ax-wrap .ax-tabs {
    display: none;
  }
  .ax-wrap .ax-text {
    padding: 0 40px;
  }
  .ax-wrap .ax-text .ax-title {
    font-size: 24px;
  }
  .ax-wrap .ax-text .ax-desc {
    font-size: 18px;
  }
  .service .mySwiper .swiper-slide {
    width: 300px;
  }
  .service .mySwiper .swiper-slide a {
    padding: 30px 30px 40px;
  }
  .service .mySwiper dl dt {
    font-size: 16px;
  }
  .service .mySwiper dl dd {
    font-size: 24px;
  }
  .service .mySwiper p {
    font-size: 16px;
  }
  .news {
    padding: 80px 40px;
  }
  .news .news-card-list {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .news .news-card-list li .thumb {
    height: 100%;
  }
  .news .news-card-list li .tit {
    font-size: 20px;
    height: 53px;
  }
  .news .news-card-list li .date {
    font-size: 16px;
  }
  .news .news-notice-list li a {
    padding: 16px 24px;
  }
  .news .news-notice-list li a::after {
    right: 24px;
    bottom: 16px;
  }
  .news .news-notice-list li .category {
    font-size: 16px;
  }
  .news .news-notice-list li .tit {
    font-size: 20px;
    height: 60px;
  }
  .news .news-notice-list li .date {
    font-size: 16px;
  }
  .news .com-title h2 {
    padding-right: 0;
  }
  .news .com-title .more-btn {
    font-size: 18px;
    padding: 5px 38px 5px 0;
    background-size: 27px;
    bottom: -35px;
  }
  .history {
    padding: 80px 40px;
  }
  .history .history-count {
    gap: 24px;
  }
  .history .history-count li {
    padding: 0 10px;
  }
  .history .history-count li .num {
    font-size: 64px;
  }
  .history .history-count li .num em {
    margin-left: 10px;
  }
  .notice .contact-list {
    grid-template-columns: 1fr;
  }
  .notice .contact-list li {
    height: 200px;
  }
  .notice .contact-list li .txt p {
    font-size: 16px;
  }
  .inquiry {
    padding: 80px 20px;
  }
  .inquiry .com-title h2 {
    font-size: 28px;
  }
}
/* ==================================================
   480
================================================== */
@media (max-width: 480px) {
  .com-title h2 {
    font-size: 24px;
  }
  .com-title span {
    font-size: 14px;
  }
  .hero-section .mySwiper .text .slide-title {
    font-size: 28px;
  }
  .hero-section .mySwiper .text .slide-sub {
    font-size: 16px;
  }
  .intro-headline {
    font-size: 28px;
  }
  .ax-wrap .ax-slide {
    height: 290px;
  }
  .ax-wrap .ax-slide img {
    height: 100%;
  }
  .ax-wrap .ax-text {
    bottom: 60px;
  }
  .ax-wrap .ax-text .ax-title {
    font-size: 26px;
  }
  .ax-wrap .ax-text .ax-desc {
    font-size: 15px;
    margin-top: 8px;
  }
  .ax-wrap .ax-text .ax-btn {
    margin-top: 20px;
  }
  .service .tab {
    margin-top: 0;
  }
  .service .tab li a {
    padding: 8px 19px;
    font-size: 16px;
  }
  .history .history-count li .num {
    font-size: 56px;
  }
  .history .history-count li .num em {
    font-size: 18px;
  }
  .notice .contact-list li {
    height: 220px;
  }
  .notice .contact-list li a {
    padding: 24px;
  }
  .notice .contact-list li .txt strong {
    font-size: 28px;
  }
  .inquiry {
    padding: 40px 60px;
  }
  .inquiry .com-title h2 {
    font-size: 22px;
  }
  .inquiry .slide-btn {
    width: 100%;
    max-width: 240px;
  }
  .slide-controls .swiper-pagination span {
    font-size: 16px;
  }
}
@media (max-width: 410px) {
  .history .partner {
    margin-top: 30px;
  }
  .history .history-count {
    grid-template-columns: 1fr;
    text-align: center;
    margin: 40px 0;
  }
}