@charset "UTF-8";
/* 메인페이지 css */
.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 180px 200px 100px 100px;
}

.section .ani {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.section.active .ani,
.section.show .ani {
  opacity: 1;
  transform: translateY(0);
}

.section.active .ani:nth-child(1) {
  transition-delay: 0.5s;
}

.section.active .ani:nth-child(2) {
  transition-delay: 0.8s;
}

.section.active .ani:nth-child(3) {
  transition-delay: 1.1s;
}

.section.active .ani:nth-child(4) {
  transition-delay: 1.3s;
}

.section.active .ani:nth-child(5) {
  transition-delay: 1.5s;
}

.section.active .ani:nth-child(6) {
  transition-delay: 1.7s;
}

.section.active .ani:nth-child(7) {
  transition-delay: 1.9s;
}

.section.active .ani:nth-child(8) {
  transition-delay: 2.1s;
}

.section.active .ani:nth-child(9) {
  transition-delay: 2.3s;
}

.highlight {
  color: #3f8b16;
  background: linear-gradient(to right, rgba(63, 139, 22, 0.2) 0%, rgba(63, 139, 22, 0.2) 100%) no-repeat left bottom;
  background-size: 0% 14px;
  transition: background-size 0.8s ease;
}

.section.active .highlight {
  background-size: 100% 14px;
  transition-delay: 0.9s;
}

.sec01 .main_visual {
  width: 100%;
  height: 100%;
}
.sec01 .swiper {
  width: 100%;
}
.sec01 .swiper-wrapper {
  width: 100%;
}
.sec01 .swiper-slide {
  width: 100%;
  overflow: hidden;
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec01 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 5s ease-out;
}
.sec01 .pagination_btns {
  width: 100%;
  max-width: 1920px;
  padding: 0 100px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  bottom: 165px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.sec01 .pagination_wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}
.sec01 .pagination {
  color: var(--Grays-White, var(--Grays-White, #fff));
  font-family: Pretendard;
  font-size: 1rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.sec01 .progressbar {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.sec01 .progressbar .bar {
  width: 0;
  height: 100%;
  background: #d1d1d6;
  position: absolute;
  left: 0;
  top: 0;
  transition: width 0.5s ease;
}
.sec01 .btns_wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}
.sec01 .btns_wrap .btn {
  cursor: pointer;
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.sec01 .btns_wrap .btn_prev {
  background: url("../img/main/btn_prev.svg") center no-repeat;
}
.sec01 .btns_wrap .btn_pause {
  background: url("../img/main/btn_pause.svg") center no-repeat;
}
.sec01 .btns_wrap .btn_pause.stop {
  background: url("../img/main/btn_play.svg") center no-repeat;
}
.sec01 .btns_wrap .btn_next {
  background: url("../img/main/btn_next.svg") center no-repeat;
}
.sec01 .text_wrap {
  width: 100%;
  max-width: 1920px;
  padding: 0 100px;
  position: absolute;
  bottom: 245px;
}
.sec01 .text_wrap p {
  color: var(--Grays-White, var(--Grays-White, #fff));
  text-align: left;
  word-break: keep-all;
}
.sec01 .text_wrap .eng {
  font-family: Paperlogy;
  font-size: 1.389rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.sec01 .text_wrap .kor {
  font-family: Pretendard;
  font-size: 2.778rem;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
}
.sec01 .swiper-slide-active img {
  transform: scale(1);
}
.sec01 .swiper-slide-active .text_wrap .eng {
  -webkit-animation: slide-in-top 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s both;
  animation: slide-in-top 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s both;
}
.sec01 .swiper-slide-active .text_wrap .kor {
  -webkit-animation: slide-in-top 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.8s both;
  animation: slide-in-top 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.8s both;
}

.sec02 {
  background: url("../img/main/sec02_bg.png") center no-repeat;
  background-size: cover;
  position: relative;
}
.sec02 .popup_wrap .cd-popup {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  z-index: 1;
}
.sec02 .popup_wrap .cd-popup.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.sec02 .popup_wrap .cd-popup-container {
  position: relative;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 714px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(25px);
  transform: translate(-50%, -60%);
  backface-visibility: hidden;
  transition-property: transform;
  transition-duration: 0.3s;
  padding: 50px;
}
.sec02 .popup_wrap .cd-popup-container .text_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sec02 .popup_wrap .cd-popup-container .text_box p {
  color: var(--Grays-Black, var(--Grays-Black, #000));
  font-family: Pretendard;
  font-size: 0.778rem;
  font-style: normal;
  font-weight: 400;
  line-height: 185.714%;
}
.sec02 .popup_wrap .cd-popup-container .text_box p em {
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.sec02 .popup_wrap .cd-popup-container .cd-popup-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 22px;
  height: 22px;
  aspect-ratio: 1/1;
  background: url("../img/main/btn_popup_close.svg") center no-repeat;
  flex-shrink: 0;
}
.sec02 .popup_wrap .is-visible .cd-popup-container {
  transform: translate(-50%, -50%);
}
.sec02 .con_wrap {
  display: flex;
  align-self: stretch;
  gap: 50px;
}
.sec02 .le_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
}
.sec02 .le_wrap .text_box p {
  color: #fff;
  font-family: Pretendard;
  font-size: 1.833rem;
  font-style: normal;
  font-weight: 400;
  line-height: 193.939%;
  word-break: keep-all;
}
.sec02 .le_wrap .text_box .big_txt {
  font-size: 2.667rem;
  font-weight: 700;
  line-height: 145%;
}
.sec02 .le_wrap .law_box .law_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.sec02 .le_wrap .law_box .law_list li {
  display: flex;
  align-items: center;
  border-radius: 10px;
  background: rgba(187, 187, 187, 0.25);
  backdrop-filter: blur(25px);
}
.sec02 .le_wrap .law_box .law_list li a {
  padding: 20px 25px;
  color: var(--Grays-White, var(--Grays-White, #fff));
  text-align: left;
  font-family: Pretendard;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 144.444%;
  word-break: keep-all;
}
.sec02 .le_wrap .mark_box {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.sec02 .le_wrap .mark_box img {
  height: 85px;
}
.sec02 .ri_wrap {
  border-radius: 20px;
  background: rgba(187, 187, 187, 0.25);
  backdrop-filter: blur(25px);
  padding: 40px;
}
.sec02 .ri_wrap figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.sec02 .ri_wrap figcaption {
  color: #fff;
  text-align: center;
  font-family: Pretendard;
  font-size: 1.111rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.sec03 {
  background: url("../img/main/sec03_bg.png") center no-repeat;
  background-size: cover;
  position: relative;
}
.sec03 .container2 {
  width: 100%;
  padding-top: 180px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  align-items: center;
}
.sec03 .text_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.sec03 .text_box p {
  padding: 0 30px;
  width: 100%;
  color: #444;
  text-align: center;
  font-family: Pretendard;
  font-size: 1.222rem;
  font-style: normal;
  font-weight: 400;
  line-height: 145.455%;
  word-break: keep-all;
}
.sec03 .text_box .big_txt {
  color: #111;
  font-size: 2.667rem;
  font-weight: 600;
  line-height: 133.333%;
}
.sec03 .certificate {
  width: 100%;
}
.sec03 .certificate .infiniteSwiper {
  width: 100%;
}
.sec03 .certificate .infiniteSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: center;
}
.sec03 .certificate .infiniteSwiper .swiper-slide {
  width: auto;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 20px 20px 30px 20px;
  box-sizing: border-box;
  will-change: transform;
}
.sec03 .certificate .infiniteSwiper .swiper-slide img {
  width: auto;
  height: 400px;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}
.sec03 .certificate .infiniteSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.sec04 {
  position: relative;
}
.sec04 .kor {
  color: #fff;
  font-family: Pretendard;
  font-style: normal;
  line-height: normal;
  font-weight: 700;
  font-size: 1.556rem;
}
.sec04 .eng {
  color: #fff;
  font-family: Pretendard;
  font-style: normal;
  line-height: normal;
  font-weight: 700;
  font-size: 1.111rem;
}
.sec04 .head_wrap {
  position: absolute;
  width: 100%;
  max-width: 1920px;
  padding: 180px 100px 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.sec04 .head_wrap .head_tit {
  color: #fff;
  font-family: Pretendard;
  font-size: 2.667rem;
  font-style: normal;
  font-weight: 600;
  line-height: 133.333%;
}
.sec04 .split_wrap {
  display: flex;
  height: 100vh;
  overflow: hidden;
}
.sec04 .split_wrap .split_box {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: flex 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec04 .split_wrap .split_box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.1);
  transition: transform 1s ease-in;
  z-index: 1;
}
.sec04 .split_wrap .split_box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease;
  z-index: 1;
}
.sec04 .split_wrap .split_box .tit_basic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}
.sec04 .split_wrap .split_box .text_box {
  position: absolute;
  bottom: 100px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
}
.sec04 .split_wrap .split_box .text_box .title {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.sec04 .split_wrap .split_box .text_box .des {
  color: #fff;
  font-family: Pretendard;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 144.444%;
  word-break: keep-all;
}
.sec04 .split_wrap .split_box .text_box .btns {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.sec04 .split_wrap .split_box .text_box .btns a {
  display: flex;
  padding: 10px 20px;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  background: rgba(187, 187, 187, 0.25);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(25px);
  color: var(--Grays-White, var(--Grays-White, #fff));
  text-align: center;
  font-family: Pretendard;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 144.444%;
}
.sec04 .split_wrap .split_box .text_box .btns a::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url("../img/main/ico_sec04_btn.svg") center no-repeat;
}
.sec04 .split_wrap .split_box:nth-child(1) .text_box {
  left: calc((100vw - 1920px) / 2 + 100px);
}
.sec04 .split_wrap .split_box:nth-child(2) .text_box {
  left: 100px;
}
.sec04 .split_wrap .split_box:nth-child(1)::before {
  background-image: url("../img/main/sec04_bg01.png");
}
.sec04 .split_wrap .split_box:nth-child(2)::before {
  background-image: url("../img/main/sec04_bg02.png");
}
.sec04 .split_wrap:hover .split_box {
  flex: 0.9;
}
.sec04 .split_wrap:hover .split_box:not(:hover)::before {
  transform: scale(1.02);
}
.sec04 .split_wrap:hover .split_box:not(:hover)::after {
  background: rgba(0, 0, 0, 0.35);
}
.sec04 .split_wrap:hover .split_box:not(:hover) .tit_basic {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.sec04 .split_wrap:hover .split_box:not(:hover) .text_box {
  opacity: 0;
  transform: translateY(20px);
  transition-delay: 0s;
}
.sec04 .split_wrap .split_box:hover {
  flex: 1.1;
}
.sec04 .split_wrap .split_box:hover::before {
  transform: scale(1.07);
}
.sec04 .split_wrap .split_box:hover::after {
  background: rgba(0, 0, 0, 0);
}
.sec04 .split_wrap .split_box:hover .tit_basic {
  opacity: 0;
  transform: translateY(-20px);
  transition-delay: 0s;
}
.sec04 .split_wrap .split_box:hover .text_box {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.sec05 .split_section {
  display: flex;
  width: 100%;
  height: 100vh;
}
.sec05 .split_box {
  display: flex;
  flex-direction: column;
}
.sec05 .con_le {
  flex: 0 0 53%;
  align-items: flex-end;
  justify-content: space-between;
}
.sec05 .con_le_inner {
  width: 100%;
  padding-left: calc((100vw - 1920px) / 2);
}
.sec05 .con_le_inner .tab_wrap {
  width: 100%;
  padding: 190px 100px 0 100px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  position: relative;
  overflow: hidden;
}
.sec05 .con_le_inner .tab_wrap .tab_menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.sec05 .con_le_inner .tab_wrap .tab_menu li {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  cursor: pointer;
}
.sec05 .con_le_inner .tab_wrap .tab_menu li span {
  color: #111;
  text-align: center;
  font-family: Pretendard;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.54px;
}
.sec05 .con_le_inner .tab_wrap .tab_menu li::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  aspect-ratio: 1/1;
  border-radius: 99px;
  background: #aeaeae;
  flex-shrink: 0;
}
.sec05 .con_le_inner .tab_wrap .tab_menu li:last-child::after {
  content: none;
}
.sec05 .con_le_inner .tab_wrap .tab_menu li.active span {
  color: #3c701c;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.sec05 .con_le_inner .tab_wrap .tab_content {
  display: none;
  width: 100%;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.sec05 .con_le_inner .tab_wrap .tab_content.active {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  align-self: stretch;
}
.sec05 .con_le_inner .tab_wrap .tab_content.on {
  opacity: 1;
  transform: translateX(0);
}
.sec05 .con_le_inner .tab_wrap .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}
.sec05 .con_le_inner .tab_wrap .content .con_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.sec05 .con_le_inner .tab_wrap .content .con_title p {
  color: #111;
  font-family: Pretendard;
  font-size: 1.444rem;
  font-style: normal;
  font-weight: 400;
  line-height: 138.462%;
  word-break: keep-all;
}
.sec05 .con_le_inner .tab_wrap .content .con_title .tit {
  color: #413528;
  font-family: Pretendard;
  font-size: 1.556rem;
  font-weight: 700;
  line-height: 128.571%;
}
.sec05 .con_le_inner .tab_wrap .content .direction {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
}
.sec05 .con_le_inner .tab_wrap .content .direction .box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec05 .con_le_inner .tab_wrap .content .direction dt {
  display: flex;
  padding: 7px 10px;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  background: #413528;
  color: var(--Grays-White, var(--Grays-White, #fff));
  font-family: Pretendard;
  font-size: 0.889rem;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  flex-shrink: 0;
}
.sec05 .con_le_inner .tab_wrap .content .direction dd {
  color: #111;
  font-family: Pretendard;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 111.111%;
}
.sec05 .con_le_inner .tab_wrap .goto_btns {
  width: 100%;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  padding: 0 0 20px 0;
}
.sec05 .con_le_inner .tab_wrap .goto_btns a {
  display: flex;
  padding: 15px 30px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 2px solid transparent;
  color: #111;
  text-align: center;
  font-family: Pretendard;
  font-size: 0.889rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  flex-shrink: 0;
  transform: color 2s ease-in-out;
}
.sec05 .con_le_inner .tab_wrap .goto_btns a:hover {
  -webkit-animation: shadow-drop-br 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: shadow-drop-br 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.sec05 .con_le_inner .tab_wrap .goto_btns a:nth-child(1) {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #006cfa, #00e700) border-box;
}
.sec05 .con_le_inner .tab_wrap .goto_btns a:nth-child(1)::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
  background: url("../img/main/ico_map_01.svg") center no-repeat;
  flex-shrink: 0;
}
.sec05 .con_le_inner .tab_wrap .goto_btns a:nth-child(1):hover {
  color: #006cfa;
}
.sec05 .con_le_inner .tab_wrap .goto_btns a:nth-child(2) {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #fae100, #fae100) border-box;
}
.sec05 .con_le_inner .tab_wrap .goto_btns a:nth-child(2)::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
  background: url("../img/main/ico_map_02.svg") center no-repeat;
  flex-shrink: 0;
}
.sec05 .con_le_inner .tab_wrap .goto_btns a:nth-child(2):hover {
  color: #ffc400;
}
.sec05 .con_le_inner .tab_wrap .goto_btns a:nth-child(3) {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #4274eb, #da2f2a, #ecb72b, #60a850) border-box;
}
.sec05 .con_le_inner .tab_wrap .goto_btns a:nth-child(3)::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
  background: url("../img/main/ico_map_03.svg") center no-repeat;
  flex-shrink: 0;
}
.sec05 .con_le_inner .tab_wrap .goto_btns a:nth-child(3):hover {
  color: #4274eb;
}
.sec05 .con_le_inner .tab_wrap .goto_btns a:nth-child(4) {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #ea44bf, #843cf8, #5989d8, #2ed7b8, #0264ff) border-box;
}
.sec05 .con_le_inner .tab_wrap .goto_btns a:nth-child(4)::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
  background: url("../img/main/ico_map_04.svg") center no-repeat;
  flex-shrink: 0;
}
.sec05 .con_le_inner .tab_wrap .goto_btns a:nth-child(4):hover {
  color: #843cf8;
}
.sec05 .main_footer {
  width: 53%;
  padding-left: calc((100vw - 1920px) / 2);
  box-sizing: border-box;
  background: #413528;
  position: absolute;
  bottom: 0;
}
.sec05 .main_footer #footer {
  padding: 40px 100px 60px 100px;
}
.sec05 .main_footer #footer .ft_wrap .ft_ri_con .btn_relsite_link {
  background: #554535;
}
.sec05 .main_footer #footer .ft_wrap .ft_ri_con .relsite_list {
  background: #2d241b;
}
.sec05 {
  /* 오른쪽 박스: 배경 47% */
}
.sec05 .con_ri {
  flex: 0 0 47%;
  color: #333;
  align-items: flex-start;
}
.sec05 .con_ri #map {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.sec05 .con_ri .sketch {
  display: none;
}
.sec05 .con_ri .sketch.active {
  display: block;
  width: 100%;
  height: 100vh;
}
.sec05 .con_ri .sketch.active .root_daum_roughmap,
.sec05 .con_ri .sketch.active .root_daum_roughmap .wrap_map,
.sec05 .con_ri .sketch.active .root_daum_roughmap .map {
  width: 100% !important;
  height: 100vh !important;
}
.sec05 .con_ri .sketch.active .root_daum_roughmap .wrap_map,
.sec05 .con_ri .sketch.active .root_daum_roughmap .wrap_map .wrap_map,
.sec05 .con_ri .sketch.active .root_daum_roughmap .map .wrap_map {
  height: 100vh !important;
}
.sec05 .con_ri .sketch.active .root_daum_roughmap .wrap_controllers,
.sec05 .con_ri .sketch.active .root_daum_roughmap .cont,
.sec05 .con_ri .sketch.active .root_daum_roughmap .wrap_map .wrap_controllers,
.sec05 .con_ri .sketch.active .root_daum_roughmap .wrap_map .cont,
.sec05 .con_ri .sketch.active .root_daum_roughmap .map .wrap_controllers,
.sec05 .con_ri .sketch.active .root_daum_roughmap .map .cont {
  display: none !important;
}

/* 미디어쿼리 */
@media (max-width: 1920px) {
  .sec04 .split_wrap .split_box .text_box {
    width: 100%;
    padding: 0 100px;
  }
  .sec04 .split_wrap .split_box:nth-child(1) .text_box, .sec04 .split_wrap .split_box:nth-child(2) .text_box {
    left: initial;
    max-width: initial;
  }
  .sec05 .con_ri #map {
    width: 100%;
  }
}
@media (max-width: 1600px) {
  #footer .ft_wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 1440px) {
  .sec01 .text_wrap .eng {
    font-size: 1.222rem;
  }
  .sec01 .text_wrap .kor {
    font-size: 2.222rem;
  }
  .sec02 .le_wrap .text_box p {
    font-size: 1.333rem;
    line-height: 160%;
  }
  .sec02 .le_wrap .text_box .big_txt {
    font-size: 2.222rem;
  }
  .sec02 .le_wrap .law_box .law_list {
    gap: 10px;
  }
  .sec02 .le_wrap .law_box .law_list li a {
    padding: 15px 25px;
    font-size: 0.889rem;
  }
  .sec02 .le_wrap .mark_box img {
    height: 60px;
  }
  .sec02 .ri_wrap {
    width: 30%;
  }
  .sec02 .ri_wrap figcaption {
    font-size: 0.889rem;
  }
  .sec03 .container2 {
    padding-top: 150px;
  }
  .sec03 .text_box p {
    font-size: 1.111rem;
  }
  .sec03 .text_box .big_txt {
    font-size: 2.444rem;
  }
  .sec03 .certificate .infiniteSwiper .swiper-slide img {
    height: 250px;
  }
  .sec04 .head_wrap {
    padding: 150px 100px 0;
  }
  .sec04 .head_wrap .head_tit {
    font-size: 2.444rem;
  }
  .sec04 .kor {
    font-size: 1.333rem;
  }
  .sec04 .eng {
    font-size: 0.889rem;
  }
  .sec04 .split_wrap .split_box .text_box .des {
    font-size: 0.889rem;
  }
  .sec04 .split_wrap .split_box .text_box .btns a {
    font-size: 0.889rem;
  }
  .sec05 .con_le {
    flex: 0 0 60%;
  }
  .sec05 .con_ri {
    flex: 0 0 40%;
  }
  .sec05 .con_le_inner .tab_wrap {
    padding: 150px 100px 0 100px;
    gap: 25px;
  }
  .sec05 .con_le_inner .tab_wrap .tab_menu {
    gap: 10px;
  }
  .sec05 .con_le_inner .tab_wrap .tab_menu li {
    gap: 10px;
  }
  .sec05 .con_le_inner .tab_wrap .tab_content.active {
    gap: 30px;
  }
  .sec05 .con_le_inner .tab_wrap .content {
    gap: 20px;
  }
  .sec05 .con_le_inner .tab_wrap .content .con_title p {
    font-size: 1.222rem;
  }
  .sec05 .con_le_inner .tab_wrap .content .con_title .tit {
    font-size: 1.444rem;
  }
  .sec05 .con_le_inner .tab_wrap .content .direction {
    gap: 10px;
  }
  .sec05 .con_le_inner .tab_wrap .content .direction dt {
    font-size: 0.778rem;
  }
  .sec05 .con_le_inner .tab_wrap .content .direction dd {
    font-size: 0.889rem;
  }
  .sec05 .con_le_inner .tab_wrap .goto_btns {
    gap: 10px;
  }
  .sec05 .con_le_inner .tab_wrap .goto_btns a {
    padding: 10px 30px;
  }
  .sec05 .main_footer {
    width: 60%;
  }
  .sec05 .main_footer #footer {
    padding: 30px 100px 30px 100px;
  }
}
@media (max-width: 1200px) {
  /*
  // 해당부분 js에서 설정함
  body.fp-responsive {
  	overflow-y: auto !important;
  	overflow-x: hidden !important;
  }

  body.fp-responsive html {
  	overflow: auto !important;
  }
  */
  body.fp-responsive .section {
    height: auto !important;
  }
  #fullpage {
    height: auto !important;
    transform: none !important;
  }
  .section {
    height: auto !important;
  }
  .fp-tableCell {
    height: auto !important;
    display: block !important;
  }
  .container {
    padding: 150px 50px;
  }
  .sec01 .main_visual {
    height: 100vh;
  }
  .sec01 .text_wrap {
    padding: 0 50px;
    bottom: 180px;
  }
  .sec01 .pagination_btns {
    padding: 0 50px;
    bottom: 100px;
  }
  .sec02 .le_wrap {
    gap: 30px;
  }
  .sec02 .ri_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sec03 .container2 {
    height: 100vh;
    padding: 150px 0;
  }
  .sec04 .head_wrap {
    padding: 100px 50px 0;
  }
  .sec04 .split_wrap {
    flex-direction: column;
    height: 1000px;
  }
  .sec04 .split_wrap .split_box {
    height: 50%;
  }
  .sec04 .split_wrap .split_box .text_box {
    padding: 0 100px 0 50px;
  }
  .sec05 .split_section {
    flex-direction: column;
    height: auto;
  }
  .sec05 .con_le {
    flex: none;
  }
  .sec05 .con_ri {
    flex: none;
  }
  .sec05 .con_ri #map {
    height: 300px;
  }
  .sec05 .con_ri #map .sketch.active {
    height: 300px !important;
  }
  .sec05 .con_ri #map .sketch.active .root_daum_roughmap,
  .sec05 .con_ri #map .sketch.active .wrap_map,
  .sec05 .con_ri #map .sketch.active .map {
    height: 300px !important;
  }
  .sec05 .con_le_inner .tab_wrap {
    padding: 100px 50px 30px;
  }
  .sec05 .main_footer {
    width: 100%;
    position: relative;
  }
  .sec05 .main_footer #footer {
    padding: 40px 100px 60px 50px;
  }
  .sec05 .main_footer #footer .ft_wrap {
    flex-direction: row;
    align-items: flex-end;
  }
}
@media (max-width: 1024px) {
  .sec02 .le_wrap .text_box .big_txt {
    font-size: 2rem;
  }
  .sec02 .le_wrap .mark_box {
    gap: 15px;
  }
  .sec02 .le_wrap .mark_box img {
    height: 40px;
  }
  .sec02 .ri_wrap {
    padding: 20px;
  }
  .sec05 .main_footer #footer .ft_wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 100px 30px;
  }
  .sec01 .text_wrap {
    padding: 0 100px 0 30px;
    bottom: 200px;
  }
  .sec01 .pagination_btns {
    padding: 0 100px 0 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    bottom: 80px;
  }
  .sec02 .con_wrap {
    flex-direction: column;
  }
  .sec02 .le_wrap .text_box .big_txt {
    font-size: 2.222rem;
  }
  .sec02 .le_wrap .law_box .law_list li a {
    font-size: 1rem;
  }
  .sec02 .ri_wrap {
    width: 40%;
  }
  .sec02 .popup_wrap .cd-popup-container {
    top: 40%;
  }
  .sec02 .popup_wrap .cd-popup-container .text_box p {
    font-size: 1rem;
  }
  .sec04 .head_wrap {
    padding: 50px 30px 0;
  }
  .sec04 .kor {
    font-size: 1.556rem;
  }
  .sec04 .eng {
    font-size: 1.111rem;
  }
  .sec04 .split_wrap .split_box .text_box {
    padding: 0 100px 0 30px;
    bottom: 50px;
  }
  .sec04 .split_wrap .split_box .text_box .des {
    font-size: 1rem;
  }
  .sec04 .split_wrap .split_box .text_box .btns a {
    font-size: 1rem;
  }
  .sec05 .con_le_inner .tab_wrap {
    padding: 100px 30px 30px;
  }
  .sec05 .con_le_inner .tab_wrap .content .con_title p {
    font-size: 1.444rem;
  }
  .sec05 .con_le_inner .tab_wrap .content .con_title .tit {
    font-size: 1.556rem;
  }
  .sec05 .con_le_inner .tab_wrap .content .direction dt {
    font-size: 0.86rem;
  }
  .sec05 .con_le_inner .tab_wrap .content .direction dd {
    font-size: 1rem;
  }
  .sec05 .con_le_inner .tab_wrap .goto_btns a {
    font-size: 1rem;
    padding: 10px 20px;
  }
  .sec05 .main_footer #footer {
    padding: 40px 30px 60px;
  }
}
@media (max-width: 640px) {
  .sec03 .text_box p br {
    display: none;
  }
  .sec03 .text_box .big_txt {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .highlight {
    display: block;
    width: fit-content;
  }
  .sec01 .progressbar {
    width: 100px;
  }
  .sec02 .le_wrap .text_box .big_txt br {
    display: none;
  }
  .sec02 .ri_wrap {
    width: 70%;
  }
  .sec04 .split_wrap .split_box .text_box {
    padding: 0 30px;
  }
  .sec04 .split_wrap .split_box .text_box .btns {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }
  .sec05 .con_le_inner .tab_wrap .goto_btns a {
    padding: 10px;
    justify-content: center;
  }
}
@media (max-width: 360px) {
  .sec02 .le_wrap .text_box .big_txt {
    font-size: 1.857rem;
  }
  .sec02 .ri_wrap {
    width: 100%;
  }
}