/*font*/
@import url(//fonts.googleapis.com/earlyaccess/nanummyeongjo.css);
/*css reset*/
* {
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
  height: auto;
  position: relative;
  font-family: "Noto Sans KR", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 17px;
  scroll-behavior: smooth;
}
ul,
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
input:focus {
  outline-offset: 0px;
  outline: -webkit-focus-ring-color auto 0px;
}
textarea:focus {
  outline-offset: 0px;
  outline: -webkit-focus-ring-color auto 0px;
}
input[type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
input::-ms-clear {
  display: none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*common*/
.main {
  width: 100%;
  position: relative;
}
.inner {
  width: 85%;
  margin: 0 auto;
  box-sizing: border-box;
}
.inner2 {
  width: 80%;
  margin: 0 auto;
  box-sizing: border-box;
}
.pc {
  display: block;
}
.mob {
  display: none;
}
.center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.poppin {
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.nanum {
  font-family: "Nanum Myeongjo", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main-title .txt1 {
  font-size: 3.8rem;
  font-weight: bold;
  letter-spacing: -1px;
  line-height: 1;
}
.main-title .txt2 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.6px;
}
.read-btn {
  font-size: 0.8rem;
  font-weight: 300;
  display: inline-block;
  position: relative;
  color: #fff;
}
.read-btn::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: all 0.4s;
}
.read-btn:hover::after {
  width: 0;
}

/*header*/
.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  z-index: 99;
  overflow: hidden;
}
.header::after {
  content: "";
  width: 100%;
  height: 0;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s;
}
.h-wrap {
  margin: 23px auto 0;
  position: relative;
  z-index: 11;
  font-size: 0;
}
.h-wrap > li {
  display: inline-block;
  vertical-align: top;
}
.h-wrap .h-logo {
  width: 140px;
}
.h-wrap .h-nav {
  width: calc(100% - 360px);
  margin-top: 5px;
}
.h-wrap .h-tel {
  width: 160px;
}
.h-wrap .h-etc {
  width: 60px;
  text-align: end;
  margin-top: 6px;
}
.h-wrap .h-logo img {
  width: 100%;
  display: block;
}
.main-nav {
  width: 90%;
  display: flex;
  margin: auto;
}
.main-nav > li {
  width: 17.285%;
  text-align: center;
  position: relative;
}
/* 230628 sic - 좌측 정렬로 라인 크기 조정  */
.main-nav > li > a {
  display: block;
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  padding: 0 16px 0;
}
.main-nav > li > a span {display: inline-block; position: relative;}
.main-nav > li > a span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 51px;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: #326aff;
  opacity: 0;
  transition: all 0.4s;
}
.main-nav > li:hover > a > span::after {
  opacity: 1;
}
.main-nav > li:hover > a {
  color: #326aff;
}
/* End 230628 sic - 좌측 정렬로 라인 크기 조정  */
.sub-nav {
  overflow: hidden;
  box-sizing: border-box;
  padding: 44px 16px 0;
  height: 0;
  transition: all 0.8s;
}
.on .sub-nav {
  height: 100%;
}
.sub-nav > li > a {
  display: block;
  padding: 6px 0;
  font-size: 0.8rem;
  text-align: start;
  color: #333;
  line-height: 1.6;
  word-break: keep-all;
}
.sub-nav > li > a span {
  width: 12px;
  height: 2px;
  display: none;
  background: #326aff;
  vertical-align: middle;
  margin-bottom: 2px;
  margin-right: 2px;
}
.sub-nav > li > a:hover {
  font-weight: 600;
}
.sub-nav > li > a:hover span {
  display: inline-block;
  transform: rotate(320deg);
}
.header.on::after {
  height: 510px;
  opacity: 1;
}
.header.on {
  overflow: visible;
}
.header.is-none {
  overflow: hidden;
}
.header.is-none:hover {
  overflow: hidden;
}
.h-tel a {
  display: inline-block;
  font-size: 0.8rem;
  color: #333;
  border: 1px solid #326aff;
  border-radius: 30px;
  font-weight: 600;
  padding: 8px 0;
  width: 100%;
  text-align: center;
}
.h-tel a i {
  color: #326aff;
  font-size: 1.2rem;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}
.h-hamburger {
  display: inline-block;
  width: 26px;
  height: 22px;
  position: relative;
  z-index: 99;
  cursor: pointer;
}
.h-hamburger > span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #333;
  left: 0;
}
.h-hamburger > span:nth-child(1) {
  top: 0;
}
.h-hamburger > span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.h-hamburger > span:nth-child(3) {
  bottom: 0;
}
.h-hamburger.is-active > span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.h-hamburger.is-active > span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}
.h-hamburger.is-active > span:nth-child(2) {
  opacity: 0;
}
.sitemap {
  display: none;
  width: 100%;
  height: 100vh;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transform: translateY(-100%);
  transition: all 0.4s;
  overflow: scroll;
}
.sitemap .tit {
  font-size: 2.8rem;
  font-weight: 700;
  color: #313896;
}
.mob_nav {
  font-size: 0;
  margin-top: 4vh;
  display: flex;
}
.mob_nav > li {
  display: inline-block;
  vertical-align: top;
  width: 14.285%;
  position: relative;
  box-sizing: border-box;
  padding: 0 8px;
}
.nav_tit {
  font-size: 1.2rem;
  font-weight: 500;
}
.mob_sub {
  margin-top: 10px;
}
.mob_sub > li > a {
  font-size: 0.9rem;
  display: block;
  padding: 6px 0;
  word-break: keep-all;
  line-height: 1.6;
}
.sitemap.is-open {
  display: block;
  transform: none;
}
.is-scroll {
  overflow: hidden !important;
}
.h-wrap.is-hidden .h-nav {
  opacity: 0;
}
.h-wrap.is-hidden .h-tel {
  opacity: 0;
}
/*footer*/
.footer {
  background: #313896;
  color: #fff;
  padding: 4vh 0 8vh;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  margin-bottom: 4vh;
}
.footer-nav > li > a {
  font-size: 1.1rem;
  font-weight: 400;
  color: #eaf0ff;
  padding-right: 48px;
}
.footer-nav > li:nth-last-child(1) > a {
  padding-right: 0;
}
.footer-info .pc {
  display: inline-block;
}
.footer-info p {
  font-size: 0.9rem;
}
.footer-info p:nth-child(2) {
  margin: 6px 0 2vh;
}
.footer-info p:nth-child(3) {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-contact {
  text-align: center;
}
.footer-contact .txt1 {
  font-size: 2rem;
  font-weight: 200;
  line-height: 1;
}
.footer-contact .txt2 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 8px;
}
.footer-contact .txt3 {
  font-size: 1rem;
  margin: 22px 0;
  line-height: 1;
}
.footer-contact a:nth-last-child(1) {
  display: inline-block;
  width: 95%;
  margin: auto;
  padding: 12px 0;
  border-radius: 3px;
  text-align: center;
  background: #fff;
  color: #313896;
}
/*quick-nav*/
.quick-nav {
  position: fixed;
  right: 1%;
  top: 32vh;
  z-index: 10;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: #fff;
  border-radius: 60px;
  padding: 12px 18px 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.quick-nav > li {
  padding: 16px 8px;
  font-size: 0.9rem;
  color: #326aff;
  line-height: 1.6;
  border-bottom: 1px solid rgba(50, 106, 255, 0.1);
}
.quick-nav > li:nth-last-child(1) {
  border-bottom: 1px solid transparent;
}
.quick-nav > li > a {
  display: block;
}
.quick-nav > li img {
  width: 30px;
  margin: 6px auto 0;
  display: block;
}

/* quick-stick-right */
.quick-stick-right {
  position: fixed;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 60px;
  height: 100vh;
  text-align: center;
  background: #eaf0ff;
  z-index: 10;
}
.quick-stick-right > li {

}
.quick-stick-right > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #eaf0ff;
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.quick-stick-right > li > a img{max-width:28px;}
.quick-stick-right > li > a:hover, 
.quick-stick-right > li > a:focus {
  padding: 0 60px 0 15px;
  justify-content: flex-start;
  border-radius: 30px;
}
.quick-stick-right > li:nth-child(1) > a:hover, 
.quick-stick-right > li:nth-child(1) > a:focus {min-width: 332px;}
.quick-stick-right > li:nth-child(2) > a:hover, 
.quick-stick-right > li:nth-child(2) > a:focus {min-width: 302px;}
.quick-stick-right > li:nth-child(3) > a:hover, 
.quick-stick-right > li:nth-child(3) > a:focus {min-width: 294px;}
.quick-stick-right > li:nth-child(4) > a:hover, 
.quick-stick-right > li:nth-child(4) > a:focus {min-width: 330px;}
.quick-stick-right > li:nth-child(5) > a:hover, 
.quick-stick-right > li:nth-child(5) > a:focus {min-width: 308px;}

.quick-stick-right > li > a .txt{
  display: none;
  padding: 0 0 0 10px;
  line-height: 60px;
  color: #326aff;
  font-size: 18px;
  white-space: nowrap;
}
.quick-stick-right > li > a:hover .txt, 
.quick-stick-right > li > a:focus .txt {
  display: inline-block;
}

.quick-stick-right > li img {
  width: auto;
}

/* 230628 sic - 실시간 전화상담 팝업 */
 #popupOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

#popupContainer {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 390px;
  background-color: #fff;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#popupContainer.show {
  opacity: 1;
}

#popupContent {
  padding: 20px;
  text-align: center;
}

#popupContent .h {
  padding: 40px 0 19px;
  line-height: 48px;
  color: #326aff;
  font-size: 50px;
  text-align: center;
}

#popupContent .h:before {
  content: "";
  display: block;
  padding: 0 0 34px 0;
  width: 100%;
  height: 80px;
  background: url(../img/common/popup_call.png) no-repeat center 0;
}

#popupContent .p {
  line-height: 20px;
  color: #000;
  font-size: 22px;
  text-align: center;
}

#popupCloseBtn {
  margin-top: 40px;
  width: 220px;
  height: 48px;
  color: #326aff;
  font-size: 18px;
  background: #fff;
  border: 1px solid #326aff;
  border-radius: 30px;
}

/*main1*/
.main1 .swiper {
  width: 100%;
  height: 100vh;
}
.main1 .swiper .swiper-slide {
  background: url(../img/main/m1-bg1.png) no-repeat center/cover;
}
.main1 .swiper .swiper-slide2 {
  background: url(../img/main/m1-bg2.png) no-repeat center/cover;
}
.main1 .swiper .swiper-slide3 {
  background: url(../img/main/m1-bg3.png) no-repeat center/cover;
}
.main1-txtbox {
  color: #fff;
  top: 60%;
}
.main1-txtbox .txt1 {
  font-size: 3.6rem;
  font-weight: bold;
}
.main1-txtbox .txt2 {
  font-size: 2.2rem;
  font-weight: bold;
}
.main1-nav {
  position: absolute;
  left: 50%;
  bottom: 24vh;
  z-index: 1;
  transform: translateX(-50%);
}
.main1-navwidth {
  width: 140px;
  position: relative;
}
.main1-navwidth i {
  color: #fff;
  font-size: 30px;
}
.main1-navwidth i::after {
  content: "";
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.main1-nav .swiper-button-next:after,
.main1-nav .swiper-button-prev:after {
  display: none;
}
.main1-scroll {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 6vh;
  z-index: 1;
  color: rgba(255, 255, 255, 0.3);
}
.scroll-ani {
  width: 10px;
  margin: 4px auto 0;
  animation: scroll 3s linear infinite;
}
.scroll-ani img {
  width: 100%;
  display: block;
}
@keyframes scroll {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(14px);
    opacity: 0;
  }
}

/*main2*/
.main2 {
  background: #326aff;
}
.main2 .center {
  top: 55%;
}
.main2-elipse {
  width: 20%;
  background: rgba(50, 106, 255, 0.1);
  border-radius: 50%;
  position: absolute;
  right: 30%;
  bottom: -12%;
  z-index: 1;
}
.main2-elipse::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.main2-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8vh;
}
.main2-top > li {
  width: 45%;
}
.main2-top .main-title {
  color: #fff;
}
.main2-top .main-title .txt1 {
  line-height: 1;
  margin-bottom: 6px;
}
.main2-top > li.main2-search {
  text-align: end;
}
.main2-search .search-box input {
  width: 60%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  height: 38px;
  font-family: "Noto Sans KR", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  margin-right: -28px;
}
.main2-search .search-box input:focus {
  outline: navajowhite;
}
.main2-search .search-box input::placeholder {
  text-align: center;
  font-size: 1rem;
  color: #688ff8;
  font-weight: 500;
  font-family: "Noto Sans KR", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main2-search .search-box button {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 0;
  position: relative;
}
.main2-search .search-box button i {
  font-size: 26px;
  color: #326aff;
}
.main2-search .search-box button::before {
  content: "";
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
/* 230714 sic 
.main2 .swiper {
  padding: 16px;
}
.main2 .swiper-slide::before {
  content: "";
  width: 90%;
  height: 90%;
  border: 1px solid #fff;
  position: absolute;
  left: -16px;
  top: -16px;
}
*/
.main2 .swiper {
  padding: 19px 21px;
}
.main2 .swiper-slide::before {
  content: "";
  width: 90%;
  height: 90%;
  border: 1px solid #fff;
  position: absolute;
  left: -21px;
  top: -19px;
}
/* end 230714 sic */
.main2-board {
  background: #fff;
  padding: 40px 40px 60px 80px;
  color: #313896;
  position: relative;
}
.main2-board .board-type {
  position: absolute;
  left: 0;
  top: 18%;
  transform: rotate(270deg);
  transform-origin: right bottom;
  white-space: normal;
  display: inline-block;
  line-height: 1;
  color: #adafd5;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  font-weight: 500;
}
.main2-board .board-cate {
  font-size: 1.6rem;
  font-weight: 500;
  color: #adafd5;
}
.main2-board .board-tit {
  font-size: 1.6rem;
  font-weight: 500;
  word-break: keep-all;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 1vh;
}
.main2-board .board-date {
  font-size: 0.85rem;
  color: #adafd5;
  margin: 4vh 0 1vh;
}
.main2-board .board-con {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  word-break: keep-all;
  width: 70%;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.main2-board .read-btn {
  color: #313896;
}
.main2-board .read-btn::after {
  background: #313896;
}
/* 230714 sic */
.main2-board-thumb {
  background: #fff;
  position: relative;
}
.main2-board-thumb .thumb img {
  width: 100%;
}
.main2-board-thumb .txt {
  padding: 1.9vh 2.5vh;
  color: #313896;
}
.main2-board-thumb .board-cate {
  font-size: 1.05rem;
  font-weight: 400;
  color: #adafd5;
}
.main2-board-thumb .board-tit {
  font-size: 1.6rem;
  font-weight: 500;
  word-break: keep-all;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.main2-board-thumb .board-con {
  font-size: 1.01rem;
  line-height: 1.5;
  font-weight: 400;
  word-break: keep-all;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0.23vh 0 0.53vh;
}
.main2-board-thumb .board-date {
  font-family: myriad-pro, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.1rem;
  color: #adafd5;
}
/* end 230714 sic */
.main2-nav {
  margin: 8vh auto 0;
  height: 55px;
  padding-left: 3vw;
}
.main2-navwidth {
  width: 140px;
  position: relative;
}
.main2-navwidth i {
  color: #fff;
  font-size: 30px;
}
.main2-navwidth i::after {
  content: "";
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.main2-nav .swiper-button-next:after,
.main2-nav .swiper-button-prev:after {
  display: none;
}
/*main3*/
.main3-elipse {
  width: 14%;
  background: rgba(50, 106, 255, 0.1);
  border-radius: 50%;
  position: absolute;
  left: 1%;
  top: 55%;
  transform: translateY(-50%);
  z-index: -1;
}
.main3-elipse::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.main3-point {
  width: 25%;
  position: absolute;
  left: 58%;
  bottom: -10vh;
  transform: translateX(-50%);
  z-index: -1;
}
.main3-ul {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 0;
}
.main3-ul > li {
  display: inline-block;
  vertical-align: bottom;
  width: 50%;
  height: 75vh;
  background: url(../img/main/main3-left.png) no-repeat center/cover;
  position: relative;
}
.main3-ul > li.left {
  margin-bottom: 6vh;
}
.main3-ul > li.right {
  background: url(../img/main/main3-right.png) no-repeat center/cover;
}
.main3-hover {
  position: absolute;
  right: -17px;
  top: 0;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.4s;
}
.main3-box {
  display: block;
  padding: 10vh 0 8vh 70px;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.main3-box .txt1 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 3vh;
  opacity: 0;
  transition: all 0.4s;
}
.main3-box .txt2 {
  font-size: 1.2rem;
  font-weight: 500;
  padding-bottom: 20vh;
  transition: all 0.4s;
}
.main3-box .txt3 {
  font-size: 1rem;
  font-weight: 100;
  margin-bottom: 4vh;
}
.main3-box img {
  width: 26px;
  display: block;
  margin: 10px 0 12vh;
  opacity: 0;
  transition: all 0.4s;
}
.main3-ul > li.on .txt1 {
  opacity: 1;
}
.main3-ul > li.on .txt2 {
  padding-bottom: 0;
}
.main3-ul > li.on img {
  opacity: 1;
}
.main3-ul > li.on .main3-hover {
  opacity: 1;
}
/*main4*/
.main4::after {
  content: "";
  width: 95%;
  height: 1px;
  background: rgba(25, 73, 203, 0.7);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.main4 .swiper {
  width: 100%;
  height: 100%;
}
.main4-wrap {
  display: flex;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: #fff;
}
.main4-wrap > li {
  width: 50%;
  position: relative;
}
.main4-wrap > li.left {
  color: #326aff;
}
.main4-wrap > li.left img {
  width: 60%;
  display: block;
  margin: auto;
}
.main4-wrap > li.left .left-txtbox {
  width: 90%;
  top: 52%;
}
.main4-wrap > li.left .left-txtbox .txt1 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2vh;
}
.main4-wrap > li.left .left-txtbox .txt2 {
  font-size: 1.8rem;
  font-weight: 600;
}
.main4-wrap > li.right {
  color: #313896;
  position: relative;
  padding-top: 10vh;
}
.main4-wrap > li.right::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: -5%;
  background: rgba(25, 73, 203, 0.7);
}
.main4-wrap > li.right .txt1 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 2vh;
}
.main4-wrap > li.right .txt2 {
  font-size: 0.9rem;
  color: #adafd5;
}
.main4-wrap > li.right .txt4 {
  line-height: 1.8;
  margin: 6vh 0 2vh;
}
.main4-wrap > li.right .read-btn {
  color: #313896;
  margin-bottom: 14vh;
}
.main4-wrap > li.right .read-btn::after {
  background: #313896;
}
.main4-pagwrap {
  position: absolute;
  left: 50%;
  bottom: 6vh;
  transform: translateX(-50%);
  display: flex;
  height: 30px;
  z-index: 1;
}
.main4-pagwrap > li {
  width: 50%;
  position: relative;
}
.main4-pagwrap .swiper-pagination {
  text-align: start;
  display: flex;
  align-items: center;
}
.main4-pagwrap .swiper-pagination .custom_bullet {
  width: 50px;
  opacity: 0.4;
  margin-right: 18px;
  transition: all 0.4s;
  cursor: pointer;
}
.main4-pagwrap .swiper-pagination .custom_bullet img {
  display: block;
  width: 100%;
}
.main4-pagwrap .swiper-pagination .swiper-pagination-custom-bullet-active {
  width: 70px;
  opacity: 1;
}
.main4-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25vh;
  z-index: 1;
  text-align: end;
}
/* 230626 sic */
.main4-nav .swiper-button-next,
.main4-nav .swiper-button-prev {
  width: 60px;
  height: 60px;
  background: #326aff;
  position: relative;
  display: inline-block;
  right: auto !important;
  left: auto !important;
  margin-right: -19px !important;
  text-align: center;
}
.main4-nav .swiper-button-prev {
  margin-right: 5px !important;
}
.main4-nav .swiper-button-next::before {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 10px solid #313896;
  border-top: 2px solid transparent;
  border-left: 3px solid #313896;
  border-right: 16px solid transparent;
  position: absolute;
  right: 0;
  top: -12px;
}
.main4-nav .swiper-button-next i,
.main4-nav .swiper-button-prev i {
  color: #fff;
  font-size: 30px;
  line-height: 60px;
}
.swiper-button-next:after, 
.swiper-button-prev:after {
  display: none;
}
/* end 230626 sic */
/*main5*/
.main5 {
  background: #eaf0ff;
}
.main5-wrap {
  display: flex;
  justify-content: space-between;
}
.main5-wrap > li.main5-consult {
  width: 42%;
}
.main5-consult .title {
  margin-bottom: 4vh;
}
.main5-consult .title .txt1 {
  font-size: 1.6rem;
  color: #326aff;
  font-weight: 600;
  margin-bottom: 6px;
}
.main5-consult .title .txt2 {
  font-size: 1rem;
  font-weight: 300;
  color: #9daed9;
}
.main5-slick .slick-arrow {
  display: none !important;
}
.consult-board > a {
  display: flex;
  color: #313896;
  border-bottom: 1px solid rgba(203, 211, 233, 0.7);
  padding: 16px 0;
  align-items: center;
}
.consult-wrap > div:nth-child(1) > a {
  border-top: 1px solid rgba(203, 211, 233, 0.7);
}
.consult-board > a > div {
  width: 25%;
  text-align: center;
  font-weight: 500;
}
.consult-status {
  width: 90%;
  margin: auto;
  padding: 10px 0;
  border-radius: 3px;
  background: #9daed9;
  text-align: center;
  color: #fff;
}
.consult-status.on {
  background: #326aff;
}
.main5-wrap > li.main5-form {
  width: 52%;
}
.main5-form .title .txt1 {
  font-size: 3rem;
  font-weight: 700;
  color: #326aff;
  margin-bottom: 10px;
}
.main5-form .title .txt2 {
  font-size: 1.2rem;
  color: #9daed9;
  font-weight: 300;
}
.main5-formbox {
  margin-top: 3vh;
}
.main5-from-wrap {
  width: 100%;
  display: flex;
  align-items: center;
}
.main5-from-wrap2 {
  margin: 3vh 0;
}
.main5-from-wrap .form-title {
  width: 15%;
  color: #313896;
  font-weight: 500;
}
.main5-from-wrap .form-input {
  width: 85%;
}
.main5-from-wrap .form-input input {
  width: 100%;
  background: #fff;
  border: 0;
  height: 44px;
  padding: 0 14px;
  box-sizing: border-box;
  font-family: "Noto Sans KR", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main5-from-wrap .form-input input:focus {
  outline: none;
}
.main5-from-wrap .form-input textarea {
  width: 100%;
  height: 30vh;
  background: #fff;
  border: 0;
  padding: 20px;
  box-sizing: border-box;
  font-family: "Noto Sans KR", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main5-from-wrap .form-input textarea:focus {
  outline: none;
}
.main5-from-wrap .form-input2 {
  display: flex;
  justify-content: space-between;
}
.main5-from-wrap .form-input2 input {
  width: 32%;
}
.main5-from-wrap .form-input input#submit {
  display: inline-block;
  width: 60%;
  background: #326aff;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  margin-top: 4vh;
  font-size: 1rem;
  height: 50px;
  line-height: 50px;
}
.main5-from-wrap3 {
  align-items: flex-start;
}
.main5-from-wrap3 .form-title {
  margin-top: 8px;
}
/*main6*/
.main6 {
  background: url(../img/main/main6-bg.png) no-repeat center/cover;
  color: #fff;
}
.main6-wrap {
  display: flex;
  top: 65%;
}
.main6-wrap > li {
  width: 65%;
  padding-top: 2vh;
}
.main6-title .txt1 {
  font-size: 5rem;
  font-weight: 700;
}
.main6-title .txt2 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 4vh;
}
.main6-wrap > li.main6-board-wrap {
  width: 35%;
  padding-top: 0;
}
.main6-board-wrap > div > a {
  border-bottom: 1px solid rgba(203, 211, 233, 0.2);
  font-size: 1rem;
  width: 80%;
  display: flex;
  padding: 12px 0;
}
.main6-board-wrap > div:nth-last-child(1) > a {
  border-bottom: 0;
}
.main6-board-date {
  width: 35%;
  text-align: center;
  box-sizing: border-box;
  padding: 0 10px;
}
.main6-board-title {
  width: 65%;
  box-sizing: border-box;
  padding: 0 10px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*main7*/
.main7-contact {
  display: flex;
}
.main7-map {
  width: 65%;
}
.main7-map iframe {
  width: 100%;
  height: 100%;
}
.main7-info {
  width: 35%;
  background: #eaf0ff;
  padding: 5vh 0 8vh 80px;
}
.main7-info .main-title {
  color: #326aff;
}
.main7-info .main-title .txt2 {
  font-weight: 600;
  margin: 3vh 0 6vh;
}
.map-add {
  color: #313896;
}
.map-add p:nth-child(1) {
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.map-add p:nth-child(2) {
  line-height: 1.8;
  font-weight: 500;
}
.map-add p.poppin {
  font-weight: 600;
}
.map-tel {
  margin-top: 3vh;
}
.main7-client {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10vh;
}
.main7-client > li:nth-child(1) {
  width: 18%;
  font-size: 1.6rem;
  font-weight: 600;
  color: #326aff;
  text-align: center;
}
.logo-slider {
  overflow: hidden;
  position: relative;
  flex: 1;
  /*width: 82%;*/
  height: 60px;
}
.logo-wrap {
  height: 100%;
  display: flex;
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: bannermove 16s linear infinite;
}
.logo-wrap img {
  height: 100%;
}
@keyframes bannermove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* 240216 */
/* quick-stick-right */
.quick-stick-right2 {
  position: fixed;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 100px;
  height: 100vh;
  text-align: center;
  background: #eaf0ff;
  z-index: 10; 
}
.quick-stick-right2 > li {

}
.quick-stick-right2 > li > a {
  display: block;
  align-items: center;
  justify-content: center;

  background: #eaf0ff; 
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}



.quick-stick-right2 > li > a .txt{
  display: block;
  line-height: 1.5;
  color: #000;
  font-size: 14px;
  white-space: nowrap;letter-spacing:-0.08em;
}

.quick-stick-right2 > li  .txt{
  display: block;
  line-height: 1.5;
  color: #000;
  font-size: 14px; font-weight: 600;
  white-space: nowrap;letter-spacing:-0.08em;
}

.quick-stick-right2 > li  .txt b{
  display: block;
  color: #326aff;
  line-height: 1.5;
  font-size: 18px;
  white-space: nowrap;letter-spacing:-0.08em;
}



.quick-stick-right2 > li img {
  width: 50%; display: block; margin: 30px auto 10px;
}

.quick-stick-right2 > li > a > img {
  width: 50%; display: block; margin: 30px auto 10px;
}

















