@charset "UTF-8";
@import url(../../font/font.css);
@import url("reset.css");
@import url("global.css");
@import url("iconFont.css");
/* Desktop First */
/* desktop > laptop > tablet > mobile 순서로 작업 */
.display-1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5.125rem;
  letter-spacing: -0.16875rem;
}
.display-2 {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 4.375rem;
  letter-spacing: -0.140625rem;
}

.heading-1 {
  font-size: 4.375rem;
  font-weight: 700;
  line-height: 5rem;
  letter-spacing: -0.1640625rem;
}
.heading-2 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 3.625rem;
  letter-spacing: -0.1125rem;
}
.heading-3 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
  letter-spacing: -0.09375rem;
}
.heading-4 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2.25rem;
  letter-spacing: -0.0703125rem;
}
.heading-5 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
  letter-spacing: -0.05625rem;
}
.heading-6 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
  letter-spacing: -0.046875rem;
}

.p-1 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.75rem;
  letter-spacing: -0.05625rem;
}
.p-2 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: -0.046875rem;
}
.p-3 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: -0.0375rem;
}

/* nav -------------------------------------------------------------- */
.nav {
  position: relative;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
}
.nav .nav-inner {
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  height: 100px;
  width: 100%;
  z-index: 1;
  max-width: 1500px;
}
.nav .nav-inner .logo a {
  display: block;
}
.nav .nav-inner .logo a img {
  width: 7.5rem;
}
.nav img.logo-white {
  display: none;
}
.nav.pc .categories {
  color: #111111;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  gap: 0;
}
.nav.pc .categories .category {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 100%;
}
.nav.pc .categories .category .item {
  align-content: center;
  height: 100px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.0421875rem;
  letter-spacing: -0.015em;
  cursor: pointer;
  padding: 0 2.5rem;
}
.nav.pc .categories .category ul {
  position: absolute;
  color: #ffffff;
  background-color: #D52629;
  top: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  width: 200px;
  height: auto;
  max-height: 0;
  opacity: 0;
  transform: translateY(-20px);
  transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  border-radius: 0.5rem;
}
.nav.pc .categories .category ul a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  letter-spacing: -0.0375rem;
  transition: color 0.2s ease;
  display: block;
}
.nav.pc .categories .category.active .item {
  color: #D52629;
}
.nav.pc .categories .category.active ul {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav.pc .categories .category.active ul a:hover {
  color: #ffffff;
}
.nav.pc .contactus button {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.0421875rem;
  width: max-content;
}
.nav.mobile {
  display: none;
}
.nav.dark {
  background-color: #00000020;
  color: #ffffff;
}
@media (max-width: 1280px) {
  .nav.pc {
    display: none;
  }
  .nav.mobile {
    display: flex;
  }
  .nav.mobile .nav-inner {
    height: 100px;
    background: #fff;
  }
  .nav.mobile .nav-inner .logo {
    height: auto;
  }
  .nav.mobile .nav-inner .menu {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .nav.mobile .nav-inner .menu i {
    font-size: 24px;
  }
  .nav.mobile .nav-inner .dimed {
    display: none;
  }
  .nav.mobile .nav-inner .dimed.visible {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vh;
    height: 100vh;
    background-color: #00000020;
  }
  .nav.mobile .nav-inner .categories {
    display: none;
  }
  .nav.mobile .nav-inner .categories.visible {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 100vh;
    flex-direction: column;
    background-color: #ffffff;
    padding: 16px;
    overflow-y: scroll;
  }
  .nav.mobile .nav-inner .categories.visible ul {
    display: none;
  }
  .nav.mobile .nav-inner .categories.visible .close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 60px;
  }
  .nav.mobile .nav-inner .categories.visible .close i {
    width: 24px;
    padding: 20px;
    font-size: 24px;
  }
  .nav.mobile .nav-inner .categories .category {
    padding: 0 16px;
    position: relative;
    border-bottom: 1px solid #E6E6F3;
  }
  .nav.mobile .nav-inner .categories .category .item {
    display: flex;
    align-items: center;
    height: 45px;
    width: 100%;
    font-weight: 600;
    color: #111111;
  }
  .nav.mobile .nav-inner .categories .category .item::before {
    position: absolute;
    right: 20px;
    top: 10px;
    font-family: "SDCIT-iconFont";
    content: "";
  }
  .nav.mobile .nav-inner .categories .category.active {
    border-bottom: 1px solid transparent;
  }
  .nav.mobile .nav-inner .categories .category.active .item {
    color: #D52629;
    border-bottom: none;
  }
  .nav.mobile .nav-inner .categories .category.active .item::before {
    content: "";
  }
  .nav.mobile .nav-inner .categories .category.active ul {
    color: #ffffff;
    background-color: #FBFBFB;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    width: 100%;
  }
  .nav.mobile .nav-inner .categories .category.active ul li {
    height: 30px;
  }
  .nav.mobile .nav-inner .categories .category.active ul li a {
    color: #666666;
  }
  .nav.mobile .nav-inner .categories .category.no-submenu {
    border-bottom: 1px solid #E6E6F3;
  }
  .nav.mobile .nav-inner .categories .category.no-submenu .item::before {
    content: none !important;
  }
}
@media only screen and (max-width: 480px) {
  .nav.mobile {
    height: max-content;
  }
  .nav.mobile .nav-inner {
    height: 60px;
  }
  .nav.mobile .nav-inner .logo {
    width: 72px;
    height: auto;
    line-height: 1;
  }
  .nav.mobile .nav-inner .menu {
    width: 50px;
    height: 50px;
  }
  .nav.mobile .nav-inner .categories.visible {
    padding: 0 16px 16px 16px;
  }
}

@media only screen and (max-width: 480px) {
  .nav .nav-inner .logo-white {
    width: 54px;
    height: auto;
  }
}
body.no-scroll {
  overflow: hidden;
  /* 스크롤 비활성화 */
  position: fixed;
  /* 화면 고정 */
  width: 100%;
  /* 화면 너비 유지 */
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 999;
  /* background: transparent; */
  background: rgba(255, 255, 255, 0.836);
  backdrop-filter: blur(5px);
  /* 선택: 유리처럼 흐릿한 효과 줄 수도 있음 */
  transition: transform 0.3s ease, background 0.5s ease;
}
.sticky-header.nav-hidden {
  transform: translateY(-100%);
}
.sticky-header.transparent {
  background: transparent;
  color: white;
  transition: background 0.5s ease;
}
.sticky-header.transparent .nav.pc .nav-inner .categories {
  color: white;
  transition: background 0.5s ease;
}
.sticky-header.transparent .nav.pc .nav-inner .contactus button {
  color: #ffffff;
}

.container-wrapper {
  position: relative;
  width: 100vw;
  height: 100%;
  overflow: hidden;
}

.containerD {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.containerD .pagination {
  position: absolute;
  width: 100%;
  bottom: 5.5rem;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.5s ease;
}
.containerD .pagination.visible {
  opacity: 1;
}
.containerD .pagination .bar {
  width: 1.875rem;
  height: 0.1875rem;
  margin: 5px 7.5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0;
  padding: 0;
  cursor: pointer;
}
.containerD .pagination .bar.active {
  background: #D52629;
}

.slider-wrapper {
  display: flex;
  width: 300vw;
  /* 3개의 슬라이드 */
  height: 100%;
  cursor: default !important;
}

.sectionD {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.zoom-slide-img {
  width: 100vw;
  height: 100vh;
  min-width: 80%;
  min-height: 400px;
  object-fit: cover;
  transform-origin: top center;
  transition: transform 0.3s ease-out, border-radius 0.3s ease-out;
  border-radius: 1rem 1rem 0 0;
}

.zoom-content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: center;
}
.zoom-content .text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.zoom-content.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.zoom-content button {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: 18.75rem;
  height: 4.375rem;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
  border-radius: 4.375rem;
}
.zoom-content button:hover {
  background: #D52629;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  opacity: 0;
  transition: all 0.5s ease;
}

.slide-btn.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.slide-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.prev-btn {
  left: 3rem;
}

.next-btn {
  right: 1rem;
}

.contents_body {
  overflow: hidden;
}
.contents_body.control {
  overflow: visible;
}

.motion {
  position: relative;
  text-align: center;
  /* erp solution scroll trigger */
  /* ui.js에서 isSmallScreen을 1440px로 정의하고 있음 */
}
.motion .flex-center {
  gap: 30px;
  height: 490px;
  color: #111111;
}
.motion .flex-center .gradation {
  background: linear-gradient(85deg, #000000 14%, #C52E25 55%, #FF3B30 60%, #FFAFAA 63%, #FF3B30 67%, #541310 73%, #000000 100%);
  font-weight: 700;
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animatedTextGradient 12s ease-in-out infinite alternate;
}
@keyframes animatedTextGradient {
  0% {
    background-position: 140% center;
  }
  50% {
    background-position: 0% center;
  }
  100% {
    background-position: 140% center;
  }
}
.motion .flex-center + img {
  width: 1600px;
}
.motion.parallax {
  height: 100vh;
  margin-bottom: 100vh;
  position: relative;
  overflow: hidden;
}
.motion .scroll-trigger-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.motion .zoom-area {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.motion .zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  display: none;
  /* 기본적으로 숨김 */
  pointer-events: none;
  /* 클릭 이벤트 차단 */
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.motion .zoom-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  transform-origin: center center;
  transition: width 0.4s ease, height 0.4s ease, border-radius 0.3s ease;
  border-radius: 1rem 1rem 0 0;
  position: relative;
}
.motion .zoom-img.w-100 {
  width: 100vw !important;
  border-radius: 0 !important;
}
.motion .zoom-contents {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  opacity: 0;
  transition: all 0.5s ease;
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.motion .zoom-contents.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.motion .zoom-contents p {
  width: 100%;
  max-width: 1280px;
  text-align: left;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.1125rem;
}
.motion .zoom-contents p.dark {
  color: #111111;
}
.motion .zoom-contents.about-us .title {
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.103125rem;
}
.motion .zoom-contents.about-us .subscription {
  width: 100%;
}
.motion .zoom-contents.about-us .subscription p {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.75px;
  will-change: transform, opacity;
}
@media only screen and (max-width: 768px) {
  .motion .zoom-contents.about-us .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.75px;
  }
  .motion .zoom-contents.about-us .subscription p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.525px;
  }
}
.motion .cards {
  width: 100%;
  max-width: 1280px;
  display: flex;
  gap: 20px;
  color: #ffffff;
}
.motion .cards .card-item {
  background: white;
  color: #666666;
  flex: 1;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  padding: 30px;
  border-radius: 1rem;
  will-change: transform, opacity;
}
.motion .cards .card-item .num {
  color: #D52629;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.0421875rem;
  letter-spacing: -1.25px;
  margin-bottom: 10px;
}
.motion .cards .card-item .title {
  color: #111111;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.0609375rem;
  margin-bottom: 16px;
}
.motion .cards .card-item ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.motion .cards .card-item ul li {
  position: relative;
  padding-left: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.0375rem;
}
.motion .cards .card-item ul li::before {
  position: absolute;
  left: 0;
  top: -3px;
  content: "•";
  margin: 0;
  font-size: 1.25rem;
  line-height: normal;
}
.motion .cards .card-item img {
  width: 4.375rem;
}
.motion .cards.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  width: 100%;
}
.motion .cards.card-grid.card-2col {
  grid-template-columns: repeat(2, 1fr);
}
.motion .cards.card-grid.card-4col {
  grid-template-columns: repeat(4, 1fr);
  min-height: 425px;
}
.motion .cards.recruit {
  justify-content: space-between;
}
.motion .cards.recruit .card-item {
  gap: 60px;
  color: #ffffff;
  background-color: transparent;
  padding: 0;
  flex: unset;
  backface-visibility: hidden;
  will-change: transform, opacity;
}
.motion .cards.recruit .card-item .keyword {
  color: #D52629;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3.125rem;
  letter-spacing: -0.09375rem;
  margin-bottom: 10px;
}
.motion .cards.recruit .card-item .title {
  color: #ffffff;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 2.5rem;
  letter-spacing: -0.0703125rem;
}
.motion .cards.recruit .card-item ul {
  gap: 20px;
}
.motion .cards.recruit .card-item ul li {
  padding: unset;
}
.motion .cards.recruit .card-item ul li::before {
  display: none;
}
@media (max-width: 1440px) {
  .motion.parallax {
    height: max-content;
    margin-bottom: 0;
  }
  .motion .scroll-trigger-container {
    position: static !important;
  }
  .motion .zoom-area {
    width: 100%;
    height: unset;
  }
  .motion .zoom-img {
    display: none;
  }
  .motion .zoom-contents {
    padding: 40px 16px;
    position: relative;
    height: 100%;
    width: 100%;
    max-width: unset;
    background-size: cover;
    background-position: center;
    background: #111;
    opacity: 1;
    top: unset;
    left: unset;
    transform: unset;
    gap: 20px;
  }
  .motion .zoom-contents.visible {
    transform: unset;
  }
  .motion .zoom-contents.erp01 {
    background-image: url(../../images/main/erp01.png);
  }
  .motion .zoom-contents.erp02 {
    background-image: url(../../images/main/erp02.png);
  }
  .motion .zoom-contents.erp03 {
    background-image: url(../../images/main/erp03.png);
  }
  .motion .zoom-contents.erp04 {
    background-image: url(../../images/main/erp04.png);
  }
  .motion .zoom-contents.erp05 {
    background-image: url(../../images/main/erp05.png);
  }
  .motion .zoom-contents.erp06 {
    background-image: url(../../images/main/erp06.png);
  }
  .motion .zoom-contents.erp07 {
    background-image: url(../../images/main/erp07.png);
  }
  .motion .zoom-contents.erp08 {
    background-image: url(../../images/main/erp08.png);
  }
  .motion .zoom-contents.erp09 {
    background-image: url(../../images/main/itsm.png);
  }
  .motion .zoom-contents.about-us {
    background-image: url(../../images/main/aboutus-company.png);
  }
  .motion .zoom-contents.service01 {
    background-image: url(../../images/main/service01.png);
  }
  .motion .zoom-contents.service02 {
    background-image: url(../../images/main/service02.png);
  }
  .motion .zoom-contents.service03 {
    background-image: url(../../images/main/service03.png);
  }
  .motion .zoom-contents.service04 {
    background-image: url(../../images/main/service04.png);
  }
  .motion .zoom-contents.solution01 {
    background-image: url(../../images/main/hyper-automation.png);
  }
  .motion .zoom-contents.solution02 {
    background-image: url(../../images/main/rpa.png);
  }
  .motion .zoom-contents.solution03 {
    background-image: url(../../images/main/bi.png);
  }
  .motion .zoom-contents.solution04 {
    background-image: url(../../images/main/jeuswebtob.png);
  }
  .motion .zoom-contents .cards {
    flex-direction: column;
  }
  .motion .zoom-contents .cards .card-item .title br {
    display: none;
  }
  .motion .zoom-contents .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .motion .zoom-contents .card-grid.card-2col {
    grid-template-columns: repeat(2, 1fr);
  }
  .motion .zoom-contents .card-grid.card-4col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1280px) {
  .motion .zoom-contents p {
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .motion .zoom-contents p {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.75px;
  }
  .motion .zoom-contents .cards {
    gap: 16px;
  }
  .motion .zoom-contents .cards .card-item {
    padding: 24px;
  }
  .motion .zoom-contents .cards .card-item .num {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.525px;
    letter-spacing: -0.75px;
  }
  .motion .zoom-contents .cards .card-item .title {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.675px;
  }
  .motion .zoom-contents .cards .card-item ul li {
    font-size: 0.875rem;
  }
  .motion .zoom-contents .cards .card-item ul li::before {
    font-size: 1.125rem;
  }
  .motion .zoom-contents .cards .card-item img {
    width: 2.5rem;
  }
  .motion .zoom-contents .cards.recruit {
    gap: 40px;
  }
  .motion .zoom-contents .cards.recruit .card-item {
    gap: 20px;
    padding: 0 !important;
  }
  .motion .zoom-contents .cards.recruit .card-item .keyword {
    font-size: 20px;
    font-weight: 800;
    line-height: 30px;
    letter-spacing: -0.75px;
  }
  .motion .zoom-contents .cards.recruit .card-item .title {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.675px;
  }
  .motion .zoom-contents .cards.recruit .card-item ul li {
    font-size: 1rem;
  }
  .motion .zoom-contents .cards.recruit .card-item ul li::before {
    font-size: 1.125rem;
  }
  .motion .zoom-contents .cards.recruit .card-item img {
    width: 2.5rem;
  }
  .motion .zoom-contents .card-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .motion .zoom-contents .card-grid.card-2col {
    grid-template-columns: repeat(1, 1fr);
  }
  .motion .zoom-contents .card-grid.card-4col {
    grid-template-columns: repeat(1, 1fr);
  }
}

.mobile-section {
  display: none;
}

.mobile-section-hero {
  display: none;
}

/* section */
.section {
  margin: 0 auto;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  gap: 6.25rem;
  padding: 6.25rem 0;
}
.section div.container {
  width: 100%;
  max-width: 1440px;
}
.section div.items {
  display: flex;
  flex-direction: row;
}
.section div.items .item {
  display: flex;
  flex-direction: column;
}
.section .title {
  color: #111111;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.section .title.visible {
  opacity: 1;
  transform: translateY(0);
}
.section .title p {
  font-size: 4.375rem;
  font-weight: 700;
  line-height: 5rem;
  letter-spacing: -0.1640625rem;
}
.section .title button.more {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5rem;
  letter-spacing: -0.046875rem;
  color: #111111;
}
.section .title button.more i {
  font-size: 1.125rem;
  transition: color 0.3s ease;
}
.section .title button.more:hover i {
  color: #D52629;
}
.section.trigger div.motion {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section.trigger div.motion img {
  width: 1600px;
  height: auto;
}
.section.hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../../images/main/hero.png);
  width: 100%;
  height: 100vh;
  align-content: center;
}
.section.solutions {
  position: relative;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: initial;
}
.section.solutions .paginations {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  height: 45px;
  margin-bottom: 60px;
  width: max-content;
}
.section.solutions .paginations .pagination {
  position: relative;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.8125rem;
  letter-spacing: -0.0421875rem;
  cursor: pointer;
  color: #111111;
  transition: color 0.3s ease;
}
.section.solutions .paginations .pagination::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #D52629;
  transition: width 0.4s ease;
}
.section.solutions .paginations .pagination:hover, .section.solutions .paginations .pagination.active- {
  color: #D52629;
  font-weight: 600;
}
.section.solutions .paginations .pagination:hover::after, .section.solutions .paginations .pagination.active-::after {
  width: 100%;
}
.section.solutions .paginations .pagination + span {
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #E6E6F3;
}
.section.solutions .swiper-container {
  display: inline-flex;
  overflow: initial;
}
.section.solutions .swiper-container .swiper-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1100px;
  width: 180px;
  color: #ffffff;
  transition: transform 0.5s;
}
.section.solutions .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  width: 180px;
  height: 500px;
  overflow: hidden;
  background: #000;
  transition: width 1s;
  cursor: pointer;
  border-radius: 16px;
  margin-right: 30px;
}
.section.solutions .swiper-container .swiper-wrapper .swiper-slide img {
  height: 100%;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: height 3s;
  max-width: initial;
}
.section.solutions .swiper-container .swiper-wrapper .swiper-slide .text-box {
  position: absolute;
  left: 50%;
  top: 130px;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 3.75rem;
  z-index: 1;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
}
.section.solutions .swiper-container .swiper-wrapper .swiper-slide .text-box a {
  color: inherit;
}
.section.solutions .swiper-container .swiper-wrapper .swiper-slide .text-box .heading-2 {
  margin-bottom: 20px;
}
.section.solutions .swiper-container .swiper-wrapper .swiper-slide .text-box .heading-4 {
  margin-bottom: 36px;
}
.section.solutions .swiper-container .swiper-wrapper .swiper-slide .text-box .p-1 {
  line-height: 34px;
  max-height: 74px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.25rem;
}
.section.solutions .swiper-container .swiper-wrapper .swiper-slide.expanded {
  width: 1100px !important;
}
.section.solutions .swiper-container .swiper-wrapper .swiper-slide.expanded img {
  height: 130%;
}
.section.solutions .swiper-container .swiper-wrapper .swiper-slide.expanded .text-box {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s 1s;
}
@media (max-width: 1280px) {
  .section.solutions .paginations {
    gap: 1rem;
    height: 1.875rem;
    margin-bottom: 1.875rem;
  }
  .section.solutions .paginations .pagination {
    font-size: 1rem;
    line-height: 1.875rem;
  }
  .section.solutions .swiper-container .swiper-wrapper .swiper-slide {
    height: 400px;
    margin-right: 20px;
  }
  .section.solutions .swiper-container .swiper-wrapper .swiper-slide .text-box {
    padding: 0 2.5rem;
    top: 100px;
  }
  .section.solutions .swiper-container .swiper-wrapper .swiper-slide .text-box .heading-2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 3.125rem;
    letter-spacing: -0.09375rem;
    margin-bottom: 20px;
  }
  .section.solutions .swiper-container .swiper-wrapper .swiper-slide .text-box .heading-4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.125rem;
    letter-spacing: -0.05625rem;
    margin-bottom: 36px;
  }
  .section.solutions .swiper-container .swiper-wrapper .swiper-slide .text-box .p-1 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75rem;
    letter-spacing: -0.0375rem;
  }
  .section.solutions .swiper-container .swiper-wrapper .swiper-slide.expanded {
    width: 800px !important;
  }
}
@media (max-width: 1020px) {
  .section.solutions {
    display: none;
  }
}
.section.services {
  padding: 0;
  overflow: hidden;
  height: max-content;
}
.section.services div.items {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.section.services div.items .item {
  box-sizing: border-box;
  width: 25%;
  flex: 1 1 25%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 137px;
  padding-bottom: 100px;
  position: relative;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.section.services div.items .item.visible {
  opacity: 1;
  transform: translateY(0);
}
.section.services div.items .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #E6E6F3;
}
.section.services div.items .item:first-child::before {
  display: none;
}
.section.services div.items .item .img {
  position: relative;
  min-width: 478px;
  width: 100%;
  height: 18.75rem;
  margin: auto;
  overflow: hidden;
}
.section.services div.items .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  will-change: transform, filter;
}
.section.services div.items .item .text-box {
  padding: 0 60px;
  color: #111111;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.section.services div.items .item .text-box .p-2 {
  margin-bottom: 0.625rem;
  font-weight: 500;
}
.section.services div.items .item .text-box .heading-3 {
  transition: color 0.3s ease;
}
.section.services div.items .item .text-box .p-1 {
  color: #666666;
  line-height: 2.125rem;
  height: 4.0625rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section.services div.items .item:hover .heading-3 {
  color: #D52629;
}
.section.services div.items .item:hover .img img {
  transform: scale(1.08);
  filter: brightness(0.9);
}
@media (max-width: 1600px) {
  .section.services div.items .item .text-box {
    padding: 0 40px;
  }
  .section.services div.items .item .img {
    min-width: unset;
  }
}
@media (max-width: 1280px) {
  .section.services div.items {
    flex-wrap: wrap;
  }
  .section.services div.items .item {
    flex: 1 1 50%;
    padding-top: 60px;
    padding-bottom: 0;
  }
  .section.services div.items .item .img img {
    width: 100%;
  }
  .section.services div.items .item .text-box {
    gap: 40px;
  }
  .section.services div.items .item .text-box .p-2 {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.75rem;
    letter-spacing: -0.0421875rem;
  }
}
@media only screen and (max-width: 768px) {
  .section.services div.items {
    flex-direction: column;
    border-bottom: none;
  }
  .section.services div.items .item {
    width: 100%;
    padding-top: unset;
    padding-bottom: 2.5rem;
    gap: 0;
  }
  .section.services div.items .item::before {
    width: 100%;
    height: 1px;
    bottom: 0;
  }
  .section.services div.items .item .text-box {
    padding: 24px 16px;
    gap: 8px;
  }
  .section.services div.items .item .text-box .p-2 {
    color: #D52629;
    margin-bottom: 0.5rem;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.45px;
  }
  .section.services div.items .item .text-box .heading-3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.675px;
  }
  .section.services div.items .item .text-box .p-1 {
    display: none;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: -0.45px;
  }
  .section.services div.items .item .img {
    height: 12.5rem;
    min-width: unset;
  }
  .section.services div.items .item .img img {
    height: 12.5rem;
  }
}
.section.achievements {
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  max-width: 1440px;
  overflow: initial;
}
.section.achievements .achievements-slider.pc {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0;
  overflow: visible;
}
.section.achievements .achievements-slider.pc .items {
  display: inline-flex;
}
.section.achievements .achievements-slider.pc .items .swiper-container {
  width: 100%;
  max-width: 1080px;
  height: auto;
}
.section.achievements .achievements-slider.pc .items .swiper-container.view {
  flex: 1;
  overflow-x: hidden;
}
.section.achievements .achievements-slider.pc .items .swiper-container.view .swiper-pagination {
  left: 30rem;
  bottom: 0.8rem;
  width: 25rem;
  padding: 0;
  height: 0.4rem;
  top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}
.section.achievements .achievements-slider.pc .items .swiper-container.view .swiper-pagination .swiper-pagination-bullet {
  width: 3.125rem;
  height: 0.25rem;
  background-color: #e6e6f3;
  border-radius: 0;
  padding: 0;
  opacity: 1;
  transition: background-color 0.4s ease;
  margin: 0;
  flex-shrink: 0;
}
.section.achievements .achievements-slider.pc .items .swiper-container.view .swiper-pagination .swiper-pagination-bullet-active {
  background: #D52629;
  width: 6.25rem;
  margin: 0;
}
.section.achievements .achievements-slider.pc .items .swiper-container.view .swiper-button-prev {
  width: 2.4rem;
  height: 2.4rem;
  left: 59rem;
  top: auto;
  bottom: 0.14rem;
  opacity: 1;
}
.section.achievements .achievements-slider.pc .items .swiper-container.view .swiper-button-next {
  width: 2.4rem;
  height: 2.4rem;
  left: 62rem;
  top: auto;
  bottom: 0.14rem;
  opacity: 1;
}
.section.achievements .achievements-slider.pc .items .swiper-container.view .swiper-button-next::after, .section.achievements .achievements-slider.pc .items .swiper-container.view .swiper-button-prev::after {
  font-size: 20px;
  color: black;
  font-weight: bold;
}
.section.achievements .achievements-slider.pc .items .swiper-container.view .swiper-button-next.swiper-button-disabled::after, .section.achievements .achievements-slider.pc .items .swiper-container.view .swiper-button-prev.swiper-button-disabled::after {
  font-size: 20px;
  color: #bebebe;
}
.section.achievements .achievements-slider.pc .items .swiper-container.thumbnail {
  flex: 1;
  overflow-x: hidden;
  flex-shrink: 0;
}
.section.achievements .achievements-slider.pc .items .swiper-container.thumbnail .swiper-wrapper {
  margin-left: -200px;
  cursor: pointer;
}
.section.achievements .achievements-slider.pc .items .swiper-container.thumbnail .swiper-slide {
  width: auto;
  flex-shrink: 0;
}
.section.achievements .achievements-slider.pc .items .swiper-container .swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease-in-out;
}
.section.achievements .achievements-slider.pc .items .swiper-container .swiper-wrapper .swiper-slide {
  flex: 0 0 auto;
  /* 슬라이드 크기를 고정 */
  width: 100%;
  /* 한 번에 한 슬라이드가 보이도록 설정 */
  text-align: center;
  overflow: hidden;
  display: flex;
  border-radius: 1rem;
}
.section.achievements .achievements-slider.pc .items .swiper-container .swiper-wrapper .swiper-slide img {
  width: 480px;
  height: auto;
  object-fit: cover;
  /* 이미지가 슬라이드에 맞게 조정 */
  border-radius: 1rem;
}
.section.achievements .achievements-slider.pc .items .swiper-container .swiper-wrapper .swiper-slide .info {
  width: 100%;
  padding: 0 3.75rem;
  background-color: #fff;
  text-align: left;
}
.section.achievements .achievements-slider.pc .items .swiper-container .swiper-wrapper .swiper-slide .info .heading-4 {
  margin-bottom: 1.25rem;
  color: #111111;
}
.section.achievements .achievements-slider.pc .items .swiper-container .swiper-wrapper .swiper-slide .info .chips {
  display: flex;
  gap: 10px;
  margin-bottom: 1.875rem;
}
.section.achievements .achievements-slider.pc .items .swiper-container .swiper-wrapper .swiper-slide .info .chips .chip {
  border-radius: 3px;
  background: rgba(217, 217, 217, 0.2);
  padding: 4px 10px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.0375rem;
  color: #D52629;
}
.section.achievements .achievements-slider.pc .items .swiper-container .swiper-wrapper .swiper-slide .info .heading-3 {
  color: #111111;
  margin-bottom: 4.375rem;
  height: 6.25rem;
  line-height: 3.125rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section.achievements .achievements-slider.pc .items .swiper-container .swiper-wrapper .swiper-slide .info .p-1 {
  color: #666666;
  height: 4rem;
  line-height: 2.125rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1280px) {
  .section.achievements {
    max-width: 1280px;
  }
  .section.achievements .achievements-slider.pc .items {
    display: inline-flex;
  }
  .section.achievements .achievements-slider.pc .items .swiper-container {
    width: 100%;
    max-width: 900px;
    height: auto;
  }
  .section.achievements .achievements-slider.pc .items .swiper-container.view {
    flex: 1;
    overflow-x: hidden;
  }
  .section.achievements .achievements-slider.pc .items .swiper-container.view .swiper-pagination {
    left: 24rem;
  }
  .section.achievements .achievements-slider.pc .items .swiper-container.view .swiper-button-prev {
    width: 2.4rem;
    height: 2.4rem;
    left: 49rem;
    top: auto;
    bottom: 0.14rem;
    opacity: 1;
  }
  .section.achievements .achievements-slider.pc .items .swiper-container.view .swiper-button-next {
    width: 2.4rem;
    height: 2.4rem;
    left: 52rem;
    top: auto;
    bottom: 0.14rem;
    opacity: 1;
  }
  .section.achievements .achievements-slider.pc .items .swiper-container.thumbnail .swiper-wrapper {
    margin-left: -186px;
    cursor: pointer;
  }
  .section.achievements .achievements-slider.pc .items .swiper-container .swiper-wrapper .swiper-slide img {
    width: 400px;
  }
  .section.achievements .achievements-slider.pc .items .swiper-container .swiper-wrapper .swiper-slide .info {
    padding: 0 2.5rem;
  }
}
@media (max-width: 1020px) {
  .section.achievements {
    display: none;
  }
}
.section.introduction {
  gap: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../../images/main/introduction.png);
  flex-direction: column;
}
.section.introduction .title {
  margin-bottom: 30px;
}
.section.introduction .title + .heading-4 {
  width: 100%;
  max-width: 1440px;
}
.section.introduction div.items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 1440px;
  margin-top: 100px;
}
.section.introduction div.items .item {
  height: 200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
}
.section.introduction div.items .item:nth-child(1), .section.introduction div.items .item:nth-child(2), .section.introduction div.items .item:nth-child(4), .section.introduction div.items .item:nth-child(5) {
  border-right: 1px solid #27718380;
}
.section.introduction div.items .item:nth-child(1), .section.introduction div.items .item:nth-child(2), .section.introduction div.items .item:nth-child(3) {
  border-bottom: 1px solid #27718380;
}
.section.introduction div.items .item > div {
  font-size: 60px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -2.25px;
}
.section.introduction div.items .item > div span {
  margin-left: 8px;
  font-size: 28px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -1.05px;
}
.section.introduction div.items .item > div .p-1 {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.9px;
}
.section.introduction div.items .item i {
  font-size: 60px;
}
@media (max-width: 1280px) {
  .section.introduction div.items .item {
    padding: 40px;
  }
  .section.introduction div.items .item > div {
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: -1.875px;
  }
  .section.introduction div.items .item > div span {
    margin-left: 8px;
    font-size: 24px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.9px;
  }
  .section.introduction div.items .item i {
    font-size: 50px;
  }
}
@media (max-width: 1020px) {
  .section.introduction {
    height: unset;
  }
  .section.introduction .title {
    height: unset;
    margin-bottom: 16px;
  }
  .section.introduction .heading-4 {
    display: none;
  }
  .section.introduction div.items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin-top: 0;
  }
  .section.introduction div.items .item {
    height: unset;
    padding: 24px;
  }
  .section.introduction div.items .item:nth-child(odd) {
    border-right: 1px solid #27718380;
  }
  .section.introduction div.items .item:nth-child(even) {
    border-right: none;
  }
  .section.introduction div.items .item:not(:nth-child(5)):not(:nth-child(6)) {
    border-bottom: 1px solid #27718380;
  }
  .section.introduction div.items .item > div {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.675px;
  }
  .section.introduction div.items .item > div span {
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: -0.525px;
  }
  .section.introduction div.items .item > div .p-1 {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: -0.45px;
  }
  .section.introduction div.items .item i {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .section.introduction {
    padding: 40px 16px;
  }
}
.section.news .news-container {
  width: 1920px;
  padding-left: 242px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}
.section.news .news-container.show {
  opacity: 1;
  transform: translateY(0);
}
.section.news .items {
  overflow: hidden;
}
.section.news .items a.item {
  height: 400px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  border: 1px solid #E6E6F3;
  border-radius: 1rem;
  transition: background-color 0.3s;
}
.section.news .items a.item .heading-4 {
  color: #111111;
  height: 5rem;
  line-height: 2.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
  margin-bottom: 3.75rem;
}
.section.news .items a.item .p-2 {
  height: 4rem;
  line-height: 1.875rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #666666;
}
.section.news .items a.item .date {
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.0375rem;
  color: #666666;
}
.section.news .items a.item:hover {
  background-color: #f9f9f9;
}
.section.news .items a.item:hover .heading-4 {
  color: #D52629;
}
@media (max-width: 1600px) {
  .section.news .news-container {
    max-width: 100%;
    padding-left: 0;
  }
  .section.news .items a.item {
    height: 350px;
    padding: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .section.news {
    padding: 40px 16px;
    gap: 24px;
  }
  .section.news .news-container {
    max-width: 100%;
    overflow-x: hidden;
  }
  .section.news .items a.item {
    padding: 24px;
    height: 210px;
  }
  .section.news .items a.item .heading-4 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: -0.0421875rem;
    height: 3.5rem;
    margin-bottom: 1.5rem;
  }
  .section.news .items a.item .p-2 {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.375rem;
    letter-spacing: -0.028125rem;
    height: 2.75rem;
  }
  .section.news .items a.item .date {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.028125rem;
  }
}
.section.contact {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../../images/main/contact.png);
  height: 600px;
  color: #ffffff;
  gap: 50px;
}
.section.contact p.heading-2 span {
  display: block;
}
.section.contact div.flex-row {
  gap: 30px;
  width: 100%;
  max-width: 1440px;
}
.section.contact div.flex-row button {
  justify-content: space-between;
  text-align: left;
  color: #ffffff;
  width: 100%;
  padding: 30px 40px;
  background-color: #FFFFFF20;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
  backdrop-filter: blur(5px);
  border-radius: 0.5rem;
}
.section.contact div.flex-row button .p-1 {
  margin-bottom: 5px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.125rem;
  letter-spacing: -0.05625rem;
}
.section.contact div.flex-row button .p-3 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: -0.0375rem;
}
.section.contact div.flex-row button:hover {
  background-color: #ffffff;
  color: #111111;
}
.section.contact div.flex-row button:hover .p-3 {
  color: #666666;
}
.section.contact div.flex-row button:hover i {
  color: #D52629;
}
@media (max-width: 1440px) {
  .section.contact {
    height: 500px;
  }
}
@media (max-width: 1280px) {
  .section.contact {
    padding: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .section.contact {
    height: auto;
    gap: 24px;
  }
  .section.contact p.heading-2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.9px;
  }
  .section.contact p.heading-2 span {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.525px;
  }
  .section.contact div.flex-row {
    gap: 16px;
  }
  .section.contact div.flex-row button {
    padding: 16px;
    justify-content: center;
    align-items: center;
  }
  .section.contact div.flex-row button .p-1 {
    margin-bottom: unset;
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.45px;
  }
  .section.contact div.flex-row button .p-3 {
    display: none;
  }
  .section.contact div.flex-row button i {
    display: none;
  }
}
@media (max-width: 1600px) {
  .section {
    padding: 6.25rem 5rem;
    gap: 5rem;
  }
  .section.services .title {
    padding: 0 5rem;
  }
}
@media (max-width: 1440px) {
  .section {
    padding: 5rem 3.75rem;
    gap: 3.75rem;
    height: unset;
  }
  .section.services .title {
    padding: 0 3.75rem;
  }
  .section div.title p {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 4.375rem;
    letter-spacing: -0.140625rem;
  }
}
@media (max-width: 1280px) {
  .section {
    padding: 3.75rem 1.875rem;
    gap: 1.875rem;
  }
  .section.services .title {
    padding: 0 1.875rem;
  }
  .section div.title p {
    font-size: 3rem;
    font-weight: 700;
    line-height: 3.625rem;
    letter-spacing: -0.1125rem;
  }
}
@media (max-width: 1020px) {
  .section {
    padding: 40px 16px;
  }
  .section.services .title {
    padding: 0 16px;
  }
  .section div.title p {
    font-size: 3rem;
    font-weight: 700;
    line-height: 3.625rem;
    letter-spacing: -0.1125rem;
  }
}
@media only screen and (max-width: 768px) {
  .section {
    gap: 16px;
  }
  .section div.title p {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
    letter-spacing: -0.05625rem;
  }
  .section div.title button.more span {
    display: none;
  }
}

@media (max-width: 1280px) {
  .before-hero {
    display: none;
  }

  .pc-section {
    display: none;
  }

  /* mobile hero */
  .mobile-section-hero {
    display: block;
  }
  .mobile-section-hero .mobile-motion {
    position: relative;
    text-align: center !important;
  }
  .mobile-section-hero .mobile-motion .flex-center {
    margin-top: 2rem;
    gap: 10px;
    height: 236px;
    color: #111111;
  }
  .mobile-section-hero .mobile-motion .flex-center .title-1 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: -0.0421875rem;
  }
  .mobile-section-hero .mobile-motion .flex-center .title-1 br {
    display: none;
  }
  .mobile-section-hero .mobile-motion .flex-center .title-2 {
    font-size: 3.125rem;
    font-weight: 700;
    line-height: 3.75rem;
    letter-spacing: -0.1171875rem;
  }
  .mobile-section-hero .mobile-motion .flex-center .gradation {
    background: linear-gradient(90deg, #000000 14%, #C52E25 55%, #FF3B30 60%, #FFAFAA 63%, #FF3B30 67%, #541310 73%, #000000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .mobile-section-hero .mobile-hero-container {
    position: relative;
    overflow: hidden;
  }
  .mobile-section-hero .mobile-hero-container .mobile-hero-slide-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  .mobile-section-hero .mobile-hero-container .mobile-hero-content {
    position: absolute;
    width: 100%;
    top: 25%;
    text-align: center;
    color: white;
    transition: all 0.5s ease;
    z-index: 10;
    padding: 1rem;
  }
  .mobile-section-hero .mobile-hero-container .mobile-hero-content p {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.675px;
    margin-bottom: 24px;
    margin-top: 10px;
  }
  .mobile-section-hero .mobile-hero-container .mobile-hero-content button {
    width: 130px;
    height: 40px;
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: -0.45px;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
  }
  .mobile-section-hero .swiper-pagination {
    position: absolute;
    bottom: 1.5rem !important;
    left: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .mobile-section-hero .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 3px;
    background-color: #FFFFFF50;
    border-radius: 0;
    padding: 0;
    opacity: 1;
  }
  .mobile-section-hero .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #D52629;
  }
}
@media (max-width: 1020px) {
  /* mobile hero */
  .mobile-section-hero .mobile-motion .flex-center {
    margin-top: 3rem;
    height: 220px;
  }
  .mobile-section-hero .mobile-motion .flex-center .title-1 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.625rem;
    letter-spacing: -0.0375rem;
  }
  .mobile-section-hero .mobile-motion .flex-center .title-2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: -1.2px;
  }
  .mobile-section-hero .mobile-hero-container .mobile-hero-slide-img {
    height: 390px;
  }

  /* mobile section */
  .mobile-section {
    display: block;
    padding: 40px 16px;
    /* mobile soulution */
    /* mobile achievements */
  }
  .mobile-section .title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111111;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin-bottom: 1.875rem;
  }
  .mobile-section .title-row .heading-4 {
    margin: 0;
    font-weight: bold;
    font-size: 3rem;
    line-height: 3.625rem;
  }
  .mobile-section .title-row button.more {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5rem;
    letter-spacing: -0.046875rem;
    border-radius: 0.5rem;
    color: #111111;
  }
  .mobile-section .title-row button.more i {
    font-size: 1.125rem;
    transition: color 0.3s ease;
  }
  .mobile-section .title-row button.more:hover i {
    color: #D52629;
  }
  .mobile-section .title-row button.more a {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .mobile-section .mobile-solution {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .mobile-section .mobile-solution-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 1rem;
  }
  .mobile-section .mobile-solution-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  .mobile-section .mobile-solution-card .text-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    padding: 0px 24px;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }
  .mobile-section .mobile-solution-card .text-box a {
    color: inherit;
  }
  .mobile-section .mobile-solution-card .text-box .title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: -0.0421875rem;
  }
  .mobile-section .mobile-solution-card .text-box .sub {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5rem;
    letter-spacing: -0.0328125rem;
    margin-bottom: 8px;
  }
  .mobile-section .mobile-solution-card .text-box .description {
    min-height: 40px;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.375rem;
    letter-spacing: -0.028125rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-section.achievements .card.type-01 {
    display: flex;
    gap: 10px;
    flex-direction: column;
    width: 100%;
    height: 300px;
    border: 1px solid #E6E6F3;
    border-radius: 1rem;
    padding: 20px;
    color: #111111;
  }
  .mobile-section.achievements .card.type-01 .title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    letter-spacing: -0.0375rem;
  }
  .mobile-section.achievements .card.type-01 .subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: -0.046875rem;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .mobile-section.achievements .card.type-01 .tags span {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 0.875rem;
    letter-spacing: -0.028125rem;
    color: #D52629;
    background-color: #D9D9D920;
    padding: 4px 8px;
    border-radius: 0.25rem;
  }
  .mobile-section.achievements .card.type-01 .description {
    color: #666666;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.375rem;
    letter-spacing: -0.028125rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-section.achievements .mobile-achievements-swiper-container {
    position: relative;
  }
  .mobile-section.achievements .mobile-achievements-swiper-container .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: auto !important;
  }
  .mobile-section.achievements .mobile-achievements-swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 2px;
    background-color: #e6e6f3;
    border-radius: 0;
    padding: 0;
    opacity: 1;
  }
  .mobile-section.achievements .mobile-achievements-swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    margin: 0 !important;
    background: #D52629;
    width: 36px;
  }
  .mobile-section.achievements .mobile-achievements-swiper-container .swiper-button-prev,
.mobile-section.achievements .mobile-achievements-swiper-container .swiper-button-next {
    position: relative;
    width: 2.4rem;
    height: 2.4rem;
    top: auto;
    opacity: 1;
  }
  .mobile-section.achievements .mobile-achievements-swiper-container .swiper-custom-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    flex-wrap: wrap;
  }
  .mobile-section.achievements .mobile-achievements-swiper-container .swiper-custom-controls .swiper-buttons {
    display: flex;
    position: absolute;
    right: 20px;
    gap: 20px;
  }
  .mobile-section.achievements .mobile-achievements-swiper-container .swiper-custom-controls .swiper-buttons .swiper-button-prev,
.mobile-section.achievements .mobile-achievements-swiper-container .swiper-custom-controls .swiper-buttons .swiper-button-next {
    position: relative;
    width: 2.4rem;
    height: 2.4rem;
    opacity: 1;
  }
  .mobile-section.achievements .mobile-achievements-swiper-container .swiper-custom-controls .swiper-buttons .swiper-button-prev::after,
.mobile-section.achievements .mobile-achievements-swiper-container .swiper-custom-controls .swiper-buttons .swiper-button-next::after {
    font-size: 20px;
    color: black;
    font-weight: 590;
  }
  .mobile-section.achievements .mobile-achievements-swiper-container .swiper-custom-controls .swiper-buttons .swiper-button-prev.swiper-button-disabled::after,
.mobile-section.achievements .mobile-achievements-swiper-container .swiper-custom-controls .swiper-buttons .swiper-button-next.swiper-button-disabled::after {
    font-size: 20px;
    color: #b1b1b1;
  }
}
@media only screen and (max-width: 768px) {
  .mobile-section .title-row {
    margin-bottom: 1rem;
  }
  .mobile-section .title-row .heading-4 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .mobile-section .title-row button.more span {
    display: none;
  }
  .mobile-section .mobile-solution-card img {
    height: 190px;
  }

  .mobile-section-hero .mobile-motion {
    margin-top: 3.125rem;
  }
  .mobile-section-hero .mobile-motion .flex-center {
    margin-top: 0;
    height: unset;
    padding: 2.5rem 0;
  }
  .mobile-section-hero .mobile-motion .flex-center .title-1 br {
    display: unset;
  }
  .mobile-section-hero .mobile-motion .flex-center .title-2 {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 2.5rem;
    letter-spacing: -0.0703125rem;
  }
  .mobile-section-hero .mobile-hero-container .mobile-hero-slide-img {
    height: 378px;
  }
}
@media only screen and (min-width: 481px) {
  .only-mobile {
    display: none;
  }
}
@media (max-width: 1020px) {
  .only-pc {
    display: none;
  }
}
@keyframes slideUpFadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-50px);
  }
}
.slide-up-fade-out {
  animation: slideUpFadeOut 0.5s ease forwards;
}

/* footer  -------------------------------------------------------------- */
.footer {
  background-color: #282828;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: -0.0375rem;
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 68px;
  width: 100%;
  max-width: 1440px;
  margin: 40px;
}
.footer .container .categories {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
}
.footer .container .categories .item {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.046875rem;
}
.footer .container .categories ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .container .categories ul li a {
  color: #FFFFFF60;
  transition: color 0.2s ease;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.0375rem;
}
.footer .container .categories ul li a:hover {
  color: #ffffff;
}
.footer .container .privacy-policy {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.footer .container .privacy-policy a {
  color: #ffffff;
}
.footer .divider {
  width: 100%;
  height: 1px;
  background-color: #FFFFFF15;
}
.footer .company {
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #999999;
  margin: 40px 0px;
}
.footer .company .info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .company .info .sdcit {
  display: none;
}
.footer .company .info ul {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
@media (max-width: 1600px) {
  .footer {
    padding: 40px 60px;
    gap: 24px;
  }
  .footer .container {
    margin: 0;
  }
  .footer .container .categories .item {
    font-size: 1.125rem;
  }
  .footer .container .categories ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer .container .categories ul li a {
    color: #FFFFFF60;
    font-weight: 400;
    transition: color 0.2s ease;
  }
  .footer .container .categories ul li a:hover {
    color: #ffffff;
  }
  .footer .company {
    margin: 0;
    flex-direction: column;
    gap: 30px;
  }
  .footer .company .info address .sdcit {
    display: block;
  }
  .footer .company .info ul {
    flex-wrap: wrap;
    gap: 0;
    column-gap: 16px;
  }
  .footer .company .info ul li {
    width: max-content;
  }
}
@media (max-width: 1280px) {
  .footer {
    padding: 40px 30px;
    gap: 24px;
    font-size: 14px;
  }
  .footer .container {
    margin: 0;
  }
  .footer .container .categories {
    display: none;
  }
  .footer .container .privacy-policy {
    font-size: 1.0625rem;
  }
  .footer .company {
    margin: 0;
    flex-direction: column;
    gap: 30px;
  }
  .footer .company .info address .sdcit {
    display: block;
  }
  .footer .company .info ul {
    flex-wrap: wrap;
    gap: 0;
    column-gap: 16px;
  }
  .footer .company .info ul li {
    width: max-content;
  }
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 40px 16px;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.375rem;
    letter-spacing: -0.028125rem;
  }
  .footer .container .privacy-policy {
    font-size: 0.875rem;
  }
  .footer .divider {
    display: none;
  }
}

aside.top-area {
  height: 364px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 150px;
}
aside.top-area div.inner {
  width: 1280px;
  color: #111111;
}
aside.top-area div.inner div.location,
aside.top-area div.inner h3,
aside.top-area div.inner .p-3,
aside.top-area div.inner .anchor_list {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  transition-property: transform, opacity;
  transition-delay: 0.2s;
}
aside.top-area div.inner h3 {
  transition-delay: 0.5s;
}
aside.top-area div.inner .p-3 {
  min-height: 80px;
  transition-delay: 0.7s;
  font-size: 1.375rem;
  line-height: 1.5;
}
aside.top-area div.inner div.location {
  margin-bottom: 20px;
}
aside.top-area div.inner div.location ul.flex-row {
  gap: 15px;
  align-items: center;
}
aside.top-area div.inner div.location ul.flex-row .divider {
  width: 1px;
  height: 8px;
  background-color: #999999;
}
aside.top-area div.inner div.location ul.flex-row li {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.0375rem;
}
aside.top-area div.inner div.location ul.flex-row li:first-child a {
  color: #666666;
}
aside.top-area div.inner h3 {
  font-size: 4.375rem;
  font-weight: 700;
  line-height: 5rem;
  letter-spacing: -0.1640625rem;
  margin-bottom: 30px;
}
aside.top-area.active div.inner div.location,
aside.top-area.active div.inner h3,
aside.top-area.active div.inner .p-3,
aside.top-area.active div.inner .anchor_list {
  opacity: 1;
  transform: translateY(0px);
}
@media (max-width: 1440px) {
  aside.top-area {
    padding: 0 16px;
    margin-top: 100px;
  }
  aside.top-area .outer {
    padding: 0;
  }
  aside.top-area > .outer > div.inner h3,
aside.top-area div.inner h3 {
    font-size: 3.75rem;
  }
  aside.top-area > .outer > div.inner .p-3,
aside.top-area div.inner .p-3 {
    font-size: 20px;
  }
}
@media (max-width: 1280px) {
  aside.top-area > .outer > div.inner .p-3 br,
aside.top-area div.inner .p-3 br {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  aside.top-area {
    margin-top: 0;
  }
  aside.top-area > .outer > div.inner,
aside.top-area div.inner {
    margin: 100px 0 30px;
    width: 100%;
  }
  aside.top-area > .outer > div.inner .location ul li,
aside.top-area div.inner .location ul li {
    font-size: 0.875rem;
  }
  aside.top-area > .outer > div.inner h3,
aside.top-area div.inner h3 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 3rem;
    letter-spacing: -0.09375rem;
  }
  aside.top-area > .outer > div.inner .p-3,
aside.top-area div.inner .p-3 {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 480px) {
  aside.top-area > .outer > div.inner div.location,
aside.top-area div.inner div.location {
    margin-bottom: 10px;
  }
  aside.top-area > .outer > div.inner h3,
aside.top-area div.inner h3 {
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 2.5rem;
    letter-spacing: -0.0703125rem;
    margin-bottom: 16px;
  }
  aside.top-area > .outer > div.inner h3 span,
aside.top-area div.inner h3 span {
    display: none;
  }
}

/* 상단 배너 없는 스타일 */
.visual-none {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
}
.visual-none aside.top-area {
  position: relative;
  width: fit-content;
  margin-top: 150px;
  display: revert;
}
.visual-none aside.top-area .inner {
  width: fit-content;
  position: fixed;
  z-index: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.visual-none aside.top-area .inner.hide {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}
.visual-none aside.top-area .inner:not(.hide) {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.visual-none #content {
  width: 100%;
  max-width: 640px;
}
.visual-none #content .sub-page .sub-contents {
  margin: 150px 0;
}
@media (max-width: 1440px) {
  .visual-none aside.top-area {
    margin-top: 100px;
  }
  .visual-none #content .sub-page .sub-contents {
    margin: 100px 0;
  }
}
@media (max-width: 1020px) {
  .visual-none {
    display: block;
  }
  .visual-none aside.top-area {
    width: 100%;
    height: auto;
  }
  .visual-none aside.top-area .inner {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto;
    width: 100%;
  }
  .visual-none #content {
    min-width: 100%;
  }
  .visual-none #content .sub-page .sub-contents {
    margin: 40px 0;
  }
}
@media only screen and (max-width: 768px) {
  .visual-none aside.top-area {
    display: flex;
    height: auto;
    margin-top: 0;
  }
  .visual-none #content .sub-page .sub-contents {
    margin: 0 0 40px;
  }
}

.sticky-wrapper {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sticky-wrapper {
    display: block;
    padding: 40px 16px 20px;
  }
  .sticky-wrapper .custom-select-wrapper {
    position: relative;
    width: 100%;
    background: #fff;
  }
  .sticky-wrapper .custom-select-wrapper .custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #D52629;
    color: #fff;
    padding: 11px 24px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9375rem;
  }
  .sticky-wrapper .custom-select-wrapper .custom-select-trigger .i-arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  .sticky-wrapper .custom-select-wrapper.open .custom-select-trigger .i-arrow {
    transform: rotate(-135deg);
  }
  .sticky-wrapper .custom-select-wrapper .custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #D5D7DA;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    z-index: 999;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease, transform 0.3s ease;
  }
  .sticky-wrapper .custom-select-wrapper .custom-options .custom-option {
    padding: 12px 16px;
    font-size: 0.9375rem;
    color: #111111;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .sticky-wrapper .custom-select-wrapper .custom-options .custom-option:hover {
    background: #F5F5F5;
  }
  .sticky-wrapper .custom-select-wrapper .custom-options .custom-option.selected {
    background: #FAFAFA;
    font-weight: 600;
  }
  .sticky-wrapper .custom-select-wrapper.open .custom-options {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .sticky-wrapper .custom-select-wrapper.sticky-fixed {
    position: fixed;
    top: 100px;
    left: 16px;
    right: 16px;
    z-index: 1000;
    background: #fff;
    padding: 0;
    width: auto;
  }
  .sticky-wrapper .custom-select-wrapper.sticky-fixed .custom-options {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .sticky-wrapper .custom-select-wrapper.sticky-fixed {
    top: 60px;
  }
}

.sticky-wrapper.force-sticky {
  /* 아무 것도 안 해도 됨. 그냥 DOM 재계산 유도용 클래스 */
}

.sub-page {
  position: relative;
}
.sub-page .banner {
  position: relative;
  background: no-repeat center;
  background-size: cover;
  background-attachment: fixed !important;
  background-image: url(../../images/main/project-case01.png);
  padding: 0;
  padding-top: 420px;
}
.sub-page .banner.service01 {
  background-image: url(../../images/main/service01.png);
}
.sub-page .banner.service02 {
  background-image: url(../../images/main/service02.png);
}
.sub-page .banner.service03 {
  background-image: url(../../images/main/service03.png);
}
.sub-page .banner.service04 {
  background-image: url(../../images/main/service04.png);
}
.sub-page .banner.hyper-automation {
  background-image: url(../../images/main/hyper-automation.png);
}
.sub-page .banner.rpa {
  background-image: url(../../images/main/rpa.png);
}
.sub-page .banner.bi {
  background-image: url(../../images/main/bi.png);
}
.sub-page .banner.itsm {
  background-image: url(../../images/main/itsm.png);
}
.sub-page .banner.history {
  background-image: url(../../images/main/project-history.png);
}
.sub-page .banner.client {
  background-image: url(../../images/main/client.png);
}
.sub-page .banner.recruit {
  background-image: url(../../images/main/recruit.png);
}
.sub-page .banner.benefit {
  background-image: url(../../images/main/benefit.png);
}
.sub-page .banner.company-news {
  background-image: url(../../images/main/company-news.png);
}
.sub-page .banner.about {
  background-image: url(../../images/main/history-view.png);
}
@media only screen and (max-width: 480px) {
  .sub-page .banner {
    background-size: 260%;
    background-position: center top;
    top: 0;
    padding-top: 200px;
  }
}
.sub-page .sub-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  margin: 100px 0;
}
.sub-page .sub-contents .filter {
  width: 100%;
  max-width: 1280px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
.sub-page .sub-contents .filter ul {
  align-items: center;
  gap: 30px;
}
.sub-page .sub-contents .filter ul li {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5rem;
  letter-spacing: -0.03984375rem;
  position: relative;
  align-content: center;
  height: 45px;
  width: max-content;
  color: #111111;
}
.sub-page .sub-contents .filter ul li a {
  height: 100%;
}
.sub-page .sub-contents .filter ul li.active {
  color: #D52629;
}
.sub-page .sub-contents .filter ul li span {
  position: relative;
  color: #666666;
}
.sub-page .sub-contents .filter ul .divider {
  width: 1px;
  height: 20px;
  background-color: #E6E6f3;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents .filter ul {
    gap: 1rem;
  }
  .sub-page .sub-contents .filter ul .divider {
    height: 10px;
  }
}
.sub-page .sub-contents .filter .categories label {
  display: flex;
  align-items: flex-start;
}
.sub-page .sub-contents .filter .categories .category-name {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.2rem;
  letter-spacing: -0.03984375rem;
  width: max-content;
  height: 2.8125rem;
  display: inline-block;
  color: #111111;
  position: relative;
  align-content: center;
  cursor: pointer;
}
.sub-page .sub-contents .filter .categories .category-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #D52629;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.sub-page .sub-contents .filter .categories .category-cnt {
  position: relative;
  top: 8px;
  left: 5px;
  font-size: 12px;
  color: #666666;
}
.sub-page .sub-contents .filter .categories input[type=checkbox]:not(:checked):hover + .category-name,
.sub-page .sub-contents .filter .categories input[type=checkbox]:checked + .category-name {
  color: #D52629;
}
.sub-page .sub-contents .filter .categories input[type=checkbox]:checked + .category-name::after {
  transform: scaleX(1);
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents .filter .categories .category-name {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1rem;
    letter-spacing: -0.03046875rem;
    height: 1.75rem;
  }
  .sub-page .sub-contents .filter .categories .category-cnt {
    font-size: 0.6875rem;
  }
}
.sub-page .sub-contents .filter .total {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: #111111;
  letter-spacing: -0.85px;
}
.sub-page .sub-contents .filter .total .num {
  color: #D52629;
}
.sub-page .sub-contents .filter .search {
  position: relative;
  display: flex;
  align-items: center;
  height: 60px;
  min-width: 400px;
}
.sub-page .sub-contents .filter .search input {
  padding: 12px 30px 12px 20px;
  background-color: #FBFBFB;
  border: none;
  color: #333333;
  width: 100%;
  height: 100%;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.0421875rem;
  border-radius: 0.5rem;
}
.sub-page .sub-contents .filter .search input::placeholder {
  color: #666666;
}
.sub-page .sub-contents .filter .search button {
  position: absolute;
  width: 48px;
  height: 100%;
  right: 0;
  padding-right: 12px;
}
.sub-page .sub-contents .filter .search button i {
  color: #666666;
  font-size: 20px;
}
.sub-page .sub-contents .tags {
  color: #707070;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.0328125rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 4px;
}
.sub-page .sub-contents .tags span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: max-content;
  border: 1px solid #E4E4E4;
  border-radius: 0.25rem;
  padding: 4px 10px;
}
.sub-page .sub-contents .tags span::before {
  content: "#";
}
.sub-page .sub-contents .tab-container {
  max-width: 1280px;
}
.sub-page .sub-contents .tab-container .tabs {
  flex-shrink: 0;
  margin-bottom: 30px;
  display: flex;
  gap: 8px;
}
.sub-page .sub-contents .tab-container .tabs .tab {
  border: 1px solid #E6E6F3;
  border-radius: 5px;
  color: #999;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1rem;
  letter-spacing: -0.0328125rem;
  padding: 8px 20px;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.sub-page .sub-contents .tab-container .tabs .tab.active {
  background-color: #D52629;
  border: 1px solid #D52629;
  font-weight: 600;
  color: #ffffff;
}
.sub-page .sub-contents .tab-container .tab-contents .tab-content {
  display: none;
}
.sub-page .sub-contents .tab-container .tab-contents .tab-content.active {
  display: block;
}
.sub-page .sub-contents.gray {
  background-color: #FBFBFB;
  margin: 0;
  padding: 100px 0;
}
.sub-page .sub-contents.gray .outer {
  max-width: 1280px;
}
.sub-page .sub-contents.gray .outer .inner {
  grid-template-columns: repeat(2, 1fr);
}
.sub-page .sub-contents.gray .outer .inner .card {
  background: #ffffff;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 30px 40px;
  transition: box-shadow 1s ease, border-color 1s ease;
  box-shadow: none;
  box-sizing: border-box;
}
.sub-page .sub-contents.gray .outer .inner .card .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.sub-page .sub-contents.gray .outer .inner .card .info .num {
  color: #D52629;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.625rem;
  letter-spacing: -0.0375rem;
  margin-bottom: 15px;
}
.sub-page .sub-contents.gray .outer .inner .card .info .item {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.125rem;
  letter-spacing: -0.05625rem;
  margin-bottom: 20px;
}
.sub-page .sub-contents.gray .outer .inner .card .info ul li {
  position: relative;
  padding-left: 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: -0.0375rem;
  color: #666;
}
.sub-page .sub-contents.gray .outer .inner .card .info ul li::before {
  position: absolute;
  left: 0;
  top: -2px;
  content: "•";
  margin: 0;
  font-size: 1.25rem;
}
.sub-page .sub-contents.gray .outer .inner .card img {
  width: 70px;
}
.sub-page .sub-contents.gray .outer .inner .card.active {
  border-color: #D52629;
  box-shadow: 0 0 0 1px rgba(213, 38, 41, 0.6);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.sub-page .sub-contents .outer {
  min-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  color: #111111;
  /* 특장점, 적용 분야 */
}
.sub-page .sub-contents .outer h4 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.625rem;
  letter-spacing: -0.1125rem;
}
.sub-page .sub-contents .outer .inner {
  max-width: 1280px;
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  min-height: 250px;
}
.sub-page .sub-contents .outer .inner .no-data {
  width: 100%;
  position: absolute;
  border: 1px solid #E6E6F3;
  border-radius: 1rem;
  height: 250px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.sub-page .sub-contents .outer .inner .no-data p {
  color: #999;
}
.sub-page .sub-contents .outer .inner .card {
  display: flex;
  gap: 10px;
  flex-direction: column;
  width: 100%;
  border: 1px solid #E6E6F3;
  border-radius: 1rem;
  padding: 40px 30px;
}
.sub-page .sub-contents .outer .inner .card.type-01 {
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.sub-page .sub-contents .outer .inner .card.type-01 .img-wrap {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #E6E6F3;
  border-radius: 0.25rem;
}
.sub-page .sub-contents .outer .inner .card.type-01 .img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  transform-origin: center center;
  will-change: transform;
}
.sub-page .sub-contents .outer .inner .card.type-01 .client {
  font-weight: 500;
  height: 120px;
}
.sub-page .sub-contents .outer .inner .card.type-01 .client img {
  height: 45px;
  width: auto;
  vertical-align: middle;
  object-fit: contain;
  max-width: 12.5rem;
}
.sub-page .sub-contents .outer .inner .card.type-01 .company {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1rem;
  letter-spacing: -0.03046875rem;
  color: #D52629;
}
.sub-page .sub-contents .outer .inner .card.type-01 .title {
  transition: color 0.3s ease;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.75rem;
  letter-spacing: -0.0515625rem;
  color: #111111;
  margin-bottom: 10px;
}
.sub-page .sub-contents .outer .inner .card.type-01 .description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: -0.0375rem;
  color: #666666;
  height: 50px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 20px;
}
.sub-page .sub-contents .outer .inner .card.type-01 .extras {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.sub-page .sub-contents .outer .inner .card.type-01 .extras button {
  width: 24px;
  height: 24px;
  background-color: #D9D9D9;
  transition: background-color 0.3s ease;
  border-radius: 2px;
}
.sub-page .sub-contents .outer .inner .card.type-01 .extras button i {
  color: #ffffff;
  font-size: 21px;
}
.sub-page .sub-contents .outer .inner .card.type-01 .date {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.0375rem;
  color: #666666;
}
.sub-page .sub-contents .outer .inner .card.type-01:hover .img-wrap img {
  transform: scale(1.05);
}
.sub-page .sub-contents .outer .inner .card.type-01:hover .title {
  color: #D52629;
}
.sub-page .sub-contents .outer .inner .card.type-01:hover button {
  background-color: #D52629;
}
.sub-page .sub-contents .outer.group p.description {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.05625rem;
  margin-bottom: 30px;
}
.sub-page .sub-contents .outer.group .inner {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1280px;
}
.sub-page .sub-contents .outer.group .inner .card {
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
.sub-page .sub-contents .outer.group .inner .card .item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sub-page .sub-contents .outer.group .inner .card .item p {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.0609375rem;
}
.sub-page .sub-contents .outer.group .inner .card .item em {
  color: #D52629;
}
.sub-page .sub-contents .outer.group .inner .card .item span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: -0.0375rem;
  color: #666;
}
.sub-page .sub-contents .outer.group .inner .card img {
  flex: 0 0 60px;
}
.sub-page .sub-contents .outer.group.effect-group .inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.sub-page .sub-contents .outer.group.effect-group .inner .card {
  grid-column: span 2;
}
.sub-page .sub-contents .outer.group.effect-group .inner .card:nth-child(4),
.sub-page .sub-contents .outer.group.effect-group .inner .card:nth-child(5) {
  grid-column: span 3;
}
@media (max-width: 1280px) {
  .sub-page .sub-contents .outer.group.effect-group .inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .sub-page .sub-contents .outer.group.effect-group .inner .card,
.sub-page .sub-contents .outer.group.effect-group .inner .card:nth-child(4) {
    grid-column: span 1;
  }
  .sub-page .sub-contents .outer.group.effect-group .inner .card:nth-child(5) {
    grid-column: 1/-1;
  }
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents .outer.group.effect-group .inner {
    grid-template-columns: 1fr;
  }
  .sub-page .sub-contents .outer.group.effect-group .inner .card {
    grid-column: auto;
  }
}
.sub-page .sub-contents .outer:not(.group) div > .inner .card {
  gap: 20px;
  cursor: pointer;
}
.sub-page .sub-contents .outer:not(.group) div > .inner .card .client {
  height: 80px;
}
.sub-page .sub-contents .outer:not(.group) div > .inner .card .client img {
  height: 45px;
  width: auto;
  vertical-align: middle;
  object-fit: contain;
  max-width: -webkit-fill-available;
}
.sub-page .sub-contents .outer:not(.group) div > .inner .card .title {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.0609375rem;
  transition: color 0.3s ease;
  min-height: 70px;
}
.sub-page .sub-contents .outer:not(.group) div > .inner .card .description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.0375rem;
  color: #666666;
  min-height: 50px;
}
.sub-page .sub-contents .outer:not(.group) div > .inner .card .extras {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.sub-page .sub-contents .outer:not(.group) div > .inner .card .extras button {
  width: 24px;
  height: 24px;
  background-color: #D9D9D9;
  transition: background-color 0.3s ease;
  border-radius: 2px;
}
.sub-page .sub-contents .outer:not(.group) div > .inner .card .extras button i {
  font-size: 21px;
  color: #ffffff;
}
.sub-page .sub-contents .outer:not(.group) div > .inner .card:hover .title {
  color: #D52629;
}
.sub-page .sub-contents .outer:not(.group) div > .inner .card:hover button {
  background-color: #D52629;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents .outer:not(.group) div > .inner .card {
    gap: 16px;
  }
  .sub-page .sub-contents .outer:not(.group) div > .inner .card .client {
    height: 60px;
  }
  .sub-page .sub-contents .outer:not(.group) div > .inner .card .client img {
    height: 30px;
  }
  .sub-page .sub-contents .outer:not(.group) div > .inner .card .title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: -0.0421875rem;
  }
  .sub-page .sub-contents .outer:not(.group) div > .inner .card .description {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
@media (max-width: 1440px) {
  .sub-page .sub-contents {
    padding: 40px 16px;
    margin: 40px 0;
  }
  .sub-page .sub-contents.gray {
    padding: 40px 16px;
  }
  .sub-page .sub-contents .filter {
    flex-direction: column-reverse;
  }
  .sub-page .sub-contents .filter .categories ul {
    overflow-x: auto;
    flex-direction: row;
    overflow-y: hidden;
  }
  .sub-page .sub-contents .filter .categories ul li {
    width: max-content;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  .sub-page .sub-contents .filter .search {
    min-width: unset;
  }
  .sub-page .sub-contents .outer {
    min-width: unset;
    width: 100%;
    gap: 20px;
    max-width: 1280px;
  }
  .sub-page .sub-contents .outer .inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1280px) {
  .sub-page .sub-contents .outer h4 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents {
    gap: 40px;
    margin: 0;
  }
  .sub-page .sub-contents .filter .search {
    height: 40px;
  }
  .sub-page .sub-contents .filter .search input {
    font-size: 0.875rem;
  }
  .sub-page .sub-contents .filter .categories ul li {
    font-size: 0.8125rem;
  }
  .sub-page .sub-contents .filter .categories ul li span {
    font-size: 0.6875rem;
  }
  .sub-page .sub-contents .outer h4 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.875rem;
    letter-spacing: -0.046875rem;
  }
  .sub-page .sub-contents .outer h4 br {
    display: none;
  }
  .sub-page .sub-contents .outer.group p.description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.6px;
    margin-bottom: 16px;
  }
  .sub-page .sub-contents .outer.group .inner {
    grid-template-columns: repeat(1, 1fr);
  }
  .sub-page .sub-contents .outer.group .inner .card .item p {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: -0.0421875rem;
  }
  .sub-page .sub-contents .outer.group .inner .card .item span {
    color: #666666;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.0328125rem;
  }
  .sub-page .sub-contents .outer.group .inner .card .item span br {
    display: none;
  }
  .sub-page .sub-contents .outer.group .inner .card img {
    flex: 0 0 40px;
  }
  .sub-page .sub-contents .outer .inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .sub-page .sub-contents .outer .inner .card {
    padding: 24px;
  }
  .sub-page .sub-contents .outer .inner .card.type-01 .title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5rem;
    letter-spacing: -0.0421875rem;
    margin-bottom: unset;
  }
  .sub-page .sub-contents .outer .inner .card.type-01 .description {
    font-size: 0.875rem;
    margin-bottom: unset;
    line-height: 1.5;
    height: 2.8125rem;
  }
  .sub-page .sub-contents .outer .inner .card.type-01 .extras span {
    font-size: 0.75rem;
  }
  .sub-page .sub-contents .outer .inner .card.type-01 .extras button {
    width: 21px;
    height: 21px;
  }
  .sub-page .sub-contents .outer .inner .card.type-01 .date {
    font-size: 0.75rem;
  }
  .sub-page .sub-contents.gray {
    background: #ffffff;
    padding: 40px 16px 0px 16px;
  }
  .sub-page .sub-contents.gray .outer .inner {
    grid-template-columns: repeat(1, 1fr);
  }
  .sub-page .sub-contents.gray .outer .inner .card {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 24px;
  }
  .sub-page .sub-contents.gray .outer .inner .card .info .num {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.525px;
    margin-bottom: 8px;
  }
  .sub-page .sub-contents.gray .outer .inner .card .info .item {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.675px;
    margin-bottom: 16px;
  }
  .sub-page .sub-contents.gray .outer .inner .card .info ul li {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.0328125rem;
  }
  .sub-page .sub-contents.gray .outer .inner .card .info ul li::before {
    font-size: 1.125rem;
    line-height: normal;
  }
  .sub-page .sub-contents.gray .outer .inner .card img {
    width: 40px;
  }
}

.sub-page {
  background-color: #ffffff;
}
.sub-page .sub-contents {
  /* 전문 솔루션 */
  /* 구축실적 - 주요구축사례 */
  /* 구축실적 - 구축실적 */
  /* 구축실적 - 고객사 */
  /* 인재채용 - 채용안내 */
  /* 인재채용 - 복리후생 */
  /* PR - SD CIT life */
  /* Contact Us */
}
.sub-page .sub-contents.service {
  gap: 100px;
}
.sub-page .sub-contents.service .outer.group .card {
  padding: 40px 30px;
}
.sub-page .sub-contents.service .outer.group .service-process .inner {
  gap: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: unset;
}
.sub-page .sub-contents.service .outer.group .service-process .inner > * {
  opacity: 0;
  transform: translateX(-30px);
}
.sub-page .sub-contents.service .outer.group .service-process .inner > *.visible {
  animation: slideInRight 0.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.sub-page .sub-contents.service .outer.group .service-process .inner > img.visible {
  animation-name: slideInRight, arrowFloatRight;
  animation-duration: 0.5s, 1s;
  animation-delay: 0s, 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out, ease-in-out;
}
.sub-page .sub-contents.service .outer.group .service-process .inner .card {
  flex-direction: column;
  background: #FBFBFB;
  align-items: flex-start;
  gap: 5px;
}
.sub-page .sub-contents.service .outer.group .service-process .inner .card strong {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.125rem;
  letter-spacing: -0.05625rem;
}
.sub-page .sub-contents.service .outer.group .service-process .inner .card p {
  color: #666;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.0375rem;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.service {
    gap: 40px;
    margin: 0;
  }
  .sub-page .sub-contents.service .outer.group .card {
    padding: 24px;
  }
  .sub-page .sub-contents.service .outer.group .service-process .inner {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  .sub-page .sub-contents.service .outer.group .service-process .inner > * {
    transform: translateY(-30px);
  }
  .sub-page .sub-contents.service .outer.group .service-process .inner > *.visible {
    animation: slideInDown 0.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }
  .sub-page .sub-contents.service .outer.group .service-process .inner > img {
    transform: translateY(-30px) rotate(90deg);
    width: 16px;
    display: block;
  }
  .sub-page .sub-contents.service .outer.group .service-process .inner > img.visible {
    animation: slideInDownArrow 0.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }
  .sub-page .sub-contents.service .outer.group .service-process .inner .card {
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
  }
  .sub-page .sub-contents.service .outer.group .service-process .inner .card strong {
    width: 80px;
    font-size: 1.125rem;
  }
  .sub-page .sub-contents.service .outer.group .service-process .inner .card p {
    margin-bottom: 0;
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInDownArrow {
  from {
    opacity: 0;
    transform: translateY(-30px) rotate(90deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes arrowFloat {
  0% {
    transform: translateX(0) rotate(90deg);
  }
  50% {
    transform: translateX(8px) rotate(90deg);
  }
  100% {
    transform: translateX(0) rotate(90deg);
  }
}
.sub-page .sub-contents.erp {
  opacity: 1;
  transform: unset !important;
  transition: unset !important;
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 150px 0;
  background-color: #ffffff;
}
.sub-page .sub-contents.erp .outer.group.odd .inner {
  grid-template-columns: repeat(3, 1fr);
}
.sub-page .sub-contents.erp .outer.group.odd .inner .card {
  flex-direction: column;
  align-items: flex-start;
}
.sub-page .sub-contents.erp .outer .tab-contents {
  max-width: 1050px;
}
.sub-page .sub-contents.erp .outer .tab-contents.swiper-overflow {
  max-width: 100% !important;
  width: 100% !important;
}
.sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature .item {
  background: #F3F6F6;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 40px 0 55px 0;
  flex: 1 0 1050px;
  border-radius: 1rem;
}
.swiper-container.swiper-overflow .sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature .item {
  flex: 1 0 100% !important;
  max-width: 100% !important;
}
.sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature .item .text-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-start;
  align-items: center;
  min-height: 4.0625rem;
}
.sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature .item .text-wrap .title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.125rem;
  letter-spacing: -0.05625rem;
  transition: color 0.3s ease;
}
.sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature .item .text-wrap p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: -0.0375rem;
  transition: color 0.3s ease;
}
.sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature .item img {
  width: 100%;
  max-width: 702px;
}
.sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature .item .img-wrap {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature .item .img-wrap img {
  max-width: 179px;
}
.sub-page .sub-contents.erp .outer .feature img {
  width: 100%;
  max-width: 1280px;
  height: auto;
}
.sub-page .sub-contents.erp .erp-strength {
  display: none;
}
.sub-page .sub-contents.erp .erp-solution {
  overflow: visible;
}
.sub-page .sub-contents.erp .erp-solution .select-container {
  position: relative;
  width: 100%;
  background: #fff;
  margin-bottom: 20px;
}
.sub-page .sub-contents.erp .erp-solution .select-container .select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666666;
  padding: 11px 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9375rem;
  border: 1px solid #E6E6F3;
}
.sub-page .sub-contents.erp .erp-solution .select-container .i-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: solid #666666;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.sub-page .sub-contents.erp .erp-solution .select-container.active .select-trigger .i-arrow {
  transform: rotate(-135deg);
}
.sub-page .sub-contents.erp .erp-solution .select-container .options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #D5D7DA;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  z-index: 999;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease, transform 0.3s ease;
}
.sub-page .sub-contents.erp .erp-solution .select-container .options .option {
  padding: 12px 16px;
  font-size: 0.9375rem;
  color: #111111;
  cursor: pointer;
  transition: background 0.2s ease;
}
.sub-page .sub-contents.erp .erp-solution .select-container .options .option:hover {
  background: #F5F5F5;
}
.sub-page .sub-contents.erp .erp-solution .select-container .options .option.selected {
  background: #FAFAFA;
  font-weight: 600;
}
.sub-page .sub-contents.erp .erp-solution .select-container.active .options {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 1440px) {
  .sub-page .sub-contents.erp {
    padding: 0 16px;
    margin: 40px 0;
  }
}
@media (max-width: 1020px) {
  .sub-page .sub-contents.erp {
    gap: 40px;
  }
  .sub-page .sub-contents.erp .flex-row {
    display: none;
  }
  .sub-page .sub-contents.erp .outer.group.odd .inner {
    grid-template-columns: repeat(1, 1fr);
  }
  .sub-page .sub-contents.erp .outer.group.odd .inner .card {
    flex-direction: row;
    align-items: center;
  }
  .sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature {
    flex-direction: column;
  }
  .sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature .item {
    flex: 0 1 auto;
    padding: 24px 16px;
  }
  .sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature .item .text-wrap .title {
    color: #111111 !important;
  }
  .sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature .item .img-wrap {
    flex-direction: row;
  }
  .sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature .item .img-wrap img {
    max-width: 150px;
  }
}
@media only screen and (min-width: 1021px) {
  .sub-page .sub-contents.erp .select-container {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature .item {
    flex: 0 1 auto;
    padding: 24px 16px;
  }
  .sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature .item .text-wrap {
    gap: 0.5rem;
  }
  .sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature .item .text-wrap .title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.875rem;
    letter-spacing: -0.046875rem;
  }
  .sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature .item .text-wrap p {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: -0.0328125rem;
  }
  .sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature .item .img-wrap {
    flex-direction: column;
    gap: 16px;
  }
  .sub-page .sub-contents.erp .outer .tab-contents .tab-content .feature .item .img-wrap img {
    max-width: 150px;
  }
}
.sub-page .sub-contents.solution {
  gap: 100px;
}
.sub-page .sub-contents.solution .outer .inner {
  min-height: unset;
}
.sub-page .sub-contents.solution .outer .field {
  display: flex;
}
.sub-page .sub-contents.solution .outer .field .card {
  flex-direction: row;
  align-items: center;
  gap: 60px;
  padding: 0;
}
.sub-page .sub-contents.solution .outer .field .card div.left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FBFBFB;
  width: 300px;
  height: 100%;
  border-radius: 1rem 0 0 1rem;
}
.sub-page .sub-contents.solution .outer .field .card div.left img {
  width: 80px;
}
.sub-page .sub-contents.solution .outer .field .card div.right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 40px 30px;
  gap: 30px;
}
.sub-page .sub-contents.solution .outer .field .card div.right p {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.125rem;
  letter-spacing: -0.05625rem;
}
.sub-page .sub-contents.solution .outer .field .card div.right span {
  margin-top: 15px;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: -0.0375rem;
  color: #666;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.solution {
    gap: 40px;
  }
  .sub-page .sub-contents.solution .outer .field .card {
    flex-direction: column;
    gap: 0;
  }
  .sub-page .sub-contents.solution .outer .field .card div.left {
    height: unset;
    width: 100%;
    gap: 10px;
    padding: 24px;
    border-radius: 1rem 1rem 0 0;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.0421875rem;
  }
  .sub-page .sub-contents.solution .outer .field .card div.left img {
    width: 50px;
  }
  .sub-page .sub-contents.solution .outer .field .card div.right {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 24px;
  }
  .sub-page .sub-contents.solution .outer .field .card div.right p {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.0421875rem;
  }
  .sub-page .sub-contents.solution .outer .field .card div.right span {
    color: #666666;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.0328125rem;
    margin-top: 4px;
  }
}
.sub-page .sub-contents.case {
  gap: 30px;
}
.sub-page .sub-contents.case .inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1280px;
}
.sub-page .sub-contents.case .inner .card {
  cursor: pointer;
  /* 회사소식 목록(title) - 띄어쓰기가 없어도 말줄임표 적용 */
  /* 회사소식 목록(description) - 띄어쓰기가 없어도 말줄임표 적용 */
}
.sub-page .sub-contents.case .inner .card .title.ellipsis-no-space {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
  width: 100%;
}
.sub-page .sub-contents.case .inner .card .description.ellipsis-no-space {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  word-break: break-word;
}
.sub-page .sub-contents.case .inner .card .title {
  min-height: 3.5rem;
}
.sub-page .sub-contents.case .view-more {
  margin-top: 70px;
  width: 100%;
  max-width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #dc393c, #D52629);
  background-size: 200% auto;
  background-position: left center;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-position 0.4s ease, box-shadow 0.3s ease, transform 0.3s ease;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.0421875rem;
}
.sub-page .sub-contents.case .view-more:hover {
  background-position: right center;
  box-shadow: 0 8px 16px rgba(213, 38, 41, 0.3);
  transform: translateY(-2px);
}
.sub-page .sub-contents.case .view-more:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(213, 38, 41, 0.2);
}
.sub-page .sub-contents.case .view-more:disabled {
  background: #e0e0e0;
  color: #999;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
@media (max-width: 1020px) {
  .sub-page .sub-contents.case .view-more {
    margin-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.case .view-more {
    max-width: 130px;
    height: 35px;
    font-size: 12px;
  }
}
@media (max-width: 1020px) {
  .sub-page .sub-contents.case {
    gap: 40px;
    margin: 40px 0;
  }
  .sub-page .sub-contents.case .inner {
    grid-template-columns: repeat(1, minmax(0, 100%));
  }
  .sub-page .sub-contents.case .inner .card.type-01 {
    padding: 24px;
  }
  .sub-page .sub-contents.case .inner .card.type-01 .client {
    height: 80px;
  }
  .sub-page .sub-contents.case .inner .card.type-01 .client img {
    height: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.case {
    margin: 0;
  }
}
.sub-page .sub-contents.history .outer {
  width: 100%;
  max-width: 1280px;
  flex-direction: row;
  justify-content: space-between;
  gap: 100px;
}
.sub-page .sub-contents.history .outer .filter {
  width: unset;
  justify-content: flex-start;
  flex-direction: column;
  position: sticky;
  top: 150px;
  height: fit-content;
}
.sub-page .sub-contents.history .outer .categories .search {
  margin-bottom: 30px;
}
.sub-page .sub-contents.history .outer .categories ul {
  gap: 0 30px;
  align-items: flex-start;
}
.sub-page .sub-contents.history .outer .categories ul .divider {
  display: none;
}
.sub-page .sub-contents.history .outer .categories ul li {
  line-height: 1.2rem;
}
@media (max-width: 1440px) {
  .sub-page .sub-contents.history .outer .categories ul {
    align-items: center;
  }
  .sub-page .sub-contents.history .outer .categories ul .divider {
    display: block;
  }
}
.sub-page .sub-contents.history .outer .categories-title p {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.75rem;
  letter-spacing: -0.0328125rem;
  padding-top: 1.875rem;
  color: #999;
}
.sub-page .sub-contents.history .outer .year-wrap {
  flex: 1 1 0;
}
.sub-page .sub-contents.history .outer .year-wrap .year {
  padding: 40px 0;
  border-top: 1px solid #E6E6F3;
}
.sub-page .sub-contents.history .outer .year-wrap h4 {
  font-size: 3rem;
  color: #111111;
  margin-bottom: 50px;
}
.sub-page .sub-contents.history .outer .year-wrap .inner {
  width: 100%;
  max-width: 800px;
  display: flex;
  gap: 50px;
  flex-direction: column;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #E6E6F3;
}
.sub-page .sub-contents.history .outer .year-wrap .inner .item {
  display: flex;
  flex-direction: row;
  gap: 50px;
  min-height: 65px;
}
.sub-page .sub-contents.history .outer .year-wrap .inner .item .client {
  width: 100px;
  flex: 0 0 100px;
  height: unset;
}
.sub-page .sub-contents.history .outer .year-wrap .inner .item .client img {
  height: 28px;
  width: auto;
  vertical-align: middle;
  object-fit: contain;
  max-width: 100%;
}
.sub-page .sub-contents.history .outer .year-wrap .inner .item .project .company {
  margin-bottom: 10px;
}
.sub-page .sub-contents.history .outer .year-wrap .inner .item .project .company span:not(.division) {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: -0.0375rem;
  color: #666666;
  margin-right: 10px;
}
.sub-page .sub-contents.history .outer .year-wrap .inner .item .project .company span.division {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: -0.0328125rem;
  border: 1px solid #E4E4E4;
  border-radius: 3px;
  padding: 4px 10px;
}
.sub-page .sub-contents.history .outer .year-wrap .inner .item .project .title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
  letter-spacing: -0.046875rem;
  color: #111111;
}
.sub-page .sub-contents.history .outer .year-wrap .no-data {
  width: 100%;
  border: 1px solid #E6E6F3;
  border-radius: 1rem;
  height: 250px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.sub-page .sub-contents.history .outer .year-wrap .no-data p {
  color: #999;
}
@media (max-width: 1440px) {
  .sub-page .sub-contents.history .outer {
    flex-direction: column;
  }
  .sub-page .sub-contents.history .outer .year-wrap .inner {
    max-width: 100%;
  }
  .sub-page .sub-contents.history .outer .filter {
    position: static;
  }
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.history .outer {
    gap: 40px;
  }
  .sub-page .sub-contents.history .outer .year-wrap h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .sub-page .sub-contents.history .outer .year-wrap .inner {
    gap: 1.5rem;
    margin-bottom: 40px;
    padding-top: 40px;
  }
  .sub-page .sub-contents.history .outer .year-wrap .inner .item {
    gap: 1.5rem;
  }
  .sub-page .sub-contents.history .outer .year-wrap .inner .item .client {
    width: 5rem;
  }
  .sub-page .sub-contents.history .outer .year-wrap .inner .item .project .company {
    margin-bottom: 0;
  }
  .sub-page .sub-contents.history .outer .year-wrap .inner .item .project .company span:not(.division) {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.375rem;
    letter-spacing: -0.028125rem;
  }
  .sub-page .sub-contents.history .outer .year-wrap .inner .item .project .company span.division {
    display: none;
  }
  .sub-page .sub-contents.history .outer .year-wrap .inner .item .project .title {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: -0.0328125rem;
  }
}
.sub-page .sub-contents.client {
  gap: 100px;
}
.sub-page .sub-contents.client .outer h4 {
  color: #111111;
}
.sub-page .sub-contents.client .inner {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1280px;
}
.sub-page .sub-contents.client .inner .card {
  position: relative;
  justify-content: center;
  align-items: center;
  height: 150px;
  padding: 0;
}
.sub-page .sub-contents.client .inner .card .text {
  display: none;
}
.sub-page .sub-contents.client .inner .card .logo img {
  height: 45px;
  width: auto;
  vertical-align: middle;
  object-fit: contain;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.client .inner .card .logo img {
    height: 28px;
  }
}
.sub-page .sub-contents.client .inner.client .card {
  position: relative;
  overflow: hidden;
  gap: 0;
}
.sub-page .sub-contents.client .inner.client .card .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
}
.sub-page .sub-contents.client .inner.client .card .logo img {
  height: 45px;
  width: auto;
  vertical-align: middle;
  object-fit: contain;
  max-width: -webkit-fill-available;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.client .inner.client .card .logo img {
    height: 28px;
  }
}
.sub-page .sub-contents.client .inner.client .card .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #ffffff;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.125rem;
  letter-spacing: -0.05625rem;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.client .inner.client .card .text {
    padding: 24px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.625rem;
    letter-spacing: -0.0375rem;
  }
}
.sub-page .sub-contents.client .inner.client .card.no-hover:hover::before, .sub-page .sub-contents.client .inner.client .card.no-hover:hover::after {
  display: none;
}
.sub-page .sub-contents.client .inner.client .card::before {
  content: "";
  font-family: "SDCIT-iconFont";
  position: absolute;
  top: 80px;
  right: 30px;
  width: 20px;
  height: 20px;
  color: #ffffff;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.client .inner.client .card::before {
    top: 75px;
    right: 20px;
  }
}
.sub-page .sub-contents.client .inner.client .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(213, 38, 41, 0.9);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}
.sub-page .sub-contents.client .inner.client .card:hover .text {
  opacity: 1;
  transform: translateY(0);
}
.sub-page .sub-contents.client .inner.client .card:hover::after {
  opacity: 1;
}
.sub-page .sub-contents.client .inner.client .card:hover::before {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.client .outer .inner {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
  .sub-page .sub-contents.client .outer .inner .item .client {
    width: 80px;
  }
  .sub-page .sub-contents.client .outer .inner .item .client img {
    height: 28px;
  }
  .sub-page .sub-contents.client .outer .inner .item .project .company {
    font-size: 0.75rem;
  }
  .sub-page .sub-contents.client .outer .inner .item .project .company span.division {
    display: none;
  }
  .sub-page .sub-contents.client .outer .inner .item .project .title {
    font-size: 0.875rem;
  }
}
.sub-page .sub-contents.recruit {
  gap: 100px;
}
.sub-page .sub-contents.recruit .outer .inner {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.sub-page .sub-contents.recruit .outer .inner .card {
  height: 380px;
  padding: 30px;
  justify-content: space-between;
}
.sub-page .sub-contents.recruit .outer .inner .card > div:not(.tags) {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sub-page .sub-contents.recruit .outer .inner .card .num {
  color: #D52629;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.046875rem;
  margin-bottom: 15px;
}
.sub-page .sub-contents.recruit .outer .inner .card .title {
  color: #111111;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.0609375rem;
}
.sub-page .sub-contents.recruit .outer .inner .card .description {
  color: #666666;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.0421875rem;
  height: 3.75rem;
}
.sub-page .sub-contents.recruit .outer .inner .card img {
  width: 70px;
  height: 70px;
}
.sub-page .sub-contents.recruit .outer .process {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sub-page .sub-contents.recruit .outer .process .description {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.075rem;
}
.sub-page .sub-contents.recruit .outer .process p {
  color: #111111;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.125rem;
  letter-spacing: -0.05625rem;
}
.sub-page .sub-contents.recruit .outer .process p span {
  display: block;
  font-size: 1rem;
  color: #666666;
}
.sub-page .sub-contents.recruit .outer .process ul {
  display: flex;
  flex-direction: row;
  gap: 30px;
  max-width: 840px;
}
.sub-page .sub-contents.recruit .outer .process ul li {
  position: relative;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
  letter-spacing: -0.046875rem;
  color: #666666;
  flex: 0 1 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 130px;
  width: 130px;
  height: 130px;
  background-color: #F3F6F6;
  transition: flex-grow 0.5s ease, background-color 0.3s ease, color 0.3s ease;
  /* 부드러운 전환 효과 */
  cursor: pointer;
}
.sub-page .sub-contents.recruit .outer .process ul li::before {
  display: none;
}
.sub-page .sub-contents.recruit .outer .process ul li:hover {
  background-color: #D52629;
  color: #ffffff;
}
.sub-page .sub-contents.recruit .outer .process ul li.active {
  background-color: #D52629;
  color: #ffffff;
  flex-grow: 2;
}
.sub-page .sub-contents.recruit .outer .process .mo-step-title {
  display: none;
}
.sub-page .sub-contents.recruit .outer .process .step-sub-description {
  color: #666666;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: -0.0375rem;
}
.sub-page .sub-contents.recruit .outer .recruitment .flex-row {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.sub-page .sub-contents.recruit .outer .recruitment .flex-row .tabs {
  margin-bottom: 0;
}
.sub-page .sub-contents.recruit .outer .recruitment .flex-row span a {
  color: #D52629;
  text-decoration: underline;
  cursor: pointer;
}
.sub-page .sub-contents.recruit .outer .recruitment .tab-contents .tab-content ul.inner {
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
  justify-items: start;
  position: relative;
  min-height: 250px;
}
.sub-page .sub-contents.recruit .outer .recruitment .tab-contents .tab-content ul.inner .no-data {
  position: absolute;
  width: 100%;
  border: 1px solid #E6E6F3;
  border-radius: 1rem;
  height: 250px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.sub-page .sub-contents.recruit .outer .recruitment .tab-contents .tab-content ul.inner .no-data p {
  color: #999;
}
.sub-page .sub-contents.recruit .outer .recruitment .tab-contents .tab-content ul.inner li.card {
  height: 250px;
  align-items: flex-start;
  margin: 0;
}
.sub-page .sub-contents.recruit .outer .recruitment .tab-contents .tab-content ul.inner li.card .title {
  gap: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.125rem;
  letter-spacing: -0.05625rem;
}
.sub-page .sub-contents.recruit .outer .recruitment .tab-contents .tab-content ul.inner li.card .tags {
  margin-top: 20px;
}
.sub-page .sub-contents.recruit .outer .recruitment .tab-contents .tab-content ul.inner li.card .description {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: -0.0375rem;
  max-height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.sub-page .sub-contents.recruit .outer .recruitment .tab-contents .tab-content ul.inner li.card button {
  cursor: pointer;
  text-align: left;
  width: 82px;
  height: 21px;
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1rem;
  letter-spacing: -0.0375rem;
  color: #111111;
  transition: color 0.2s;
  background-color: transparent !important;
}
.sub-page .sub-contents.recruit .outer .recruitment .tab-contents .tab-content ul.inner li.card button::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #D52629;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.sub-page .sub-contents.recruit .outer .recruitment .tab-contents .tab-content ul.inner li.card button::before {
  content: "";
  font-family: "SDCIT-iconFont";
  font-size: 21px;
  font-weight: 500;
  color: #D52629;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.2s, right 0.2s;
}
.sub-page .sub-contents.recruit .outer .recruitment .tab-contents .tab-content ul.inner li.card button:hover {
  color: #D52629;
  background-color: transparent;
}
.sub-page .sub-contents.recruit .outer .recruitment .tab-contents .tab-content ul.inner li.card button:hover::before {
  color: #D52629;
  right: -4px;
}
.sub-page .sub-contents.recruit .outer .recruitment .tab-contents .tab-content ul.inner li.card button:hover::after {
  transform: scaleX(1);
}
@media (max-width: 1280px) {
  .sub-page .sub-contents.recruit .outer .inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sub-page .sub-contents.recruit .outer .recruitment .tab-contents .tab-content ul.inner {
    gap: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.recruit {
    gap: 40px;
  }
  .sub-page .sub-contents.recruit .outer {
    gap: 20px;
  }
  .sub-page .sub-contents.recruit .outer h4 {
    font-size: 1.25rem;
  }
  .sub-page .sub-contents.recruit .outer .inner {
    grid-template-columns: repeat(1, 1fr);
  }
  .sub-page .sub-contents.recruit .outer .inner .card {
    height: 300px;
    padding: 24px;
  }
  .sub-page .sub-contents.recruit .outer .inner .card > div:not(.tags) {
    gap: 16px;
  }
  .sub-page .sub-contents.recruit .outer .inner .card .title {
    font-size: 1.125rem;
  }
  .sub-page .sub-contents.recruit .outer .inner .card .title .num {
    font-size: 0.875rem;
  }
  .sub-page .sub-contents.recruit .outer .inner .card .description {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .sub-page .sub-contents.recruit .outer .inner .card img {
    width: 40px;
    height: 40px;
  }
  .sub-page .sub-contents.recruit .outer .process .description {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: -0.0328125rem;
  }
  .sub-page .sub-contents.recruit .outer .process p {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: -0.0328125rem;
  }
  .sub-page .sub-contents.recruit .outer .process ul {
    gap: 8px;
  }
  .sub-page .sub-contents.recruit .outer .process ul li {
    height: 50px;
    flex: 0 1 50px;
  }
  .sub-page .sub-contents.recruit .outer .process ul li.active {
    flex-grow: unset;
  }
  .sub-page .sub-contents.recruit .outer .process ul li span {
    display: none;
  }
  .sub-page .sub-contents.recruit .outer .process ul li::before {
    content: attr(data-index);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.25rem;
    font-weight: 600;
    color: #666666;
  }
  .sub-page .sub-contents.recruit .outer .process ul li:hover::before, .sub-page .sub-contents.recruit .outer .process ul li.active::before {
    color: #ffffff;
  }
  .sub-page .sub-contents.recruit .outer .process .mo-step-title {
    display: block;
    color: #D52629;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: -0.0421875rem;
  }
  .sub-page .sub-contents.recruit .outer .process .step-description {
    font-size: 1rem;
    font-weight: 500;
  }
  .sub-page .sub-contents.recruit .outer .process .step-sub-description {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .sub-page .sub-contents.recruit .outer .recruitment .flex-row {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .sub-page .sub-contents.recruit .outer .recruitment .flex-row .tabs {
    margin-bottom: 16px;
  }
  .sub-page .sub-contents.recruit .outer .recruitment .tab-contents .tab-content ul.inner {
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
  }
  .sub-page .sub-contents.recruit .outer .recruitment .tab-contents .tab-content ul.inner li.card .title {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.675px;
  }
}
.sub-page .sub-contents.benefit {
  gap: 100px;
}
.sub-page .sub-contents.benefit .outer .inner {
  min-height: unset;
  grid-template-columns: repeat(3, 1fr);
}
.sub-page .sub-contents.benefit .outer .inner .card {
  position: relative;
  height: 190px;
  padding: 0;
  justify-content: space-between;
  cursor: default !important;
  perspective: 3000px;
  border: none;
}
.sub-page .sub-contents.benefit .outer .inner .card .card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.sub-page .sub-contents.benefit .outer .inner .card:hover .card-inner {
  transform: rotateY(180deg);
}
.sub-page .sub-contents.benefit .outer .inner .card .card-front,
.sub-page .sub-contents.benefit .outer .inner .card .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 30px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}
.sub-page .sub-contents.benefit .outer .inner .card .card-front {
  background: #fff;
  border: 1px solid #E6E6F3;
  border-radius: 1rem;
  z-index: 2;
}
.sub-page .sub-contents.benefit .outer .inner .card .card-back {
  background: #D52629;
  color: #fff;
  transform: rotateY(180deg);
  justify-content: flex-start;
  gap: 30px;
  z-index: 1;
  border-radius: 1rem;
}
.sub-page .sub-contents.benefit .outer .inner .card .card-back img {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
}
.sub-page .sub-contents.benefit .outer .inner .card .card:hover .card-back img {
  opacity: 1;
  transform: translateY(0);
}
.sub-page .sub-contents.benefit .outer .inner .card p {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.125rem;
  letter-spacing: -0.05625rem;
}
.sub-page .sub-contents.benefit .outer .inner .card img {
  width: 3.125rem;
  height: 3.125rem;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.benefit {
    gap: 40px;
  }
  .sub-page .sub-contents.benefit .outer .inner {
    grid-template-columns: repeat(1, 1fr);
  }
  .sub-page .sub-contents.benefit .outer .inner .card {
    flex-direction: row;
    height: 5.625rem;
  }
  .sub-page .sub-contents.benefit .outer .inner .card .card-inner {
    transform: none !important;
  }
  .sub-page .sub-contents.benefit .outer .inner .card .card-front,
.sub-page .sub-contents.benefit .outer .inner .card .card-back {
    padding: 1.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .sub-page .sub-contents.benefit .outer .inner .card p {
    font-size: 1.125rem;
  }
  .sub-page .sub-contents.benefit .outer .inner .card img {
    width: 40px;
    height: 40px;
  }
  .sub-page .sub-contents.benefit .outer .inner .card .tooltip {
    padding: 1.5rem;
  }
  .sub-page .sub-contents.benefit .outer .inner .card .tooltip strong {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.625rem;
    letter-spacing: -0.0375rem;
  }
  .sub-page .sub-contents.benefit .outer .inner .card .tooltip p {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.028125rem;
  }
}
.sub-page .sub-contents.benefits {
  margin-top: 0;
}
.sub-page .sub-contents.benefits .visual-section {
  position: relative;
  height: 28.75rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-page .sub-contents.benefits .visual-section .visual-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.sub-page .sub-contents.benefits .visual-section .visual-text {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  color: #fff;
  opacity: 1;
  margin: 0 auto;
}
.sub-page .sub-contents.benefits .visual-section .visual-text h2 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.1125rem;
  margin-bottom: 20px;
}
.sub-page .sub-contents.benefits .visual-section .visual-text .subtitle {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.075rem;
}
.sub-page .sub-contents.benefits .visual-section .visual-text h2,
.sub-page .sub-contents.benefits .visual-section .visual-text .subtitle {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.sub-page .sub-contents.benefits .visual-section .visual-text.on h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.sub-page .sub-contents.benefits .visual-section .visual-text.on .subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.sub-page .sub-contents.benefits .visual-section.visual-growth .visual-bg {
  background-image: url("/images/main/bg-growth.png");
}
.sub-page .sub-contents.benefits .visual-section.visual-care .visual-bg {
  background-image: url("/images/main/bg-care.png");
}
.sub-page .sub-contents.benefits .visual-section.visual-reward .visual-bg {
  background-image: url("/images/main/bg-reward.png");
}
.sub-page .sub-contents.benefits .visual-section.visual-culture .visual-bg {
  background-image: url("/images/main/bg-culture.png");
}
.sub-page .sub-contents.benefits .visual-section.visual-point .visual-bg {
  background-image: url("/images/main/bg-point.png");
}
.sub-page .sub-contents.benefits .benefits-list-section {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
}
.sub-page .sub-contents.benefits .benefits-list-section .benefits-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.09375rem;
  color: #D52629;
  width: 50%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.sub-page .sub-contents.benefits .benefits-list-section .benefits-title.on {
  opacity: 1;
  transform: translateY(0);
}
.sub-page .sub-contents.benefits .benefits-list-section .benefits-title.point {
  color: #111111;
  font-size: 48px;
  width: 45%;
}
.sub-page .sub-contents.benefits .benefits-list-section .benefits-items {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.sub-page .sub-contents.benefits .benefits-list-section .benefits-items .benefit-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.sub-page .sub-contents.benefits .benefits-list-section .benefits-items .benefit-card.icon-type {
  flex-direction: row;
  align-items: flex-start;
  gap: 1.875rem;
}
.sub-page .sub-contents.benefits .benefits-list-section .benefits-items .benefit-card.icon-type img {
  width: 3.125rem;
}
.sub-page .sub-contents.benefits .benefits-list-section .benefits-items .benefit-card.icon-type div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sub-page .sub-contents.benefits .benefits-list-section .benefits-items .benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.sub-page .sub-contents.benefits .benefits-list-section .benefits-items .benefit-card h3 {
  color: #111111;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.0609375rem;
}
.sub-page .sub-contents.benefits .benefits-list-section .benefits-items .benefit-card p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.046875rem;
  color: #666666;
}
@media (max-width: 1440px) {
  .sub-page .sub-contents.benefits .visual-section {
    height: 25rem;
    max-width: 1280px;
    border-radius: 1rem;
    overflow: hidden;
    padding: 0 60px;
  }
}
@media (max-width: 1280px) {
  .sub-page .sub-contents.benefits .visual-section {
    height: 28.75rem;
  }
  .sub-page .sub-contents.benefits .visual-section .visual-text h2 {
    font-size: 2.5rem;
  }
  .sub-page .sub-contents.benefits .visual-section .visual-text .subtitle {
    font-size: 26px;
  }
  .sub-page .sub-contents.benefits .benefits-list-section .benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.09375rem;
  }
  .sub-page .sub-contents.benefits .benefits-list-section .benefits-title.point {
    font-size: 40px;
  }
  .sub-page .sub-contents.benefits .benefits-list-section .benefits-items {
    gap: 40px;
  }
  .sub-page .sub-contents.benefits .benefits-list-section .benefits-items .benefit-card {
    gap: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.benefits .visual-section {
    height: 15.625rem;
    padding: 0 1.5rem;
  }
  .sub-page .sub-contents.benefits .visual-section .visual-text h2 {
    font-size: 1.5rem;
  }
  .sub-page .sub-contents.benefits .visual-section .visual-text .subtitle {
    font-size: 1.125rem;
  }
  .sub-page .sub-contents.benefits .benefits-list-section {
    flex-direction: column;
  }
  .sub-page .sub-contents.benefits .benefits-list-section .benefits-title {
    width: 100%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.05625rem;
    margin-bottom: 24px;
  }
  .sub-page .sub-contents.benefits .benefits-list-section .benefits-title.point {
    font-size: 24px;
  }
  .sub-page .sub-contents.benefits .benefits-list-section .benefits-items {
    gap: 24px;
  }
  .sub-page .sub-contents.benefits .benefits-list-section .benefits-items .benefit-card {
    gap: 5px;
  }
  .sub-page .sub-contents.benefits .benefits-list-section .benefits-items .benefit-card h3 {
    font-size: 1.125rem;
  }
  .sub-page .sub-contents.benefits .benefits-list-section .benefits-items .benefit-card p {
    font-size: 1rem;
    line-height: 1.4;
  }
}
.sub-page .sub-contents.about-us {
  opacity: 1;
  transform: unset !important;
  transition: unset !important;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}
.sub-page .sub-contents.about-us.gray {
  background-color: #FBFBFB;
}
.sub-page .sub-contents.about-us.gray .outer .description {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.075rem;
  margin-bottom: 30px;
}
.sub-page .sub-contents.about-us.gray .outer .inner {
  display: flex;
  flex-direction: row;
}
.sub-page .sub-contents.about-us.gray .outer .inner .card {
  gap: 60px;
  flex-direction: column;
  align-items: flex-start;
  cursor: unset;
}
.sub-page .sub-contents.about-us.gray .outer .inner .card .point {
  color: #D52629;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.046875rem;
  margin-bottom: 15px;
}
.sub-page .sub-contents.about-us.gray .outer .inner .card .item {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.0609375rem;
}
.sub-page .sub-contents.about-us.gray .outer .inner .card .sub {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  letter-spacing: -0.046875rem;
  margin-bottom: 5px;
}
.sub-page .sub-contents.about-us.gray .outer .inner .card .detail {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: -0.0375rem;
  letter-spacing: -0.85px;
  color: #666666;
}
.sub-page .sub-contents.about-us.gray .outer.intro {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: block;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-title {
  float: left;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-title h4 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.1125rem;
  margin-bottom: 60px;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-title .description {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.0515625rem;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item {
  position: relative;
  display: inline-block;
  width: 580px;
  aspect-ratio: 1/0.8;
  margin-top: 100px;
  border-radius: 1rem;
  overflow: hidden;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item.aos-init {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item.aos-animate {
  opacity: 1;
  transform: translateY(0);
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-label {
  position: absolute;
  top: 60px;
  left: 60px;
  color: white;
  z-index: 2;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-label span {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.0609375rem;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-label strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.09375rem;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay {
  position: absolute;
  inset: 0;
  background-color: #D52629;
  color: #fff;
  padding: 60px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 3;
  box-sizing: border-box;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay span {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.0609375rem;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.09375rem;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay .headline {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.0703125rem;
  margin-top: 30px;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay .desc {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.046875rem;
  margin-top: 20px;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay .headline,
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay .desc {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item:hover .item-overlay {
  opacity: 1;
  visibility: visible;
  border-radius: 1rem;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item:hover .item-overlay .headline {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item:hover .item-overlay .desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item:first-child {
  margin-top: 10px;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item:nth-child(odd) {
  float: right;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item:nth-child(even) {
  float: left;
}
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list::after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 1280px) {
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-title h4 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.09375rem;
    margin-bottom: 20px;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-title .description {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.05625rem;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item {
    position: relative;
    display: inline-block;
    width: calc(50% - 20px);
    margin-top: 100px;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-label {
    top: 40px;
    left: 40px;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-label span {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.05625rem;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-label strong {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.09375rem;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay {
    padding: 40px;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay span {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.05625rem;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay strong {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.09375rem;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay .headline {
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.0703125rem;
    margin-top: 30px;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay .desc {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.046875rem;
    margin-top: 20px;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay .desc br {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-title h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.046875rem;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-title .description {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.0328125rem;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-title .description br {
    display: none;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item {
    margin-top: 0 !important;
    float: none !important;
    width: 100%;
    aspect-ratio: 1/1;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-inner {
    position: relative;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-label {
    display: none;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay {
    opacity: 1 !important;
    visibility: visible !important;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    padding: 24px;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay .headline,
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay .desc {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay span {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.046875rem;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay strong {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.046875rem;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay .headline {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.0421875rem;
    margin-top: 24px;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item .item-overlay .desc {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.45px;
    margin-top: 16px;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item:hover .item-overlay {
    opacity: 1;
    visibility: visible;
  }
  .sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item:hover .item-overlay .headline,
.sub-page .sub-contents.about-us.gray .outer.intro .intro-list .intro-item:hover .item-overlay .desc {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.sub-page .sub-contents.about-us .outer.core-strength .inner {
  display: flex;
  flex-direction: column;
}
.sub-page .sub-contents.about-us .outer.core-strength .inner .card {
  gap: 30px;
  justify-content: flex-start;
  padding: 30px 40px;
}
.sub-page .sub-contents.about-us .outer.core-strength .inner .card p {
  width: 320px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.975px;
}
.sub-page .sub-contents.about-us .outer.core-strength .inner .card span {
  color: lab(21.25% 0 0);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: -0.0375rem;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci {
  display: flex;
  flex-direction: column;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.9px;
  margin-bottom: 0;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item p {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -1.125px;
  margin-bottom: 30px;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item p + div {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item p + div .white, .sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item p + div .black {
  flex-grow: 1;
  border: 1px solid #E6E6F3;
  height: 200px;
  object-fit: cover;
  background-position: center;
  background-size: cover;
  border-radius: 1rem;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item p + div .white {
  background-image: url(../images/main/ci-logo-white.svg);
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item p + div .black {
  background-image: url(../images/main/ci-logo-black.svg);
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item .color-code .box {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item .color-code .box .color {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 1rem;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item .color-code .box .hex {
  flex-grow: 1;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item .color-code .box.primary .hex {
  color: #D52629;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item .color-code .box.primary .color {
  background-color: #D52629;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item .color-code .box.primary .color::before {
  content: "Primary Color";
  position: absolute;
  top: 30px;
  left: 30px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.75px;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item .color-code .box.secondary .hex {
  color: #666;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item .color-code .box.secondary .color {
  background-color: #666;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item .color-code .box.secondary .color::before {
  content: "Secondary Color";
  position: absolute;
  top: 30px;
  left: 30px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.75px;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item .color-code .box .value {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: -0.0375rem;
  letter-spacing: -0.85px;
  display: inline-flex;
  gap: 15px;
  right: 0;
  bottom: -40px;
  align-items: center;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item .color-code .box .value .rgb, .sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item .color-code .box .value .cmyk {
  display: flex;
  gap: 10px;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item .color-code .box .value .rgb div span, .sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item .color-code .box .value .cmyk div span {
  margin-right: 5px;
}
.sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item .color-code .box .value .divider {
  width: 1px;
  height: 12px;
  background-color: #E6E6F3;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.about-us.gray .outer h4 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.875rem;
    letter-spacing: -0.046875rem;
  }
  .sub-page .sub-contents.about-us.gray .outer .description {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: -0.0328125rem;
    margin-bottom: 16px;
  }
  .sub-page .sub-contents.about-us.gray .outer .inner {
    flex-direction: column;
  }
  .sub-page .sub-contents.about-us.gray .outer .inner .card {
    gap: 30px;
  }
  .sub-page .sub-contents.about-us.gray .outer .inner .card .point {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5rem;
    letter-spacing: -0.0328125rem;
    margin-bottom: 4px;
  }
  .sub-page .sub-contents.about-us.gray .outer .inner .card .item {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.75rem;
    letter-spacing: -0.0421875rem;
    margin-bottom: 16px;
  }
  .sub-page .sub-contents.about-us.gray .outer .inner .card .sub {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: -0.0328125rem;
    margin-bottom: 4px;
  }
  .sub-page .sub-contents.about-us.gray .outer .inner .card .detail {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.028125rem;
  }
  .sub-page .sub-contents.about-us .outer.core-strength .inner .card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 24px;
  }
  .sub-page .sub-contents.about-us .outer.core-strength .inner .card p {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: -0.0421875rem;
  }
  .sub-page .sub-contents.about-us .outer.core-strength .inner .card span {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.375rem;
    letter-spacing: -0.028125rem;
  }
  .sub-page .sub-contents.about-us .outer.core-strength .inner .card span br {
    display: none;
  }
  .sub-page .sub-contents.about-us .outer.core-strength .inner .card img {
    margin-bottom: 22px;
  }
  .sub-page .sub-contents.about-us .outer.sdcit-ci .ci {
    gap: 24px;
  }
  .sub-page .sub-contents.about-us .outer.sdcit-ci .ci p {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: -0.0328125rem;
  }
  .sub-page .sub-contents.about-us .outer.sdcit-ci .ci p br {
    display: none;
  }
  .sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item p {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: -0.0421875rem;
  }
  .sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item p + div {
    flex-direction: column;
  }
  .sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item p + div .white, .sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item p + div .black {
    width: 100%;
    height: 100px;
  }
  .sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item .color-code .box {
    gap: 0px;
  }
  .sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item .color-code .box .color {
    height: 100px;
    margin-bottom: 8px;
  }
  .sub-page .sub-contents.about-us .outer.sdcit-ci .ci .ci-item .color-code .box .hex {
    width: 100%;
  }
}
.sub-page .sub-contents.life {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: transform, opacity;
}
.sub-page .sub-contents.life.show {
  opacity: 1;
  transform: translateY(0);
}
.sub-page .sub-contents.life .life-wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
  overflow: visible;
  min-height: 400px;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.life .life-wrap {
    padding-top: 40px;
    border-top: 1px solid #E6E6F3;
  }
}
.sub-page .sub-contents.life .heading-wrap {
  position: relative;
}
.sub-page .sub-contents.life .heading-wrap .heading-2 {
  color: #111111;
  font-size: 48px;
  position: sticky;
  top: 250px;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.life .heading-wrap {
    display: none;
  }
}
.sub-page .sub-contents.life .outer {
  min-width: 640px;
  gap: 50px;
  flex-direction: row;
  justify-content: space-between;
}
.sub-page .sub-contents.life .outer .list-wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.sub-page .sub-contents.life .outer .year-wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.sub-page .sub-contents.life .outer .photo-wrap {
  position: relative;
}
.sub-page .sub-contents.life .outer .photo-wrap .mo-title {
  display: none;
}
.sub-page .sub-contents.life .outer .photo-wrap .inner {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 10px;
}
.sub-page .sub-contents.life .outer .photo-wrap .inner .item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sub-page .sub-contents.life .outer .photo-wrap .inner .item.visible {
  opacity: 1;
  transform: translateY(0);
}
.sub-page .sub-contents.life .outer .photo-wrap .inner .item .title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75rem;
  letter-spacing: -0.046875rem;
  color: #111111;
}
.sub-page .sub-contents.life .outer .photo-wrap .inner .item .photo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sub-page .sub-contents.life .outer .photo-wrap .inner .item .photo img {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.sub-page .sub-contents.life .outer .photo-wrap .inner .item .photo img.siz01 {
  height: 200px;
}
.sub-page .sub-contents.life .outer .photo-wrap .inner .item .photo img.siz02 {
  height: 250px;
}
.sub-page .sub-contents.life .outer .photo-wrap .inner .item .photo img.siz03 {
  height: 300px;
}
.sub-page .sub-contents.life .outer .photo-wrap .inner .item .photo img.siz04 {
  height: 500px;
}
@media (max-width: 1440px) {
  .sub-page .sub-contents.life .outer {
    flex-direction: row;
    min-width: unset;
  }
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.life .outer {
    flex-direction: column;
    gap: 24px;
    border-top: 1px solid #E6E6F3;
  }
  .sub-page .sub-contents.life .outer .year-wrap,
.sub-page .sub-contents.life .outer .list-wrap {
    gap: 0;
  }
  .sub-page .sub-contents.life .outer .photo-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .sub-page .sub-contents.life .outer .photo-wrap .mo-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.125rem;
    letter-spacing: -0.05625rem;
    margin-top: 40px;
  }
  .sub-page .sub-contents.life .outer .photo-wrap .inner {
    max-width: 100%;
    margin-top: 0;
  }
  .sub-page .sub-contents.life .outer .photo-wrap .inner .item {
    gap: 16px;
  }
  .sub-page .sub-contents.life .outer .photo-wrap .inner .item .title {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
  .sub-page .sub-contents.life .outer .photo-wrap .inner .photo img {
    height: auto !important;
    max-height: 300px;
  }
}
.sub-page .sub-contents.contactus .outer {
  height: 1000px;
}
.sub-page .sub-contents.contactus .outer2 {
  width: 100%;
  height: 1000px;
}
.sub-page .team-gradation {
  width: 100vw;
  min-width: 100vw;
  height: 100vh;
  min-height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
  position: relative;
  transition: background 0.35s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 200px 0;
  background-size: 1000px;
  background-color: #000;
}
.sub-page .team-gradation .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
}
.sub-page .team-gradation .outer {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
}
.sub-page .team-gradation .outer h4 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.1125rem;
  width: 100%;
  max-width: 1280px;
}
.sub-page .team-gradation .outer h4 span {
  color: #D52629;
}
.sub-page .team-gradation .outer ul {
  position: relative;
  min-height: 400px;
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
}
.sub-page .team-gradation .outer ul li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.sub-page .team-gradation .outer ul li.visible {
  opacity: 1;
  pointer-events: all;
  transform: none;
  pointer-events: auto;
  z-index: 2;
}
.sub-page .team-gradation .outer ul li .team-title {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 2.5rem;
  letter-spacing: -0.0703125rem;
}
.sub-page .team-gradation .outer ul li .team-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.0421875rem;
}
@media (max-width: 1440px) {
  .sub-page .team-gradation {
    padding: 40px 16px;
  }
}
@media (max-width: 1280px) {
  .sub-page .team-gradation {
    height: auto;
    min-height: auto;
  }
  .sub-page .team-gradation .outer {
    gap: 60px;
    flex-direction: column;
  }
  .sub-page .team-gradation .outer h4 {
    font-size: 40px;
  }
  .sub-page .team-gradation .outer ul {
    padding: 0;
    gap: 60px;
    flex-direction: column;
    min-height: auto;
  }
  .sub-page .team-gradation .outer ul li {
    gap: 10px;
    opacity: 1 !important;
    transform: none !important;
  }
  .sub-page .team-gradation .outer ul li .team-title br {
    display: none;
  }
  .sub-page .team-gradation .outer ul li .team-text br {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .sub-page .team-gradation {
    padding: 40px 16px;
    gap: 40px;
    height: auto;
    min-height: auto;
    background: linear-gradient(180deg, rgba(206, 22, 25, 0.9) 6.25%, rgba(255, 77, 77, 0.9) 47.6%, rgba(232, 56, 57, 0.9) 71.63%, rgba(213, 38, 41, 0.9) 91.83%), url("/images/main/texture.png") center/cover no-repeat;
  }
  .sub-page .team-gradation .outer {
    gap: 20px;
  }
  .sub-page .team-gradation .outer h4 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.875rem;
    letter-spacing: -0.046875rem;
    width: 100%;
  }
  .sub-page .team-gradation .outer h4 span {
    color: #ffffff;
  }
  .sub-page .team-gradation .outer ul {
    gap: 40px;
    position: static;
    min-height: auto;
  }
  .sub-page .team-gradation .outer ul li {
    gap: 5px;
    position: static;
    pointer-events: auto;
    z-index: auto;
  }
  .sub-page .team-gradation .outer ul li .team-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: -0.0421875rem;
  }
  .sub-page .team-gradation .outer ul li .team-title br {
    display: none;
  }
  .sub-page .team-gradation .outer ul li .team-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.0375rem;
  }
  .sub-page .team-gradation .outer ul li .team-text br {
    display: none;
  }
  .sub-page .team-gradation .bg-video {
    display: none;
  }
}

.detail-page {
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-page .outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 100px;
  gap: 100px;
  max-width: 1280px;
  width: 100%;
}
.detail-page .outer .detail-title {
  padding-top: 100px;
  width: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 100px;
  position: relative;
}
.detail-page .outer .detail-title > div {
  color: #111111;
}
.detail-page .outer .detail-title > div .client {
  margin-bottom: 40px;
}
.detail-page .outer .detail-title > div .client img {
  height: 50px;
  width: auto;
  vertical-align: middle;
  object-fit: contain;
  max-width: 12.5rem;
}
.detail-page .outer .detail-title > div .title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 4.375rem;
  letter-spacing: -0.140625rem;
  margin-bottom: 20px;
}
.detail-page .outer .detail-title > div .description {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: -0.046875rem;
  margin-bottom: 30px;
}
.detail-page .outer .detail-title > div .tags {
  color: #707070;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 5px;
}
.detail-page .outer .detail-title > div .tags span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: max-content;
  border: 1px solid #E4E4E4;
  border-radius: 0.25rem;
  padding: 4px 10px;
}
.detail-page .outer .detail-title > div .tags span::before {
  content: "#";
  margin-right: 4px;
}
.detail-page .outer .detail-title > div .date {
  position: inherit !important;
}
.detail-page .outer .detail-title .date {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  letter-spacing: -0.046875rem;
  color: #666666;
  position: absolute;
  right: 0;
}
.detail-page .outer .detail-contents {
  border-top: 1px solid #E6E6F3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  padding: 100px 0 0;
}
.detail-page .outer .detail-contents .contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  /* 주요구축사례 상세 미리보기 컨텐츠 */
}
.detail-page .outer .detail-contents .contents img {
  width: fit-content;
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .detail-page .outer .detail-contents .contents img {
    width: 100%;
  }
}
.detail-page .outer .detail-contents .navigation-links {
  width: 100%;
  border-top: 1px solid #E6E6F3;
}
.detail-page .outer .detail-contents .navigation-links div {
  border-bottom: 1px solid #E6E6F3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 60px;
}
.detail-page .outer .detail-contents .navigation-links div p {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FBFBFB;
  width: 200px;
  height: 100%;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.25rem;
  letter-spacing: -0.03984375rem;
}
.detail-page .outer .detail-contents .navigation-links div a {
  flex: 1 0 0;
  padding: 0 20px;
  color: #111111;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25rem;
  letter-spacing: -0.046875rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.detail-page .outer .back-to-list {
  width: 100%;
  max-width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #dc393c, #D52629);
  background-size: 200% auto;
  background-position: left center;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-position 0.4s ease, box-shadow 0.3s ease, transform 0.3s ease;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.0421875rem;
}
.detail-page .outer .back-to-list:hover {
  background-position: right center;
  box-shadow: 0 8px 16px rgba(213, 38, 41, 0.3);
  transform: translateY(-2px);
}
.detail-page .outer .back-to-list:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(213, 38, 41, 0.2);
}
.detail-page .outer .back-to-list:disabled {
  background: #e0e0e0;
  color: #999;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
@media only screen and (max-width: 768px) {
  .detail-page .outer .back-to-list {
    max-width: 130px;
    height: 35px;
    font-size: 12px;
  }
}
@media (max-width: 1440px) {
  .detail-page .outer {
    gap: 40px;
    padding: 0 16px;
  }
  .detail-page .outer .detail-contents {
    padding: 40px 0;
    max-height: unset;
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .detail-page .outer {
    margin-bottom: 0;
  }
  .detail-page .outer .detail-title {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 100px;
    gap: 24px;
  }
  .detail-page .outer .detail-title > div .title {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 2.375rem;
    letter-spacing: -0.065625rem;
  }
  .detail-page .outer .detail-title > div .description {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: -0.0328125rem;
  }
  .detail-page .outer .detail-title > div .tags {
    display: none;
  }
  .detail-page .outer .detail-title .date {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.375rem;
    letter-spacing: -0.028125rem;
    left: 0;
    bottom: 0;
  }
  .detail-page .outer .detail-contents .navigation-links div {
    height: 35px;
  }
  .detail-page .outer .detail-contents .navigation-links div p {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 0.875rem;
    letter-spacing: -0.028125rem;
    width: 80px;
  }
  .detail-page .outer .detail-contents .navigation-links div a {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 0.875rem;
    letter-spacing: -0.028125rem;
  }
  .detail-page .outer .detail-contents .back-to-list {
    width: 130px;
    height: 35px;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 2.1875rem;
    letter-spacing: -0.028125rem;
  }
}

/* Contact Us  */
.contact-area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}
.contact-area aside.top-area {
  width: fit-content;
  align-items: flex-start;
  padding: 0;
}
.contact-area aside.top-area .inner {
  width: fit-content;
}
.contact-area aside.top-area .inner .p-3 span {
  display: block;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e6e6f3;
}
.contact-area aside.top-area .inner .p-3 span.tel {
  border-top: none;
  padding-top: 0;
}
.contact-area aside.top-area .inner .p-3 span a {
  color: #D52629;
  text-decoration: underline;
}
.contact-area .form-area {
  width: 100%;
  max-width: 800px;
  margin-top: 150px;
}
@media (max-width: 1440px) {
  .contact-area .form-area {
    margin-top: 100px;
  }
}
@media (max-width: 1280px) {
  .contact-area {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
  .contact-area aside.top-area {
    width: 100%;
  }
  .contact-area aside.top-area .inner {
    width: 100%;
  }
  .contact-area aside.top-area .inner .p-3 span.tel br {
    display: block;
  }
  .contact-area .form-area {
    margin-top: 0;
    max-width: 100%;
  }
}

/* contact us form */
.form-container .form-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 30px;
}
.form-container .form-list li {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.form-container .form-list li.wide {
  width: 100%;
}
.form-container .form-list li .title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.125rem;
  letter-spacing: -0.05625rem;
  color: #111111;
}
.form-container .form-list input,
.form-container .form-list textarea {
  width: 100%;
  height: 48px;
  background-color: #fff;
  border: 1px solid #E6E6F3;
  padding: 10px 20px;
  transition: border-color 0.3s ease;
  vertical-align: middle;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625rem;
  letter-spacing: -0.0375rem;
}
.form-container .form-list input::placeholder,
.form-container .form-list textarea::placeholder {
  color: #666666;
}
.form-container .form-list input:focus,
.form-container .form-list textarea:focus {
  border-color: #D52629;
  outline: none;
}
.form-container .form-list textarea {
  height: 100px;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
}
.form-container .req {
  margin-left: 4px;
  color: #D52629;
}
@media only screen and (max-width: 768px) {
  .form-container .form-list {
    flex-direction: column;
    gap: 40px;
  }
  .form-container .form-list li,
.form-container .form-list li.wide {
    width: 100%;
    gap: 16px;
  }
  .form-container .form-list li .title,
.form-container .form-list li.wide .title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.875rem;
    letter-spacing: -0.046875rem;
  }
  .form-container .form-list input,
.form-container .form-list textarea {
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: -0.0328125rem;
  }
}

.radio-group {
  display: flex;
  gap: 30px;
  align-items: center;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.0375rem;
}
.radio-group label input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #E6E6F3;
  border-radius: 50%;
  position: relative;
  transition: border-color 0.2s ease;
  padding: 0;
}
.radio-group label input[type=radio]:checked {
  border-color: #D52629;
}
.radio-group label input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #D52629;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.interest-select {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.interest-select .category {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.interest-select .category .label {
  width: 100px;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.0375rem;
  color: #111111;
}
.interest-select .category .button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}
.interest-select .category .button-group input[type=checkbox] {
  display: none;
}
.interest-select .category .button-group label {
  flex: 0 1 calc(25% - 10px);
  height: 33px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: #F3F6F6;
  border: 1px solid #F3F6F6;
  color: #666666;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.0625rem;
  letter-spacing: -0.0328125rem;
}
.interest-select .category .button-group label:hover {
  border-color: #ddd;
}
.interest-select .category .button-group input[type=checkbox]:checked + label {
  background-color: #D52629;
  color: #fff;
  border-color: #D52629;
}
@media only screen and (max-width: 768px) {
  .interest-select .category {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .interest-select .category .label {
    width: auto;
    margin-bottom: 8px;
  }
  .interest-select .category .button-group label {
    flex: 0 1 calc(50% - 5px);
  }
}

.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.checkbox-grid input[type=checkbox] {
  display: none;
}
.checkbox-grid label {
  position: relative;
  padding-left: 28px;
  color: #111111;
  cursor: pointer;
  user-select: none;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.0375rem;
}
.checkbox-grid label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #E6E6F3;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 2px;
}
.checkbox-grid label::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #111111;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.1s ease;
}
.checkbox-grid input[type=checkbox]:checked + label::before {
  border: 1px solid #111111;
}
.checkbox-grid input[type=checkbox]:checked + label::after {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .checkbox-grid {
    gap: 16px;
  }
}

.agree-group {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}
.agree-group .agree-item {
  position: relative;
  display: flex;
  align-items: center;
  color: #111111;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.0375rem;
}
.agree-group .agree-item input[type=checkbox] {
  display: none;
}
.agree-group .agree-item .custom-check {
  width: 20px;
  height: 20px;
  border: 1px solid #E6E6F3;
  background-color: #fff;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  transition: all 0.2s ease;
  border-radius: 2px;
}
.agree-group .agree-item input[type=checkbox]:checked + .custom-check::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.agree-group .agree-item.required input[type=checkbox]:checked + .custom-check {
  background-color: #D52629;
  border-color: #D52629;
}
.agree-group .agree-item .emph {
  color: #d52629;
  margin-left: 4px;
}
.agree-group .agree-item .dim {
  color: #999;
  margin-left: 4px;
}
@media only screen and (max-width: 768px) {
  .agree-group {
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
  }
}

.submit-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 100px;
}
@media (max-width: 1280px) {
  .submit-wrap {
    justify-content: center;
    margin-top: 40px;
  }
}

.btn-primary {
  width: 100%;
  max-width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #dc393c, #D52629);
  background-size: 200% auto;
  background-position: left center;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-position 0.4s ease, box-shadow 0.3s ease, transform 0.3s ease;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.0421875rem;
}
.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 8px 16px rgba(213, 38, 41, 0.3);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(213, 38, 41, 0.2);
}
.btn-primary:disabled {
  background: #e0e0e0;
  color: #999;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
@media only screen and (max-width: 768px) {
  .btn-primary {
    max-width: 130px;
    height: 35px;
    font-size: 12px;
  }
}

.form-container .form-list li {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out forwards;
}
.form-container .form-list li:nth-child(1) {
  animation-delay: 0.05s;
}
.form-container .form-list li:nth-child(2) {
  animation-delay: 0.1s;
}
.form-container .form-list li:nth-child(3) {
  animation-delay: 0.15s;
}
.form-container .form-list li:nth-child(4) {
  animation-delay: 0.2s;
}
.form-container .form-list li:nth-child(5) {
  animation-delay: 0.25s;
}
.form-container .form-list li:nth-child(6) {
  animation-delay: 0.3s;
}
.form-container .form-list li:nth-child(7) {
  animation-delay: 0.35s;
}
.form-container .form-list li:nth-child(8) {
  animation-delay: 0.4s;
}
.form-container .form-list li:nth-child(9) {
  animation-delay: 0.45s;
}
.form-container .form-list li:nth-child(10) {
  animation-delay: 0.5s;
}

.agree-group,
.submit-wrap {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out forwards;
}

.agree-group {
  animation-delay: 0.55s;
}

.submit-wrap {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.sub-page .sub-contents {
  /* 회사소개 - 연혁 */
}
.sub-page .sub-contents.contact {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.sub-page .sub-contents.contact .outer {
  max-width: 1280px;
}
.sub-page .sub-contents.contact .outer .inner {
  grid-template-columns: repeat(3, 1fr);
}
.sub-page .sub-contents.contact .outer .inner .card {
  height: 240px;
  padding: 30px;
  gap: 0;
}
.sub-page .sub-contents.contact .outer .inner .card .title {
  margin-bottom: 20px;
  color: #111111;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.125rem;
  letter-spacing: -0.05625rem;
}
.sub-page .sub-contents.contact .outer .inner .card .description {
  color: #111111;
  font-size: 1.25rem;
  height: 80px;
}
.sub-page .sub-contents.contact .outer .inner .card .description a {
  color: #D52629;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.sub-page .sub-contents.contact .outer .inner .card img {
  width: 70px;
  height: 70px;
}
@media (max-width: 1020px) {
  .sub-page .sub-contents.contact .outer .inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.contact {
    gap: 40px;
  }
  .sub-page .sub-contents.contact .outer {
    gap: 20px;
  }
  .sub-page .sub-contents.contact .outer .inner .card {
    height: 200px;
    padding: 24px;
    justify-content: space-between;
  }
  .sub-page .sub-contents.contact .outer .inner .card .title {
    font-size: 1.125rem;
    margin-bottom: 8px;
  }
  .sub-page .sub-contents.contact .outer .inner .card .description {
    font-size: 0.875rem;
    height: auto;
  }
  .sub-page .sub-contents.contact .outer .inner .card img {
    width: 40px;
    height: 40px;
  }
}
.sub-page .sub-contents.contact .outer.transport {
  flex-direction: row;
  gap: 0;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.contact .outer.transport {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.sub-page .sub-contents.contact .outer.transport h5 {
  width: 200px;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.125rem;
  letter-spacing: -0.05625rem;
  color: #111111;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.contact .outer.transport h5 {
    font-size: 1.25rem;
    margin-bottom: 0;
  }
}
.sub-page .sub-contents.contact .outer.transport > div {
  width: calc(100% - 200px);
  display: flex;
  flex-direction: row;
  gap: 1.875rem;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.contact .outer.transport > div {
    flex-direction: column;
    width: 100% !important;
    gap: 1.5rem;
  }
}
.sub-page .sub-contents.contact .outer.transport > div > div {
  flex: 1;
}
.sub-page .sub-contents.contact .outer.transport > div .method-title {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  letter-spacing: -0.046875rem;
  color: #111111;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.contact .outer.transport > div .method-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}
.sub-page .sub-contents.contact .outer.transport > div .method-desc {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.0328125rem;
  color: #666666;
}
.sub-page .sub-contents.contact .outer.transport > div .line-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sub-page .sub-contents.contact .outer.transport > div .line-list .line-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.sub-page .sub-contents.contact .outer.transport > div .line-list .line-item .line-label {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: -0.0375rem;
}
.sub-page .sub-contents.contact .outer.transport > div .line-list .line-item .line-numbers {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: -0.0375rem;
  color: #111111;
}
.sub-page .sub-contents.contact .outer.transport > div .line-list .green .line-label {
  color: #4EB14A;
}
.sub-page .sub-contents.contact .outer.transport > div .line-list .blue .line-label {
  color: #4786CF;
}
.sub-page .sub-contents.contact .outer.transport > div .line-list .red .line-label {
  color: #D52629;
}
.sub-page .sub-contents.contact .outer.driving {
  display: flex;
  flex-direction: row;
  gap: 0;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.contact .outer.driving {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.sub-page .sub-contents.contact .outer.driving h5 {
  width: 200px;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.125rem;
  letter-spacing: -0.05625rem;
  color: #111111;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.contact .outer.driving h5 {
    font-size: 1.25rem;
    margin-bottom: 0;
  }
}
.sub-page .sub-contents.contact .outer.driving > div {
  width: calc(100% - 200px);
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.contact .outer.driving > div {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }
}
.sub-page .sub-contents.contact .outer.driving > div > div {
  flex: 1;
}
.sub-page .sub-contents.contact .outer.driving > div .method-title {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  letter-spacing: -0.046875rem;
  color: #111111;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.contact .outer.driving > div .method-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}
.sub-page .sub-contents.contact .outer.driving > div .driving-list li {
  display: list-item;
  margin-bottom: 0.3125rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: -0.0375rem;
  color: #666666;
}
@media only screen and (max-width: 480px) {
  .sub-page .sub-contents.contact .outer.driving > div .driving-list li {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.0328125rem;
  }
}
.sub-page .sub-contents.contact .outer.location-map .map {
  width: 100%;
  height: 300px;
  background-color: #FBFBFB;
}
.sub-page .sub-contents.contact .outer.location-map .map iframe {
  width: 100%;
  height: 100%;
}
.sub-page .sub-contents.about {
  max-width: 1280px;
  margin: 0 auto;
}
.sub-page .sub-contents.about .history-layout {
  margin: 100px 0;
  display: grid;
  grid-template-columns: 400px 640px;
  width: 100%;
  justify-content: space-around;
}
.sub-page .sub-contents.about .history-layout .sticky-wrapper {
  padding: 0;
}
.sub-page .sub-contents.about .history-left {
  position: sticky;
  top: 150px;
  align-self: flex-start;
  z-index: 2;
  background: #fff;
}
.sub-page .sub-contents.about .history-left .history-year-main {
  color: #111111;
  font-size: 4.375rem;
  font-weight: 600;
  line-height: 5rem;
  letter-spacing: -0.1640625rem;
}
.sub-page .sub-contents.about .history-left .history-photo {
  width: 100%;
  margin-top: 50px;
}
.sub-page .sub-contents.about .history-left .history-photo img {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.about .history-left {
    display: none;
  }
}
.sub-page .sub-contents.about .history-right {
  position: relative;
  min-width: 0;
  border-top: 1px solid #E6E6F3;
}
.sub-page .sub-contents.about .history-right .history-timeline .copyright-title {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2.5rem;
  letter-spacing: -0.0703125rem;
  color: #111111;
  margin: 50px 0 0;
}
.sub-page .sub-contents.about .history-right .history-timeline .history-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.125rem;
  letter-spacing: -0.05625rem;
  color: #111111;
  display: none;
}
.sub-page .sub-contents.about .history-right .history-timeline .history-item {
  display: flex;
  align-items: flex-start;
  padding: 60px 0;
  flex-direction: column;
  border-bottom: 1px solid #E6E6F3;
  gap: 30px;
  color: #111111;
}
.sub-page .sub-contents.about .history-right .history-timeline .history-item .history-date {
  width: 120px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.9px;
  flex-shrink: 0;
}
.sub-page .sub-contents.about .history-right .history-timeline .history-item .history-desc {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: -0.0421875rem;
}
@media (max-width: 1440px) {
  .sub-page .sub-contents.about .history-layout {
    grid-template-columns: 250px 640px;
  }
}
@media (max-width: 1280px) {
  .sub-page .sub-contents.about .history-layout {
    grid-template-columns: 200px 640px;
  }
}
@media (max-width: 1020px) {
  .sub-page .sub-contents.about .history-layout {
    grid-template-columns: 200px 1fr;
    gap: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .sub-page .sub-contents.about {
    margin: 0 0 40px;
  }
  .sub-page .sub-contents.about .history-layout {
    display: block;
    margin: 0;
    grid-template-columns: none;
    gap: 0;
  }
  .sub-page .sub-contents.about .history-right {
    width: 100%;
  }
  .sub-page .sub-contents.about .history-right .history-timeline .copyright-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.125rem;
    letter-spacing: -0.05625rem;
    margin: 24px 0 0;
  }
  .sub-page .sub-contents.about .history-right .history-timeline .history-title {
    display: block;
  }
  .sub-page .sub-contents.about .history-right .history-timeline .history-item {
    padding: 20px 0;
    gap: 16px;
  }
  .sub-page .sub-contents.about .history-right .history-timeline .history-item .history-date {
    width: 40px;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5rem;
    letter-spacing: -0.0328125rem;
  }
  .sub-page .sub-contents.about .history-right .history-timeline .history-item .history-date span {
    display: none;
  }
  .sub-page .sub-contents.about .history-right .history-timeline .history-item .history-desc {
    font-size: 12px;
  }
}

#column_right.control {
  overflow: visible;
}

/* 회사소개 - 연혁 애니메이션 설정 */
#year-sticky-number,
.list-wrap {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

#year-sticky-number.visible,
.list-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Only Select */
.anchor_list {
  display: flex;
}
.anchor_list ul {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.anchor_list ul li {
  position: relative;
  height: 100%;
}
.anchor_list ul li span {
  color: #666666;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.75rem;
  letter-spacing: -0.05625rem;
  transition: color 0.3s ease;
}
.anchor_list ul li:hover a span {
  color: #D52629;
}
.anchor_list ul li::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #D52629;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.anchor_list ul li.selected span {
  color: #D52629;
}
.anchor_list ul li.selected::after {
  transform: scaleX(1);
}
@media only screen and (max-width: 768px) {
  .anchor_list {
    display: none;
  }
}

.anchor-select {
  display: none;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 5;
}
@media only screen and (max-width: 768px) {
  .anchor-select {
    display: block;
  }
  .anchor-select select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    font-size: 1rem;
  }
}

/* Modal: 개인정보처리방침, 마케팅 등 공통 */
/* button */
.modal-open-btn {
  margin-left: 10px;
  padding: 4px 8px;
  border: 1px solid #D52629;
  background-color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 0.75rem;
  letter-spacing: -0.028125rem;
  color: #D52629;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
}
.modal-open-btn:hover {
  background-color: #D52629;
  color: white;
}
.footer .modal-open-btn {
  all: unset;
  color: white;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03984375rem;
}
.footer .modal-open-btn:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .footer .modal-open-btn {
    font-size: 14px;
  }
}

body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}
.modal.show {
  opacity: 1;
  visibility: visible;
}
.modal.closing {
  opacity: 0;
  visibility: hidden;
}

.modal-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  max-height: 80vh;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding: 1.5rem;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.4s ease;
}
.modal.show .modal-content {
  transform: translateY(0);
  opacity: 1;
}
.modal.closing .modal-content {
  transform: translateY(30px);
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .modal-content {
    padding: 1rem;
    height: 100%;
    max-height: none;
    border-radius: 0;
    transform: translateY(100%);
  }
  .modal.show .modal-content {
    transform: translateY(0);
  }
  .modal.closing .modal-content {
    transform: translateY(100%);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E6E6F3;
  margin-bottom: 1.875rem;
}
.modal-header .modal-title {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.0703125rem;
  margin: 0;
  color: #111111;
}
.modal-header .modal-close {
  font-size: 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #111111;
}
.modal-header .modal-close:hover {
  color: #D52629;
}
@media only screen and (max-width: 768px) {
  .modal-header {
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
  }
  .modal-header .modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: -0.046875rem;
  }
  .modal-header .modal-close {
    font-size: 1.5rem;
  }
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 1.25rem 1.875rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: -0.0328125rem;
  color: #444;
}
@media only screen and (max-width: 768px) {
  .modal-body {
    padding: 0 1rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.45rem;
    letter-spacing: -0.03046875rem;
  }
}
.modal-body h5 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.875rem;
  letter-spacing: -0.046875rem;
  margin: 2rem 0 1rem;
  color: #111111;
}
@media only screen and (max-width: 768px) {
  .modal-body h5 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    letter-spacing: -0.0375rem;
    margin: 1.25rem 0 0.5rem;
  }
}
.modal-body p {
  margin: 1rem 0;
}
@media only screen and (max-width: 768px) {
  .modal-body p {
    margin: 0.75rem 0;
  }
}
.modal-body ol {
  padding-left: 1.25rem;
  margin: 1rem 0 2rem;
}
@media only screen and (max-width: 768px) {
  .modal-body ol {
    margin: 0.75rem 0 1.5rem;
  }
}
.modal-body ol li {
  list-style: decimal;
  margin-bottom: 0.5rem;
}
.modal-body ol li::marker {
  font-weight: 600;
}
.modal-body ol li strong {
  font-weight: 600;
}
.modal-body a {
  color: #D52629;
  text-decoration: underline;
}
.modal-body p + ol,
.modal-body p + ul,
.modal-body h5 + ol,
.modal-body h5 + ul,
.modal-body ol + p,
.modal-body ul + p {
  margin-top: 0.75rem;
}
.modal-body h5 + p {
  margin-top: 0.75rem;
}
.modal-body ol + ol,
.modal-body ul + ul,
.modal-body ol + ul,
.modal-body ul + ol {
  margin-top: 1rem;
}
.modal-body ol:last-of-type + *,
.modal-body ul:last-of-type + * {
  margin-top: 1rem;
}
.modal-body > *:first-child {
  margin-top: 0 !important;
}
.modal-body > *:last-child {
  margin-bottom: 0 !important;
}
.modal-body .emph {
  color: #D52629;
}

/* top 버튼 */
.top-button {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  border: none;
  border-radius: 3.125rem;
  background-color: #111;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.top-button.show {
  opacity: 1;
  visibility: visible;
}
.top-button:hover {
  background-color: #D52629;
}
.top-button .icon {
  width: 10px;
  height: 10px;
  margin-bottom: 0;
  display: block;
}
.top-button .text {
  font-size: 12px;
  line-height: 1;
}

/* animate */
.fx-heading-animate {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
}
.fx-heading-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.fx-letter-fade {
  display: inline-block;
  transform: translateY(10px);
  transition: transform 0.6s ease-out;
  will-change: transform;
}

.fx-letter-fade.animated {
  transform: translateY(0);
}

.fx-letter-fade span {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

.fx-letter-fade span.visible {
  opacity: 1;
}

.main-visual #sliderWrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.main-visual #sliderWrapper .slide-div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: none;
}
.main-visual #sliderWrapper .slide-div.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
.main-visual #sliderWrapper .slide-div video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-visual #pagination {
  position: relative;
  z-index: 10;
}

/* 커스텀 alert/confirm 팝업 */
.popup {
  position: fixed;
  visibility: hidden;
  z-index: 10001;
  left: 50%;
  top: -9999px;
}

.modal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-width: 320px;
  min-height: 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.modal-container img {
  width: 160px;
}
.modal-container .modal-message {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.5;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal-container button {
  flex: 1 1 0;
  width: 100%;
  color: #ffffff;
  border: 1px solid #565B64;
  background-color: #565B64;
  border-radius: 6px;
  text-align: center;
  min-height: 32px;
  font-weight: 500;
}
.modal-container button.modal-button-confirm-N {
  color: #565B64;
  background-color: #ffffff;
}

.modal_bg {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 800px;
  background: rgba(0, 0, 0, 0.7);
}

body.dpi-125 .motion .zoom-contents {
  gap: 30px;
}
body.dpi-125 .motion .card-3col {
  gap: 10px;
}
body.dpi-125 .motion .card-3col .card-item {
  padding: 24px;
  gap: 5px;
}
body.dpi-125 .motion .card-3col .card-item ul {
  gap: 3px;
}
body.dpi-125 .motion .card-3col .card-item .num {
  margin-bottom: 0;
}
body.dpi-125 .section.services div.items .item .img {
  min-width: 381px;
}