@charset "utf-8";

/** 웹폰트 설정 **/
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 400;
  src:
    url("../font/Pretendard-Light.woff2") format("font-woff2"),
    url("../font/Pretendard-Light.woff") format("woff"),
    url("../font/Pretendard-Light.ttf") format("truetype"),
    url("../font/Pretendard-Light.otf") format("opentype");
}
@font-face {
  font-family: "Pretendardbold";
  font-style: normal;
  font-weight: 400;
  src:
    url("../font/Pretendard-Bold.woff2") format("font-woff2"),
    url("../font/Pretendard-Bold.woff") format("woff"),
    url("../font/Pretendard-Bold.ttf") format("truetype"),
    url("../font/Pretendard-Bold.otf") format("opentype");
}

/* mobile style */
* {
  -webkit-text-size-adjust: none;
  font-family: "Pretendard";
  font-weight: 500;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
  outline: none;
  touch-action: manipulation;
}
html,
body {
  min-height: 100%;
  font-size: 20px;
}
table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}
a,
label,
input,
textarea,
button,
select {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  border: none;
  outline: none;
}

body,
form,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
ol,
li,
fieldset,
th,
td,
input,
textarea,
button,
select {
  margin: 0;
  padding: 0;
}

.tab .tab-br-block {
  display: block;
}
.tab .tab-br-none {
  display: none;
}
.pc .pc-br {
  display: none;
}
body {
  min-width: 320px;
  overflow-x: hidden;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
a[href^="tel"] {
  font-style: normal;
}
address,
caption,
em,
var,
i {
  font-style: normal;
  font-weight: normal;
}
input,
textarea,
select {
  letter-spacing: normal;
}
ol,
ul,
dl {
  list-style: none;
}
fieldset,
img {
  border: 0;
  margin: 0;
  padding: 0;
}
.blind,
.hidden,
legend {
  display: block;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: -1000em;
}
caption {
  visibility: hidden;
  overflow: hidden;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
}
img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
}
hr {
  display: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
br,
p {
  letter-spacing: normal;
}
input {
  vertical-align: middle;
}
input[type="text"],
input[type="number"],
input[type="password"] {
  -webkit-appearance: none;
  border-radius: 0;
}
input[type="checkbox"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
input:checked[type="checkbox"] {
  -webkit-appearance: checkbox;
}
input[type="radio"] {
  border: none;
  -webkit-appearance: none;
}
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="file"] {
  -webkit-appearance: button;
  border-radius: 0;
}
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

.text-center {
  text-align: center;
}
.notice {
  background: #2c66fb;
  border-radius: 30px;
  height: 36px;
  line-height: 36px;
  font-size: 18px;
  display: inline-block;
  width: 60px;
  color: #fff;
  text-align: center;
}
/* 화면에 보일 때 아래에서 위로 올라오는 효과 */
.scroll-anim {
  opacity: 0 !important;
  transform: translateY(60px) !important;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease !important;
  will-change: opacity, transform;
}
.scroll-anim.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* 스크롤 애니메이션 (위에서 아래로 내려오는 효과) */
/* 파트너 섹션 등에 사용되는 스크롤 애니메이션 */
.scroll-anim-up {
  opacity: 0;
  transform: translateY(-40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}
.scroll-anim-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 일반 애니메이션 공통 (단방향 1회성용) */
@keyframes fadeUpAnim {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 탭 콘텐츠 페이드 인 애니메이션 */
@keyframes tabContentFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.fade-up {
  animation: fadeUpAnim 1s forwards ease-out;
  opacity: 0;
}
.delay-1 {
  animation-delay: 0.3s;
}

/* 애니메이션 요소 공통 클래스 */
.anim-el {
  opacity: 0;
  animation-fill-mode: both;
}

/* 자식 요소 스크롤 연동 애니메이션 (부모가 is-visible 될 때 작동 - 양방향 스크롤을 위해 transition 사용) */
.scroll-anim .anim-child {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}
.scroll-anim.is-visible .anim-child.fade-up {
  opacity: 1;
  transform: translateY(0);
  animation: none; /* 양방향 반복을 위해 keyframes 애니메이션은 꺼주고 transition 발동 */
}
.scroll-anim.is-visible .anim-child.fade-up.delay-1 {
  transition-delay: 0.3s;
}

/* 헤더 영역 */
.pc .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 20px 0;
  background: none;
}
.header.is-scrolled {
  transition: all 0.1s ease;
  background: #0a1533 !important;
}
.pc .header-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 1410px;
  margin: 0 auto;
}
.pc .btn-menu {
  display: none;
}

.pc .logo-box {
  display: none;
}
.pc .header .logo a {
  display: block;
  width: 194px;
  height: 42px;
  background-image: url("../images/logo.svg");
  background-size: 194px 42px;
  text-indent: -9999px;
}
.pc .header .gnb ul.nav {
  display: flex;
  margin: 0 0 0 290px;
}
.pc .header .gnb ul.nav > li {
  position: relative;
  margin: 0 60px 0 0;
}
.pc .header .gnb ul.nav > li:last-child {
  margin: 0;
}
.pc .header .gnb ul.nav > li > a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition:
    opacity 0.4s ease,
    transform 0.5s;
  display: block;
  height: 40px;
  line-height: 40px;
}
.pc .header .gnb > ul > li > a:hover {
  opacity: 0.5;
}

/* 서브 메뉴 스타일 및 애니메이션 (위에서 아래로 내려오는 효과) */
.pc .header .gnb .sub-menu {
  position: absolute;
  top: 43px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px) scale(0.8);
  min-width: 160px;
  background: linear-gradient(107.91deg, #2e64f6 4.78%, #28a0f5 87.58%);

  padding: 20px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.pc .header .gnb .sub-menu::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
}
.pc .header .gnb > ul > li.on .sub-menu,
.pc .header .gnb .sub-menu.hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  max-height: 400px;
}
.pc .header .gnb .sub-menu ul {
  display: flex;
  flex-direction: column;
  column-gap: 0;
}
.pc .header .gnb .sub-menu ul li {
  padding: 0 0 12px;
}
.pc .header .gnb .sub-menu ul li:last-child {
  padding: 0;
}
.pc .header .gnb .sub-menu a {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  display: block;
  transition:
    opacity 0.4s ease,
    transform 0.5s;
}
.pc .header .gnb .sub-menu a:hover {
  opacity: 0.5;
}
.pc .header .util {
  margin-left: auto;
}
.pc .header .util .btn-contact {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, #2e64f6, #28a0f5);
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.3s;
}
.pc .btn-side-close {
  display: none;
}
.pc .header .util .btn-contact:hover {
  transform: translateY(-3px);
}

/* 상단 비쥬얼 영역 */
.visual-section {
  position: relative;
  height: 920px;
  overflow: hidden;
  margin-top: 0;
  background-color: #010101;
}
.visual-section .visual-swiper {
  width: 100%;
  height: 100%;
}
.visual-section .slide-bg {
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.visual-section .slide-bg::after {
  content: "";
  position: absolute;
  top: 0;
}

.visual-section .slide01 {
  background: url("../images/main_slide01.png") no-repeat center top;
}
.visual-section .slide02 {
  background: url("../images/main_slide02.png") no-repeat center top;
}
.visual-section .scoll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 100;
  transform: translate(-50%, 0);
}
.visual-section .inner {
  position: relative;
  z-index: 2;
  width: 1014px;
  margin: 0 auto;
}
.visual-section .inner .inner-txt {
  position: absolute;
  left: 0;
  top: 0;
}
.visual-section h2 {
  color: #fff;
  font-size: 68px;
  font-weight: 600;
  margin-bottom: 50 px;
  letter-spacing: -0.5px;
  line-height: 140%;
  font-family: Pretendardbold;
}
.visual-section p {
  color: #fff;
  font-size: 24px;
}
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  z-index: 100;
  height: 56px;
}
.scroll-down span {
  display: block;
  margin: 0 auto;
  width: 24px;
  height: 27px;
  border-radius: 20px;
  margin-top: 3px;
  position: relative;
}
.scroll-down span:before {
  transition: all 0.3s;
  animation: scroll-down 0.6s ease-in Infinite alternate;
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 24px;
  height: 24px;
  background: #fff;
  background: url("../images/scoll_down.svg") no-repeat center top;
}
@-webkit-keyframes scroll-down {
  0% {
    top: 7px;
  }
  100% {
    top: calc(100% - 10px);
  }
}
/* 상단 비쥬얼 스와이퍼 컨트롤 (페이지네이션 & 재생/정지) */
.visual-controls {
  position: absolute;
  width: 1024px;
  bottom: 200px;
  left: 50%;
  transform: translate(-50%, 0); /* 자체 크기의 절반만큼 이동 */
  margin: 0 auto;
  display: flex; /* 자식 요소들을 가로로 정렬 */
  justify-content: space-between; /* 요소 간 간격 균등 분배 */
  align-items: center;
  z-index: 1000;
}
/* 페이징 뷸렛 커스텀 */
.visual-controls .swiper-pagination {
  position: static; /* absolute 속성 해제 (부모에서 제어) */
  width: auto;
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  padding: 0 0 0 20px;
}
.visual-controls .swiper-pagination-bullet {
  width: 78px;
  height: 4px;
  background: #fff;
  opacity: 0.2;
  margin: 0 !important;
  transition:
    opacity 0.3s,
    width 0.3s,
    border-radius 0.3s;
  flex-shrink: 0;
  border-radius: 0;
}
.visual-controls .swiper-pagination-bullet-active {
  opacity: 1;
}
/* 재생/정지 버튼 */
.visual-controls .btn-swiper-play {
  width: 62px;
  height: 62px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
  outline: none;
  flex-shrink: 0;
}
.visual-controls .is-playing {
  background: url("../images/slide_stop.svg") no-repeat left top;
}
.visual-controls .is-paused {
  background: url("../images/slide_play.svg") no-repeat left top;
}
/* 솔루션 소개 섹션 */
.section {
  background: #f2f5f8;
  padding: 180px 0 0;
}
.sub-content .tit-box .sub-title {
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -0.5%;
  font-family: "Pretendardbold";
  line-height: 140%;
}

.section h2 {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -0.5%;
  font-family: "Pretendardbold";
  line-height: 150%;
}
.section .content.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  position: relative;
  animation: tabContentFadeIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.section .content .text-area {
  flex: 1;
}
.section .content .highlight-text {
  color: #1c2a39;
  font-size: 46px;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.5%;
  font-family: "Pretendardbold";
}
.section .content h4 {
  font-size: 30px;
  line-height: 150%;
  margin-bottom: 20px;
  color: #1947c4;
  font-weight: 600;
  letter-spacing: -0.5%;
}
.section .content p {
  color: #52595d;
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 150%;
  font-weight: 600;
  letter-spacing: -0.5%;
}
.section .content .btn-more {
  display: inline-flex;
  align-items: center;
  padding: 0 30px;
  height: 62px;
  line-height: 62px;
  background: linear-gradient(135deg, #2e64f6, #28a0f5);
  color: #fff;
  border-radius: 30px;
  gap: 10px;
  transition: transform 0.3s;
}
.section .content .btn-more:hover {
  transform: translateY(-3px);
}
.section .content .btn-more .txt {
  font-weight: 600;
  font-size: 20px;
  padding: 0 30px 0 0;
  background: url("../images/arrow-right.svg") no-repeat right center;
}
.section .content .img-area {
  flex: 1.2;
}
.section.sec-header h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  color: #1b212f;
}
.section .tabs {
  padding: 80px 0 0;
}
.section .tabs ul {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.section .tabs li {
  margin-bottom: -2px;
}
.section .tabs a {
  display: block;
  font-size: 20px;
  color: #52595d;
  font-weight: 400;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: -0.5px;
  padding: 20px 0 6px;
}
.section .tabs li.active a {
  font-family: "Pretendardbold";
  color: #1b212f;
  letter-spacing: -0.5px;
}
.section .tabs a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 100;
  height: 4px;
  background: #1c2a39;
  content: "";
  width: 0;
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section .tabs li.active a:after {
  width: 100%;
}

.section .content-wrap {
  position: relative;
  min-height: 400px;
}

.section .content {
  display: flex;
  padding: 60px 0 181px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  width: 1169px;
  border: 1px solid #eee;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  visibility: hidden;
  transition:
    opacity 0.6s ease-out,
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0.6s ease-out;
  position: absolute;
  width: 1069px;
  margin: 0 auto;
}

.dashboard-mockup {
  border-radius: 12px;
  overflow: hidden;
}
.dashboard-mockup img {
  display: block;
  width: 100%;
}

.business-section {
  padding: 180px 0;
  background: #fff;
}
.business-section .sec-header {
  margin-bottom: 60px;
}
.business-section .sec-header h2 {
  font-family: "Pretendardbold";
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -0.5%;
  line-height: 140%;
}
.business-list {
  display: flex;
  margin: 0 auto;
  width: 1410px;
}
.business-list .b-card {
  margin: 0 30px 0 0;
  flex: 1;
  background: url("../images/busi_bg01.svg") no-repeat left top;
  background-size: cover;
  border-radius: 30px;
  padding: 80px 0;
  color: #fff;
  transition: transform 0.3s;
  box-shadow: 10px 40px 80px 0px #2995f533;
}
.business-list .b-card:last-child {
  margin: 0;
}
.b-card:nth-child(even) {
  background: url("../images/busi_bg02.svg") no-repeat left top;
  background-size: cover;
}

.b-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(79, 128, 255, 0.3);
}
.b-card .icon {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}
.b-card h3 {
  font-size: 24px;
  font-weight: 600;
  font-family: "Pretendardbold";
  margin-bottom: 21px;
  color: #fff;
  font-size: 26px;
  line-height: 140%;
  letter-spacing: -0.5%;
  text-align: center;
}
.b-card p {
  font-size: 600;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.5%;
  text-align: center;
}

.features-section {
  padding: 80px 0;
  background: #fff;
}
.features-section .inner {
  width: 1410px;
  margin: 0 auto;
  padding: 0;
}
.biz-sect .features-grid {
  width: 100%;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #1c2a39;
  border-left: 1px solid #1c2a39;
  border-right: 1px solid #1c2a39;
}
.feature-card {
  padding: 60px 0 74px 50px;
  text-align: left;
  border-bottom: 1px solid #1c2a39;
}
.feature-card .inner {
  position: relative;
  border-right: 1px solid #1c2a39;
  padding-top: 141px;
}
.feature-card .inner .ico {
  position: absolute;
  top: 0;
  left: 0;
}

.feature-card:nth-child(3n) .inner {
  border-right: none;
}
.feature-card:nth-child(6) .inner {
  border-right: none;
}
.feature-icon {
  display: flex;
  margin-bottom: 45px;
}
.feature-card h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1c2a39;
  letter-spacing: -0.5%;
  line-height: 150%;
}
.feature-card p {
  font-size: 20px;
  line-height: 150%;
  color: #52595d;
  letter-spacing: -0.5%;
}

.stats-section {
  background: #0a1533;
  padding: 210px 0;
  font-family: "Pretendardbold";
  color: #fff;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.5%;
}
.stats-section .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1420px;
  margin: 0 auto;
}
.stats-text h2 {
  font-size: 46px;
  line-height: 150%;
  font-weight: 600;
  margin-bottom: 42px;
  color: #fff;
}
.link-circle {
  display: inline-flex;
  padding: 0 64px 0 0;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.5%;
  transition:
    opacity 0.4s ease,
    transform 0.5s;
  cursor: pointer;
  height: 48px;
  line-height: 48px;
  background: url("../images/round-arrow.svg") no-repeat right top;
  opacity: 1;
}
.link-circle:hover {
  opacity: 0.5;
}
.link-circle .circle-arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition:
    all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease,
    border-color 0.3s ease;
}
.link-circle:hover .circle-arrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 1);
  transform: translateX(3px) scale(1.1);
}
.stats-numbers {
  display: flex;
}
.stat-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  width: 330px;
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.15); /* 왼쪽 선 */
  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.6s ease;
  cursor: pointer;
}
.stat-box.highlight {
  background: #1b212f;
  background: linear-gradient(135deg, #2e64f6, #28a0f5);
  border-radius: 20px;
  border-left: none;
}
.stat-box.highlight .num {
  font-family: "Pretendardbold";
  font-size: 80px;
  line-height: 80px;
  height: 80px;
  letter-spacing: -1%;
  color: #fff;
  padding: 0;
}
.stat-box.highlight .num .per {
  font-size: 40px;
  line-height: 150%;
  letter-spacing: -1%;
}
.stat-box .txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.stat-box .num {
  font-size: 54px;
  font-weight: 600;
  font-family: "Pretendardbold";
  line-height: 150%;
  letter-spacing: -0.5%;
  text-align: center;
  padding: 0 0 30px;
  transition:
    font-size 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.6s ease;
}
.stat-box .num .per {
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.5%;
  padding: 0 0 0 2px;
}
.stat-box p {
  font-size: 16px;
  color: #7e8e97;
  line-height: 150%;
  letter-spacing: -0.5%;
  text-align: center;
  transition: color 0.6s ease;
}
.stat-box.highlight p {
  font-size: 16px;
  color: #fff;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.5px;
  padding: 30px 0 0;
}
.partner-section {
  padding: 180px 0;
  overflow: hidden;
  background: #fff;
}
.partner-section .partner-inner {
  width: 1410px;
  margin: 0 auto;
}
.partner-section .partner-tit {
  font-size: 46px;
  line-height: 150%;
  letter-spacing: -0.5%;
  font-family: "Pretendardbold";
  padding: 0 0 60px;
  text-align: center;
}
.partner-section .logo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30;
}
.partner-section .logo-list .logo-img {
  width: 330px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.logo-swiper-top .swiper-slide,
.logo-swiper-bottom .swiper-slide {
  width: 330px;
}
.swiper.logo-swiper-bottom {
  padding: 30px 0 0;
}
.logo-swiper-top .swiper-wrapper,
.logo-swiper-bottom .swiper-wrapper {
  transition-timing-function: linear !important;
}
.partner-section img {
  transition: transform 0.4s ease;
}
.cta-section {
  background: #fff;
  background: #28a0f5 url("../images/blue_gradation.svg") no-repeat center;
  background-size: cover;
}
.cta-section.sub {
  margin: 0;
}
.cta-section .inner {
  position: relative;
  z-index: 10;
  margin: 0;
}
.cta-box {
  width: 1410px;
  margin: 0 auto;
  padding: 180px 0;
  text-align: center;
  color: #fff;
}
.cta-box h2 {
  font-size: 46px;
  line-height: 140%;
  letter-spacing: -0.5%;
  font-family: "Pretendardbold";
}
.cta-box .btn-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 0 0;
}
.cta-box .btn {
  display: inline-flex;
  align-items: center;
  height: 62px;
  line-height: 62px;
  padding: 0 40px;
  border-radius: 30px;
  transition: transform 0.3s;
  margin: 0 30px 0 0;
}
.cta-box .btn:last-child {
  margin: 0;
}
.cta-box .btn .txt {
  font-family: "Pretendardbold";
  font-size: 20px;
  letter-spacing: -0.5px;
  padding: 0 30px 0 0;
}
.cta-box .btn.first {
  background: #fff;
}
.cta-box .btn.first .txt {
  color: #1667ff;
  background: url("../images/blue-arrow.svg") no-repeat right center;
}
.cta-box .btn.last {
  /* border: 1px solid #fff; */
}
.cta-box .btn.last .txt {
  color: #fff;
  /* background: url("../images/white_arrow.svg") no-repeat right center; */
}
.cta-box .btn:hover {
  transform: translateY(-3px);
}
.cta-box .btn:hover .txt {
  opacity: 0.7;
}

.footer {
  background: #0a1533;
  padding: 80px 0 96px;
}
.footer .inner {
  display: flex;
  justify-content: space-between;
  width: 1167px;
  margin: 0 auto;
}
.footer .f-logo {
  margin: 0 0 70px;
  width: 194px;
  height: 42px;
  text-indent: -9999px;
  background: url("../images/footer_logo.svg") no-repeat left center;
}

.footer .f-address .info {
  overflow: hidden;
  padding: 0 0 30px;
}
.footer .f-address .info li {
  position: relative;
  float: left;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.5px;
  color: #fff;
  padding: 0 13px 0 0;
  margin: 0 12px 0 0;
}
.footer .f-address .info li:after {
  position: absolute;
  right: 0;
  top: 3px;
  width: 1px;
  height: 12px;
  content: "";
  background-color: #463d51;
}
.footer .f-address .info li:last-child {
  padding: 0;
  margin: 0;
  color: #7e8e97;
}
.footer .f-address .info li:last-child:after {
  display: none;
}
.footer .f-address .adress {
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.5px;
  color: #7e8e97;
  padding: 0 0 16px 0;
}
.footer .tell {
  overflow: hidden;
  padding: 0 0 16px 0;
}
.footer .tell li {
  float: left;
  position: relative;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.5px;
  color: #7e8e97;
  padding: 0 13px 0 0;
  margin: 0 12px 0 0;
}
.footer .tell li:before {
  position: absolute;
  right: 0;
  top: 3px;
  content: "";
  width: 1px;
  height: 12px;
  background: #7e8e97;
}
.footer .tell li:last-child {
  padding: 0;
  margin: 0;
}
.footer .tell li:last-child:before {
  display: none;
}
.footer .copyright {
  float: left;
  position: relative;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.5px;
  color: #7e8e97;
}
.footer .f-nav {
  display: flex;
  gap: 60px;
}
.footer .f-nav dt {
  font-family: "Pretendardbold";
  padding: 0 0 20px;
  color: #fff;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.5px;
}
.footer .f-nav dd {
  margin-bottom: 12px;
}
.footer .f-nav dd:last-child {
  margin-bottom: 0;
}
.footer .f-nav a {
  transition: color 0.3s;
  font-size: 16px;
  color: #7e8e97;
  line-height: 150%;
  letter-spacing: -0.5px;
}
.footer .f-nav a:hover {
  color: #fff;
}

.quick-menu {
  position: fixed;
  right: 30px;
  bottom: 216px;
  z-index: 10;
}
.quick-menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quick-menu li {
  width: 62px;
  height: 62px;
  box-sizing: border-box;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.quick-menu li.btn-top {
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  background: #fff;
  border-radius: 50%;
  color: #1b212f;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border: 1px solid #eee;
}
.quick-menu li.btn-top a {
  font-weight: 700;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-menu li.btn-quick {
  background: #2c66fb;
  justify-content: flex-end;
  transition: width 0.5s;
  width: 62px;
  height: 62px;
  box-sizing: border-box;
  border-radius: 30px;
  display: flex;
  align-items: center;
  position: relative;
}
.quick-menu ul li.btn-quick a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.quick-menu ul li.btn-quick p {
  position: absolute;
  top: 50%;
  right: 14px;
  width: max-content;
  transform: translateY(calc(-50% - 0.5px));
  z-index: 3;
  opacity: 0;
  transition: all 0.4s;
  font-size: 16px;
  color: var(--point-white);
  font-weight: 600;
  margin-right: 34px;
  opacity: 0;
  font-size: 16px;
  color: #fff;
}

.quick-menu ul li.btn-quick:hover {
  width: 126px;
}
.quick-menu ul li.btn-quick:hover p {
  opacity: 1;
}
.quick-menu ul li.btn-top {
  justify-content: center;
  background: #fff;
  border: 1px solid #aaa;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 72px;
}
.map {
  position: relative;
  width: 100%;
}
.table-guide {
  width: 100%;
  margin: 20px 0 0;
}
.table-guide tr th {
  border-top: 2px solid #1c2a39;
  border-bottom: 1px solid #e5e8eb;
  background: #f6f7f8;
  color: #52595d;
  font-weight: 600;
  height: 92px;
}
.table-guide tbody td {
  height: 92px;
  border-bottom: 1px solid #e5e8eb;
  text-align: center;
}
.table-guide tbody td .notice {
  vertical-align: 9px;
}
.table-guide tbody td.left {
  text-align: left;
  padding: 0 0 0 40px;
}
.table-guide tbody td.left a {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  margin: 5px 0 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #1c2a39;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition:
    text-decoration-color 0.3s ease,
    font-weight 0.3s ease,
    letter-spacing 0.3s ease;
}
.table-guide tbody td.left a:hover {
  font-weight: 600;
  text-decoration-color: #1c2a39;
}
.pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  margin-top: 60px;
}
.pagination ol {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 8px;
}
.pagination ol li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.pagination ol li.number a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: #52595d;
}
.pagination ol li.number a.active,
.pagination ol li.number a:hover {
  background: #2c66fb;
  border-radius: 30px;
  color: #fff;
  font-family: "Pretendardbold";
}
.sub-visual {
  width: 100%;
  height: 570px;
}
.sub-visual.company {
  background: url("../images/bg_company.png") no-repeat center top;
}
.sub-visual.resources {
  background: url("../images/bg_resource.png") no-repeat center top;
}
.sub-visual.careers {
  background: url("../images/bg_careers.png") no-repeat center top;
}
.sub-visual.solution {
  background: url("../images/bg_solutions.png") no-repeat center top;
}
.sub-visual.business {
  background: url("../images/bg_business.png") no-repeat center top;
}
.sub-visual .inner {
  padding: 204px 0 0;
  position: relative;
  width: 1344px;
  margin: 0 auto;
  height: 570px;
  text-align: left;
}
.sub-visual .inner h2 {
  font-family: "Pretendardbold";
  padding: 0 0 30px 0;
  font-size: 60px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.5px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.sub-visual .inner p {
  padding: 30px 0 0;
  font-size: 26px;
  line-height: 150%;
  letter-spacing: -0.5px;
  color: #fff;
}
.sub-content {
  padding: 120px 0 200px;
  width: 100%;
}
.sub-content .const-inner {
  width: 1410px;
  margin: 0 auto;
  position: relative;
}

.sub-content .const-inner .tit-box {
  position: relative;
  padding: 0 0 100px;
}
.sub-content .const-inner .tit-box.org {
  padding: 0 0 50px;
}
.sub-nav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: flex-start;
}
.sub-nav > li {
  padding: 0 20px 0 0;
}
.sub-nav > li:last-child {
  padding: 0;
}
.sub-nav > li > a {
  font-size: 16px;
  display: flex;
  letter-spacing: -0.5px;
  color: #52595d;
  height: 56px;
  line-height: 56px;
  position: relative;
  font-weight: 400;
  -webkit-text-stroke: 0px transparent;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sub-nav > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: #1c2a39;
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sub-nav > li > a.on:before,
.sub-nav > li > a:hover:before {
  width: 100%;
}
.sub-nav > li > a:hover,
.sub-nav > li > a.on {
  color: #1c2a39;
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: "Pretendardbold";
}
.sub-content .sub-cont {
  display: flex;
  flex-wrap: wrap;
}
.sub-content .sub-cont .sub-title,
.sub-content .sub-cont ul {
  width: 100%;
}
.sub-content .sub-cont ul.normal-list {
  display: block;
}
.sub-content .sub-cont ul.depth02 li {
  width: 100%;
}
.sub-content .sub-title01 {
  font-family: "Pretendardbold";
  font-weight: 600;
  font-size: 46px;
  line-height: 60px;
  padding: 0 0 50px;
  color: #1c2a39;
  letter-spacing: -0.5px;
}
.sub-content .sub-txt {
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.5px;
  color: #52595d;
}
.sub-content .sub-cont .sub-con-title {
  padding: 0 0 30px;
  font-family: "Pretendardbold";
  font-size: 46px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.5px;
  color: #1c2a39;
}
.sub-content .sub-cont ul {
  display: flex;
  flex-wrap: wrap;
}
.sub-content .sub-cont ul:last-child {
  padding: 0;
}
.sub-content .sub-cont ul li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 1410px;
}
.map-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  padding: 0;
  width: 100%;
}
.map-info .info-left {
  flex: 0 0 480px;
  padding: 30px 0 0;
}
.map-info .info-left h3 {
  font-family: "Pretendardbold";
  font-size: 46px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.5px;
  line-height: 150%;
}
.map-info .info-right {
  flex: 1;
}
.map-info .info-row {
  display: flex;
  align-items: center;
  height: 116px;
  border-bottom: 1px solid #1c2a39;
  width: 850px;
}
.map-info .info-row .label {
  font-family: "Pretendardbold";
  padding: 0 0 0 1.75em;
  display: flex;
  align-items: center;
  flex: 0 0 190px;
  font-size: 24px;
  font-weight: 600;
  color: #1c2a39;
  letter-spacing: -0.5px;
  line-height: 150%;
  background: url("../images/ico_add.svg") no-repeat left center;
}
.map-info .info-row:last-child .label {
  background: url("../images/ico_tell.svg") no-repeat left center;
}
.map-info .info-row .value {
  font-size: 24px;
  font-weight: 400;
  color: #1c2a39;
  letter-spacing: -0.5px;
  border-bottom: none;
}

.business-lead {
  padding: 100px 0 80px;
}
.business-lead h3 {
  font-size: 40px;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
}
.business-group {
  display: flex;
  flex-direction: column;
  padding: 40px 0 0;
}
.business-item {
  width: 100%;
}
.business-group .business-item {
  padding: 100px 0 0;
}
.business-group .business-item:first-child {
  padding: 0;
}
.business-item .h4-title {
  font-size: 46px;
  font-weight: 700;
  color: #1c2a39;
  line-height: 140%;
  letter-spacing: -0.5px;
  font-family: "Pretendardbold";
  padding: 0 0 40px;
}
.business-item .b-visual {
  width: 100%;
  height: 414px;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
  background-size: cover;
  background-position: center;
}

.business-item .b-visual.ai-visual {
  background: url("../images/business_bg01.svg") no-repeat left top;
}
.business-item .b-visual.security-visual {
  background: url("../images/business_bg02.svg") no-repeat left top;
}
.business-item .b-visual.service-visual {
  background: url("../images/business_bg03.svg") no-repeat left top;
}
.business-item .b-visual-txt {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  width: 500px;
  z-index: 2;
}
.business-item .b-visual-txt strong {
  display: block;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 150%;
  letter-spacing: -0.5px;
}
.business-item .b-visual-txt p {
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.5px;
}
.business-item .b-con {
  display: flex;
  justify-content: space-between;
}
.business-item .b-con .col {
  flex: 1;
  position: relative;
  padding: 176px 0 40px 40px;
  display: flex;
  flex-direction: column;
}
.business-item .b-con .col:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 1px;
  height: 366px;
  background: #1c2a39;
}
.business-item .b-con .col:first-child:before {
  display: none;
}
.business-item .b-con .col .icon {
  width: 96px;
  height: 96px;
  position: absolute;
  top: 40px;
  left: 40px;
}
.business-item .b-con .col .icon img {
  width: 100%;
}
.business-item .b-con .col .h4-tit {
  font-size: 30px;
  font-weight: 600;
  color: #1c2a39;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.business-item .b-con .col .h5-txt {
  font-size: 20px;
  color: #52595d;
  line-height: 150%;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  flex-grow: 1;
}
.business-item .b-con .col .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.business-item .b-con .tags span {
  display: inline-block;
  padding: 8px 12px;
  background: #eef4fe;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #2c66fb;
}
.business-item .b-con .case-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.business-item .b-con .case-list li {
  font-size: 20px;
  color: #52595d;
  line-height: 150%;
  letter-spacing: -0.5px;
  margin: 4px 0 0;
  padding: 0 0 0 8px;
  position: relative;
}
.business-item .b-con .case-list li:first-child {
  margin: 0;
}
.business-item .b-con .case-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #52595d;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sub-content .sub-cont .intro-txt {
  text-align: center;
  font-size: 46px;
  color: #1c2a39;
  line-height: 60px;
  padding: 20px 0 80px;
  width: 100%;
  letter-spacing: 0.5px;
  font-weight: 600;
  word-break: keep-all;
}
.sub-content .sub-cont .intro-txt .bottom-txt {
  color: #2c66fb;
  padding: 10px 0 0;
  font-family: "Pretendardbold";
  font-weight: 600;
  font-size: 50px;
  line-height: 66px;
  letter-spacing: -0.5px;
  word-break: keep-all;
}
.sub-content .sub-cont .info-bottom-txt {
  border-top: 1px solid #1c2a39;
  padding: 80px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sub-content .sub-cont .info-bottom-txt .ceo-txt {
  flex: 0 0 720px;
  font-size: 40px;
  color: #1c2a39;
  line-height: 52px;
  font-family: "Pretendardbold";
  letter-spacing: -0.5px;
  font-weight: 600;
}
.sub-content .sub-cont .info-bottom-txt .ceo-txt .bottom-txt {
  color: #1c2a39;
  padding: 20px 0 0;
  font-family: "Pretendardbold";
  font-weight: 600;
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -0.5px;
}
.sub-content .sub-cont .info-bottom-txt .rgt-txt {
  flex: 1;
}
.sub-content .sub-cont .info-bottom-txt .rgt-txt p {
  color: #1c2a39;
  line-height: 26px;
  padding: 0 0 40px;
  word-break: keep-all;
  letter-spacing: -0.5px;
}
.sub-content .sub-cont .info-bottom-txt .rgt-txt p.bold-txt {
  color: #1c2a39;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: -0.5px;
  padding: 0;
  font-weight: 600;
  margin-bottom: 0;
}
.sub-content .sub-cont .info-bottom-txt .rgt-txt p.bold-txt:last-child {
  padding: 8px 0 0 0;
}

@keyframes historySlideIn {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.history-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.history-box .history-left ul {
  gap: 8px;
}
.history-left {
  width: 570px;
  position: sticky;
  top: 120px;
  flex-shrink: 0;
}
.history-left .history-tab {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.history-left .history-tab li {
  display: flex;
  flex-direction: column;
  padding: 0 0 16px;
}
.history-left .history-tab li {
  display: flex;
  flex-direction: column;
}
.history-left .history-tab li > button {
  font-size: 30px;
  color: #7e8e97;
  border: none;
  line-height: 150%;
  letter-spacing: -0.5px;
  transition: all 0.3s;
  width: 100%;
  cursor: pointer;
  text-align: left;
}
.history-left .history-tab li.active,
.history-left .history-tab li:left-child {
  padding: 0;
}
.history-left .history-tab li.active > button {
  color: #2c66fb;
  font-family: "Pretendardbold";
  font-size: 46px;
  font-weight: 600;
  padding: 0;
  line-height: 140%;
  letter-spacing: -0.5px;
  animation: historySlideIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  transition: none; /* 트랜지션 충돌 방지 */
  display: block;
}
.history-box .history-card {
  width: 100%;
  background: linear-gradient(135deg, #7c90ff, #516afe);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px rgba(81, 106, 254, 0.2);
  margin-top: 50px;
  margin-bottom: 44px;
  display: none;
}
.history-left .history-tab li .history-card {
  display: none;
  padding: 0;
}
.history-left .history-tab li.active .history-card {
  display: flex;
  animation: historySlideIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.1s;
  opacity: 0;
  width: 570px;
}
.history-right {
  width: 690px;
}
.history-list {
  padding-top: 10px;
}
.history-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 50px;
  font-size: 24px;
  line-height: 30px;
  position: relative;
  width: 100%;
  letter-spacing: -0.5px;
}

.history-list li strong {
  font-size: 36px;
  font-family: "Pretendardbold";
  color: #1c2a39;
  line-height: 150%;
  letter-spacing: -0.5px;
  margin-bottom: 12p;
}
.history-list li p {
  font-size: 20px;
  color: #1c2a39;
  line-height: 150%;
  letter-spacing: -0.5px;
  padding: 10px 0 0;
}
.history-list li p:first-child {
  padding: 20px 0 0;
}
.history-right .point strong {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.org-chart-wrap {
  background: #f5f6f8;
  width: 100%;
  padding: 80px 40px;
}
.org-ceo {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.org-ceo .box-blue {
  background: #2c66fb;
  color: #fff;
  padding: 0 103px;
  border-radius: 20px;
  font-size: 30px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  box-shadow: 0px 0px 30px 0px #0000001a;
}
.org-divisions {
  display: flex;
  justify-content: center;
  gap: 60px;
}
.org-col {
  width: 309px;
  display: flex;
  flex-direction: column;
}
.org-col .col-header {
  background: #1c2a39;
  color: #fff;
  font-size: 30px;
  line-height: 100px;
  height: 100px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 20px;
}
.org-col .col-body {
  background: #fff;
  border-radius: 12px;
  padding: 40px 40px 74px;
  flex-grow: 1;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.03);
}
.org-col .col-body ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.org-col .col-body .normal-list li {
  font-size: 24px;
  line-height: 30px;
  color: #1c2a39;
  width: 100%;
  font-weight: 600;
  padding: 0 0 24px;
}

.org-col .col-body .normal-list li:last-child {
  padding: 0;
}
.sub-content .sub-cont ul.normal-list li {
  display: block;
}
.org-col .col-body .normal-list li:last-child {
  margin-bottom: 0;
}
.sub-content .sub-cont ul.depth02 {
  display: block;
  padding: 20px 0 0;
}
.sub-content .sub-cont ul.depth02 > li {
  line-height: 26px;
  font-size: 20px;
  letter-spacing: -0.5px;
  font-weight: normal;
  color: #52595d;
  padding: 0 0 10px;
}
.org-col .col-body .normal-list li ul li {
  width: 100%;
}
.org-col .col-body .grouped-list .group-title {
  font-size: 18px;
  color: #1b212f;
  font-family: "Pretendardbold";
  margin-bottom: 15px;
  margin-top: 30px;
}
.org-col .col-body .grouped-list .group-title:first-child {
  margin-top: 0;
}
.org-col .col-body .grouped-list .group-sub {
  font-size: 16px;
  color: #7e8e97;
  margin-bottom: 10px;
  padding-left: 10px;
}
.org-col .col-body .grouped-list .group-sub:last-child {
  margin-bottom: 0;
}

.core-values {
  display: flex;
  justify-content: space-between;
  border: 1px solid #1c2a39;
  margin-bottom: 100px;
  width: 100%;
}
.core-values .value-item {
  flex: 1;
  padding: 141px 0 0 50px;
  border-left: 1px solid #1c2a39;
  margin: 60px 0 74px;
  position: relative;
}
.core-values .value-item .ico {
  position: absolute;
  left: 50px;
  top: 0;
}
.core-values .value-item:nth-child(1) {
  border-left: none;
}

.core-values .value-item .icon {
  margin-bottom: 30px;
}
.core-values .value-item h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 150%;
  color: #1c2a39;
  margin-bottom: 20px;
}
.core-values .value-item p {
  font-size: 20px;
  letter-spacing: -0.5%;
  color: #52595d;
  line-height: 150%;
}

.recruit-outline {
  display: flex;
  justify-content: space-between;
  gap: 150px;
  margin-bottom: 100px;
  width: 100%;
}
.outline-col {
  flex: 1;
  width: 630px;
}
.outline-sect {
  margin-bottom: 50px;
}
.outline-sect:last-child {
  margin-bottom: 0;
}
.outline-sect h4 {
  font-size: 30px;
  color: #1c2a39;
  padding-bottom: 20px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  border-bottom: 1px solid #1c2a39;
}
.outline-sect ul {
  padding: 0;
}
.outline-sect ul li {
  font-size: 20px;
  color: #52595d;
  position: relative;
  line-height: 26px;
  margin-bottom: 4px;
  word-break: keep-all;
  padding: 0 0 0 8px;
  margin: 0 0 4px;
  background: url("../images/list-bullet.svg") no-repeat left -4px;
}

.outline-sect ul li:last-child {
  margin-bottom: 0;
}
.recruit-process {
  margin-bottom: 60px;
  width: 100%;
}
.process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
  width: 1188px;
  gap: 0;
  justify-content: space-between;
}
.recruit-process .step {
  width: 210px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  align-items: center;
  border: 1px solid #000;
}
.recruit-process .step.bg {
  background: #f3eefe;
}
.recruit-process .step .step-num {
  font-size: 20px;
  color: #2c66fb;
  margin-bottom: 8px;
  font-weight: 600;
}
.recruit-process .step .step-txt {
  font-size: 30px;
  color: #1c2a39;
  line-height: 150%;
  letter-spacing: -0.5%;
}
.recruit-process .step-arrow {
  flex-shrink: 0;
  text-align: center;
}
.recruit-process .step-arrow img {
  width: 20px;
  opacity: 0.4;
}
.recruit-process .step-arrow {
  width: 116px;
}
.btn-box.center {
  text-align: center;
}
.btn-blue-round {
  display: inline-flex;
  background: linear-gradient(107.91deg, #2e64f6 4.78%, #28a0f5 87.58%);
  color: #fff;
  height: 80px;
  border-radius: 50px;
  padding: 0 50px;
  align-items: center;
  transition: transform 0.3s;
}
.btn-blue-round:disabled {
  background: #b4b4b4;
}
.btn-blue-round .txt {
  height: 80px;
  line-height: 80px;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: #fff;
  font-weight: 600;
  padding: 0 30px 0 0;
  background: url("../images/btn-arrow-right.svg") no-repeat right center;
}
.btn-blue-round:hover {
  transform: translateY(-5px);
}

.biz-wrap {
  width: 100%;
}
.biz-title {
  font-family: "Pretendardbold";
  font-size: 30px;
  line-height: 1.2;
  color: #1c2a39;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}
.biz-intro {
  display: flex;
  justify-content: flex-start;
  margin-top: 40px;
  align-items: center;
}
.biz-intro .img-box {
  width: 569px;
  border-radius: 12px;
  margin-right: 80px;
}
.biz-intro .txt-box {
  margin-left: auto;
  align-items: center;
  width: 761px;
}
.biz-intro .txt-box .sub-title02 {
  font-family: "Pretendardbold";
  font-size: 50px;
  line-height: 150%;
  color: #1c2a39;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.biz-intro .txt-box .sub-txt-box p {
  font-size: 20px;
  line-height: 26px;
  color: #52595d;
  letter-spacing: -0.5px;
  padding: 20px 0 0;
}
.biz-intro .txt-box p:first-child {
  padding: 0;
}
.biz-sect {
  width: 100%;
  margin-top: 100px;
}
.deploy-process {
  width: 100%;
  display: flex;
  padding: 84px 80px;
  flex-direction: column;
  align-items: center;
  background: #f6f7f8;
}
.deploy-flow {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.process-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.process-row.reverse {
  flex-direction: row-reverse;
}
.deploy-process .step {
  width: 250px;
  height: 100px;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
  line-height: 150%;
  color: #1c2a39;
  letter-spacing: -0.5px;
  box-shadow: 0px 0px 30px 0px #0000001a;
}
.deploy-process .step.end {
  background: linear-gradient(107.91deg, #2e64f6 4.78%, #28a0f5 87.58%);
  color: #fff;
}
.deploy-process .step.dark {
  background-color: #1c2a39;
  color: #fff;
  box-shadow: 0px 0px 30px 0px #0000001a;
}
.deploy-process .arrow {
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.deploy-process .process-row-down {
  display: flex;
  justify-content: flex-end;
  padding-right: 91px;
  height: 60px;
  align-items: center;
}
.deploy-process .process-row-down img {
  transform: rotate(90deg);
}
.deploy-process .arrow.reverse img {
  transform: rotate(180deg);
}
.deploy-process .process-arrow-final {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.deploy-process .process-final {
  width: 100%;
  height: 100px;
  line-height: 100px;
  background: linear-gradient(107.91deg, #2e64f6 4.78%, #28a0f5 87.58%);
  color: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}
.deploy-process .process-note {
  padding: 50px 0 0;
  color: #52595d;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.5px;
  width: 100%;
  text-align: left;
}
/* Core Features */
.core-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid #1c2a39;
  border-bottom: 2px solid #1c2a39;
}
.core-features li {
  padding: 50px 40px;
  border-bottom: 1px solid #e5e8eb;
  border-right: 1px solid #e5e8eb;
  width: calc(100% / 3);
}
.core-features li:nth-child(3n) {
  border-right: none;
}
.core-features li:nth-child(n + 4) {
  border-bottom: none;
}
.core-features .icon {
  width: 60px;
  height: 60px;
  background-color: #f5f6f8;
  border-radius: 50%;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.core-features .icon img {
  width: 32px;
}
.core-features h4 {
  font-family: "Pretendardbold";
  font-size: 22px;
  color: #1c2a39;
  margin-bottom: 15px;
}
.core-features p {
  font-size: 16px;
  line-height: 1.5;
  color: #52595d;
  word-break: keep-all;
}

.faq-list {
  border-top: 1px solid #e5e8eb;
}
.faq-item.open .faq-q {
  border-bottom: 1px solid #e5e8eb;
  border-left: 1px solid #e5e8eb;
  border-right: 1px solid #e5e8eb;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding: 34px 130px 34px 160px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: #1c2a39;
  word-break: break-all;
  border-bottom: 1px solid #e5e8eb;
}
.faq-q:before {
  position: absolute;
  left: 40px;
  top: 26px;
  content: "";
  width: 40px;
  height: 40px;
  background: url("../images/ico_qestion.svg") no-repeat center;
}
.faq-item.open .faq-q:after {
  transform: rotate(180deg);
}
.faq-q:after {
  position: absolute;
  right: 40px;
  top: 26px;
  content: "";
  width: 40px;
  height: 40px;
  background: url("../images/ico_faq_arrow01.svg") no-repeat center;
  transition: transform 0.3s ease-in-out;
}

.faq-q .toggle-arrow {
  transition: transform 0.3s ease-in-out;
}

.faq-item.open .faq-q .toggle-arrow {
  transform: rotate(-90deg);
}
.faq-item.open .faq-a {
  display: block;
  animation: faqOpen 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.faq-item .faq-a {
  display: none;
  position: relative;
}
.faq-item .faq-a:after {
  position: absolute;
  left: 40px;
  top: 27px;
  content: "";
  width: 40px;
  height: 40px;
  background: url("../images/ico_faq_answer.svg") no-repeat center;
}

.faq-a {
  display: block;
  width: 100%;
  padding: 30px 130px 30px 160px;
  background: #f9fafc;
  overflow: hidden;
}

/* FAQ Answer Animation */
@keyframes faqOpen {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-a .a-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: #52595d;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-family: "Pretendardbold";
  font-size: 18px;
  margin-right: 20px;
  vertical-align: top;
  margin-top: 30px;
}
.faq-a .a-txt {
  display: block;
  width: 100%;
}
.faq-a .point-txt {
  color: #2c66fb;
  font-size: 18px;
  margin-right: 24px;
  font-size: 18px;
  letter-spacing: -0.5px;
  padding: 0 0 15px;
}
.faq-a p {
  font-size: 18px;
  color: #1c2a39;
  font-size: 18px;
  word-break: break-all;
  letter-spacing: -0.5px;
}

.sub-con-title {
  font-family: "Pretendardbold";
  font-size: 30px;
  color: #1b212f;
  margin-bottom: 30px;
}
.logo-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 80px;
  gap: 30px;
}
.logo-list .logo-img {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.sub-board-wrap {
  padding: 238px 0 200px;
  background: #f6f7f8;
}
.sub-board-wrap .board-wrap {
  width: 1410px;
  margin: 0 auto;
  background: #fff;
  padding: 100px;
  box-shadow: 0px 0px 10px 0px #0000001a;
}
.contact-wrap .sub-content {
  padding: 0;
}
.contact-title {
  font-size: 50px;
  font-weight: 600;
  color: #1c2a39;
  font-family: "Pretendardbold";
  line-height: 66px;
  border-bottom: 1px solid #1c2a39;
  padding-bottom: 50px;
  letter-spacing: -0.5px;
}
.contact-form {
  padding-top: 40px;
  width: 1210px;
}
.form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.form-row .input-group {
  width: calc(50% - 20px);
}
.form-row.full .input-group {
  width: 100%;
}
.form-row .input-group label {
  display: block;
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.5%;
  padding: 0 0 16px;
}
.form-row .input-group input[type="text"],
.form-row .input-group textarea {
  width: 100%;
  background: #f1f5f8;
  border: 1px solid #d5d9de;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 20px;
  color: #1c2a39;
  transition: all 0.3s;
  height: 62px;
  line-height: 62px;
  padding: 0 0 0 32px;
}
.form-row .input-group textarea {
  height: 340px;
  line-height: 150%;
  padding: 32px;
}
.form-row .input-group input[type="text"]::placeholder,
.form-row .input-group textarea::placeholder {
  color: #7e8e97;
}
.form-row .input-group input[type="text"]:focus,
.form-row .input-group textarea:focus {
  border: 1px solid #2e64f6;
  outline: none;
  box-shadow: 0 0 0 1px #2e64f6;
}
.btn-submit-wrap {
  text-align: center;
  margin-top: 50px;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2e64f6;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 0 50px;
  height: 64px;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-submit:hover {
  background: #28a0f5;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(40, 160, 245, 0.2);
}

/* 반응형 태블릿/모바일 대응*/
html.tab {
  overflow-x: hidden;
}
.tab .main-content {
  overflow-x: hidden;
}
.tab body {
  overflow-x: hidden;
}
body.tab {
  -webkit-text-size-adjust: 100%;
}

.tab .gnb {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0a1533;
  z-index: 99999;
}

.tab .gnb.is-open {
  right: 0;
}

.tab .gnb-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.tab .header {
  background: none;
  width: 100%;
  height: 92px;
  border-bottom: 1px solid #333;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}
.tab .header.is-scrolled {
  border-bottom: 1px solid #333;
}
.tab .header .header-inner {
  height: 91px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  justify-content: center;
}
.tab .header .header-inner .logo {
  text-indent: -9999px;
  margin-right: auto;
  justify-content: center;
  margin-left: 20px;
}
.tab .header .header-inner .logo a {
  width: 147px;
  height: 30px;
  display: block;
  background-image: url("../images/footer_logo.svg");
  background-size: 147px 30px;
  text-indent: -9999px;
}
.tab .header .header-inner .btn-menu {
  width: 82px;
  height: 91px;
  justify-content: center;
}
.tab .header .header-inner .util {
  display: none;
}
.tab .visual-controls {
  transform: inherit;
  left: 0;
}
.tab .visual-section .inner {
  position: absolute;
  left: 40px;
  top: 250px;
  width: calc(100% - 40px);
}
.tab .visual-section .inner h2 {
  font-size: 34px;
  margin: 0 0 50px;
  color: #fff;
  width: 100%;
}
.tab .visual-section .inner p {
  font-size: 16px;
}
.tab .visual-section {
  height: 850px;
}
.tab .visual-controls {
  display: none;
}
.tab .scroll-down {
  font-size: 12px;
}
.tab .header .gnb .logo {
  width: 147px;
  height: 30px;
  background: url(../images/mo_side_logo.svg) no-repeat left top;
  background-size: 147px 30px;
}
.tab .header .gnb .logo-box {
  height: 92px;
  border-bottom: 1px solid #343e57;
  padding-top: 30px;
}
.tab .header .btn-side-close {
  position: absolute;
  right: 20px;
  top: 30px;
}
.tab .header .nav {
  padding: 16px 0 0;
  height: calc(100% - 92px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
.tab .header .nav > li {
  margin: 8px 0 0 0;
}
.tab .header .nav > li:first-child {
  margin: 0;
}

.tab .header .nav > li > a {
  display: flex;
  position: relative;
  height: 72px;
  line-height: 72px;
  padding: 0 20px;
  font-family: "Pretendardbold";
  font-size: 28px;
  color: #fff;
}

.tab .header .nav > li > a:before {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  background: url(../images/open_side_btn.svg) no-repeat left top;
  background-size: 32px;
  content: "";
}
.tab .header .nav .sub-menu {
  padding: 10px 0 0;
}
.tab .header .nav .sub-menu li {
  padding: 36px 0 0;
}
.tab .header .nav .sub-menu li:first-child {
  padding: 0;
}
.tab .header .nav .sub-menu li a {
  display: flex;
  font-size: 18px;
  color: #7e8e97;
  padding: 0 20px;
  letter-spacing: -1.5px;
  line-height: 140%;
}

/* 아코디언 애니메이션 - 부드러운 다이나믹 효과 */
@keyframes accordionElasticOpen {
  0% {
    max-height: 0;
    opacity: 0;
    transform: translateY(-20px);
  }
  50% {
    opacity: 0.7;
  }
  100% {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes accordionElasticClose {
  0% {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.7;
  }
  100% {
    max-height: 0;
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* 아코디언 스타일 */
.tab .header .nav > li .sub-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform-origin: top;
  visibility: hidden;
}

.tab .header .nav > li.is-open .sub-menu {
  animation: accordionElasticOpen 0.6s cubic-bezier(0.34, 1.56, 0.64, 1)
    forwards;
  visibility: visible;
}

.tab .header .nav > li .sub-menu.closing {
  animation: accordionElasticClose 0.5s cubic-bezier(0.34, 1.56, 0.64, 1)
    forwards;
}

.tab .header .nav > li > a.sub-menu-block {
  cursor: pointer;
}

@keyframes iconRotateOpen {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(180deg);
  }
}

@keyframes iconRotateClose {
  0% {
    transform: translateY(-50%) rotate(180deg);
  }
  100% {
    transform: translateY(-50%) rotate(0deg);
  }
}

.tab .header .nav > li > a.sub-menu-block:before {
  background: url(../images/open_side_btn.svg) no-repeat left top;
  transform: translateY(-50%) rotate(0deg);
}
.tab .header .nav > li.sub-menu-none > a:before {
  display: none;
}
.tab .header .nav > li.is-open > a.sub-menu-block:before {
  animation: iconRotateOpen 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.tab .header .nav > li > a.sub-menu-block.closing-icon:before {
  animation: iconRotateClose 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.tab .section,
.tab .stats-section,
.tab .business-section {
  padding: 30px;
  width: 100%;
}
.tab .content {
  padding: 0;
}
.tab .section h2,
.tab .business-section h2 {
  font-size: 30px;
  word-break: break-all;
  padding: 0 0 30px;
  margin: 0;
  color: #1b212f;
}
.tab .stats-text h2 {
  font-size: 30px;
  word-break: break-all;
  padding: 0 0 30px;
  margin: 0;
  color: #fff;
}
.tab .section .tabs {
  padding: 0;
}
.tab .section .tabs ul {
  flex-wrap: wrap;
  margin: 0 -10px;
}
.tab .section .content-wrap {
  min-height: inherit;
  width: 100%;
}
.tab .section .tabs ul li {
  padding: 0;
  flex: 0 0 50%;
  box-sizing: border-box;
  padding: 0 10px;
}
.tab .section .tabs ul {
  gap: 0;
}
.tab .section .tabs a {
  padding: 0;
  text-align: center;
  height: 52px;
  line-height: 50px;
  font-size: 15px;
}
.tab .section .content .highlight-text {
  font-size: 25px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  width: 100%;
}
.tab .section .content {
  display: inherit;
  width: 100% !important;
}
.tab .section .content .text-area {
  flex-basis: 100%;
  padding: 40px 0 30px;
  text-align: center;
  width: 100%;
}
.tab .section .content .img-area {
  flex-basis: 100%;
  width: 100%;
}
.tab .section .content .img-area img {
  width: 100%;
}
.tab .section .content h4 {
  font-size: 20px;
  text-align: center;
}
.tab .section .content p {
  text-align: center;
}
.tab .section .content .btn-more {
  font-size: 30px;
}
.tab .section .content .btn-more {
  height: 50px;
}
.tab .section .content .btn-more .txt {
  font-size: 15px;
  height: 50px;
  line-height: 50px;
  background-size: 15px;
  padding: 0 20px 0 0;
}
.tab .business-section .sec-header {
  margin-bottom: 0;
}
.tab .business-list {
  flex-wrap: wrap;
  width: 100% !important;
}
.tab .business-list .b-card {
  flex-basis: 100%;
  margin: 0 0 15px;
  padding: 40px 0;
}
.tab .business-list .b-card:last-child {
  margin: 0;
}
.tab .b-card .icon {
  margin-bottom: 10px;
}
.tab .b-card .icon img {
  width: 100px;
  height: 100px;
}
.tab .b-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}
.tab .b-card p {
  font-size: 15px;
  font-size: 15px;
}
.tab .b-card:hover {
  transform: none;
  box-shadow: none;
}
.tab .stats-section .inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.tab .stats-section .stats-text {
  flex-basis: 100%;
  text-align: center;
}
.tab .link-circle {
  background-size: 20px;
  background-position: right center;
  height: 30px;
  line-height: 30px;
  padding: 0 30px 0 0;
}
.tab .stat-box {
  height: 200px;
}
.tab .stats-numbers {
  flex-wrap: wrap;
  margin: 20px 0 0;
  width: 100%;
}
.tab .stats-numbers .stat-box {
  border-left: none;
  width: 100%;
}
.tab .partner-section .partner-tit {
  font-size: 30px;
  word-break: break-all;
  padding: 0 0 30px;
  text-align: center;
}
.tab .partner-section .partner-inner {
  width: 100%;
  padding: 0 30px;
}
.tab .partner-section .logo-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  gap: 20px;
}
.tab .partner-section .logo-list .logo-img {
  width: auto;
  justify-content: center;
}
.tab .partner-section .logo-list .logo-img img {
  max-width: 100%;
}
.tab .partner-section .swiper-slide img {
  width: 150px;
  height: 55px;
}
.tab .logo-swiper-top .swiper-slide,
.tab .logo-swiper-bottom .swiper-slide {
  width: 150px;
}

@media (max-width: 768px) {
  .tab .partner-section {
    padding: 30px 0;
  }
  .tab .partner-section .partner-tit {
    font-size: 24px;
    padding: 0 0 20px;
  }
  .tab .partner-section .logo-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .tab .partner-section .swiper-slide img {
    width: 120px;
    height: 44px;
  }
  .tab .logo-swiper-top .swiper-slide,
  .tab .logo-swiper-bottom .swiper-slide {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .tab .partner-section .partner-tit {
    font-size: 20px;
    padding: 0 0 15px;
  }
  .tab .partner-section .logo-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .tab .partner-section .swiper-slide img {
    width: 100px;
    height: 36px;
  }
  .tab .logo-swiper-top .swiper-slide,
  .tab .logo-swiper-bottom .swiper-slide {
    width: 100px;
  }
}
.tab .cta-section {
  padding: 0 40px;
  margin: 0;
}
.tab .cta-section .cta-box {
  width: 100%;
  background-size: cover;
  padding: 30px;
}
.tab .cta-box h2 {
  padding: 0 0 20px;
  font-size: 20px;
  word-break: break-all;
  line-height: 160%;
}
.tab .cta-box .btn-wrap {
  padding: 0;
  flex-wrap: wrap;
}
.tab .cta-box .btn {
  height: 50px;
  padding: 0 30px;
  margin: 0 0 15px 0;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  flex-basis: 100%;
}
.tab .cta-box .btn:last-child {
  margin: 0;
}
.tab .cta-box .btn .txt {
  font-size: 15px;
  height: 50px;
  line-height: 50px;
  background-size: 20px;
  padding: 0 20px 0 0;
  background-size: 15px;
}
.tab .footer {
  padding: 20px;
}
.tab .footer .f-nav {
  display: none;
}
.tab .footer .f-logo {
  background-size: 149px 32px;
  margin: 0 0 40px;
}
.tab .footer .f-address .info li {
  font-size: 14px;
  padding: 0 9px 0 0;
  margin: 0 8px 0 0;
}
.tab .footer .f-address .info li:after {
  top: 4px;
}
.tab .footer .f-address .adress {
  font-size: 12px;
  padding: 0 0 20px;
}
.tab .footer .tell {
  padding: 0 0 22px 0;
}
.tab .footer .tell li {
  font-size: 12px;
  padding: 0 9px 0 0;
  margin: 0 8px 0 0;
}
.tab .footer .tell li::before {
  top: 2px;
}
.tab .footer .copyright {
  font-size: 12px;
}
.tab .quick-menu ul > li {
  width: 42px;
  height: 42px;
}
.tab .quick-menu img {
  width: 42px;
  height: 42px;
}
.tab .quick-menu ul li.btn-top {
  top: 50px;
}
.tab .quick-menu {
  bottom: 98px;
}
.tab .quick-menu ul li.btn-quick p {
  margin: 0 20px 0 0;
  font-size: 13px;
}
.tab .quick-menu ul li.btn-quick:hover {
  width: 100px;
}
.tab .sub-visual .inner {
  width: 100%;
  height: 570px;
  padding: 204px 40px 40px;
}
.tab .sub-visual .inner h2 {
  font-size: 40px;
  padding: 0 0 20px 0;
  line-height: 45px;
}
.tab .sub-visual .inner p {
  font-size: 20px;
  padding: 20px 0 0;
  line-height: 25px;
}
.tab .sub-content {
  padding: 30px;
}
.tab .sub-content .sub-title {
  font-size: 30px;
  line-height: 35px;
}
.tab .sub-content .const-inner {
  width: 100%;
}
.tab .sub-content .const-inner .tit-box {
  padding: 0 0 30px;
}
.tab .sub-content .sub-cont .sub-con-title {
  font-size: 24px;
  line-height: 30px;
  padding: 0 0 15px;
  margin: 0;
}
.tab .sub-content .sub-cont ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px;
  width: 100%;
  padding: 0;
}
.tab .sub-content .sub-cont .logo-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 0 0 50px;
}
.tab .sub-content .sub-cont .logo-list li {
  height: 140px;
  padding: 15px;
  background-size: initial;
  background-position: initial;
}
@media (max-width: 768px) {
  .tab .sub-content .sub-cont .logo-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .tab .sub-content .sub-cont .logo-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .tab .sub-content .sub-cont .logo-list li {
    height: 100px;
    padding: 10px;
  }
}

.tab .sub-content .sub-cont .info-bottom-txt {
  flex-direction: column;
  padding: 40px 0;
}
.tab .sub-content .sub-cont .info-bottom-txt .ceo-txt {
  flex: none;
  width: 100%;
  margin-bottom: 30px;
}
.tab .sub-content .sub-cont .info-bottom-txt .rgt-txt {
  padding-left: 0;
}
.tab .map-info {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 30px;
}
.tab .map-info .info-left {
  flex: none;
  width: 100%;
  padding: 0 0 20px;
}
.tab .map-info .info-left h3 {
  font-size: 36px;
}
.tab .map-info .info-right {
  width: 100%;
}
.tab .map-info .info-row {
  height: auto;
  min-height: 80px;
  padding: 20px 0;
}
.tab .sub-content .sub-cont {
  padding: 0;
  background-size: 200%;
}
.tab .sub-content .sub-cont .intro-txt {
  font-size: 26px;
  line-height: 35px;
  padding: 0 0 40px;
}
.tab .sub-content .sub-cont .intro-txt .bottom-txt {
  font-size: 30px;
  display: block;
  text-align: center;
  line-height: 35px;
  padding: 10px 0 0;
}
.tab .sub-content .sub-cont .info-bottom-txt .ceo-txt {
  font-size: 26px;
}
.tab .sub-content .sub-cont .info-bottom-txt .ceo-txt img {
  width: 100%;
}
.tab .sub-content .sub-cont .info-bottom-txt .rgt-txt p {
  font-size: 20px;
  margin-bottom: 20px;
  padding: 0 0 20px;
  margin: 0;
}
.tab .sub-content .sub-cont .info-bottom-txt .rgt-txt p.bold-txt {
  font-size: 20px;
  padding: 0;
  line-height: 25px;
}
.tab .map-info .info-left {
  flex: 0;
}
.tab .map-info .info-row {
  width: 100%;
}

.tab .history-left {
  display: none;
}
.tab .org-chart-wrap {
  padding: 20px;
}
.tab .sub-content .sub-cont ul li {
  padding: 0;
  background-size: 4px 16.5px;
  background-position: left 2px;
}
.tab .sub-content .sub-cont ul li img {
  width: 100%;
  height: auto;
  display: block;
}
.tab .sub-content .sub-title01 {
  font-size: 24px;
  line-height: 30px;
  padding: 0 0 20px;
  margin: 0;
}
.tab .sub-content .sub-txt {
  font-size: 15px;
}
.tab .org-divisions {
  display: block;
}
.tab .org-col {
  width: 100%;
  margin: 0 0 15px;
}
.tab .org-col:last-child {
  margin: 0;
}
.tab .org-ceo {
  margin: 0 0 30px;
}
.tab .org-col .col-header {
  margin-bottom: 10px;
  font-size: 20px;
  height: 50px;
  line-height: 50px;
}
.tab .org-col .col-body {
  padding: 30px;
}
.tab .sub-content .sub-cont ul.normal-list li {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 10px;
}
.tab .sub-content .sub-cont ul.normal-list li:last-child {
  margin-bottom: 0;
}
.tab .sub-content .sub-cont ul.depth02 {
  padding: 10px 0 0;
}
.tab .sub-content .sub-cont ul.depth02 > li {
  font-size: 15px;
  line-height: 20px;
}
.tab .org-ceo .box-blue {
  font-size: 20px;
  padding: 0 50px;
  height: 80px;
  line-height: 80px;
}
.tab .history-list li strong {
  font-size: 30px;
  line-height: 35px;
}
.tab .history-list li p {
  font-size: 20px;
  line-height: 25px;
  padding: 10px 0 0;
}
.tab .table-guide {
  margin: 0;
  border-top: 2px solid #1c2a39;
  display: block;
  width: 100%;
}
.tab .table-guide thead {
  display: none;
}
.tab .table-guide tbody {
  display: block;
  width: 100%;
}
.tab .table-guide tbody tr {
  border-bottom: 1px solid #e5e8eb;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  width: 100%;
}
.tab .table-guide tbody td {
  flex: 0 0 100%;
  border-bottom: none;
  width: 100%;
  text-align: left;
  padding-bottom: 10px;
  height: auto;
  font-size: 20px;
}
.tab .table-guide tbody td:last-child {
  padding: 0;
}
.tab .table-guide tbody td.left {
  padding-left: 0;
}
.tab .table-guide tbody td.left a {
  display: block;
  width: 100%;
  margin: 0;
}
.tab .table-guide tbody td .notice {
  vertical-align: 0;
}
.tab .pagination {
  margin-top: 20px;
}
.tab .pagination ol {
  gap: 3px;
}
.tab .pagination ol li a {
  display: flex;
  width: 20px;
  height: 20px;
  line-height: 20px;
  justify-content: center;
  align-items: center;
  font-size: 15px;
}
.tab .biz-sect {
  margin-top: 30px;
}
.tab .deploy-process {
  padding: 15px;
}
.tab .deploy-process .process-row {
  flex-direction: column;
}
.tab .deploy-process .step {
  width: 100%;
  font-size: 15px;
  height: 50px;
}
.tab .deploy-process .arrow {
  margin: 10px 0;
}
.tab .deploy-process .arrow img {
  transform: rotate(90deg);
}
.tab .deploy-process .process-row-down {
  justify-content: center;
  padding-right: 0;
  height: auto;
  margin: 10px 0;
}
.tab .deploy-process .process-row-down img,
.tab .deploy-process .arrow img {
  width: 30px;
  height: 30px;
}
.tab .deploy-process .process-arrow-final {
  padding: 10px;
}
.tab .deploy-process .process-arrow-final img {
  width: 100px;
}
.tab .deploy-process .process-final {
  height: 80px;
}
.tab .deploy-process .process-note {
  padding: 25px 0 0;
  font-size: 15px;
  line-height: 20px;
}
.tab .biz-sect .features-grid {
  flex-direction: column;
  display: flex;
}
.tab .feature-card .inner {
  border-right: none;
}
.tab .biz-sect .feature-card {
  padding: 80px 30px 40px;
  margin: 0;
  border-left: none;
  border-bottom: 1px solid #1c2a39;
  background-position: 30px 30px;
  background-size: 45px;
  background-repeat: no-repeat;
}
.tab .feature-card .inner .ico {
  position: absolute;
  top: -50px;
}
.tab .feature-card .inner .ico img {
  width: 45px;
  height: 45px;
}

.tab .biz-sect .feature-card .inner {
  background: none;
  padding-top: 0;
}
.tab .feature-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.tab .feature-card p {
  font-size: 16px;
  word-break: keep-all;
}
.tab .faq-q {
  padding: 15px 60px 15px 60px;
  font-size: 15px;
  line-height: 20px;
}
.tab .faq-q:before {
  width: 30px;
  height: 30px;
  background-size: 30px;
  left: 15px;
  top: 10px;
}
.tab .faq-q:after {
  width: 30px;
  height: 30px;
  background-size: 30px;
  right: 15px;
  top: 10px;
}
.tab .faq-item.open .faq-a {
  padding: 15px 60px 15px 60px;
}
.tab .faq-item.open .faq-a:after {
  width: 30px;
  height: 30px;
  background-size: 30px;
  left: 15px;
  top: 13px;
}
.tab .faq-a p {
  font-size: 15px;
  line-height: 20px;
}
.tab .faq-a .point-txt {
  padding: 0 0 10px;
}
@media (max-width: 768px) {
  .tab .map-info .info-left h3 {
    font-size: 28px;
  }
  .tab .map-info .info-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
  }
  .tab .map-info .info-row .label {
    flex: none;
    margin-bottom: 12px;
    font-size: 20px;
    background-size: 25px;
  }
  .tab .map-info .info-row .value {
    font-size: 16px;
  }
  .tab .map-info .info-row:last-child .label {
    background-size: 20px;
  }
}
@media (max-width: 630px) {
  .tab .sub-nav {
    flex-wrap: wrap;
  }
  .tab .sub-nav > li {
    flex: 0 0 50%;
    padding: 0;
  }
}

.tab .sub-visual.careers {
  background-size: cover;
  background-position: center bottom;
}
.tab .recruit-wrap {
  padding-top: 20px;
}
.tab .core-values {
  flex-direction: column;
  margin-bottom: 50px;
}
.tab .core-values .value-item {
  padding: 80px 30px 40px;
  margin: 0;
  border-left: none;
  background-size: 45px;
  border-bottom: 1px solid #1c2a39;
}
.tab .core-values .value-item .ico {
  position: absolute;
  left: 30px;
  top: 30px;
  width: 45px;
  height: 45px;
}

.tab .core-values .value-item:last-child {
  border-bottom: none;
}
.tab .core-values .value-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.tab .core-values .value-item p {
  font-size: 16px;
  word-break: keep-all;
}
.tab .core-values .recruit-outline {
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}
.tab .core-values .outline-sect {
  margin-bottom: 30px;
}
.tab .core-values .outline-sect h4 {
  font-size: 24px;
  line-height: 30px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.tab .core-values .outline-sect ul li {
  font-size: 20px;
  line-height: 25px;
}
.tab .core-values .recruit-process {
  margin-bottom: 40px;
}
.tab .core-values .process-steps {
  flex-direction: column;
  width: 100%;
  margin-bottom: 50px;
  gap: 10px;
}
.tab .core-values .step {
  width: 100%;
  padding: 30px 20px;
  height: auto;
}
.tab .core-values .step .step-txt {
  font-size: 25px;
  line-height: 30px;
}
.tab .core-values .step-arrow {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tab .recruit-wrap .step-arrow img {
  transform: rotate(90deg);
}
.tab .btn-box.center .btn-blue-round {
  height: 60px;
  padding: 0 30px;
}
.tab .btn-box.center .btn-blue-round .txt {
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  background-size: 16px;
  padding: 0 20px 0 0;
}
.tab .recruit-wrap .recruit-outline {
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}
.tab .recruit-wrap .outline-sect {
  margin-bottom: 30px;
}
.tab .recruit-wrap .outline-sect:last-child {
  margin-bottom: 0;
}
.tab .recruit-wrap .outline-sect h4 {
  font-size: 20px;
  line-height: 25px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.tab .recruit-wrap .outline-sect ul li {
  font-size: 16px;
  line-height: 20px;
}
.tab .outline-col {
  width: 100%;
}
.tab .recruit-wrap .process-steps {
  flex-direction: column;
  width: 100%;
  margin-bottom: 50px;
  gap: 10px;
}
.tab .recruit-wrap .step {
  width: 100%;
  padding: 30px 20px;
  height: auto;
}
.tab .recruit-wrap .step .step-txt {
  font-size: 25px;
  line-height: 30px;
}
.tab .recruit-wrap .step-arrow {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tab .recruit-wrap .step-arrow img {
  transform: rotate(90deg);
}
.tab .recruit-wrap .btn-blue-round {
  height: 60px;
  padding: 0 30px;
}
.tab .recruit-wrap .btn-blue-round .txt {
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  background-size: 16px;
}
.tab .biz-intro {
  flex-direction: column;
  width: 100%;
  margin: 0;
  align-items: flex-start;
}
.tab .biz-intro .img-box {
  margin: 0;
  width: 100%;
  text-align: center;
  padding: 0 0 10px;
}
.tab .biz-intro .txt-box {
  width: 100%;
}
.tab .biz-intro .txt-box .sub-title02 {
  font-size: 30px;
  line-height: 35px;
  align-items: flex-start;
}

.tab .biz-intro .txt-box .sub-txt-box p {
  font-size: 15px;
  line-height: 20px;
  padding: 10px 0 0;
}

.tab .business-group {
  padding: 0;
}
.tab .business-group .business-item {
  padding: 30px 0 0;
}
.tab .business-group .business-item:first-child {
  padding: 0;
}
.tab .business-item .h4-title {
  font-size: 20px;
  line-height: 25px;
  padding: 0 0 20px;
}
.tab .business-item .b-visual {
  height: 320px;
  margin-bottom: 30px;
  background-position: left center;
  border-radius: 12px;
}
.tab .business-item .b-visual-txt {
  width: 100%;
  right: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0 25px;
  text-align: center;
}
.tab .business-item .b-visual-txt strong {
  font-size: 30px;
  line-height: 35px;
  margin-bottom: 10px;
}
.tab .business-item .b-visual-txt p {
  font-size: 20px;
  line-height: 25px;
}
.tab .business-item .b-con {
  flex-direction: column;
}
.tab .business-item .b-con .col {
  padding: 40px 0 20px 0;
  border-bottom: 1px solid #c3c1c1;
}
.tab .business-item .b-con .col:first-child {
  padding-top: 0;
}
.tab .business-item .b-con .col:last-child {
  border-bottom: none;
  padding: 40px 0 0;
}
.tab .business-item .b-con .col:before {
  display: none;
}
.tab .business-item .b-con .col .icon {
  position: static;
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}
.tab .business-item .b-con .col .h4-tit {
  font-size: 24px;
  margin-bottom: 10px;
}
.tab .business-item .b-con .col .h5-txt {
  font-size: 16px;
  margin-bottom: 10px;
}
.tab .business-item .b-con .case-list li {
  font-size: 16px;
  margin: 4px 0 0;
  line-height: 24px;
}

.tab .business-item .b-con .tags span {
  font-size: 13px;
  padding: 6px 12px;
}

@media (max-width: 600px) {
  .tab .sub-content .tit-box .sub-title {
    font-size: 28px;
    line-height: 35px;
  }
  .tab .business-item .b-visual {
    height: 240px;
  }
  .tab .business-item .b-visual-txt strong {
    font-size: 18px;
    line-height: 23px;
  }
  .tab .business-item .b-visual-txt p {
    font-size: 15px;
    line-height: 20px;
  }
}

.mo-only-link {
  display: none;
}
.tab .sub-board-wrap {
  padding: 150px 20px 100px;
}
.tab .sub-board-wrap .board-wrap {
  width: 100%;
  padding: 50px 30px;
  border-radius: 12px;
}
.tab .contact-title {
  font-size: 30px;
  padding-bottom: 15px;
  line-height: 35px;
}
.tab .contact-form {
  width: 100%;
  padding-top: 30px;
}
.tab .form-row {
  margin-bottom: 20px;
}
.tab .form-row .input-group label {
  font-size: 18px;
  padding: 0 0 10px;
}
.tab .form-row .input-group input[type="text"],
.tab .form-row .input-group textarea {
  font-size: 16px;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
}
.tab .form-row .input-group textarea {
  height: 200px;
  padding: 20px;
}

@media (max-width: 1024px) {
  .pc-only-text {
    display: none;
  }
  .mo-only-link {
    display: inline;
  }
}

@media (max-width: 768px) {
  .tab .form-row {
    flex-direction: column;
    margin-bottom: 0;
  }
  .tab .form-row .input-group {
    width: 100%;
    margin-bottom: 20px;
  }
  .tab .sub-board-wrap {
    padding: 120px 15px 80px;
  }
  .tab .sub-board-wrap .board-wrap {
    padding: 30px 20px;
  }
}
