@charset "utf-8";

@import url('base.css');

/* --------------------------------------------
 * layout
/* ------------------------------------------ */
.mbg {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=70);
  opacity: .7;
  z-index: 9;
}

body.ovf_hdn,
.ovf_hdn {
  overflow: hidden;
  height: 100%;
}


#wrap {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

/*** layout ***/
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 30px;
  transform: translateY(-100%);
  transition: all .3s ease;
  z-index: 3;
}

#header .inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 0 0 0;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .logo {
  width: 94px;
}

#header .logo a {
  display: block;
  height: 37px;
  background: url(../images/logo.png) no-repeat 50% 50% / cover;
}

#header .utill {
  position: relative;
  display: flex;
  gap: 35px;
  justify-content: flex-end;
  align-items: center;
}

#header .bt-menu {
  position: relative;
  width: 38px;
  height: 38px;
  color: transparent;
  font-size: 0;
}

#header .bt-menu i {
  display: block;
  width: 30px;
  height: 4px;
  background-color: #111;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  transition: all .3s ease;
}

#header .bt-menu i:nth-child(1) {
  margin-top: -8px;
}

#header .bt-menu i:nth-child(2) {
  margin-top: 4px;
}

.subBg {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: #fff;
  border-top: #ddd 1px solid;
  display: none;
}

nav {
  position: relative;
  z-index: 1;
}

nav>ul {
  display: flex;
  align-items: center;
}

nav>ul>li {
  padding: 0 22px;
}

nav a {
  position: relative;
  display: block;
}

nav>ul>li>a {
  line-height: 70px;
  color: #111;
  font-size: 20px;
}

nav>ul>li>a:hover {
  text-decoration: none;
}

nav>ul>li>a::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 0;
  top: 68px;
  left: 50%;
  background-color: #624ef0;
  display: block;
  opacity: 0;
  transition: all .3s ease;
}

nav>ul>li:hover>a::after {
  left: 0;
  width: 100%;
  opacity: 1;
}

nav .subDepth {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  padding: 18px 0 0 0;
  font-size: 18px;
  white-space: nowrap;
  display: none;
}

nav .gnb1 .subDepth {
  left: -130px;
}

nav .gnb2 .subDepth {
  left: -100px;
}

nav .gnb3 .subDepth {
  left: 200px;
}

nav .subDepth>li {
  position: relative;
  display: inline-block;
}

nav .subDepth>li>a {
  color: #111;
  line-height: 1.1;
  font-size: 18px;
  padding: 0 36px;
}

nav .subDepth>li:hover>a {
  color: #624ef0;
}

nav .subDepth>li+li::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 7px;
  background-color: #ddd;
  transform: translateY(-50%);
}

nav .subDepth>li>ul {
  padding: 10px 0 0 0;
}

nav .subDepth>li>ul>li>a {
  font-size: 16px;
  color: #fff;
  opacity: .5;
  text-indent: -10px;
  padding-left: 10px;
}

nav .subDepth>li>ul>li>a::before {
  content: '';
  width: 4px;
  height: 1px;
  background-color: #fff;
  display: inline-block;
  margin-right: 4px;
  vertical-align: 4px;
}

nav .subDepth>li>ul>li:hover>a {
  opacity: 1;
  text-decoration: none;
}

nav .subDepth>li>ul>li+li {
  margin-top: 5px;
}

.menu-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 10;
}

.menu-content {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100vh;
  padding: 0 30px;
  background-color: rgba(0, 0, 0, .8);
  backdrop-filter: blur(10px);
  display: none;
}

.menu-content .allMenu {
  margin: 150px auto 0;
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  gap: 90px;
  max-width: 1440px;
}

.menu-content .allMenu a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.menu-content .allMenu>li {
  flex: 1;
}

.menu-content .allMenu>li>a {
  font-size: 40px;
  font-weight: 400;
}

.menu-content .allMenu>li>a:hover,
.menu-content .subDepth>li>a:hover {
  opacity: .6;
  text-decoration: underline;
}

.menu-content .allMenu>li>ul {
  margin: 80px 0 0 0;
}

.menu-content .subDepth {
  margin: 25px 0 0 0;
}

.menu-content .subDepth>li+li {
  margin-top: 25px;
}

.menu-content .subDepth>li>a {
  font-size: 20px;
  padding-right: 10px;
}

.menu-content .subDepth li>ul {
  margin-top: 18px;
}

.menu-content .subDepth li>ul>li+li {
  margin-top: 6px;
}

.menu-content .subDepth li>ul>li>a {
  font-size: 20px;
  padding-right: 1rem;
}

.menu-content .subDepth li>ul>li>a::before {
  content: '';
  width: 4px;
  height: 1px;
  background-color: #fff;
  display: inline-block;
  margin-right: 10px;
  vertical-align: 4px;
}

.menu-content .subDepth li>ul>li>a:hover {
  color: #fff;
  text-decoration: none;
}

.menu-content .menu-hd {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 120px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  align-items: center;
}

.menu-content .close {
  position: absolute;
  width: 38px;
  height: 38px;
  display: block;
  top: 40px;
  right: 20px;
  color: transparent;
  font-size: 0;
}

.menu-content .close i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 4px;
  background-color: #fff;
  display: block;
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-content .close i:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.solution #header,
.company #header,
.support #header,
.career #header,
.contact #header,
#header.on {
  background-color: #fff;
}

.main #header .logo {
  filter: brightness(0) invert(1);
}

.main #header nav>ul>li>a {
  color: #fff;
}

.main #header .bt-menu i {
  background-color: #fff;
}

.main #header.on .logo,
#header.on .logo {
  filter: none;
}

.main #header.on nav>ul>li>a,
#header.on nav>ul>li>a {
  color: #111;
}

.main #header.on .bt-menu i,
#header.on .bt-menu i {
  background-color: #111;
}

footer {
  padding: 50px 40px;
  background-color: #000;
  position: relative;
  z-index: 10;
}

footer .footerWrap {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 14px;
}

footer .footer-con {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

footer .copy {
  text-align: right;
  font-size: 16px;
  margin-top: 90px;
}

footer address {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 40px;
  font-size: 20px;
}

footer address span {
  display: flex;
  gap: 12px;
  color: #fff;
}

footer address span:last-child {
  width: 100%;
  justify-content: flex-end;
}

footer address b {
  color: #666;
  font-weight: 400;
}

.btTop {
  position: fixed;
  bottom: 60px;
  right: 30px;
  z-index: 999;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 99;
  background-color: #4214ff;
  overflow: hidden;
  font-size: 0;
  color: transparent;
}

.btTop::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
  height: 74px;
  background: url(../images/top.png) no-repeat 50% 50% / 24px;
  transition: top .6s ease;
}

.btTop::after {
  content: '';
  display: block;
  position: absolute;
  top: 150%;
  left: 0;
  width: 74px;
  height: 74px;
  background: url(../images/top.png) no-repeat 50% 50% / 24px;
  transition: top .6s ease;
}

.btTop:hover {
  opacity: .6;
}

.btTop:hover:before {
  top: -150%;
}

.btTop:hover:after {
  top: 0;
}

.btTop.on {
  opacity: 1;
  visibility: visible;
}

.btTop.bottom {
  bottom: 320px;
}

.visual-sect {
  position: relative;
  overflow: hidden;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}

.visual-sect .img {
  position: relative;
  width: 100%;
}

.visual-sect .img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.visual-sect:after {
  display: block;
  content: '';
  width: 100%;
  height: 101%;
  position: absolute;
  top: -0.5%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  transition: left .4s ease-in-out;
  -webkit-transition: left .4s ease-in-out;
  -moz-transition: left .4s ease-in-out;
  -ms-transition: left .4s ease-in-out;
  -o-transition: left .4s ease-in-out;
}

.visual-sect.animate::after {
  left: 100%;
}

.visual-sect .tit {
  position: absolute;
  left: 50%;
  bottom: 100px;
  width: 100%;
  padding-left: 220px;
  max-width: 1440px;
  transform: translate(-50%, 0);
  font-size: 90px;
  color: #fff;
  font-weight: 600;
  opacity: 0;
}

.visual-sect.animate .tit {
  opacity: 1;
  padding-left: 0;
  transition: all .8s .8s ease-in-out;
}

.sub-location {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.sub-location .location {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: end;
  align-items: center;
}

.sub-location .location>li {
  position: relative;
}

.sub-location .location>li>a {
  padding: 0 20px 0 22px;
  display: flex;
  align-items: center;
  height: 50px;
  line-height: 50px;
}

.sub-location .location>li:nth-child(3)>a {
  padding-right: 40px;
}

.sub-location .location>li:nth-child(3)>a::after {
  content: '';
  position: absolute;
  top: 34%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: #111 2px solid;
  border-right: #111 2px solid;
  transform: rotate(135deg) translate(0, -50%);
  display: block;
}

.career .sub-location .location>li:last-child>a,
.contact .sub-location .location>li:last-child>a {
  padding-right: 0;
}

.sub-location .location>li+li::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 3px;
  height: 3px;
  background-color: #111;
  display: block;
  border-radius: 50%;
  transform: translate(0, -50%);
}

.sub-location .depth3 {
  position: absolute;
  top: 44px;
  right: 0;
  width: 100%;
  padding: 20px;
  display: none;
  border: #ddd 1px solid;
  background-color: #fff;
}

.solution .sub-location .depth3,
.company .sub-location .depth3 {
  width: 150px;
  background-color: #fff;
}

.sub-location .location>li.h>a {
  width: 50px;
  height: 50px;
  padding: 0;
  display: block;
  background: url(../images/ic_h.png) no-repeat 50% 50% / 14px;
  color: transparent;
  font-size: 0;
}

.sub-location .depth3 a {
  display: block;
  padding: 5px 0;
}

.sub-title {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 60px;
  font-weight: 200;
  color: #111;
  line-height: 1;
  gap: 30px;
  margin-bottom: 120px;
}

.sub-title>p {
  line-height: 1.2;
}

.sub-title .title {
  font-size: 90px;
  display: flex;
  justify-content: space-between;
}

.sub-title .sub-tx {
  font-size: 30px;
  margin-top: 70px;
  font-weight: 400;
  line-height: 1.4;
}

.s-tit {
  font-size: 60px;
  margin-bottom: 60px;
}

ul.ul-list01>li {
  text-indent: -10px;
  padding-left: 10px;
}

ul.ul-list01>li+li {
  margin-top: 5px;
}

ul.ul-list01>li::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #111;
  display: inline-block;
  margin-right: 6px;
  vertical-align: 4px;
}


/*** /layout ***/

#container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

#indexWrap {
  position: relative;
  z-index: 1;
}

.mainvisual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.mainvisual .panel {
  position: relative;
  width: 100%;
  height: 100vh;
  /* 화면 꽉 차게 */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mainvisual .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.mainvisual .object {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* 각 섹션 배경 이미지 (샘플) */
.mainvisual .first .bg {
  background-image: url('../images/visual1_bg.jpg');
}

.mainvisual .first .object {
  width: 1150px;
  transform: translate(-50%, -51%);
}

.mainvisual .second .bg {
  background-image: url('../images/visual2_bg.jpg');
}

.mainvisual .second .object {
  width: 3990px;
  transform: translate(-50%, -38%);
}

.mainvisual .third .bg {
  background-image: url('../images/visual3_bg.jpg');
}

.mainvisual .third .object {
  width: 2380px;
  left: auto;
  top: 0;
  left: 50%;
  transform: translate(-40%, -10%);
}

.mainvisual h3 {
  color: white;
  font-size: 5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.mainvisual .text-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  /* 글자가 아래에 있을 때 가려주는 역할 */
}

.mainvisual .text-wrap .line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 230px;
  height: 11px;
  background-color: #fff;
  display: block;
  transform: translate(-50%, -50%) scaleX(0);
  transform-origin: center;
}

.mainvisual .reveal-text,
.mainvisual .reveal-text2 {
  color: #fff;
  margin: 0;
  transform: translateY(200%);
  /* 처음에 아래로 완전히 내려놓음 */
}

.mainvisual .reveal-text {
  font-size: 100px;
}

.mainvisual .reveal-text2 {
  font-size: 24px;
  font-weight: 400;
}

.mainvisual .pagination {
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.mainvisual .pagination.hide {
  opacity: 0;
  pointer-events: none;
}

.mainvisual .dot {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mainvisual .dot.active {
  width: 24px;
  height: 6px;
  background-color: #fff;
  border-radius: 10px;
}

.mainvisual .next-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  z-index: 1000;
  background: url(../images/arrow.png) no-repeat center center / contain;
  /* 최상단에 위치 */
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0;
  color: transparent;
  z-index: 2;
  animation: move .6s ease-in-out .3s infinite alternate;
}

@-webkit-keyframes move {
  0% {
    bottom: 20px;
  }

  100% {
    bottom: 30px;
  }
}

@keyframes move {
  0% {
    bottom: 20px;
  }

  100% {
    bottom: 30px;
  }
}

/* 마지막 섹션에서는 버튼 숨기기 처리 등을 위한 클래스 */
.mainvisual .next-arrow.hide {
  opacity: 0;
  pointer-events: none;
}

.main-con {
  position: relative;
  z-index: 4;
}

.main-con.s4 {
  padding: 100px 40px 190px;
}

.main-con .main-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 75px;
  text-align: center;
}

.main-con .main-title b {
  font-weight: 400;
  color: #4214ff;
}

.main-con.s2 {
  padding: 180px 40px 0;
  background-color: #f1f0f6;
}

.main-con.s2 .s2-ani {
  position: relative;
  padding: 220px 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
}

.main-con.s2 .s2-ani .itm {
  position: absolute;
}

.main-con.s2 .s2-ani .itm1 {
  top: 100px;
  left: 50%;
  margin-left: -610px;
}

.main-con.s2 .s2-ani .itm2 {
  top: 110px;
  left: 50%;
  margin-left: 270px;
}


.main-con.s2 .s2-ani .itm3 {
  top: 470px;
  left: 50%;
  margin-left: -610px;
}


.main-con.s2 .s2-ani .itm4 {
  top: 490px;
  left: 50%;
  margin-left: 160px;
}

@keyframes s2-floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-45px);
  }
}

@keyframes s2-floating2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

@keyframes s2-shadow {

  0%,
  100% {
    transform: scale(.8);
  }

  50% {
    transform: scale(2);
    opacity: .7;
  }
}

.s2-ani-item.itm0 {
  position: relative;
}

.s2-ani-item.itm0.aos-animate img.robot {
  animation: s2-floating 2s ease-in-out infinite;
  animation-delay: .75s;
  /* AOS duration 800ms + delay 450ms */
}

.s2-ani-item.itm0.aos-animate img.robot_shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  animation: s2-shadow 2s ease-in-out infinite;
  animation-delay: .75s;
  /* AOS duration 800ms + delay 450ms */
}

.s2-ani .itm1.aos-animate img {
  animation: s2-floating2 2s ease-in-out infinite;
  animation-delay: .3s;
  /* AOS duration 800ms + delay 450ms */
}

.s2-ani .itm2.aos-animate img {
  animation: s2-floating2 2s ease-in-out infinite;
  animation-delay: .9s;
  /* AOS duration 800ms + delay 450ms */
}

.s2-ani .itm3.aos-animate img {
  animation: s2-floating2 2s ease-in-out infinite;
  animation-delay: .6s;
  /* AOS duration 800ms + delay 450ms */
}

.s2-ani .itm4.aos-animate img {
  animation: s2-floating2 2s ease-in-out infinite;
  animation-delay: .8s;
  /* AOS duration 800ms + delay 450ms */
}

.main-con.s3 {
  padding: 180px 40px 0;
}

.main-con.s3 .bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  background: url('../images/s3_bg.jpg') no-repeat center center / cover;
  z-index: -1;
  transition: all 1s ease;
}

.main-con.s3.aos-animate .bg {
  width: 1920px;
  height: 780px;
}

.main-con.s3 .main-s3-list {
  margin: 80px auto 0;
  max-width: 1440px;
}

.main-con.s3 .main-s3-tab {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.main-con.s3 .main-s3-tab a {
  height: 60px;
  width: 180px;
  background-color: #f1eeff;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #4214ff;
}

.main-con.s3 .main-s3-cont {
  margin-top: 60px;
}

.main-con.s3 .main-s3-tab a.active {
  background-color: #4214ff;
  color: #fff;
  font-weight: 600;
}

.main-con.s3 .main-s3-cont .item {
  display: none;
  text-align: center;
}

.main-con.s3 .main-s3-cont .item.active {
  display: block;
}

/* S3 item animation initial state */
.main-con.s3 .main-s3-cont .item .s3-hd .logo,
.main-con.s3 .main-s3-cont .item .s3-hd .text,
.main-con.s3 .main-s3-cont .item .s3-bd .bd-list li,
.main-con.s3 .main-s3-cont .item .s3-bd .bd-img {
  opacity: 0;
}

/* S3 item active animations */
.main-con.s3 .main-s3-cont .item.active .s3-hd .logo {
  animation: s3FadeIn 0.6s ease forwards;
}

.main-con.s3 .main-s3-cont .item.active .s3-hd .text {
  animation: s3FadeIn 0.6s ease forwards;
  animation-delay: 0.3s;
}

.main-con.s3 .main-s3-cont .item.active .s3-bd .bd-list li:nth-child(1) {
  animation: s3FadeInUp 0.6s ease forwards;
  animation-delay: 0.6s;
}

.main-con.s3 .main-s3-cont .item.active .s3-bd .bd-list li:nth-child(2) {
  animation: s3FadeInUp 0.6s ease forwards;
  animation-delay: 0.8s;
}

.main-con.s3 .main-s3-cont .item.active .s3-bd .bd-list li:nth-child(3) {
  animation: s3FadeInUp 0.6s ease forwards;
  animation-delay: 1.0s;
}

.main-con.s3 .main-s3-cont .item.active .s3-bd .bd-img {
  animation: s3FadeIn 0.6s ease forwards;
  animation-delay: 1.4s;
}

@keyframes s3FadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes s3FadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-con.s3 .main-s3-cont .item .bx {
  background-color: #27234e;
  border-radius: 25px;
}

.main-con.s3 .main-s3-cont .item .s3-hd {
  position: relative;
  padding: 40px 65px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
  color: #fff;
  font-size: 20px;
  text-align: left;
}

.main-con.s3 .main-s3-cont .item .s3-hd .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.main-con.s3 .main-s3-cont .item .s3-hd .text b {
  font-size: 45px;
}

.main-con.s3 .main-s3-cont .item .more {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 60px;
  top: 55px;
  background-color: #fff;
  border-radius: 5px;
  font-size: 0;
  color: transparent;
}

.main-con.s3 .main-s3-cont .item .more::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 14px;
  height: 14px;
  background: url(../images/ic_next.png) no-repeat 50% 50% / 14px;
  transform: translate(-50%, -50%);
}

.main-con.s3 .main-s3-cont .item .s3-bd {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  padding: 0 65px 0 44px;
  gap: 90px;
}

.main-con.s3 .main-s3-cont .item .s3-bd .bd-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 100px;
}

.main-con.s3 .main-s3-cont .item .s3-bd .bd-list li {
  display: flex;
  gap: 30px;
}

.main-con.s3 .main-s3-cont .item .s3-bd .bd-list li .tx-bx {
  background-color: #dcdcf8;
  color: #27234e;
  padding: 30px 45px;
  font-size: 20px;
  border-radius: 15px;
  flex: 1;
  text-align: left;
  position: relative;
}

.main-con.s3 .main-s3-cont .item:nth-child(4) .s3-bd .bd-list {
  padding-bottom: 90px;
}

.main-con.s3 .main-s3-cont .item:nth-child(4) .s3-bd .bd-list li .tx-bx {
  padding: 30px 20px;
}

.main-con.s3 .main-s3-cont .item .s3-bd .bd-list li:nth-child(even) {
  flex-direction: row-reverse;
}

.main-con.s3 .main-s3-cont .item .s3-bd .bd-list li .tx-bx::after {
  content: '';
  border-top: 25px solid #dcdcf8;
  border-left: 40px solid transparent;
  position: absolute;
  top: 0;
  left: -20px;
}

.main-con.s3 .main-s3-cont .item .s3-bd .bd-list li:nth-child(even) .tx-bx::after {
  border-right: 40px solid transparent;
  border-left: none;
  left: auto;
  right: -20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-s4-list {
  display: flex;
  justify-content: center;
  margin: 100px auto 0;
  width: 100%;
  max-width: 1440px;
  gap: 38px;
}

.main-s4-list .item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  height: 360px;
  width: calc(25% - 28px);
  color: #fff;
  padding: 40px;
  font-size: 24px;
  position: relative;
}

.main-s4-list .item .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  background-color: #2555c3;
  border-radius: 30px;
}

.main-s4-list .item img {
  position: relative;
}

.main-s4-list .item .txt {
  position: relative;
}

.main-s4-list .item:nth-child(2) .bg {
  background-color: #526ad9;
}

.main-s4-list .item:nth-child(3) .bg {
  background-color: #956bf7;
}

.main-s4-list .item:nth-child(4) .bg {
  background-color: #1a3ef3;
}

.main-con.s5 {
  padding: 170px 40px 180px;
  background: url(../images/main_s5.jpg) no-repeat 50% 50% / cover;
}

.main-con.s5 .main-title {
  color: #fff;
}

.main-s5-list {
  margin: 100px auto 0;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  gap: 44px;
}

.main-s5-list .item {
  width: calc(33.3% - 28px);
  border-radius: 30px;
  background-color: rgba(68, 95, 211, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #111;
  padding: 64px 48px 48px;
  display: flex;
  flex-direction: column;
  font-size: 24px;
  justify-content: flex-end;
}

.main-s5-list .item:nth-child(2) {
  background-color: rgba(149, 107, 247, 0.2);
}

.main-s5-list .item:nth-child(3) {
  background-color: rgba(26, 62, 243, 0.2);
}

.main-s5-list .item .text {
  margin-bottom: auto;
}

.main-s5-list .item .logo {
  margin-top: 25px;
}

.main-s5-list .item .img {
  margin-left: auto;
  margin-top: 50px;
}

.main-partner {
  margin: 150px auto 0;
  width: 100%;
  max-width: 1440px;
}

.main-partner .title {
  font-size: 36px;
  color: #fff;
}

.main-partner .main-partner-ctrl {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.main-partner .main-partner-ctrl button {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  margin: 10px 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: transparent;
  background-color: #fff;
  font-size: 0;
}

.main-partner .main-partner-ctrl button:hover img {
  filter: brightness(0) invert(1);
}


.main-partner .main-partner-ctrl button:hover {
  background-color: #4214ff;
}

.main-partner .main-partner-ctrl button.prev {
  transform: rotate(180deg);
}

.main-con.s6 {
  padding: 170px 40px 180px;
  background: url(../images/main_s6.jpg) no-repeat 50% 50% / cover;
}

.main-con.s6 .main-title {
  color: #fff;
}

.main-con.s6 .btn,
.bt-inquiry {
  min-width: 360px;
  padding: 0 120px 0 65px;
}

/* solution */
.inOrg-wr .s-tit {
  margin-bottom: 20px;
}

.solution-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
}

.solution-list .itm {
  width: calc(50% - 15px);
  background-color: #eff3fa;
  border-radius: 30px;
  padding: 30px 30px 25px;
  display: flex;
  flex-direction: column;
}

.solution-list .itm .tit {
  font-size: 33px;
  font-weight: 400;
  margin-bottom: 15px;
}

.solution-list .itm .tit span {
  font-size: 16px;
  display: inline-block;
  margin-left: 16px;
  color: #666;
}

.solution-list .itm .ul-list01 {
  margin-bottom: 20px;
}

.solution-list .itm .img {
  margin-top: auto;
}

.solution-key {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 85px;
  padding: 80px 0;
  background-color: #eff3fa;
}

.solution-key .s-tit {
  max-width: 1440px;
  margin: 0 auto 60px;
}

.solution-key .key-wr {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.solution-key .key-wr .itm {
  background-color: #fff;
  border-radius: 20px;
  padding: 45px 50px;
  display: flex;
  align-items: center;
  gap: 80px;
  font-size: 18px;
}

.solution-key .key-wr .itm .tit {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}

.solution-refer {
  margin-top: 150px;
}

.refer-wr {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 60px;
}

.refer-wr .itm {
  border: #ddd 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  width: calc(33.3% - 40px);
  overflow: hidden;
}

.solution .main-con.s6 {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 150px;
}

/* company */
.about-wr {
  display: flex;
  flex-direction: column;
}

.about-bx1 {
  font-size: 30px;
  max-width: 50%;
  margin: 0 0 0 auto;
}

.about-bx2 {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 140px;
  background: url(../images/about_img1.jpg) no-repeat 50% 50% / cover;
  height: 520px;
  display: flex;
  align-items: center;
}

.about-bx2 ul {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  color: #fff;
  display: flex;
}

.about-bx2 ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 30px;
  text-align: center;
  flex: 1;
}

.about-bx2 ul li+li::before {
  content: '';
  position: absolute;
  display: block;
  background-color: rgba(255, 255, 255, .2);
  width: 1px;
  height: 120px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.about-bx2 ul li b {
  font-size: 90px;
}

.about-bx2 ul li .counter-bx {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
}

.page-tit {
  margin: 150px 0 60px;
  text-align: center;
  font-size: 60px;
  line-height: 1.1;
}

.about-bx3 ul {
  display: flex;
  gap: 44px;
}

.about-bx3 ul li {
  width: calc(33.3% - 29px);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 30px;
  text-align: center;
  padding: 45px;
  background-color: #dadef6;
}

.about-bx3 ul li:nth-child(2) {
  background-color: #eae1fd;
}

.about-bx3 ul li:nth-child(3) {
  background-color: #d1d8fd;
}

.about-bx4 {
  margin: 0;
  padding: 90px 30px 150px;
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background: #f5f5f5 url(../images/about_img2.jpg) no-repeat 50% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-bx4 .tit {
  position: relative;
  width: 300px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #4214ff 1px solid;
  border-radius: 50px;
  background-color: #fff;
  color: #3f16ff;
  font-size: 30px;
  z-index: 2;
}

.about-bx4 .tit::before {
  content: '';
  position: absolute;
  display: block;
  background-color: #4214ff;
  width: 12px;
  height: 12px;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

.about-bx4 .about-bx4-1 {
  position: relative;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 90px;
  border-radius: 30px;
  background-color: #4214ff;
  width: 100%;
  max-width: 1440px;
  color: #fff;
  font-size: 30px;
  gap: 30px;
  text-align: center;
}

.about-bx4 .about-bx4-1.about-bx4-2 {
  background-color: #111;
}

.about-bx4 .about-bx4-1+.tit::after {
  content: '';
  position: absolute;
  top: -90px;
  left: 50%;
  background-color: #4214ff;
  display: block;
  height: 90px;
  width: 1px;
}

.about-bx4 .about-bx4-1::before {
  content: '';
  position: absolute;
  display: block;
  background-color: #fff;
  width: 2px;
  height: 50px;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  border-left: #6f7ee1 2px dashed;
}

.about-bx4 .about-bx4-1 b {
  font-size: 39px;
  font-family: 'GMarketSans';
  font-weight: 400;
}

.about-bx4 .about-bx4-1+.tit {
  margin-top: 90px;
}

.history-wr {
  position: relative;
  margin-bottom: 200px;
}

.history-wr::after {
  display: block;
  content: "";
  width: 1px;
  height: 95.4%;
  z-index: -1;
  border-left: 2px dotted #ccc;
  position: absolute;
  left: calc(240px + 330px - 80px);
  top: 34px;
  opacity: 0;
  animation: fadeIn .8s .6s ease forwards;
}

.history-wr .linewrap {
  position: absolute;
  top: 34px;
  left: calc(240px + 330px - 80px);
  width: 2px;
  height: 0%;
  background: #4214ff;
}

.history-wr>.his {
  display: flex;
  justify-content: space-between;
  margin-bottom: 85px;
}

.history-wr .year {
  position: relative;
  width: 240px;
  font-size: 64px;
  color: #ddd;
  font-weight: 700;
}

.history-wr .year:before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border: 2px solid #dcdcdc;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 100%;
  top: 33px;
  z-index: 10;
  opacity: 0;
  transition: all .4s .4s ease;
}

.history-wr .year:after {
  display: block;
  content: "";
  width: 240px;
  height: 1px;
  box-sizing: border-box;
  background: #ddd;
  position: absolute;
  left: calc(100% + 10px);
  top: 40px;
  opacity: 0;
}

.history-wr>.his ul {
  position: relative;
  box-sizing: border-box;
  width: calc(100% - 240px);
  padding-top: 28px;
  padding-left: 330px;
  font-size: 24px;
}

.history-wr>.his ul:before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border: 2px solid #dcdcdc;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 243px;
  top: 33px;
  z-index: 2;
}

.history-wr>.his ul li {
  display: flex;
  gap: 5px;
}

.history-wr>.his ul li+li {
  margin-top: 22px;
}

.history-wr .his .year,
.history-wr .his ul li b,
.history-wr .his .year:after,
.history-wr .his ul:before {
  transition: all .4s ease;
}

.history-wr .his.on ul:before {
  border-color: #4214ff;
}

.history-wr .his.on ul:after {
  display: block;
  content: "";
  width: 45px;
  height: 45px;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(66, 20, 255, 0.2);
  position: absolute;
  left: 228px;
  top: 18px;
  z-index: 1;
  transform: scale(0);
  transition: all 0.4s ease;
}

.history-wr .his.on ul:after {
  transform: scale(1);
}

.history-wr .his.on .year {
  color: #111;
}

.history-wr .his.on .year::before {
  opacity: 1;
}

.history-wr .his.on .year:after {
  opacity: 1;
}

.div-tab {
  display: flex;
  gap: 25px;
  margin-bottom: 110px;
}

.div-tab .tab {
  padding: 0 20px;
  min-width: 240px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #7d87a2;
  border-radius: 40px;
  background-color: #e2e6f1;
}

.div-tab .tab.on {
  background-color: #4214ff;
  color: #fff;
}

.cert-wr {
  margin-bottom: 170px;
}

.cert-wr .s-tit {
  color: #4214ff;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0;
}

.cert-list {
  display: flex;
  gap: 90px 48px;
  flex-wrap: wrap;
  margin-top: 75px;
}

.cert-list+.s-tit {
  margin-top: 100px;
}

.cert-list .itm {
  width: calc(25% - 36px);
}

.cert-list .itm .img {
  position: relative;
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 30px;
}

.cert-list .itm .txt li+li {
  margin-top: 5px;
}

.locations-wr .main-con.s6 {
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 120px;
}

.locations-wr .s-tit {
  margin-bottom: 40px;
}

.locations-wr .addr {
  font-size: 24px;
}

.locations-wr .map {
  margin-top: 50px;
}

.locations-wr .map iframe {
  width: 100%;
  height: 640px;
}

.locations-wr .map+.s-tit {
  margin-top: 140px;
}

.locations-wr .loc-tx {
  display: flex;
  border-top: #ddd 1px solid;
  border-bottom: #ddd 1px solid;
  padding: 50px 30px;
  justify-content: space-between;
  font-size: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.locations-wr .loc-tx li {
  display: flex;
  gap: 20px;
  align-items: center;
}

.locations-wr .loc-tx li b {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 18px;
}

.locations-wr .loc-tx li b::before {
  content: '';
  width: 24px;
  height: 24px;
  background-size: cover;
}

.locations-wr .loc-tx li:nth-child(1) b::before {
  background-image: url(../images/ic_loc1.png);
}

.locations-wr .loc-tx li:nth-child(2) b::before {
  background-image: url(../images/ic_loc2.png);
}

.locations-wr .loc-tx li:nth-child(3) b::before {
  background-image: url(../images/ic_loc3.png);
}

/** support **/

.support-wr {
  padding-bottom: 150px;
}

.support-bx {
  display: flex;
  gap: 45px;
}

.support-bx .itm {
  position: relative;
  flex: 1;
  flex-direction: column;
  padding: 80px 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 24px;
}

.support-bx .itm .bg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 30px;
  z-index: -1;
  background-color: #dadef6;
}

.support-bx .itm:nth-child(2) .bg {
  background-color: #eae1fd;
}

.support-bx .itm:nth-child(3) .bg {
  background-color: #d1d8fd;
}

.support-bx .itm .tit {
  margin: 30px 0 15px;
  font-size: 30px;
}

.notice-wr {
  padding-bottom: 150px;
}

.tblHd {
  margin: 30px 0 0 0;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tblHd .total strong {
  color: #2b40f5;
  font-weight: 400;
}

.tblHd .tblHd-r .btFilter {
  display: none;
  background-color: #808290;
  color: #fff;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
}

.tblHd .tblHd-r .btFilter::after {
  content: '';
  width: 1.9rem;
  height: 1.9rem;
  display: block;
  border-radius: 50%;
  margin-left: .5rem;
  background: #2b40f5 url(../images/ic_filter.png) no-repeat 50% 50% / 1rem;
}

.tblHd .tblSch {
  position: relative;
  width: 420px;
  display: flex;
}

.tblHd .tblSch .inp {
  background-color: #f2f2f2;
  height: 60px;
  line-height: 60px;
  padding: 0 70px 0 30px;
  border: none;
  border-radius: 30px;
  flex: 1;
}

.tblHd .tblSch .inp:focus {
  outline: none;
  background-color: #f2f2f2;
}

.tblHd .tblSch .sch {
  position: absolute;
  top: 50%;
  right: 0;
  width: 60px;
  height: 60px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #4214ff url(../images/ic_sch.png) no-repeat 50% 50% / 24px;
}

.tblHd .tblSch .sch:hover {
  background: #333 url(../images/ic_sch.png) no-repeat 50% 50% / 24px;
}

.newsLst {
  display: flex;
  flex-direction: column;
  border-top: #000 1px solid;
  margin: 30px 0 0 0;
}

.newsLst .newsLst-itm {
  border-bottom: #e6e6e6 1px solid;
  padding: 55px 0;
}

.newsLst .newsLst-itm>a {
  display: flex;
  align-items: center;
  padding: 0 28px;
}

.newsLst .newsLst-itm .img {
  width: 300px;
  overflow: hidden;
  margin-right: 35px;
}

.newsLst .newsLst-itm .img img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
}

.newsLst .newsLst-itm .desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 18px;
}

.newsLst .newsLst-itm .desc .tit {
  font-size: 36px;
  color: #000;
}

.newsLst .newsLst-itm .desc .tit em {
  color: #2b40f5;
}

.newsLst .newsLst-itm .desc .txt {
  margin: 25px 0;
  overflow: hidden;
  white-space: normal;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.newsLst .newsLst-itm .desc .date {
  color: #1e1e1e;
}

.newsLst .newsLst-itm>a:hover .desc .tit {
  text-decoration: underline;
}

div.paging {
  text-align: center;
  padding: 0;
  margin: 50px 0 0 0;
  position: relative;
}

div.paging a,
div.paging strong {
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 40px;
  color: #1e1e1e;
  text-align: center;
  margin: 0;
  vertical-align: middle;
  overflow: hidden;
  margin-left: -5px;
}

div.paging a:hover {
  color: #2b40f5;
}

div.paging .on,
div.paging .on:hover {
  color: #2b40f5;
  font-weight: 400;
}

div.paging .direction {
  position: relative;
  background-position: 50% 50%;
  background-size: 24px;
  background-repeat: no-repeat;
  opacity: .2;
}

div.paging .direction>span {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

div.paging .direction.first {
  background-image: url(../images/ic_paging_last.png);
  transform: rotate(-180deg);
}

div.paging .direction.prev {
  background-image: url(../images/ic_paging_next.png);
  transform: rotate(-180deg);
}

div.paging .direction.next {
  background-image: url(../images/ic_paging_next.png);
}

div.paging .direction.last {
  background-image: url(../images/ic_paging_last.png);
}

div.paging .direction:hover {
  opacity: 1;
}

.tbl-view {
  border-bottom: #e5e5e5 1px solid;
}

.tbl-view .view-hd {
  padding: 0 0 50px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.tbl-view .view-hd .subject {
  font-size: 36px;
  font-weight: 600;
  color: #111;
  flex: 1;
}

.tbl-view .view-date {
  border-top: #000 1px solid;
  border-bottom: #000 1px solid;
  padding: 20px 0;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.tbl-view .view-date .date {
  display: flex;
  gap: 30px;
}

.tbl-view .view-att {
  display: flex;
  gap: 30px;
}

.tbl-view .view-date .date dt,
.tbl-view .view-att dt {
  font-weight: 600;
}

.tbl-view .view-att dd {
  flex: 1;
  display: flex;
  gap: 15px 80px;
  flex-wrap: wrap;
}

.tbl-view .view-att dd .itm {
  color: #111;
  display: flex;
  align-items: center;
  gap: 5px;
}

.tbl-view .view-att dd .itm::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../images/ic_clib.png) no-repeat 50% 50% / cover;
}

.tbl-view .view-con {
  font-size: 22px;
  color: #111;
  padding: 100px;
  line-height: 1.8;
}

.notice-btn {
  display: flex;
  margin-top: 40px;
  align-items: center;
  justify-content: center;
}

.notice-btn .btn.lg {
  height: 75px;
  width: 240px;
  font-size: 24px;
}

.notice-btn .txt-bt {
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: .5;
}

.notice-btn .txt-bt.prev {
  margin-right: auto;
}

.notice-btn .txt-bt.prev::before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: #111 2px solid;
  border-right: #111 2px solid;
  transform: rotate(-135deg);
  margin-top: -2px;
}

.notice-btn .txt-bt.next {
  margin-left: auto;
  justify-content: end;
}

.notice-btn .txt-bt.next::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: #111 2px solid;
  border-right: #111 2px solid;
  transform: rotate(45deg);
  margin-top: -2px;
}

.notice-btn .txt-bt:hover {
  opacity: 1;
}

.notice-btn .txt-bt:hover::after,
.notice-btn .txt-bt:hover::before {
  border-color: #111;
}

/** Career **/
.career-bx1 {
  display: flex;
  gap: 45px;
}

.career-bx1 .itm {
  border-radius: 30px;
  flex: 1;
  padding: 30px 30px 60px;
  background-color: #eff3fa;
  flex-direction: column;
  display: flex;
  align-items: center;
  gap: 55px;
}

.career-bx1 .itm .desc {
  gap: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  text-align: center;
}

.career-bx1 .itm .desc .tit {
  font-size: 30px;
  font-weight: 500;
}

.career-benefits {
  position: relative;
  margin-top: 150px;
  padding: 150px 0;
}

.career-benefits::before {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: #eff3fa;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}

.career-bx2 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.career-bx2 .itm {
  width: calc(50% - 20px);
  background-color: #fff;
  border-radius: 20px;
  padding: 55px 45px;
  display: flex;
  align-items: center;
  gap: 45px;
}

.career-bx2 .itm .desc {
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.career-bx2 .itm .tit {
  font-size: 30px;
  font-weight: 400;
}

.career-wr .main-con.s6 {
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}

/** contact **/
.contact .sub-location {
  padding-top: 220px;
  max-width: 1440px;
  margin: 0 auto 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.contact .sub-location .tit {
  color: #111;
  font-size: 90px;
}

.clear-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../images/ic_x3.png);
  border: none;
  font-size: 0;
  color: transparent;
  cursor: pointer;
  display: none;
}

.contact-wr {
  display: flex;
  padding-bottom: 150px;
  gap: 40px;
}

.contact-wr .desc {
  flex: 1;
  padding: 70px 0 0 0;
}

.contact-wr .desc .t1 {
  font-size: 30px;
  font-weight: 300;
}

.contact-wr .desc .t1 span {
  color: #4214ff;
}

.contact-wr .desc .loc-tx {
  margin-top: 60px;
  max-width: 320px;
}

.contact-wr .desc .loc-tx li {
  display: flex;
  padding: 20px 0;
  gap: 20px;
  align-items: center;
}

.contact-wr .desc .loc-tx li+li {
  border-top: #f3f5f7 1px solid;
}

.contact-wr .desc .loc-tx li b {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-wr .desc .loc-tx li b::before {
  content: '';
  width: 24px;
  height: 24px;
  background-size: cover;
}

.contact-wr .desc .loc-tx li:nth-child(1) b::before {
  background-image: url(../images/ic_loc1.png);
}

.contact-wr .desc .loc-tx li:nth-child(2) b::before {
  background-image: url(../images/ic_loc2.png);
}

.contact-wr .desc .loc-tx li:nth-child(3) b::before {
  background-image: url(../images/ic_loc3.png);
}

.form-wr {
  width: 100%;
  max-width: 780px;
}

.form-wr .form-txt {
  text-align: right;
  font-size: 18px;
  color: #4214ff;
  margin-bottom: 45px;
}

.form-wr .form-itm {
  display: flex;
  gap: 30px;
  width: 100%;
  margin-bottom: 55px;
  flex-direction: column;
  gap: 20px;
}

.form-wr .form-itm .hd {
  font-size: 24px;
  font-weight: 500;
}

.form-wr .form-itm .bd {
  flex: 1;
  width: 100%;
}

.form-wr .form-itm .bd {
  display: flex;
  flex: 1;
  align-items: center;
}

.form-wr .form-itm .form-select {
  display: flex;
  gap: 60px;
}

.form-wr .form-itm .form-select label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}

.form-wr .form-itm .bd .inp {
  width: 100%;
}

.form-wr .btn-box {
  justify-content: flex-start;
}

.input-wrapper {
  flex: 1;
  position: relative;
}

.privacy-bx {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.privacy-bx .tit {
  font-size: 24px;
  font-weight: 600;
}

.privacy-bx .text {
  border: #a9b3c0 1px solid;
  padding: 50px 45px;
  border-radius: 10px;
}

.privacy-bx .dv-chk {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.privacy-bx .dv-chk label {
  font-size: 20px;
}

@media screen and (max-width:1440px) {

  .mainvisual .text-wrap {
    padding: 0 40px;
  }

  .visual-sect .tit {
    left: 0;
    transform: translate(0, 0);
  }

  .visual-sect.animate .tit {
    padding: 0 40px;
  }

  .sub-location .location {
    padding: 0 30px;
  }

  #container {
    padding: 0 40px;
  }

  .solution-key {
    padding: 140px 40px 150px;
  }

  .about-bx1 {
    max-width: 80%;
  }

  .history-wr::after {
    height: 95.4%;
    left: calc(240px + 133px - 80px);
  }

  .history-wr .linewrap {
    left: calc(240px + 133px - 80px);
  }

  .history-wr>.his .year:after {
    width: 45px;
    left: calc(100% + 10px);
    top: 40px;
  }

  .history-wr>.his ul {
    width: calc(100% - 240px);
    padding-top: 28px;
    padding-left: 100px;
  }

  .history-wr>.his ul:before {
    left: 46px;
    top: 33px;
  }

  .history-wr>.his.on ul:after {
    left: 31px;
    top: 18px;
  }

  .contact .sub-location .tit {
    padding: 0 0 0 30px;
  }

  @media screen and (max-width:1200px) {

    footer .footerWrap {
      flex-direction: column;
      gap: 30px;
    }

    footer .copy {
      text-align: left;
    }

    footer address {
      flex-wrap: wrap;
    }

    .main-con.s2 .s2-ani {
      padding: 27vw 0 14vw;
    }

    .main-con.s2 .s2-ani .itm0 {
      width: 52vw;
    }

    .main-con.s2 .s2-ani .itm1 {
      width: 26vw;
      top: 13vw;
      margin-left: -44vw;
    }

    .main-con.s2 .s2-ani .itm2 {
      width: 32vw;
      top: 15vw;
      margin-left: 16vw;
    }

    .main-con.s2 .s2-ani .itm3 {
      width: 26vw;
      top: 52vw;
      margin-left: -40vw;
    }

    .main-con.s2 .s2-ani .itm4 {
      width: 26vw;
      top: 55vw;
      margin-left: 16vw;
    }

    @media screen and (max-width:1024px) {

      #header .inner {
        padding: 0;
      }

      nav {
        display: none;
      }

      .mainvisual .reveal-text {
        font-size: 80px;
      }

      .mainvisual .reveal-text2 {
        font-size: 20px;
      }

      .mainvisual .text-wrap .line {
        width: 10vw;
      }

      .main-con .main-title {
        font-size: 55px;
      }

      .main-partner-slide {
        overflow: hidden;
      }

      .main-s4-list {
        gap: calc(40px / 3);
      }

      .main-s4-list .item {
        padding: 40px 20px;
        width: calc(25% - 10px);
        font-size: 16px;
        height: auto;
      }

      .main-s5-list {
        gap: 10px;
      }

      .main-s5-list .item {
        width: calc(33.3% - 10px);
        font-size: 16px;
        padding: 40px 20px;
      }

      footer address,
      footer address span:last-child {
        justify-content: flex-start;
      }

      footer .copy {
        margin-top: 3rem;
      }

      .sub-title .title {
        flex-direction: column;
      }

      .sub-title .title .tx {
        order: 2;
      }

      .sub-title .title .logo {
        order: 1;
      }

      @media screen and (max-width:820px) {

        .menu-content .allMenu,
        .menu-content .allMenu>li>ul {
          margin-top: 40px;
        }


        .menu-content {
          padding: 0;
          background-color: #fff;
        }

        .menu-content .menu-hd {
          padding: 0 1.5rem;
          height: 5.5rem;
          border-bottom: #f0f0f0 1px solid;
        }

        #header .menu-content .menu-hd .logo,
        .main #header .menu-content .menu-hd .logo {
          filter: none;
        }

        .menu-content .close {
          top: 2rem;
          right: 2rem;
          width: 2rem;
          height: 2rem;
        }

        .menu-content .close i {
          width: 2rem;
          background-color: #000;
        }

        .menu-content .allMenu {
          flex-direction: column;
          overflow-y: auto;
          height: calc(100vh - 5.5rem);
          padding: 2rem;
          display: block;
          margin: 0;
        }

        .menu-content .allMenu a {
          color: #666;
          font-size: 1.5rem;
        }

        .menu-content .allMenu>li {
          flex: none;
          width: 100%;
        }

        .menu-content .allMenu>li+li {
          margin-top: 4rem;
        }

        .menu-content .allMenu>li>a {
          position: relative;
          font-size: 1.5rem;
          font-weight: 600;
          color: #000;
        }

        .menu-content .allMenu>li>a::after {
          content: '';
          position: absolute;
          display: block;
          top: 50%;
          right: .5rem;
          margin-top: -1rem;
          transform: rotate(135deg);
          width: 1.2rem;
          height: 1.2rem;
          border-top: #111 .2rem solid;
          border-right: #111 .2rem solid;
        }

        .menu-content .allMenu>li.gnb4>a::after,
        .menu-content .allMenu>li.gnb5>a::after {
          display: none;
        }

        .menu-content .allMenu>li.on>a::after {
          margin-top: -.6rem;
          transform: rotate(-45deg);
        }

        .menu-content .allMenu>li>ul {
          margin: 0;
        }

        .menu-content .subDepth {
          padding: 0;
        }

        .menu-content .subDepth li>ul {
          margin-top: 0;
        }

        .menu-content .subDepth>li>a,
        .menu-content .subDepth li>ul>li>a {
          font-size: 1.5rem;
        }

        .menu-content .subDepth li>ul>li>a::before {
          background-color: #bababa;
        }

        .menu-content .depth3 {
          margin: 1.5rem 0 0 0;
          padding: 0;
        }

        .menu-content .subDepth {
          max-height: 0;
          opacity: 0;
          transform: translateY(-10px);
          overflow: hidden;
          transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
        }

        .menu-content .allMenu>li.on .subDepth {
          max-height: 55rem;
          margin-top: 2.5rem;
          opacity: 1;
          transform: translateY(0);
        }

        .menu-content .allMenu>li.on .subDepth>li>ul {
          margin-top: 2rem;
        }

        .mainvisual .panel {
          align-items: flex-end;
        }

        .mainvisual .text-wrap {
          flex-direction: column;
          align-items: flex-start;
          padding: 0 40px;
          margin-bottom: 170px;
        }

        .mainvisual .text-wrap .line {
          display: none;
        }

        .mainvisual .first .object {
          width: 150vw;
          top: 5%;
          left: -5%;
          transform: translate(0);
        }

        .mainvisual .second .object {
          width: 600vw;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -40%);
        }

        .mainvisual .third .object {
          width: 200vw;
          top: -5%;
          left: -15%;
          transform: translate(0);
        }

        .main-con.s3 .main-s3-cont .item .s3-hd {
          padding: 40px;
        }

        .main-con.s3 .main-s3-cont .item .s3-bd {
          flex-direction: column;
          padding: 0;
          gap: 20px;
        }

        .main-con.s3 .main-s3-cont .item .s3-bd .bd-list {
          padding: 0 40px;
        }

        .main-con.s3 .main-s3-cont .item .s3-bd .bd-img {
          margin-left: auto;
          padding: 0 2rem 3rem;
        }

        .main-s4-list {
          flex-wrap: wrap;
        }

        .main-s4-list .item {
          width: calc(50% - 10px);
          font-size: 20px;
        }

        .main-s5-list {
          flex-direction: column;
        }

        .main-s5-list .item {
          width: 100%;
          font-size: 20px;
        }

        .main-s5-list .item .logo {
          display: inline-block;
          position: absolute;
          bottom: 60px;
          left: 20px;
        }

        .visual-sect {
          margin-bottom: 80px;
        }

        .visual-sect .tit {
          font-size: 50px;
        }

        .visual-sect .img img {
          height: 400px;
        }

        .sub-location {
          display: none;
        }

        .about-bx1 {
          max-width: 100%;
        }

        .about-bx3 ul {
          gap: 20px;
        }

        .about-bx3 ul li {
          width: calc(33.3% - 13.5px);
          padding: 20px;
        }

        .about-bx3 ul li i {
          max-width: 100px;
        }

        .about-bx4 .about-bx4-1 {
          padding: 40px;
          text-align: center;
        }

        .history-wr:after {
          height: 94%;
          left: 12px;
        }

        .history-wr .linewrap {
          left: 12px;
          width: 2px;
          height: 0%;
        }

        .history-wr .his:last-child {
          position: relative;
        }

        .history-wr .his:last-child::after {
          content: '';
          position: absolute;
          top: 32px;
          left: 11px;
          width: 4px;
          height: 40px;
          display: block;
          background-color: #fff;
        }

        .history-wr>.his {
          flex-direction: column;
          margin-bottom: 85px;
        }

        .history-wr>.his .year {
          width: 100%;
          font-size: 40px;
          font-weight: 700;
          padding-left: 30px;
        }

        .history-wr>.his ul {
          width: 100%;
          margin-top: 40px;
          padding-left: 30px;
          padding-top: 0;
        }

        .history-wr>.his ul:before {
          left: 5px;
          top: -70px;
        }

        .history-wr>.his.on ul:after {
          width: 25px;
          height: 25px;
          left: 0;
          top: -75px;
        }

        .history-wr .year:before,
        .history-wr>.his .year:after {
          display: none;
        }

        .cert-list {
          gap: 50px 20px;
        }

        .cert-list .itm {
          width: calc(25% - 15px);
        }

        .cert-list .itm .img {
          padding: 10px;
        }


        .support-bx {
          flex-direction: column;
        }

        .support-bx .itm {
          width: 100%;
        }

        .tbl-view .view-con {
          padding: 50px 20px;
        }

        .contact-wr {
          flex-direction: column;
        }

        .contact-wr .desc {
          padding: 0;
        }

        .contact-wr .desc .loc-tx {
          margin-top: 20px;
        }

        .form-wr .form-txt {
          margin-bottom: 20px;
        }

        @media screen and (max-width:640px) {

          #header {
            padding: 0 1.5rem;
          }

          #header .inner {
            padding: 0;
            height: 5.5rem;
          }

          #header .logo {
            width: 6rem;
          }

          #header .logo a {
            height: 2.4rem;
          }

          #header .bt-menu i {
            width: 1.8rem;
            height: .2rem;
          }

          #header .bt-menu i:nth-child(1) {
            margin-top: -.4rem;
          }

          #header .bt-menu i:nth-child(2) {
            margin-top: .3rem;
          }

          .menu-content .close i {
            width: 1.8rem;
            height: .2rem;
          }

          footer {
            padding: 2.5rem 2rem;
          }

          footer .footerWrap .logo {
            width: 4.5rem;
          }

          footer address {
            font-size: 1.2rem;
          }

          footer address span {
            width: 100%;
          }

          footer .copy {
            font-size: 1.1rem;
            margin-top: 1rem;
          }

          .btTop {
            width: 3.5rem;
            height: 3.5rem;
            right: 1.5rem;
            bottom: 2.2rem;
          }

          .btTop::before,
          .btTop::after {
            width: 3.5rem;
            height: 3.5rem;
            background-size: 1.5rem;
          }

          .btTop.bottom {
            bottom: 2.2rem;
          }

          .mainvisual .text-wrap {
            padding: 0 1.5rem;
            margin-bottom: 8rem;
          }

          .mainvisual .reveal-text {
            font-size: 5rem;
          }

          .mainvisual .reveal-text2 {
            font-size: 1.8rem;
          }

          .mainvisual .pagination {
            left: 1.5rem;
            bottom: 2.2rem;
            gap: .4rem;
          }

          .mainvisual .dot {
            width: .4rem;
            height: .4rem;
          }

          .mainvisual .dot.active {
            width: 1rem;
            height: .4rem;
          }

          .mainvisual .next-arrow {
            width: 2.2rem;
            height: 2.2rem;
            right: 1.5rem;
            bottom: 2.2rem;
          }

          .main-con .main-title {
            font-size: 2.8rem;
            letter-spacing: -.05em;
          }

          .main-con.s2 {
            padding: 20vw 0;
          }

          .main-con.s3 {
            padding: 20vw 1.5rem;
          }

          .main-con.s3.aos-animate .bg {
            width: 100%;
            height: 30rem;
          }

          .main-con.s3 .main-s3-list {
            margin-top: 5rem;
          }

          .main-con.s3 .main-s3-tab {
            gap: .8rem;
          }

          .main-con.s3 .main-s3-tab a {
            height: 3.5rem;
            font-size: 1.2rem;
          }

          .main-con.s3 .main-s3-cont {
            margin-top: 2rem;
          }

          .main-con.s3 .main-s3-cont .item .bx {
            border-radius: 1.8rem;
          }

          .main-con.s3 .main-s3-cont .item .s3-hd {
            padding: 3rem 1.8rem;
            gap: 1rem;
            font-size: 1.3rem;
          }

          .main-con.s3 .main-s3-cont .item .more {
            width: 2.5rem;
            height: 2.5rem;
            top: 2.5rem;
            right: 2.5rem;
          }

          .main-con.s3 .main-s3-cont .item .s3-hd .text b {
            font-size: 2.5rem;
          }

          .main-con.s3 .main-s3-cont .item .s3-hd .logo img {
            height: 2.2rem;
          }

          .main-con.s3 .main-s3-cont .item .s3-bd {
            margin-top: 0;
          }

          .main-con.s3 .main-s3-cont .item .s3-bd .bd-list,
          .main-con.s3 .main-s3-cont .item:nth-child(4) .s3-bd .bd-list {
            padding: 0 1.8rem;
            gap: 2rem;
          }

          .main-con.s3 .main-s3-cont .item .s3-bd .bd-list li {
            gap: 1.8rem
          }

          .main-con.s3 .main-s3-cont .item .s3-bd .bd-list li .pt {
            width: 3.8rem;
          }

          .main-con.s3 .main-s3-cont .item .s3-bd .bd-list li .tx-bx {
            padding: 1.5rem;
            border-radius: .8rem;
            font-size: 1.2rem;
          }

          .main-con.s3 .main-s3-cont .item .s3-bd .bd-list li .tx-bx::after {
            border-top-width: 2rem;
            border-left-width: 3rem;
            border-right-width: 3rem;
            left: -1.4rem;
          }

          .main-con.s4 {
            padding: 0 1.5rem 20vw;
          }

          .main-s4-list {
            margin-top: 4rem;
            flex-direction: column;
            gap: 2rem;
          }

          .main-s4-list .item {
            width: 100%;
            border-radius: 1.5rem;
            flex-direction: row;
            padding: 2rem 3rem;
            gap: 1.8rem;
            font-size: 1.3rem;
            align-items: center;
          }

          .main-s4-list .item img {
            width: 6rem;
          }

          .main-con.s5 {
            padding: 20vw 1.5rem;
          }

          .main-s5-list {
            margin-top: 3.5rem;
          }

          .main-s5-list .item {
            border-radius: 1.5rem;
            padding: 2.5rem 2rem;
            font-size: 1.3rem;
          }

          .main-s5-list .item .img {
            margin-top: 2rem;
            width: 8rem;
          }

          .main-s5-list .item .logo {
            bottom: 2.5rem;
            left: 2rem;
          }

          .main-s5-list .item .logo img {
            height: 3rem;
          }

          .main-s5-list .item .txt {
            font-size: 1.3rem;
          }

          .main-partner {
            margin-top: 7rem;
          }

          .main-partner .title {
            font-size: 2rem;
          }

          .main-partner .main-partner-ctrl {
            gap: .5rem
          }

          .main-partner .main-partner-ctrl button {
            width: 2.5rem;
            height: 2.5rem;
            margin: 1rem 0;
          }

          .main-partner .main-partner-ctrl button img {
            width: .8rem;
          }

          .main-con.s6 {
            padding: 20vw 1.5rem;
          }

          .main-con.s6 .btn-box {
            margin: 3.5rem auto 0;
            max-width: 18rem;
          }

          .main-con.s6 .btn-box .btn,
          .bt-inquiry {
            min-width: auto;
            width: 100%;
            padding: 0 3rem 0 1.4rem;
          }

          .visual-sect {
            margin-bottom: 4rem;
          }

          .visual-sect .img img {
            height: 20rem;
          }

          .visual-sect .tit {
            font-size: 3rem;
            white-space: nowrap;
            padding: 0 1.5rem 0 5rem;
            bottom: 4rem;
          }

          .visual-sect.animate .tit {
            padding: 0 1.5rem;
          }

          #container {
            padding: 0 1.5rem;
          }

          .sub-title {
            font-size: 2rem;
            gap: 1rem;
            margin-bottom: 4rem;
          }

          .sub-title .title {
            font-size: 4rem;
          }

          .sub-title .title .logo {
            margin-bottom: 1rem;
          }

          .sub-title .title .logo img {
            max-height: 4rem;
          }

          .sub-title .sub-tx {
            font-size: 1.5rem;
            margin-top: 3rem;
          }

          .s-tit {
            margin-bottom: 3rem;
            font-size: 3rem;
          }

          .solution-list {
            gap: 2rem;
          }

          .solution-list .itm {
            width: 100%;
            border-radius: 1rem;
            padding: 2rem 1.4rem;
          }

          .solution-list .itm .tit {
            font-size: 1.8rem;
            margin-bottom: 1rem;
          }

          .solution-key {
            margin-top: 5rem;
            padding: 5rem 1.5rem;
          }

          .solution-key .s-tit {
            margin-bottom: 3rem;
          }

          .solution-key .key-wr {
            gap: 2rem;
          }

          .solution-key .key-wr .itm {
            padding: 2rem 1.4rem;
            border-radius: 1rem;
            flex-direction: column;
            gap: 2rem;
            font-size: 1.3rem;
          }

          .solution-key .key-wr .itm .img {
            width: 5rem;
          }

          .solution-key .key-wr .itm .txt {
            text-align: center;
          }

          .solution-key .key-wr .itm .tit {
            font-size: 1.8rem;
            margin-bottom: 1rem;
          }

          .solution-refer {
            margin-top: 5rem;
          }

          .refer-wr {
            gap: 1rem;
          }

          .refer-wr .itm {
            width: calc(50% - .5rem);
            border-radius: 1rem;
          }

          .solution .main-con.s6 {
            margin-top: 5rem;
          }

          .about-bx1 {
            font-size: 2rem;
            margin: 0;
          }

          .about-bx2 {
            margin-top: 3rem;
            height: 20rem;
          }

          .about-bx2 ul li {
            font-size: 1.2rem;
          }

          .about-bx2 ul li b {
            font-size: 3rem;
          }

          .about-bx2 ul li .counter-bx {
            font-size: 3rem;
          }

          .page-tit {
            font-size: 3rem;
            margin: 4rem 0 3rem;
          }

          .about-bx3 ul {
            flex-direction: column;
          }

          .about-bx3 ul li {
            width: 100%;
            flex-direction: row;
            font-size: 2rem;
            text-align: left;
          }

          .about-bx3 ul li i {
            width: 6rem;
          }

          .about-bx4 {
            margin-top: 0;
            padding: 3rem 1.5rem 5rem;
          }

          .about-bx4 .tit {
            width: 10rem;
            height: 4rem;
            font-size: 1.8rem;
          }

          .about-bx4 .about-bx4-1+.tit {
            margin-top: 4rem;
          }

          .about-bx4 .about-bx4-1+.tit::after {
            top: -4rem;
            height: 4rem;
          }

          .about-bx4 .about-bx4-1 {
            padding: 2rem;
            font-size: 1.5rem;
            gap: 1rem;
            border-radius: 1.4rem;
          }

          .about-bx4 .about-bx4-1 b {
            font-size: 2.4rem;
          }

          .history-wr {
            margin-bottom: 10rem;
          }

          .history-wr>.his {
            margin-bottom: 4rem;
          }

          .history-wr .his .year {
            font-size: 3.4rem;
          }

          .history-wr>.his ul {
            margin-top: 2rem;
            font-size: 1.4rem;
          }

          .history-wr>.his ul:before {
            margin-top: 2rem;
          }

          .history-wr>.his.on ul:after {
            top: -5.5rem;
          }

          .history-wr>.his ul li+li {
            margin-top: 1.5rem;
          }

          .div-tab {
            gap: 1rem;
            margin-bottom: 4rem;
          }

          .div-tab .tab {
            height: 5rem;
            font-size: 1.6rem;
            min-width: 8rem;
          }

          .cert-wr {
            margin-bottom: 5rem;
          }

          .cert-wr .s-tit {
            font-size: 2.4rem;
          }

          .cert-list+.s-tit {
            margin-top: 6rem;
          }

          .cert-bx {
            padding: 4rem 0 0 0;
          }

          .cert-list {
            flex-wrap: wrap;
            gap: 3rem 1.8rem;
            margin-top: 4rem;
          }

          .cert-list .itm {
            width: calc(50% - .9rem);
            flex: none;
            max-width: none;
          }

          .cert-list .itm .txt {
            font-size: 1.4rem;
            margin-top: 1rem;
            padding: 0 .4rem;
          }

          .modalPop .inner {
            width: 30rem;
            height: 42rem;
          }

          .modalPop .pop-close {
            width: 3rem;
            height: 3rem;
            top: 0;
            right: 0;
          }

          .modalPop #imgModalImg {
            height: 42rem;
          }

          .modalPop .pop-close::before,
          .modalPop .pop-close::after {
            width: 1.4rem;
            height: .2rem;
            margin-left: -.7rem;
          }

          .locations-wr .s-tit {
            margin-bottom: 3rem;
          }

          .locations-wr .addr {
            font-size: 1.5rem;
          }

          .locations-wr .map {
            margin-top: 2rem;
          }

          .locations-wr .map iframe {
            height: 40rem;
          }

          .locations-wr .map+.s-tit {
            margin-top: 5rem;
          }

          .locations-wr .loc-tx {
            padding: 1rem;
            font-size: 1.3rem;
            flex-direction: column;
          }

          .locations-wr .loc-tx li {
            gap: 1rem;
          }

          .locations-wr .loc-tx li b {
            gap: .5rem
          }

          .locations-wr .loc-tx li b::before {
            width: 1.4rem;
            height: 1.4rem;
          }

          .locations-wr .main-con.s6 {
            margin-top: 5rem;
          }

          .support-wr {
            padding-bottom: 5rem;
          }

          .support-bx {
            gap: 1rem;
          }

          .support-bx .itm {
            padding: 2rem;
            font-size: 1.3rem;
          }

          .support-bx .itm .bg {
            border-radius: 1.5rem;
          }

          .support-bx .itm i {
            width: 5rem;
          }

          .support-bx .itm .tit {
            font-size: 2rem;
            margin: 1rem 0 .5rem;
          }

          .notice-wr {
            padding-bottom: 5rem;
          }

          .tblHd {
            flex-direction: column;
            width: 100%;
            height: auto;
            gap: 2rem 0;
          }

          .tblHd .total {
            order: 2;
            width: 100%;
          }

          .tblHd .tblSch {
            order: 1;
            flex: 1;
            width: auto;
          }

          .tblHd .tblSch .inp {
            height: 4.5rem;
            padding: 0 5rem 0 2rem;
          }

          .tblHd .tblSch .sch {
            width: 4.5rem;
            height: 4.5rem;
            background-size: 1.5rem;
          }

          .tblHd .tblHd-r {
            display: flex;
            width: 100%;
            gap: 1rem;
          }

          .tblHd .tblHd-r .btFilter {
            display: flex;
            width: 8.5rem;
            height: 4.4rem;
          }

          .newsLst {
            margin: 1rem 0 0 0;
          }

          .newsLst .newsLst-itm {
            padding: 3rem 0;
          }

          .newsLst .newsLst-itm>a {
            flex-direction: column;
            padding: 0;
          }

          .newsLst .newsLst-itm .img {
            width: 100%;
            margin: 0 0 2.5rem 0;
          }

          .newsLst .newsLst-itm .img img {
            height: 20rem;
          }

          .newsLst .newsLst-itm .desc {
            font-size: 1.3rem;
          }

          .newsLst .newsLst-itm .desc .tit {
            font-size: 2rem;
          }

          .newsLst .newsLst-itm .desc .txt {
            margin: 1.3rem 0;
            max-height: 6rem;
            overflow: hidden;
            white-space: normal;
            word-wrap: break-word;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
          }

          div.paging {
            margin-top: 3.5rem;
          }

          div.paging a,
          div.paging strong {
            width: 3rem;
            height: 3rem;
            line-height: 3rem;
          }

          .tbl-view .view-hd {
            padding: 2rem 0;
            flex-direction: column;
          }

          .tbl-view .view-hd .subject {
            font-size: 2rem;
          }

          .tbl-view .view-date {
            flex-wrap: wrap;
            padding: 1rem 0;
            gap: 1rem;
          }

          .tbl-view .view-date .date {
            gap: 1rem;
            width: 100%;
          }

          .tbl-view .view-att {
            gap: 1rem;
          }

          .tbl-view .view-att dd {
            gap: 1rem 2rem;
          }

          .tbl-view .view-att dd .itm {
            font-size: 1.3rem;
          }

          .tbl-view .view-att dd .itm::before {
            width: 1.4rem;
            height: 1.4rem;
          }

          .tbl-view .view-con {
            padding: 3rem 2rem;
            font-size: 1.4rem;
          }

          .tbl-view .hd-tx {
            padding: 1rem 0;
          }

          .notice-btn .btn.lg {
            padding: 0 2rem;
            height: 4.8rem;
            font-size: 1.5rem;
            width: auto;
          }

          .notice-btn .txt-bt {
            gap: .5rem;
          }

          .career-bx1 {
            flex-direction: column;
            gap: 1.5rem;
          }

          .career-bx1 .itm {
            border-radius: 1.5rem;
            padding: 2rem 2rem 3rem;
            gap: 2rem;
          }

          .career-bx1 .itm .desc {
            gap: 1rem;
            font-size: 1.4rem;
          }

          .career-bx1 .itm .desc .tit {
            font-size: 2rem;
          }

          .career-benefits {
            margin-top: 5rem;
            padding: 5rem 0;
          }

          .career-bx2 {
            gap: 1.5rem;
          }

          .career-bx2 .itm {
            width: 100%;
            padding: 2rem;
            border-radius: 1.5rem;
            gap: 2rem;
          }

          .career-bx2 .itm .img {
            width: 5rem;
          }

          .career-bx2 .itm .desc {
            font-size: 1.4rem;
            gap: 1rem;
          }

          .career-bx2 .itm .tit {
            font-size: 2rem;
          }

          .contact .sub-location {
            padding-top: 8.5rem;
          }

          .sub-location .location {
            display: none;
          }

          .contact .sub-location .tit {
            font-size: 3rem;
            padding-left: 1.5rem;
          }

          .contact-wr {
            padding-bottom: 5rem;
          }

          .contact-wr .desc .loc-tx li {
            padding: 1rem 0;
            gap: 1rem;
          }

          .contact-wr .desc .loc-tx li b::before {
            width: 1.5rem;
            height: 1.5rem;
          }

          .contact-wr .desc .loc-tx li b {
            gap: .5rem;
          }

          .form-wr .form-txt {
            font-size: 1.3rem;
          }

          .form-wr .form-itm {
            margin-bottom: 2rem;
            gap: 1rem;
          }

          .form-wr .form-itm .hd {
            font-size: 1.4rem;
          }

          .privacy-bx {
            gap: 1rem;
          }

          .privacy-bx .tit {
            font-size: 1.4rem;
          }

          .privacy-bx .text {
            border-radius: .5rem;
            padding: 1rem;
          }

          .privacy-bx .dv-chk {
            flex-direction: column;
            gap: 1rem;
          }

          .privacy-bx .dv-chk label {
            font-size: 1.4rem;
          }

          .form-wr .form-itm .form-select {
            gap: 1.4rem;
          }

          .form-wr .form-itm .form-select label {
            font-size: 1.4rem;
            gap: .5rem;
          }

        }

        /* /640px */

      }

      /* /820px */

    }

    /* /1024px */

  }

  /* /1200px */

}

/* /1440px */

@media screen and (min-width:1024px) and (max-height: 700px) {}

@media screen and (min-width: 1025px) {
  .main-partner {
    position: relative;
    max-width: none;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }

  .main-partner .title {
    max-width: 1440px;
    margin: 0 auto;
  }

  .main-partner .main-partner-ctrl {
    display: none;
  }

  .main-partner-slide {
    margin-top: 50px;
  }

  .main-partner-slide .swiper-slide {
    max-width: 215px;
  }

  .main-partner-slide .swiper-wrapper {
    transition-timing-function: linear !important;
  }
}