@charset "utf-8";

#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 8rem;
  border-bottom: 1px solid #EBEBEB;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.10);
  transition: 0.3s;
  overflow: hidden;
}
#header:hover {
  background-color: #fff;
  backdrop-filter: unset;
}
#header .maxinner {
  width: 90%;
  max-width: 1756px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 8rem;
}
#header .logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#header .logo img {
  width: 18rem;
}

#header.sub {
  background-color: #fff;
}


#nav .nav-dep01-wrap {
  display: flex;
}
#nav .nav-dep01-list {
  margin: 0 0.6rem;
}
#nav .nav-dep01-link {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 2.8rem;
  display: block;
  height: 8rem;
  text-align: center;
  position: relative;
}
#nav .nav-dep01-link::after {
  content: '';
  position: absolute;
  bottom: 1px;
  width: 0%;
  height: 2px;
  background-color: #031847;
  left: 0;
  transition: 0.3s;
}
#nav .nav-dep01-link:hover::after {
  width: 100%;
}
#nav .nav-dep02-wrap {
  margin-top: 1.6rem;
}
#nav .nav-dep02-link {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  display: block;
  padding: 0.7rem 1.7rem;
  transition: 0.3s;
}
#nav .nav-dep02-link:hover {
  color: #1978F0;
}


#header.active {
  height: 30rem;
  background-color: #fff;
}
#header.active #nav .nav-dep02-wrap {
  height: 100%;
}


#header.nav-up {
  top: -8rem;
}
#header.nav-down {
  top: 0;
  background-color: #fff;
}




#footer {
  border-top: 1px solid #ebebeb;
}
#footer .maxinner {
  max-width: 1756px;
}
#footer .footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 4rem 0 5rem;
}
#footer .footer-detail > ul {
  display: flex;
  align-items: center;
}
#footer .footer-detail > ul li + li {
  margin-left: 4rem;
}
#footer .footer-detail > ul li a {
  font-size: 1.6rem;
  font-weight: 500;
  transition: 0.3s;
}
#footer .footer-detail > ul li a:hover {
  color: #1978F0;
}
#footer .footer-detail .detail-txt {
  margin-top: 2rem;
}
#footer .footer-detail .detail-list {
  display: flex;
  align-items: center;
}
#footer .footer-detail .detail-list + .detail-list {
  margin-top: 4px;
}
#footer .footer-detail .detail-list p {
  color: #424242;
  font-size: 1.4rem;
  line-height: 2rem;
  position: relative;
}
#footer .footer-detail .detail-list p + p {
  padding-left: 1.2rem;
  margin-left: 1.2rem;
}
#footer .footer-detail .detail-list p + p::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1px;
  height: 16px;
  background-color: #ebebeb;
}
#footer .footer-detail .detail-list span {
  font-size: 1.5rem;
  font-weight: 600;
  color: #21272a;
}
#footer .footer-detail .copyright {
  color: #424242;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
}
#footer .footer-logo .logo {
  text-align: right;
}
#footer .footer-logo .logo img {
  width: 32rem;
}




.maxinner {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 1456px;
}
.maxinner.large {
  max-width: 1756px;
}


.section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}



.blind {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}



.popup-wrap {
  background-color: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9999999;
}
.popup-wrap.active {
  opacity: 1;
  visibility: initial;
}
.popup-box {
  width: 90%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  overflow: hidden;
}
.popup-sm {
  max-width: 42rem;
}
.popup-md {
  max-width: 64rem;
}

.popup-tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2rem;
  position: relative;
}
.popup-tit::after {
  content: '';
  position: absolute;
  bottom: 0;
  background-color: #E6E8EA;
  width: calc(100% - 4rem);
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
}
.popup-tit p {
  font-size: 1.4rem;
  font-weight: 600;
}
.popup-tit .popup-close {
  background: url('../images/ico/ico-close.svg') no-repeat center / cover;
  width: 24px;
  height: 24px;
  border: 0;
}

.popup-cont {
  padding: 2.8rem 2rem;
}
.popup-cont .scroll-box {
  border: 1px solid #ebebeb;
  padding: 1.6rem;
  height: 30rem;
  overflow-y: auto;
  border-radius: 4px;
}
.popup-cont p {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 400;
}
.popup-cont p + p {
  margin-top: 30px;
}


.main-tit {
  text-align: center;
}
.main-tit.left {
  text-align: left;
}
.main-tit.between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-tit h3 {
  font-size: 7.2rem;
  font-weight: 700;
  text-align: center;
}
.main-tit h4 {
  font-size: 4rem;
  line-height: 5.6rem;
  font-weight: 800;
}
.main-tit h4 span {
  background: linear-gradient(90deg, #1978F0 0%, #0E238A 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-tit p {
  margin-top: 2rem;
  font-size: 2rem;
  color: #575757;
  font-weight: 500;
}


.sub-tit {
  margin: 7rem 0 10rem;
}
.sub-tit p {
  font-size: 1.8rem;
}
.sub-tit h3 {
  font-size: 6rem;
  font-weight: 700;
  margin-top: 1rem;
}
.sub-tit h3 + p {
  margin-top: 2.8rem;
}


.sub-sec-tit.line {
  margin-top: 8rem;
  border-bottom: 1px solid #A5CDFF;
  margin-bottom: 5.2rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sub-sec-tit h3 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.4;
}
.sub-sec-tit p {
  color: #111;
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}
.sub-sec-tit.white {
  color: #fff;
}
.sub-sec-tit.white p {
  color: #f7f7f7;
}
.sub-sec-tit.line.white {
  border-bottom: 1px solid #fff;
}




.ani-sub-tit {
  padding-top: 10rem;
}
.ani-sub-tit span {
  color: #1978F0;
  font-size: 2rem;
  font-weight: 600;
  left: 100px;
  opacity: 0;
  filter: blur(15px);
  position: relative;
}
.ani-sub-tit p {
  font-size: 7.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 2.4rem;
  left: -100px;
  opacity: 0;
  filter: blur(15px);
  position: relative;
}




.ai-sub-tit {
  padding-top: 12rem;
  text-align: center;
}
.ai-sub-tit span {
  color: #1978F0;
  font-size: 3.6rem;
  font-weight: 700;
  left: 100px;
  opacity: 0;
  filter: blur(15px);
  position: relative;
}
.ai-sub-tit h3 {
  font-size: 10rem;
  font-weight: 500;
  left: 100px;
  opacity: 0;
  filter: blur(15px);
  position: relative;
}
.ai-sub-tit p {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-top: 3.2rem;
  left: -100px;
  opacity: 0;
  filter: blur(15px);
  position: relative;
}


.ai-sub-tit-next p {
  text-align: center;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
}

.ai-sub-tit-next p + p {
  margin-top: 1.6rem;
}




.tag {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  padding: 0.4rem 1.2rem;
}
.tag::before {
  content: '#';
}


.bg-wrap {
  position: relative;
}
.bg-wrap > .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


.link-st01 {
  background: url('../images/ico/ico-arrow-right-white.svg') rgba(255, 255, 255, 0.20) no-repeat center / 14px 12px;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: 0.3s;
}
.link-st01:hover {
  background: url('../images/ico/ico-arrow-right-gray.svg') rgba(255, 255, 255, 0.80) no-repeat center / 14px 12px;
}

.link-st02 {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(4px);
  border: 1px solid #fff;
  border-radius: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.8rem 0.8rem 2.4rem;
  transition: 0.3s;
  min-width: 16rem;
  position: relative;
  overflow: hidden;
}
.link-st02 span {
  font-size: 1.5rem;
  font-weight: 600;
  transition: 0.3s  ;
}
.link-st02 i {
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: url('../images/ico/ico-arrow-right-gray.svg') #fff no-repeat center / 9.3px 8px;
}
.link-st02::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background-color: #fff;
  z-index: -1;
  transition: 0.3s;
}
.link-st02:hover::after {
  width: 100%;
}
.link-st02:hover span {
  color: #424242;
}


.link-st02.plus i {
  background: url('../images/ico/ico-plus-gray.svg') #fff no-repeat center / 11px 11px;
}


.link-st02.gray {
  border-color: #ebebeb;
}
.link-st02.gray span {
  color: #424242;
}
.link-st02.gray i {
  background-color: #EBEBEB;
}
.link-st02.gray::after {
  background-color: #ebebeb;
}


.link-st02.link-primary {
  border-color: #ebebeb;
  color: #424242;
}
.link-st02.link-primary::after {
  background-color: #1978F0;
}
.link-st02.link-primary i {
  background: url('../images/ico/ico-arrow-right-white.svg') #1978F0 no-repeat center / 9.3px 8px;
}
.link-st02.link-primary:hover span {
  color: #fff;
}



.thum-box {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.thum-box > .thum {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
  background-image: url('../media/images/news_basic.png');
}

.thum-box._video::after {
  content: '';
  background: url('../images/ico/ico-play-white.svg') rgba(255, 255, 255, 0.30) no-repeat center / 13px; 
  border: 1px solid #ADADAD;
  width: 6rem;
  height: 6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  backdrop-filter: blur(12.5px);
  transition: 0.3s;
}
.thum-box._video:hover::after {
  background: url('../images/ico/ico-play-black.svg') #fff no-repeat center / 13px; 
  border-color: transparent;
}


.table-st01 {
  border-top: 2px solid #24232C;
}
.table-st01 td {
  padding: 2rem 1rem;
  color: #424242;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #EBEBEB;
}
.table-st01 td a {
  transition: 0.3s;
}
.table-st01 td.title {
  text-align: left;
  font-size: 1.8rem;
  padding: 0;
}
.table-st01 td.title a {
  padding: 2rem 1rem 2rem 4rem;
  display: block;
}
.table-st01 td.title a span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-inline-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.table-st01 td.title:hover a {
  color: #1978F0;
}
.table-st01 td.date {
  color: #808080;
  font-size: 1.6rem;
  font-weight: 500;
}



.paging-wrap {
  margin-top: 5rem;
}
.paging-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.paging-list .list {
  margin: 0 1rem;
}
.paging-list .list a {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ADADAD;
  font-size: 1.5rem;
  font-weight: 600;
}
.paging-list .list.active a {
  color: #24232C;
  font-weight: 700;
}
.paging-list .list.disabled {
  opacity: 0.3;
}



.board-detail-top {
  padding-bottom: 2rem;
  position: relative;
}
.board-detail-top::after {
  content: '';
  bottom: 0;
  width: 10000%;
  left: 50%;
  background-color: #ebebeb;
  height: 1px;
  position: absolute;
  transform: translateX(-50%);
}
.board-detail-top .sub-tit {
  margin-bottom: 6rem;
}


.board-detail-content {
  margin: 0 auto;
  max-width: 116rem;
  font-size: 2rem;
  font-weight: 500;
  padding: 6rem 0 8rem;
}
.board-detail-content p {
  font-size: 2rem;
  font-weight: 500;
}
.board-detail-content img + p {
  margin-top: 2rem;
}
.board-detail-content .file {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  background-color: #F7F7F7;
  padding: 1.6rem 4rem;
}
.board-detail-content .file p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #424242;
  display: flex;
  align-items: center;
}
.board-detail-content .file p i {
  width: 2.4rem;
  height: 2.4rem;
  background: url('../images/ico/ico-file.svg') no-repeat center / cover;
  margin-right: 2px;
  display: block;
}
.board-detail-content .file a {
  margin-left: 3rem;
  color: #21272a;
  font-size: 1.5rem;
  font-weight: 700;
  text-underline-position: under;
  text-decoration: underline;
  transition: 0.3s;
}
.board-detail-content .file a:hover {
  color: #1978F0;
}


.board-detail-bottom {
  border-top: 1px solid #ebebeb;
  padding-top: 4rem;
}
.board-view-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.board-view-foot li {
  width: 50%;
  display: flex;
  align-items: center;
}
.board-view-foot li.next {
  justify-content: end;
}
.board-view-foot li i {
  min-width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.board-view-foot li.prev i {
  background: url('../images/ico/ico-arrow-left-gray02.svg') no-repeat center / 8px;
}
.board-view-foot li.next i {
  background: url('../images/ico/ico-arrow-right-gray02.svg') no-repeat center / 8px;
  left: unset;
  right: 0;
}
.board-view-foot li a {
  font-size: 2rem;
  font-weight: 500;
  align-items: center;
  transition: 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: relative;
  padding: 0 4rem;
}
.board-view-foot li a:hover {
  color: #1978F0;
}
.board-detail-bottom .btn-wrap {
  margin-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.board-detail-bottom .btn-wrap a {
  font-size: 1.5rem;
  font-weight: 600;
  color: #424242;
  border-radius: 5rem;
  border: 1px solid #EBEBEB;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18rem;
  height: 4.8rem;
  transition: 0.3s;
}
.board-detail-bottom .btn-wrap a:hover {
  background-color: #1978F0;
  color: #fff;
  border-color: #1978F0;
}



.board-date {
  display: flex;
  align-items: center;
}
.board-date span {
  font-size: 1.5rem;
  font-weight: 700;
}
.board-date p {
  font-size: 1.3rem;
  font-weight: 600;
  margin-left: 2rem;
}



.top-btn-wrap {
  position: fixed;
  right: 3.6rem;
  bottom: 3.6rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9;
}
.top-btn-wrap.active {
  opacity: 1;
  visibility: visible;
}
.top-btn-wrap .top-btn {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 1px solid var(--Primary-60, #1978F0);
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.top-btn-wrap .top-btn i {
  background: url('../images/ico/ico-arrow-top-blue.svg') no-repeat center / cover;
  width: 2.8rem;
  height: 2.8rem;
  display: block;
  transition: 0.3s;
}

.top-btn-wrap .top-btn:hover {
  background-color: #1972f0;
}
.top-btn-wrap .top-btn:hover i {
  background-image: url('../images/ico/ico-arrow-top-white.svg');
}



.sub-content-wrap {
  padding: 11rem 0 10rem;
  overflow: hidden;
}
.ani-wrap {
  padding-bottom: 0;
}


.breadcrumb-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.breadcrumb-list {
  margin-left: 8px;
  padding-left: 8px;
  position: relative;
}
.breadcrumb-list::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: #C2C2C2;
}
.breadcrumb-list:first-child::before {
  display: none;
}
.breadcrumb-list a {
  color: #424242;
  font-size: 1.3rem;
  font-weight: 500;
}



.col-list {
  display: flex;
  flex-wrap: wrap;
}
.col-list .col-3 {
  width: 25%;
}
.col-list .col-4 {
  width: 33.3%;
}
.col-list .col-5 {
  width: 41.6%;
}
.col-list .col-6 {
  width: 50%;
}
.col-list .col-7 {
  width: 58.3%;
}
.col-list .col-8 {
  width: 66.6%;
}




.d-flex {
  display: flex;
}
.flex-ac {
  display: flex;
  align-items: center;
}
.flex-jc {
  display: flex;
  align-items: center;
  justify-content: center;
}



.mb-0 {
  margin-bottom: 0;
}



.t-center {
  text-align: center;
}


input[type="checkbox"], input[type="radio"] {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
  clip-path: inset(50%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.check-btn + label {
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #707070;
  font-size: 14px;
}
.check-btn + label::before {
  content: '';
  background: url('../images/ico/ico-check.svg') no-repeat center / 12px;
  width: 20px;
  height: 20px;
  transition: 0.1s;
  margin-right: 4px;
  display: inline-block;
  border: 1px solid #C2C2C2;
}
.check-btn:checked + label::before {
  background-color: #1978F0;
  border-color: #1978F0;
}


select {
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  background:url('../images/ico/ico-arrow-down-gray.svg') no-repeat 98% 50%/24px;
}

select::-ms-expand{
  display:none;
}


/* ===== main ===== */
.main .sec01 {
  min-height: 100vh;
}
.main .sec01 .maxinner {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%);
  z-index: 1;
}
.main .main-visual-txt h2 {
  font-size: 6rem;
  font-weight: 700;
  transform: translate3d(-100px, 0, 0);
  opacity: 0;
  filter: blur(15px);
  transition: all 1s 0.5s;
}
.main .main-visual-txt h2 strong {
  font-size: 7.2rem;
  font-weight: 800;
  display: block;
}
.main .main-visual-txt p {
  margin-top: 2.8rem;
  font-size: 2rem;
  font-weight: 500;
  transform: translate3d(100px, 0, 0);
  opacity: 0;
  filter: blur(15px);
  transition: all 1s 0.5s;
}

.main .main-visual-bg {
  overflow: hidden;
  height: 100vh;
}
.main .main-visual-bg video {
  transform: translateY(-65px) scale(1.35);
  transition: 3s;
}

.main .main-visual-news {
  margin-top: 20rem;
  background-color: rgba(225, 225, 225, 0.20);
  border: 1px solid #fff;
  border-radius: 4rem;
  height: 6rem;
  display: flex;
  align-items: center;
  padding: 0 5rem;
  position: relative;
  backdrop-filter: blur(20px);
  opacity: 0;
  transition: 1s 0.5s;
}
.main .main-visual-news .tit {
  margin-right: 2.8rem;
  padding-right: 2.8rem;
  position: relative;
}
.main .main-visual-news .tit::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #3F3F3F80;
  right: 0;
}
.main .main-visual-news .tit p {
  font-size: 2rem;
  font-weight: 600;
}
.main .mvnews-slide {
  height: 26px;
  margin: 0;
  width: 100%;
}
.main .main-visual-news .swiper-slide a {
  font-size: 2rem;
  font-weight: 600;
  display: block;
  background: url('../images/ico/ico-arrow-right01.svg') no-repeat 100% 50% / 24px;
}


.main .sec01.active .main-visual-txt h2,
.main .sec01.active .main-visual-txt p {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}
.main .sec01.active .main-visual-bg video {
  transform: translateY(-65px) scale(1.15);
}
.main .sec01.active .main-visual-news {
  opacity: 1;
}



.main .sec02 {
  padding: 23rem 0;
}
.main-business-slide {
  margin-top: 10rem;
}
.main-business-slide .slick-list {
  margin: 0 -1.2rem;
}
.main-business-slide .slick-slide {
  display: flex !important;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 7rem 4rem 4rem;
  border-radius: 1.2rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  transform: scale(0.95);
  transition: 0.3s;
}
.main-business-slide .slick-slide::after {
  content: '';
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
  visibility: inherit;
  transition: 0.3s;
}
.main-business-slide .slick-slide {
  transform: scale(0.95);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.main-business-slide .slick-slide::after {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.main-business-slide .slick-slide.is-active {
  transform: scale(1);
}
.main-business-slide .slick-slide.is-active::after {
  opacity: 0;
  pointer-events: none;
}

.main-business-slide .slick-slide .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.main-business-slide .slick-slide .bg::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}

.main-business-slide .business-tit .desc {
  font-size: 1.6rem;
}
.main-business-slide .business-tit h4 {
  font-size: 4rem;
  font-weight: 800;
  margin-top: 1rem;
  display: flex;
  align-items: center;
}
.main-business-slide .business-tit .link-st01 {
  margin-left: 3rem;
}
.main-business-slide .tag-list {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 17rem;
}
.main-business-slide .tag-list .tag {
  margin-right: 1.6rem;
}
.main-business-slide .tag-list .tag + .tag {
  margin-top: 1.2rem;
}

.main-business-slide .custom-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -5rem;
}
.main-business-slide .custom-controls .slick-arrow {
  border: 0;
  background-color: transparent;
  height: 2.4rem;
}
.main-business-slide .custom-controls .slick-dots {
  display: flex;
  align-items: center;
  margin: 0 1.4rem;
}
.main-business-slide .custom-controls .slick-dots button {
  font-size: 2rem;
  font-weight: 600;
  border: 0;
  background-color: transparent;
  padding: 0 1.4rem;
}
.main-business-slide .custom-controls .slick-dots li.slick-active button {
  color: #1978F0;
}




.main .sec03 {
  padding-top: 20rem;
  height: 100vh;
}
.main .sec03 .main-tit {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50px);
  top: 7%;
  opacity: 0;
  filter: blur(15px);
  transition: all 1s;
}
.main .sec03 > .bg::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
}
.main .sec03 .technology-list {
  margin-top: 8rem;
}
.main .sec03 .technology-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
}
.main .sec03 .technology-list .list {
  width: 33.3%;
  transform: translateY(100%);
  transition: 0.3s;
}
.main .sec03 .technology-list .list:hover .box {
  height: 68rem;
  margin-top: -3rem;
}
.main .sec03 .technology-list .list:hover .sub-tit {
  margin-top: 7rem;
}
.main .sec03 .technology-list .box {
  height: 65rem;
  padding: 5rem 8rem;
  transition: 0.3s;
  position: relative;
  z-index: 1;
  border-radius: 2rem 2rem 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main .sec03 .technology-list .box:hover .sub-tit .desc {
  opacity: 1;
}
.main .sec03 .technology-list .box:hover .link-box {
  opacity: 1;
}
.main .sec03 .technology-list .box::after {
  content: '';
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
}
.main .sec03 .technology-list .box:hover::after {
  opacity: 1;
}
.main .sec03 .technology-list .sub-tit {
  color: #fff;
  text-align: center;
  margin: 3rem 0 0;
  transition: 0.3s;
}
.main .sec03 .technology-list .sub-tit .tit {
  font-size: 3.6rem;
  font-weight: 700;
}
.main .sec03 .technology-list .sub-tit .desc {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 1.6rem;
  opacity: 0;
  transition: 0.3s;
}
.main .sec03 .technology-list .link-box {
  opacity: 0;
  transition: 0.3s;
}
.main .sec03 .technology-list .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.main .sec03.ani-active .main-tit {
  opacity: 1;
  filter: blur(0);
  transform: translate(-50%, 0);
}


.main .sec04 {
  padding: 17rem 0;
  min-height: 100vh;
}
.main .news-media-wrap {
  display: flex;
}
.main .news-wrap {
  /* width: 72%; */
  width: 100%;
}
.main .news-wrap .main-tit {
  padding-right: 8rem;
}
.main .news-detail-list {
  /* border-right: 1px solid #EBEBEB; */
  display: flex;
  margin-top: 8rem;
  /* padding-right: 8rem; */
}
.main .news-main {
  /* width: 50%; */
  width: 40%;
  padding-right: 2.8rem;
}
.main .news-main .thum-box {
  padding-bottom: 87%;
  border-radius: 1.2rem;
}
.main .news-main .thum-box:hover .thum {
  transform: scale(1.03);
}
.main .news-main .txt {
  margin-top: 2rem;
}
.main .news-main a:hover .txt .tit {
  color: #1978F0;
}
.main .news-main .txt .tit {
  font-size: 2rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: 0.3s;
}
.main .news-main .txt .desc {
  color: #808080;
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 1.2rem;
}
.main .news-list-box {
  /* width: 50%; */
  width: 60%;
  border-top: 1px solid #ebebeb;
}
.main .news-list-box .news-list {
  border-bottom: 1px solid #EBEBEB;
}
.main .news-list-box .news-list a {
  padding: 2rem 2.4rem;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.main .news-list-box .news-list a:hover {
  background-color: #f7f7f7;
}
.main .news-list-box .news-list a:hover .tit {
  color: #1978F0;
}
.main .news-list-box .news-list .txt {
  width: 81%;
  padding-right: 2.4rem;
}
.main .news-list-box .news-list .tit {
  font-size: 1.6rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: 0.3s;
}
.main .news-list-box .news-list .desc {
  color: #808080;
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 1rem;
}
.main .news-list-box .news-list .thum-box {
  /* width: 19%;
  padding-bottom: 13.5%; */
  width: 14%;
  padding-bottom: 9%;
  border-radius: 4px;
  border: 1px solid #EBEBEB;
}
.main-media-wrap {
  width: 28%;
  padding: 12rem 0 0 8rem;
}
.main-media-wrap .sub-tit {
  margin: 0 0 1.6rem;
}
.main-media-wrap .sub-tit p {
  font-size: 2.4rem;
  font-weight: 700;
}
.main-media-list .box:hover .txt .tit {
  color: #1978F0;
}
.main-media-list + .main-media-list {
  margin-top: 2.4rem;
}
.main-media-list .thum-box {
  padding-bottom: 52%;
  border-radius: 1.2rem;
}
.main-media-list .thum-box:hover .thum {
  transform: scale(1.03);
}
.main-media-list .txt {
  margin-top: 1.2rem;
}
.main-media-list .tit {
  font-size: 1.6rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: 0.3s;
}
.main-media-list .desc {
  margin-top: 8px;
  color: #808080;
  font-size: 1.3rem;
  font-weight: 500;
}
.main-media-list .desc span + span {
  border-left: 1px solid #D6D6D6;
  padding-left: 8px;
  margin-left: 8px;
}



.main .sec05 {
  padding: 10rem 0 12rem;
  min-height: auto;
}
.main .sec05 .main-tit h4 {
  transform: translate3d(0, 50px, 0);
  opacity: 0;
  filter: blur(15px);
  transition: all 1s;
}
.main .sec05.ani-active .main-tit h4 {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}



.main .sec06 {
  padding: 14rem 0 12rem;
  min-height: auto;
  display: flex;
  align-items: center;
  background: url('/images/main/main-img21.png') no-repeat center / cover;
}
.main .sec06::after {
  content: '';
  background: url('/images/main/main-img16.png') no-repeat center / cover;
  width: 100%;
  height: 12.8rem;
  position: absolute;
  top: -6.2rem;
  border-radius: 50%;
}
.main .sec06 .main-tit {
  color: #fff;
}
.main .sec06 .main-tit p {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}
.main .sec06 .link-box {
  display: flex;
  margin-top: 5rem;
}
.main .sec06 .link-box .link-st02 {
  min-width: 28rem;
}



.rolling-banner {
  overflow: hidden;
  padding-top: 12rem;
}
.rolling-banner .banner-list {
  display: flex;
  width: max-content;
  animation: rollingBanner 80s linear infinite;
  will-change: transform;
}
.rolling-banner .banner-list + .banner-list {
  margin-top: 3.2rem;
}
.rolling-banner .banner-list.reverse {
  display: flex;
  width: max-content;
  animation: rollingBannerReverse 80s linear infinite;
  will-change: transform;
}
.rolling-banner .banner-list .list {
  margin: 0 3.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
}
.rolling-banner .banner-list .list img {
  height: 100%;
  width: auto;
  display: block;
}

@keyframes rollingBanner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes rollingBannerReverse {
	0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* ===== main ===== */




/* ===== sub ===== */

.qna-wrap .flex-box {
  display: flex;
}
.qna-wrap .sub-tit {
  width: 40%;
}
.qna-wrap .contactUs-box {
  width: 60%;
  padding-top: 17rem;
}
.qna-wrap .contactUs-box ._line {
  padding: 2rem 1.6rem;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #EBEBEB;
}
.qna-wrap .contactUs-box label {
  font-size: 1.6rem;
  font-weight: 500;
  min-width: 13rem;
  display: block;
}
.qna-wrap .contactUs-box select {
  border: 1px solid #D6D6D6;
  border-radius: 4px;
  height: 4rem;
  padding: 0 0.6rem;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
}
.qna-wrap .contactUs-box input[type="text"] {
  border: 1px solid #D6D6D6;
  border-radius: 4px;
  height: 4rem;
  padding: 0 1.6rem;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
}
.qna-wrap .contactUs-box textarea {
  border: 1px solid #D6D6D6;
  border-radius: 4px;
  padding: 1.2rem 1.6rem;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  resize: unset;
  height: 12rem;
}
.qna-wrap .spam-txt {
  display: flex;
  align-items: center;
  width: 100%;
}
.qna-wrap .spam-txt input {
  border: 1px solid #D6D6D6;
  border-radius: 4px;
  height: 4rem;
  padding: 0 1.6rem;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
}
.qna-wrap .spam-txt b {
  font-size: 1.5rem;
  font-weight: 700;
  background: rgba(165, 205, 255, 0.30);
  border-radius: 4px;
  min-width: 10rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2.4rem;
}
.qna-wrap .policies-box {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
.qna-wrap .policies-box label {
  font-size: 1.4rem;
  margin-left: 8px;
  display: flex;
}
.qna-wrap .policies-box .policies-pop {
  background-color: transparent;
  border: 0;
  font-size: 1.4rem;
  margin-left: 4px;
  color: #1978F0;
  font-weight: 600;
}
.qna-wrap .policies-box .policies-pop:hover {
  text-decoration: underline;
  text-underline-position: under;
}

.qna-wrap .button-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 4rem;
}


.media-wrap .media-list {
  margin: -1.6rem;
}
.media-wrap .media-list .list {
  padding: 1.6rem;
}
.media-wrap .media-list .thum-box {
  padding-bottom: 60%;
  border: 1px solid #EBEBEB;
  border-radius: 1.2rem;
}
.media-wrap .media-list .txt {
  margin-top: 1.6rem;
}
.media-wrap .media-list .tit {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.8rem;
  font-weight: 600;
  transition: 0.3s;
}
.media-wrap .media-list .desc {
  color: #808080;
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 8px;
}
.media-wrap .media-list .desc span {
  position: relative;
  margin-right: 8px;
  padding-right: 8px;
}
.media-wrap .media-list .desc span::after {
  content: '';
  width: 1px;
  height: 20px;
  position: absolute;
  background-color: #D6D6D6;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}


.media-wrap .media-list .box:hover .thum {
  transform: scale(1.03);
}
.media-wrap .media-list .box:hover .tit {
  color: #1978F0; 
}


.map-list .list {
  display: flex;
  align-items: center;
}
.map-list .list + .list {
  margin-top: 5rem;
}
.map-list .map {
  width: 52rem;
  height: 30rem;
  border-radius: 2rem;
  overflow: hidden;
}
.map-list .map iframe {
  width: 100%;
  height: 100%;
}
.map-list .txt {
  margin-left: 5rem;
}
.map-list .txt .tit {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.map-list dl {
  display: flex;
  align-items: flex-start;
}
.map-list dl + dl {
  margin-top: 1rem;
}
.map-list dt {
  font-size: 2rem;
  font-weight: 600;
  min-width: 9rem;
}
.map-list dd {
  color: #424242;
  font-size: 2rem;
  font-weight: 500;
}



.ani-top-section, .ai-top-section {
  position: relative;
  height: 100vh;
}
.ani-top-section .bg-wrap, .ai-top-section .bg-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: 100vh;
  clip-path: inset(41% 12% 0% 12% round 20px 20px 0 0);
  z-index: -1;
  will-change: clip-path;
}
.ani-top-section .bg-wrap .bg-opacity, .ai-top-section .bg-wrap .bg-opacity {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.ani-top-section .bg-wrap .bg, .ai-top-section .bg-wrap .bg {
  transform: translateY(41%);
  will-change: transform;
}



.ani-wrap .sec02 {
  height: 100vh;
}
.ani-wrap .sec02 video {
  width: 100%;
}
.ani-sub-txt {
  position: absolute;
  padding-top: 18rem;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  z-index: 1;
}
.ani-sub-txt strong {
  font-size: 4rem;
  line-height: 1.4;
}
.ani-sub-txt p {
  color: #F7F7F7;
  font-size: 2.4rem;
  line-height: 1.3;
  margin-top: 2.4rem;
}

.ani-sub-txt.center {
  height: 100vh;
  padding-top: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ani-sub-txt.center .box {
  max-width: 106rem;
  width: 100%;
}
.ani-sub-txt.center .img-box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.50);
  padding-bottom: 6rem;
  margin-bottom: 6rem;
}
.ani-sub-txt.center p {
  margin-top: 0;
}
.ani-sub-txt.center p + p {
  margin-top: 1.2rem;
}



.mobility-wrap .section {
  min-height: 100vh;
}
.mobility-wrap .sec03 {
  background-color: #F7F7F7;
}
.mobility-wrap .sec03 .maxinner {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobility-wrap .sec03 .flex-ac {
  width: 100%;
}
.mobility-wrap .sec03 .txt {
  width: 48%;
  margin-right: 4rem;
}
.mobility-wrap .sec03 .tit-sub {
  color: #424242;
  font-size: 2.4rem;
  font-weight: 700;
}
.mobility-wrap .sec03 .tit {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.4;
  margin: 8px 0 2rem;
}
.mobility-wrap .sec03 .tit span {
  background: linear-gradient(90deg, #1978F0 0%, #0E238A 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mobility-wrap .sec03 .desc {
  color: #111;
  font-size: 2.4rem;
  line-height: 1.3;
}
.mobility-wrap .sec03 .bg-wrap {
  width: 50%;
  padding-bottom: 29%;
  border-radius: 8px;
  overflow: hidden;
}
.mobility-wrap .sec03 .bg-wrap .bg {
  transition: 1s;
}
.mobility-wrap .sec03 .bg-wrap:hover .bg {
  transform: scale(1.05);
}


.mobility-wrap .sec04 .maxinner {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mobility-wrap .sec04 .img-box {
  margin-top: 8rem;
  display: flex;
  justify-content: space-between;
}
.mobility-wrap .sec04 .img-box .img {
  opacity: 0;
}
.mobility-wrap .sec04 .img-box .img01,
.mobility-wrap .sec04 .img-box .img05 {
  flex-direction: column;
  background-color: #F7F7F7;
  border: 1px solid #fff;
  backdrop-filter: blur(20px);
  border-radius: 2rem;
  min-width: 27rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobility-wrap .sec04 .img-box .img01 img,
.mobility-wrap .sec04 .img-box .img05 img {
  padding: 2rem 0;
}
.mobility-wrap .sec04 .img-box .img02,
.mobility-wrap .sec04 .img-box .img04 {
  margin-top: 12rem;
}
.mobility-wrap .sec04 .img-box .img03 {
  display: flex;
}
.mobility-wrap .sec04 .img-box .img03 .img {
  margin: 0 -2.1rem;
}

.mobility-wrap .sec04 .img-box.ani-active .img {
  animation: fadeIn 1s forwards;
}
.mobility-wrap .sec04 .img-box.ani-active .img02 {
  animation-delay: 0.4s;
}
.mobility-wrap .sec04 .img-box.ani-active .img0301 {
  animation-delay: 0.8s;
}
.mobility-wrap .sec04 .img-box.ani-active .img0302 {
  animation-delay: 1.2s;
}
.mobility-wrap .sec04 .img-box.ani-active .img0303 {
  animation-delay: 1.6s;
}
.mobility-wrap .sec04 .img-box.ani-active .img04 {
  animation-delay: 2s;
}
.mobility-wrap .sec04 .img-box.ani-active .img05 {
  animation-delay: 2.4s;
}


@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(-10px);
  }
}


.mobility-wrap .sec05 {
  background: linear-gradient(180deg, #004F9F 0%, #05030E 100%);
}


.mobility-wrap .sec06 {
  background-image: url('../images/sub/mobility-img21.png');
}
.mobility-wrap .sec06 .maxinner {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.business-more-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.business-more-sec .sub-sec-tit {
  margin-bottom: 5.6rem;
}
.business-more-sec .col-list {
  margin: 0 -1.2rem;
}
.business-more-sec .col-3 {
  padding: 0 1.2rem;
}
.business-more-sec .box {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  height: 46rem;
}
.business-more-sec .box::after {
  content: '';
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: 0.3s;
}
.business-more-sec .box p {
  position: absolute;
  z-index: 1;
  color: #fff;
  font-size: 3.6rem;
  font-weight: 700;
  left: 50%;
  transform: translateX(-50%);
  top: 5rem;
}
.business-more-sec .box .desc {
  position: absolute;
  z-index: 1;
  color: #fff;
  top: 13rem;
  width: 100%;
  transition: 0.3s;
  opacity: 0;
}
.business-more-sec .box .desc.st02 {
  top: 18rem;
}
.business-more-sec .box .desc p {
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  top: unset;
  transform: unset;
  left: unset;
  line-height: 1.3;
}
.business-more-sec .box .desc p + p {
  margin-top: 1.2rem;
}
.business-more-sec .box .link-box {
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4rem;
  width: calc(100% - 64px);
  opacity: 0;
  transition: 0.3s;
}
.business-more-sec .box .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}

.business-more-sec .box:hover::after {
  opacity: 1;
}
.business-more-sec .box:hover .link-box {
  opacity: 1;
}
.business-more-sec .box:hover .bg {
  transform: scale(1.05);
}
.business-more-sec .box:hover .desc {
  opacity: 1;
}


.business-swiper {
  overflow: unset !important;
  padding-bottom: 10rem !important;
}


.business-slide-box {
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 3.6rem;
  min-height: 65rem;
}
.business-slide-box .slide-num {
  color: #1978F0;
  font-size: 2.4rem;
  font-weight: 700;
}
.business-slide-box .slide-tit-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(235, 235, 235, 0.50);
  padding-bottom: 2rem;
  margin: 1.6rem 0;
}
.business-slide-box .slide-tit-box .slide-desc {
  color: #424242;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}
.business-slide-box .slide-tit-box .slide-desc img {
  margin-right: 1.6rem;
}
.business-slide-box .slide-tit-box .slide-tit {
  font-size: 3.2rem;
  font-weight: 500;
}
.business-slide-box .slide-content .slide-txt {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.5;
  min-height: 10rem;
}
.business-slide-box .slide-content .slide-txt p + p {
  margin-top: 4px;
}
.business-slide-box .slide-content .slide-tag {
  display: flex;
  flex-wrap: wrap;
  margin: 1.2rem -8px -8px;
}
.business-slide-box .slide-content .slide-tag li {
  padding: 8px;
}
.business-slide-box .slide-content .slide-tag li .tag {
  background: rgba(165, 205, 255, 0.50);
  color: #031847;
  font-size: 1.6rem;
}


.business-slide-box.st02 .slide-num {
  color: #A5CDFF;
}
.business-slide-box.st02 .slide-tit-box .slide-desc {
  color: #fff;
}
.business-slide-box.st02 .slide-tit-box .slide-tit {
  color: #fff;
}
.business-slide-box.st02 .slide-content .slide-txt {
  color: #fff;
}
.business-slide-box.st02 .slide-content .slide-tag li .tag {
  background-color: #000;
  color: #D2E6FF;
  padding: 0.8rem 1.2rem;
}


.business-slide-box.st03 {
  background-color: #fff;
}
.business-slide-box.st03 .slide-content .slide-tag {
  margin-top: -0.4rem;
  margin-bottom: 1.2rem;
}
.business-slide-box.st03 .slide-content .slide-tag .tag::before {
  display: none;
}
.business-slide-box.st03 .slide-content .slide-txt li + li {
  margin-top: 4px;
}
.business-slide-box.st03 .slide-content .slide-txt li p {
    position: relative;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    padding-left: 3rem;
}
.business-slide-box.st03 .slide-content .slide-txt li p::before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #24232C;
    border-radius: 50%;
    top: 9px;
    left: 12px;
    position: absolute;
}



.business-slide-btn {
  display: flex;
  align-items: center;
}
.business-slide-btn > div {
  position: relative;
  top: unset;
  left: unset;
  bottom: unset;
  right: unset;
  margin: 0;
  padding: 0;
  width: 6rem;
  height: 6rem;
}
.business-slide-btn > div + div {
  margin-left: 2rem;
}
.business-slide-btn > div::after {
  display: none;
}
.business-slide-btn > div button {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 0;
  background-color: transparent;
  transition: background-color 0.3s;
}
.business-slide-btn > div button:hover {
  background-color: #1978F0;
  background: url('../images/ico/ico-arrow-right-white.svg') #1978f0 no-repeat center / 16px 14px;
}

.business-slide-btn .swiper-button-prev button {
  background: url('../images/ico/ico-arrow-right-blue.svg') #fff no-repeat center / 16px 14px;
  transform: rotate(180deg);
}
.business-slide-btn .swiper-button-next button {
  background: url('../images/ico/ico-arrow-right-blue.svg') #fff no-repeat center / 16px 14px;
}


.business-slide-btn .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  transform: rotate(180deg);
}
.business-slide-btn .swiper-button-prev.swiper-button-disabled button {
  background-image: url('../images/ico/ico-arrow-left-gray.svg');
  background-color: #EBEBEB;
}
.business-slide-btn .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  transform: rotate(180deg);
}
.business-slide-btn .swiper-button-next.swiper-button-disabled button {
  background-image: url('../images/ico/ico-arrow-left-gray.svg');
  background-color: #EBEBEB;
}


.business-slide-btn.gray-btn .swiper-button-prev.swiper-button-disabled button {
  background-color: rgba(255, 255, 255, 0.20);
  transform: rotate(360deg);
}
.business-slide-btn.gray-btn .swiper-button-next.swiper-button-disabled button {
  background-color: rgba(255, 255, 255, 0.20);
  transform: rotate(180deg);
}
.business-slide-btn.gray-btn .swiper-button-prev button {
  background-color: rgba(255, 255, 255, 0.40);
  background-image: url('../images/ico/ico-arrow-right-white.svg');
  transform: rotate(180deg);
}
.business-slide-btn.gray-btn .swiper-button-next button {
  background-color: rgba(255, 255, 255, 0.40);
  background-image: url('../images/ico/ico-arrow-right-white.svg');
}
.business-slide-btn.gray-btn > div button:hover {
  background-color: rgba(255, 255, 255, 0.80);
}



.business-logo-list {
  margin-top: 6rem;
}
.business-logo-list .logo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.business-logo-list .logo-list li {
  padding: 1.2rem 1rem;
  width: 33.3%;
}
.business-logo-list .logo-list .box {
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.40);
  border-radius: 1.2rem;
  padding: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.business-logo-list .logo-list .txt {
  margin-left: 2.4rem;
  width: 100%;
}
.business-logo-list .logo-list .txt .tit {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.business-logo-list .logo-list .txt .desc {
  font-size: 1.6rem;
  line-height: 1.5;
}




.history-wrap {
  padding-top: 10rem;
  display: flex;
}

.history-fixed {
  width: 30%;
}

.history-tab ul {
  display: flex;
  margin: 0 -1rem;
}
.history-tab li {
  padding: 0 1rem;
  position: relative;
}
.history-tab li::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #ebebeb;
}
.history-tab li p {
  font-size: 1.6rem;
  font-weight: 500;
  height: 3.6rem;
  padding: 0 0.9rem;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.history-tab li p::after {
  content: '';
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #1978F0;
  position: absolute;
  opacity: 0;
  z-index: 1;
}
.history-tab li.active p::after {
  opacity: 1;
}


.history-year {
  padding-top: 10rem;
}
.history-tit {
  transition: 0.3s;
  opacity: 0;
  position: absolute;
}
.history-tit p {
  font-size: 4rem;
  font-weight: 600;
}
.history-tit span {
  margin-top: 8px;
  color: #1978F0;
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
}
.history-tit.active {
  opacity: 1;
}

.history-content {
  position: relative;
}
.history-content .content {
  position: relative;
}
.history-content .content::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 1000%;
  background-color: #ebebeb;
  top: 0;
}
.history-content .content:first-child {
  padding-top: 10rem;
}
.history-content .content:first-child::before {
  top: 10rem;
}
.history-content .content + .content {
  border-top: 1px solid #EBEBEB;
  margin-top: 7rem;
  padding-top: 15rem;
}
.history-content .content ul {
  padding-left: 6rem;
}
.history-content li {
  display: flex;
  font-size: 1.6rem;
  line-height: 1.5;
  position: relative;
}
.history-content li + li {
  margin-top: 3.2rem;
}
.history-content li em {
  display: flex;
  margin-right: 2.8rem;
  font-style: normal;
  font-size: 1.8rem;
  font-weight: 700;
}

.history-content li:first-child::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #A5CDFF;
  left: -66.5px;
  z-index: 1;
  border-radius: 50%;
}
.history-content li:first-child::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #1978F0;
  left: -63px;
  top: 4px;
  z-index: 1;
  border-radius: 50%;
}



.sticky-wrap {
  padding: 11rem 0;
}
.sticky-grid {
  position: relative;
  margin: 0 auto !important;
  display: grid;
  grid-template-columns: 260px 450px 1fr;
  width: 100%;
  height: 100vh;
  padding-top: 5rem;
}
.sticky-grid .title {
  display: block;
  grid-row: 1 / 4;
  grid-column: 1 / 2;
  padding-top: 20rem;
}
.sticky-grid .title h3 {
  color: #424242;
  font-size: 2rem;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
  padding-left: 2rem;
}
.sticky-grid .title h3::before {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-color: #1978F0;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.3s;
}
.sticky-grid .image {
  grid-row: 1 / 4;
  grid-column: 2 / 3;
}
.sticky-grid .image img {
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  max-width: 100%;
  transition: height 0.4s, margin-top 0.4s;
}
.sticky-grid .image:nth-child(5) img {
  height: 4.5rem;
  opacity: 0.7;
  width: 90%;
  margin-top: 45rem;
}
.sticky-grid .image:nth-child(8) img {
  height: 2.4rem;
  opacity: 0.7;
  width: 80%;
  margin-top: 50rem;
}
.sticky-grid .text-group {
  position: absolute;
  left: calc(320px + 480px);
  top: 0;
  width: calc(100% - 800px);
  padding: 22rem 0 18rem;
  height: auto !important;
}
.sticky-grid .text-group .num {
  color: #1978F0;
  font-size: 1.6rem;
  font-weight: 500;
}
.sticky-grid .text-group h4 {
  font-size: 3.6rem;
  font-weight: 700;
  margin: 0.4rem 0 2.8rem;
}
.sticky-grid .text-group p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}
.sticky-grid .text-group p + p {
  margin-top: 1.6rem;
}
.sticky-grid .text-group .etc {
  color: #6B6B6B;
  font-size: 1.6rem;
  font-weight: 500;
  display: block;
  margin-top: 4px;
  line-height: 1.3;
}

.sticky-grid .title:nth-child(4) {
    margin-top: 5rem;
}
.sticky-grid .title:nth-child(7) {
    margin-top: 10rem;
}


.sticky-wrap.item1 .title:first-child h3 {
  color: #1978F0;
}
.sticky-wrap.item1 .title:first-child h3::before {
  opacity: 1;
}
.sticky-wrap.item2 .title:nth-child(4) h3 {
  color: #1978F0;
}
.sticky-wrap.item2 .title:nth-child(4) h3::before {
  opacity: 1;
}
.sticky-wrap.item3 .title:nth-child(7) h3 {
  color: #1978F0;
}
.sticky-wrap.item3 .title:nth-child(7) h3::before {
  opacity: 1;
}


.sticky-wrap.item2 .image:nth-child(2) img {
  height: 3rem;
  opacity: 0.7;
  width: 90%;
}
.sticky-wrap.item2 .image:nth-child(5) img {
  opacity: 1;
  width: 100%;
  margin: 4rem 0;
  height: 45rem;
}
.sticky-wrap.item2 .image:nth-child(8) img {
  height: 3rem;
  opacity: 0.7;
  width: 90%;
}
.sticky-wrap.item3 .image:nth-child(2) img {
  height: 2.4rem;
  opacity: 0.7;
  width: 80%;
  margin-top: 0;
}
.sticky-wrap.item3 .image:nth-child(5) img {
  height: 4.4rem;
  opacity: 0.7;
  width: 90%;
  margin-top: 3rem;
}
.sticky-wrap.item3 .image:nth-child(8) img {
  opacity: 1;
  width: 100%;
  height: 45rem;
  margin-top: 8rem;
}



.circle-list-box {
  position: relative;
  margin-top: 10rem;
  display: flex;
  align-items: center;
}
.circle-list-box .circle-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.circle-list-box .circle-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.circle-list-box .circle-list li {
  width: 50rem;
}
.circle-list-box .circle-list li .line-txt {
  padding-left: 6rem;
}
.circle-list-box .circle-list li .line-txt + .line-txt {
  margin-top: 10rem;
}
.circle-list-box .circle-list li .line {
  border-radius: 4rem;
  padding: 0.8rem 4.8rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}
.circle-list-box .circle-list li .line::before {
  content: '';
  position: absolute;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background-color: red;
  top: 50%;
  transform: translateY(-50%);
  left: -6rem;
}
.circle-list-box .circle-list li .line p {
  font-size: 2.4rem;
  font-weight: 700;
}
.circle-list-box .circle-list li .txt p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}

.circle-list-box .circle-list li:first-child .line-txt:first-child .line {
  background-color: #F06262;
  color: #fff;
}
.circle-list-box .circle-list li:first-child .line-txt:first-child .line::before {
  background-color: #F06262;
}
.circle-list-box .circle-list li:first-child .line-txt:last-child .line {
  background-color: #316A96;
  color: #fff;
}
.circle-list-box .circle-list li:first-child .line-txt:last-child .line::before {
  background-color: #316A96;
}
.circle-list-box .circle-list li:last-child .line-txt:first-child .line {
  background-color: #FBC522;
}
.circle-list-box .circle-list li:last-child .line-txt:first-child .line::before {
  background-color: #FBC522;
}
.circle-list-box .circle-list li:last-child .line-txt:last-child .line {
  background-color: #D6D6D6;
}
.circle-list-box .circle-list li:last-child .line-txt:last-child .line::before {
  background-color: #D6D6D6;
}



.circle-bg .bg {
  position: absolute;
  z-index: -1;
}
.circle-bg .bg01 {
  right: -20%;
  top: -50%;
}
.circle-bg .bg02 {
  right: 60%;
  bottom: -10%;
  width: 110rem;
}
.circle-bg .bg03 {
  right: 0%;
  top: 20%;
}




.edu-wrap .sec02::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}


.edu-wrap .sec04 {
  overflow: unset;
}


.edu-wrap .sec05 {
  background-color: #F7F7F7;
}



.edu-wrap .sec06 {
  background: url('../images/sub/edutech-img26.png') no-repeat center / cover;
  display: flex;
  align-items: center;
  padding: 15rem 0;
}



.aicc-wrap .sec03 {
  background-color: #e7e7e7;
  display: flex;
  align-items: center;
}
.aicc-wrap .sec03 .sub-sec-tit h3 span {
  background: linear-gradient(90deg, #1978F0 0%, #0E238A 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.aicc-wrap .sec03 .sub-sec-tit p {
  font-size: 2.4rem;
}
.aicc-wrap .sec03 .sub-sec-tit p span {
  color: #424242;
  font-size: 2rem;
  font-weight: 500;
  display: block;
  margin-top: 1rem;
}


.aicc-wrap .sec04 {
  padding: 25rem 0;
  background-color: #0B032B;
  color: #fff;
}
.aicc-wrap .sec04 .sub-sec-tit p {
  color: #fff;
}
.aicc-wrap .sec04 .circle-bg .bg01 {
  top: -20%;
}
.aicc-wrap .sec04 .circle-list-box .circle-list li .line {
  background: linear-gradient(90deg, rgba(18, 208, 253, 0.80) 0%, rgba(33, 67, 164, 0.80) 100%);
  box-shadow: 0 0 15px 0 rgba(255, 255, 255, 0.40) inset;
  background-color: transparent !important;
}
.aicc-wrap .sec04 .circle-list-box .circle-list li .line::before {
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.40) inset;
  background: rgba(18, 208, 253, 0.7) !important;
}


.aicc-wrap .sec05 {
  background: linear-gradient(180deg, #0B032B 0%, #386AA9 100%);
}



.aicc-sec-list {
  margin-top: 8rem;
}
.aicc-sec-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -3rem;
}
.aicc-sec-list li {
  width: 33.3%;
  padding: 0 3rem;
}
.aicc-sec-list .box {
  text-align: center;
}
.aicc-sec-list .txt {
  margin-top: 1.6rem;
  background: rgba(165, 205, 255, 0.50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
}
.aicc-sec-list .txt p {
  color: #031847;
  font-size: 1.6rem;
  font-weight: 500;
}



.oda-wrap .sticky-grid .title:nth-child(7) {
  margin-top: 13rem;
}
.oda-wrap .sticky-grid .text-group span:not(.num) {
  color: #6B6B6B;
  display: block;
  margin-bottom: 4px;
  font-size: 1.6rem;
  font-weight: 500;
}
.oda-wrap .sticky-grid .text-group p + span {
  margin-top: 1.6rem;
}



.oda-wrap .sec04 {
  padding: 17rem 0;
  background-color: #001730;
}


.arrow-line-box {
  margin-top: 10rem;
  position: relative;
}
.arrow-line-box .arrow-line span {
  background: url('../images/sub/oda-img10.png') no-repeat center / cover;
  height: 38px;
  position: absolute;
  left: -136.6%;
  width: 1698px;
  top: 50%;
  transform: translateY(-50%);
  transition: 3s ease-in-out;
}
.arrow-line-box .light-line-box {
  margin: 0 -3.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.arrow-line-box .light-line-box li {
  padding: 0 3.2rem;
  width: 33.3%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  bottom: -5rem;
  transition: 1s 1s;
  opacity: 0;
}
.arrow-line-box .light-line-box .line {
  background: url('../images/sub/oda-img37.png') no-repeat center / cover;
  width: 4px;
  height: 80px;
  margin-bottom: 4rem;
  position: relative;
}
.arrow-line-box .light-line-box .line .light {
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #B9FCFB;
  border-radius: 50%;
}
.arrow-line-box .light-line-box .line .light::after {
  content: '';
  position: absolute;
  box-shadow: 0 0 10px #4fd1ff, 0 0 20px #4fd1ff, 0 0 40px #4fd1ff, 0 0 80px #4fd1ff;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  animation: glowFlash 2.5s ease-in-out infinite;
}
.arrow-line-box .light-line-box .txt-box {
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.40);
  background: rgba(255, 255, 255, 0.20);
  padding: 3.2rem;
  display: flex;
  align-items: center;
}
.arrow-line-box .light-line-box .txt-box p {
  color: #fff;
  margin-left: 1.6rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}

.arrow-line-box .light-line-box li:nth-child(-n+3) {
  flex-direction: column-reverse;
}
.arrow-line-box .light-line-box li:nth-child(-n+3) .line {
  margin: 4rem 0 0;
}
.arrow-line-box .light-line-box li:nth-child(-n+3) .line .light {
  top: -1rem;
  bottom: unset;
}



@keyframes glowFlash {
  0%, 100% {
    box-shadow:
      0 0 6px #ffffff,
      0 0 12px #B9FCFB,
      0 0 24px #B9FCFB,
      0 0 48px rgba(185, 252, 251, 0.5),
      0 0 80px rgba(185, 252, 251, 0.3);
  }

  40% {
    box-shadow:
      0 0 12px #ffffff,
      0 0 28px #B9FCFB,
      0 0 60px #B9FCFB,
      0 0 100px rgba(185, 252, 251, 1),
      0 0 160px rgba(185, 252, 251, 0.9);
  }

  /* 순간 번쩍 */
  45% {
    box-shadow:
      0 0 20px #ffffff,
      0 0 40px #B9FCFB,
      0 0 80px #B9FCFB,
      0 0 140px rgba(185, 252, 251, 1),
      0 0 200px rgba(185, 252, 251, 1);
  }

  90% {
    box-shadow:
      0 0 12px #ffffff,
      0 0 28px #B9FCFB,
      0 0 60px #B9FCFB,
      0 0 100px rgba(185, 252, 251, 1),
      0 0 160px rgba(185, 252, 251, 0.9);
  }
}



.arrow-line-box.ani-active .arrow-line span {
  left: -16.6%;
}
.arrow-line-box.ani-active .light-line-box li {
  opacity: 1;
  bottom: 0;
}
.arrow-line-box.ani-active .light-line-box li:nth-child(4) {
  transition-delay: 1.3s;
}
.arrow-line-box.ani-active .light-line-box li:nth-child(2) {
  transition-delay: 1.6s;
}
.arrow-line-box.ani-active .light-line-box li:nth-child(5) {
  transition-delay: 1.9s;
}
.arrow-line-box.ani-active .light-line-box li:nth-child(3) {
  transition-delay: 2.2s;
}



.oda-wrap .sec05 {
  padding: 10rem 0;
  background-color: #001730;
}
.oda-wrap .sec05 .sub-sec-tit h3 {
  font-size: 6rem;
}



.map-bg {
  margin-top: 5rem;
}
.map-bg .map {
  position: relative;
  width: 100%;
  padding-bottom: 50%;
}
.map-bg .map > div {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.map-bg .map .spot {
  position: absolute;
  background: url('../images/sub/oda-img12.png') no-repeat center / cover;
  width: 34px;
  height: 40px;
  opacity: 0;
  transform: translateY(10px);
  transition: 1s;
}
.map-bg .map .spot::before {
  content: '';
  position: absolute;
}
.map-bg .map .spot::after {
  content: '';
  position: absolute;
  background: url('../images/sub/oda-img13.png') no-repeat center / cover;
  width: 38px;
  height: 24px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.map-bg .map .spot.spot01 {
  left: 26%;
  top: 49%;
}
.map-bg .map .spot.spot02 {
  left: 30%;
  bottom: 22%;
}
.map-bg .map .spot.spot03 {
  left: 42%;
  top: 51%;
}
.map-bg .map .spot.spot04 {
  left: 44.5%;
  top: 55.5%;
}
.map-bg .map .spot.spot05 {
  left: 45.58%;
  top: 55%;
}
.map-bg .map .spot.spot06 {
  left: 50.8%;
  top: 67%;
}
.map-bg .map .spot.spot07 {
  left: 54.1%;
  top: 61%;
}
.map-bg .map .spot.spot08 {
  left: 56.2%;
  top: 59%;
}
.map-bg .map .spot.spot09 {
  left: 56.5%;
  top: 54%;
}
.map-bg .map .spot.spot10 {
  left: 54%;
  top: 45%;
}
.map-bg .map .spot.spot11 {
  left: 55.2%;
  top: 42%;
}
.map-bg .map .spot.spot12 {
  left: 63%;
  top: 34%;
}
.map-bg .map .spot.spot13 {
  left: 67%;
  top: 35%;
}
.map-bg .map .spot.spot14 {
  left: 68.3%;
  top: 55%;
}
.map-bg .map .spot.spot15 {
  left: 69.5%;
  top: 44%;
}
.map-bg .map .spot.spot16 {
  left: 71%;
  top: 46%;
}
.map-bg .map .spot.spot17 {
  left: 72.5%;
  top: 48%;
}
.map-bg .map .spot.spot18 {
  left: 74.7%;
  top: 53%;
}
.map-bg .map .spot.spot19 {
  left: 75.7%;
  top: 52%;
}
.map-bg .map .spot.spot20 {
  left: 74.5%;
  top: 32%;
}


.map-project {
  position: absolute;
  bottom: 0;
  left: 0;
}
.map-project .txt-box .txt + .txt {
  margin-top: 1.6rem;
}
.map-project .txt-box .txt span {
  color: #EBEBEB;
  font-size: 2.4rem;
  font-weight: 700;
}
.map-project .txt-box .txt p {
  color: #B9FCFB;
  font-size: 2.4rem;
  font-weight: 700;
}
.map-project .txt-box .txt strong {
  font-size: 7.2rem;
  font-weight: 700;
}
.map-project .btn-wrap {
  margin-top: 2.4rem;
}
.map-project .btn-wrap .link-st02 {
  width: 22rem;
}


.map-bg.ani-active .map .spot {
  opacity: 1;
  transform: translateY(0);
}
.map-bg.ani-active .map .spot.spot01 {
  transition-delay: 0.3s;
}
.map-bg.ani-active .map .spot.spot02 {
  transition-delay: 0.5s;
}
.map-bg.ani-active .map .spot.spot03 {
  transition-delay: 0.7s;
}
.map-bg.ani-active .map .spot.spot04 {
  transition-delay: 0.9s;
}
.map-bg.ani-active .map .spot.spot05 {
  transition-delay: 1.1s;
}
.map-bg.ani-active .map .spot.spot06 {
  transition-delay: 1.3s;
}
.map-bg.ani-active .map .spot.spot07 {
  transition-delay: 1.5s;
}
.map-bg.ani-active .map .spot.spot08 {
  transition-delay: 1.7s;
}
.map-bg.ani-active .map .spot.spot09 {
  transition-delay: 1.9s;
}
.map-bg.ani-active .map .spot.spot10 {
  transition-delay: 2.1s;
}
.map-bg.ani-active .map .spot.spot11 {
  transition-delay: 2.3s;
}
.map-bg.ani-active .map .spot.spot12 {
  transition-delay: 2.5s;
}
.map-bg.ani-active .map .spot.spot13 {
  transition-delay: 2.7s;
}
.map-bg.ani-active .map .spot.spot14 {
  transition-delay: 2.9s;
}
.map-bg.ani-active .map .spot.spot15 {
  transition-delay: 3.1s;
}
.map-bg.ani-active .map .spot.spot16 {
  transition-delay: 3.3s;
}
.map-bg.ani-active .map .spot.spot17 {
  transition-delay: 3.5s;
}
.map-bg.ani-active .map .spot.spot18 {
  transition-delay: 3.7s;
}
.map-bg.ani-active .map .spot.spot19 {
  transition-delay: 3.9s;
}
.map-bg.ani-active .map .spot.spot20 {
  transition-delay: 4.1s;
}


.map-bg.ani-active .map .spot {
  animation: glowMap 2.5s ease-in-out infinite;
}
.map-bg.ani-active .map .spot::after {
  animation: glowMapCircle 2.5s ease-in-out infinite;
}




@keyframes glowMap {
  0%, 100% {
    background-image: url('../images/sub/oda-img12.png');
  }
  50% {
    background-image: url('../images/sub/oda-img12_.png');
  }
}
@keyframes glowMapCircle {
  0%, 100% {
    transform: translateX(-50%) scale(0.5);
  }
  40% {
    transform: translateX(-50%) scale(1);
  }
  80% {
    transform: translateX(-50%) scale(0.6);
  }
}



.map-project-list-popup {
  position: absolute;
  bottom: 7rem;
  width: 108rem;
  background: #011227;
  border-radius: 2rem;
  padding: 6rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.map-project-list-popup .tit-wrap {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.map-project-list-popup .tit-wrap .tit p {
  font-size: 3.6rem;
  font-weight: 700;
}
.map-project-list-popup .tit-wrap .desc p {
  font-size: 2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.map-project-list-popup .tit-wrap .desc span {
  font-size: 3.6rem;
  font-weight: 700;
  margin-right: 4px;
}
.map-project-list-popup .tit-wrap .desc span + span {
  margin-left: 1.6rem;
}
.map-project-list-box {
  max-height: 58rem;
  overflow-y: auto;
  padding-right: 1.2rem;
}
.map-project-list-box::-webkit-scrollbar{width: 8px;height: 8px;}
.map-project-list-box::-webkit-scrollbar-thumb{background-color:#fff;border-radius:5px;transition:all 0.5s;}
.map-project-list-box::-webkit-scrollbar-track{background-color:#556277;border-radius:5px;}
.map-project-list li + li {
  margin-top: 8px;
}
.map-project-list .box {
  background: linear-gradient(90deg, #383D45 0%, #3C4A61 100%);
  padding: 3.2rem;
  color: #F7F7F7;
}
.map-project-list .date {
  display: flex;
  align-items: center;
}
.map-project-list .date img + img {
  margin-left: 8px;
}
.map-project-list .date p {
  font-size: 2rem;
  font-weight: 600;
  margin-left: 8px;
}
.map-project-list .tit {
  margin-top: 8px;
}
.map-project-list .tit p {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
}

.map-project-list-popup.active {
  opacity: 1;
  visibility: inherit;
}




.oda-wrap .sec06 {
  background: linear-gradient(180deg, #001730 0%, #000 100%);
}
.oda-wrap .sec06 .business-slide-box.st02 .slide-num {
  color: #B9FCFB;
}


.oda-wrap .sec07 {
  background: linear-gradient(180deg, #000 0%, #001730 100%);
  display: flex;
  align-items: center;
}




.aihw-wrap .sec04 {
  background-color: #F7F7F7;
  padding: 12rem 0;
}
.aihw-wrap .sec04 .col-list {
  margin: 0 -3.5rem;
  padding-top: 10rem;
}
.aihw-wrap .sec04 .col-list > div {
  padding: 0 3.5rem;
  padding-left: 8rem;
}



.aihw-wrap .sec05 {
  background: linear-gradient(180deg, #9C9C9C 0%, #000 100%);
}
.aihw-wrap .sec05 .business-slide-box {
  background-color: #fff;
}




.circle-line-tit {
  border-radius: 4rem;
  padding: 0.8rem 4.8rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  background-color: #24232C;
}
.circle-line-tit::before {
  content: '';
  position: absolute;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background-color: #24232C;
  top: 50%;
  transform: translateY(-50%);
  left: -6rem;
}
.circle-line-tit p {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
}
.circle-line-cont > p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}
.circle-line-cont .img-box {
  margin-top: 4rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.circle-line-cont .dot-list {
  margin-top: 1.6rem;
}
.circle-line-cont .dot-list li {
  font-size: 1.6rem;
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}
.circle-line-cont .dot-list li::before {
  content: '';
  position: absolute;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #21272A;
  left: 0;
}
.circle-line-cont .dot-list li span {
  font-weight: 700;
}




.about-wrap .sec02 {
  background-color: #010012;
}



.about-wrap .sec03 {
  display: flex;
  align-items: center;
}



.about-wrap .sec04 {
  padding-bottom: 17rem;
  position: relative;
}
.about-wrap .sec04 .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  transform: scale(1.1);
  transition: 3s;
}


.about-wrap .sec04 .txt-box {
  margin-top: 34rem;
  max-width: 60rem;
}
.about-wrap .sec04 .txt-box h4 {
  color: #fff;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.4;
  transform: translate3d(-50px, 0, 0);
  opacity: 0;
  filter: blur(15px);
  transition: all 1s 0.5s;
}
.about-wrap .sec04 .link-box {
  width: 20rem;
  margin-top: 5rem;
}

.about-wrap .sec04.ani-active .bg {
  transform: scale(1);
}
.about-wrap .sec04.ani-active .txt-box h4 {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}




.about-history {
  margin-top: 27rem;
}
.about-history-list {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
}
.about-history-list li + li {
  margin-left: 6rem;
  padding-left: 6rem;
  border-left: 1px solid rgba(247, 247, 247, 0.50);
}
.about-history-list li .box span {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.about-history-list li .box p {
  font-size: 1.6rem;
  line-height: 1.4;
}



.about-slide-sec {
  position: relative;
  margin-top: 5rem;
}
.aboutSwiper {
  height: 48rem; /* 원하는 높이 */
}
.aboutSwiper .swiper-wrapper {
  position: relative !important;
  height: 100% !important;
  overflow: hidden;
}
.aboutSwiper .swiper-slide {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.aboutSwiper .swiper-slide > .box {
  display: flex;
  height: 100%;
  max-width: 116rem;
}
.aboutSwiper .swiper-slide .img-box {
  width: 36%;
  padding-bottom: 42%;
  overflow: hidden;
  position: relative;
}
.aboutSwiper .swiper-slide .img-box > .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.aboutSwiper .swiper-slide .txt-box {
  width: 64%;
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #F7F7F7;
}
.aboutSwiper .swiper-slide .txt-box .txt h4 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.4;
}
.aboutSwiper .swiper-slide .txt-box .txt p {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 3.2rem 0 0.8rem;
}
.aboutSwiper .swiper-slide .txt-list li {
  font-size: 1.6rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
  margin-left: 1rem;
}
.aboutSwiper .swiper-slide .txt-list li::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #111;
  border-radius: 50%;
}
.aboutSwiper .swiper-slide .banner-box {
  display: flex;
  margin: 0 -1.2rem;
}
.aboutSwiper .swiper-slide .banner-box li {
  width: 50%;
  padding: 0 1.2rem;
}
.aboutSwiper .swiper-slide .banner-box li .box {
  background: rgba(211, 230, 255, 0.60);
  border-radius: 8px;
  padding: 1.2rem;
  text-align: center;
  font-size: 1.5rem;
}
.aboutSwiper .swiper-slide .banner-box li p {
  font-weight: 600;
}
.aboutSwiper .swiper-slide .banner-box li strong {
  color: #1978F0;
  display: block;
}


.about-slide-sec .swiper-pagination-wrap {
  position: absolute;
  right: 6rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-slide-sec .swiper-pagination-progressbar {
  position: static !important;
  width: 8px !important;
  height: 32rem !important;
  border-radius: 5px;
  overflow: hidden;
  background-color: #EBEBEB !important;
}
.about-slide-sec .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  border-radius: 5px !important;
}

.about-slide-sec .pagination-text-top,
.about-slide-sec .pagination-text-bottom {
  font-size: 2rem;
  font-weight: 500;
  margin: 2.4rem 0;
  transition: 0.3s;
}

.about-slide-sec .pagination-text-top {
  color: #1978F0;
}




.ai-wrap .sec02 {
  padding: 16rem 0;
}
.ai-wrap .sec03 {
  padding: 21rem 0;
  color: #fff;
  background: url('../images/sub/voice-img05.svg') no-repeat center / cover;
}
.ai-wrap .sec04 {
  padding: 18rem 0;
  background-color: #000;
}
.ai-wrap .business-more-sec .box .tit {
  top: 7rem;
}
.ai-wrap .business-more-sec .box p {
  padding: 0 3.2rem;
  width: 100%;
}



.ai-thum-list {
  margin-top: 5rem;
}
.ai-thum-list .list {
  display: flex;
  align-items: center;
  position: relative;
  opacity: 0;
  transition: 0.7s 0.3s;
  transform: translateY(15px);
}
.ai-thum-list .list + .list {
  margin-top: 4rem;
}
.ai-thum-list .thum {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  min-width: 39%;
  padding-bottom: 23.3%;
}
.ai-thum-list .thum > .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: 1s;
}
.ai-thum-list .thum > .bg:hover {
  transform: scale(1.03);
}
.ai-thum-list .txt-box {
  margin-left: 4.8rem;
}
.ai-thum-list .txt-box .num {
  color: #1978F0;
  font-size: 1.5rem;
  font-weight: 600;
}
.ai-thum-list .txt-box .tit {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 4px 0 2.4rem;
}
.ai-thum-list .txt-box .desc {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}
.ai-thum-list .txt-box .desc + .desc {
  margin-top: 8px;
}

.ai-thum-list .list.ani-active {
  opacity: 1;
  transform: translateY(0);
}



.ai-num-list {
  margin-top: 14rem;
}
.ai-num-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
}
.ai-num-list li {
  width: 25%;
  padding: 0 2rem;
  position: relative;
}
.ai-num-list .box {
  position: relative;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(244, 244, 244, 0.15);
  box-shadow: -1px -1px 5px 0 rgba(0, 0, 0, 0.20) inset, 10px 10px 25px 0 rgba(0, 0, 0, 0.15), 2px -2px 10px 0 rgba(255, 255, 255, 0.20) inset;
  padding: 4rem 2.4rem;
  z-index: 2;
  height: 40rem;
  display: flex;
  align-items: end;
}
.ai-num-list .txt {
  min-height: 25rem;
}
.ai-num-list .num {
  position: absolute;
  background: linear-gradient(180deg, #00477D 0%, #002D4E 100%);
  border-radius: 3.6rem;
  top: -8rem;
  left: -0.6rem;
  width: 15rem;
  height: 16rem;
  padding: 2rem 4rem;
}
.ai-num-list .num p {
  font-size: 3.2rem;
  font-weight: 500;
}
.ai-num-list .txt strong {
  font-size: 2.4rem;
  font-weight: 700;
  display: block;
  margin: 2rem 0 1rem;
}
.ai-num-list .txt p {
  color: #f7f7f7;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 300;
}




.ai-swiper {
  overflow: inherit !important;
}
.ai-slide-box {
  background-color: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
}
.ai-slide-box .bg-box {
  position: relative;
  width: 100%;
  padding-bottom: 56%;
}
.ai-slide-box .bg-box > .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.ai-slide-box .txt-box {
  padding: 4rem;
  min-height: 22.2rem;
}
.ai-slide-box .txt-box strong {
  font-size: 3.6rem;
  font-weight: 700;
}
.ai-slide-box .txt-box p {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
}



.policy-wrap .title-area {
  text-align: center;
  padding: 2.5rem 0 2rem;
  border-bottom: 2px solid #1a4fa0;
  margin-bottom: 2rem;
}

.policy-wrap .title-area h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1a4fa0;
  margin-bottom: 8px;
}

.policy-wrap .title-area .date {
  font-size: 13px;
  color: #666;
}

.policy-wrap p.intro {
  margin-bottom: 50px !important;
  padding: 1.25rem 1.5rem;
  background: #eef4fd;
  border-left: 3px solid #3b82f6;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  line-height: 1.9;
}
.policy-wrap .section {
  min-height: auto;
  margin-bottom: 100px;
}
.policy-wrap .section h2 {
  font-size: 15px;
  font-weight: 700;
  color: #1978F0 ;
  margin-bottom: 1rem;
  padding-bottom: 8px;
  border-bottom: 1px solid #e4e8ef;
}

.policy-wrap .section p {
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.policy-wrap .section p:last-child { margin-bottom: 0; }

.policy-wrap .section p.sub {
  padding-left: 1.2rem;
  color: #555;
}

.policy-wrap .section p.sub2 {
  padding-left: 2.4rem;
  color: #666;
}

.policy-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 0.75rem 0;
}

.policy-wrap th {
  background: #1978F0 ;
  color: #fff;
  font-weight: 500;
  padding: 10px 14px;
  text-align: center;
  border: 1px solid #1978F0 ;
}

.policy-wrap td {
  padding: 9px 14px;
  border: 1px solid #dde3ee;
  text-align: center;
  vertical-align: middle;
}

.policy-wrap tr:nth-child(even) td { background: #f5f7fb; }

.policy-wrap .contact-table td:first-child,
.policy-wrap .rescue-table td:first-child {
  font-weight: 500;
  background: #f0f4fb;
  text-align: left;
}

.policy-wrap .contact-table td:last-child,
.policy-wrap .rescue-table td:last-child {
  text-align: left;
}

.policy-wrap .contact-table tr:nth-child(even) td:first-child,
.policy-wrap .rescue-table tr:nth-child(even) td:first-child {
  background: #e8eef8;
}



/* ===== sub ===== */











@media (max-width: 1400px) {

  #header, body, .section, #footer {
    min-width: 1400px;
  }

}