@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap");
/* font-family: 'Noto Sans KR', sans-serif; */
/* Light 300 */
/* Regular 400 */
/* Medium 500 */
/* Bold 700 */
/* Black 900 */

@import url("https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&display=swap");
/* .nanum-myeongjo-regular {
  font-family: "Nanum Myeongjo", serif;
  font-weight: 400;
  font-style: normal;
}

.nanum-myeongjo-bold {
  font-family: "Nanum Myeongjo", serif;
  font-weight: 700;
  font-style: normal;
}

.nanum-myeongjo-extrabold {
  font-family: "Nanum Myeongjo", serif;
  font-weight: 800;
  font-style: normal;
} */

@font-face {
  font-family: "GothicA1-100";
  src: url("../font/GothicA1-Thin.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GothicA1-200";
  src: url("../font/GothicA1-Light.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GothicA1-400";
  src: url("../font/GothicA1-Light.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GothicA1-500";
  src: url("../font/GothicA1-Regular.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GothicA1-600";
  src: url("../font/GothicA1-Medium.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GothicA1-700";
  src: url("../font/GothicA1-SemiBold.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GothicA1-800";
  src: url("../font/GothicA1-Bold.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GothicA1-900";
  src: url("../font/GothicA1-ExtraBold.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* ani */
@keyframes load_R {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes load_L {
  0% {
    transform: translateX(30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes load_T {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes load_B {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes load_bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* animation: load_bg 2s both;
animation-delay: 0.2s; */

::-webkit-scrollbar {
  width: 0px;
}

/* wrap */
html {
  height: 100%;
  background: #ffffff;
  font-family: "GothicA1-500";
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  line-height: 1;
  letter-spacing: -1.3px;
  word-break: keep-all;
  color: #000;
  overflow: auto;
}
#all_wrap {
  width: 100%;
  max-width: 1920px;
  min-width: 1400px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
section {
  width: 100%;
  height: 100vh;
  max-width: 1920px;
  min-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}
/* .secInner {
  width: 95.84%;
  margin-left: calc(100vw - 95.84%);
} */
a {
  text-decoration: none;
  color: #000;
}

.scroll-indicator {
  writing-mode: vertical-rl;
  font-size: 12px;
  color: #333;

  display: flex;
  justify-content: center;
  align-items: center;

  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}

.scroll_line {
  width: 1px;
  height: 120px;
  background: #000;
  margin-top: 16px;
  position: relative;
}

.scroll_line::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: orange;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
  0% {
    top: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    top: 100%;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.img_cat {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  position: absolute;
  right: 4%;
  bottom: 2%;
}

/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ header ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
.header {
  width: 100%;
  max-width: 1920px;
  min-width: 1400px;
  height: 100px;
  margin: 0 auto;

  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  transition: 0.3s;
  background: transparent;
}
.header.active {
  /* background: white; */
}
.header .inner {
  width: 100%;
  height: 100px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  width: 161px;
  height: 45.17px;
  margin-left: 72px;
}
.header .logo a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.header .logo a img {
  width: 100%;
  height: 100%;

  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s;
}
.header .logo a img.on {
  opacity: 1;
}
.header .logo a img.off {
  opacity: 0;
}

.header .meuu {
  width: 580px;
  height: 100px;
}
.header .meuu .access_menu {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .meuu .access_menu .menu_btn {
}
.header .meuu .access_menu .menu_btn a {
  color: #333;
  font-family: "GothicA1-600";
  transition: 0.5s;
}
.header .meuu .access_menu .menu_btn.key_color a {
  font-family: "GothicA1-800";
  color: #0071bb;
}

.header.sec03_on {
}
.header.sec03_on .logo a img.on,
.header.sec04_on .logo a img.on {
  opacity: 0;
}
.header.sec03_on .logo a img.off,
.header.sec04_on .logo a img.off {
  opacity: 1;
}

.header.sec03_on .meuu .access_menu .menu_btn a,
.header.sec04_on .meuu .access_menu .menu_btn a {
  color: #fff;
}
.header.sec03_on .meuu .access_menu .menu_btn.key_color a,
.header.sec04_on .meuu .access_menu .menu_btn.key_color a {
  color: #fff100;
}

.header .call {
  width: 250px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 46px;
  /* background: #0071bb; */
  color: #fff;
}
.header .call .fa {
  font-size: 26px;
  margin-right: 2%;
  /* color: #fff; */
}
.header .call span {
  font-size: 26px;
  font-family: "GothicA1-900";
  /* color: #fff; */
}
.header.sec02_on .call {
  color: #0071bb;
}
.header.sec03_on .call,
.header.sec04_on .call {
  color: #fff100;
}

.header .open {
  position: absolute;
  right: 46px;
  top: 0;
  z-index: -1;
  width: 250px;
  height: 265px;
  background: #0071bb;
  border-radius: 0 0 125px 125px;

  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  text-align: center;
  transition: 1s;
}
.header.sec02_on .open,
.header.sec03_on .open,
.header.sec04_on .open {
  opacity: 0;
  height: 100px;
}
.header .open img {
  width: 67%;
  margin-bottom: 66px;
}
/*  .header .open h3 {
  font-size: 30px;

    font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.header .open h3 strong {
  font-size: 48px;
  color: #fff100;
}
.header .open p {
  font-size: 18px;
  color: #fff;
}
.header .open p span {
    font-weight: 700;
  display: inline-block;
}

@media all and (min-width: 1250px) and (max-width: 1770px) {
  .header .open {
    height: 200px;
  }
  .header .open h3 {
    font-size: 26px;
    margin-bottom: 6px;
  }
  .header .open h3 strong {
    font-size: 36px;
  }
  .header .open p {
    font-size: 16px;
    margin-bottom: 46px;
  }
} */

/* footer */
.footer {
  height: 350px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #000;
  font-family: "GothicA1-600";
}
.footer .inner {
  width: calc(100% - 144px);
  margin: 0 auto;
}
.footer .foot_logo {
  width: 161px;
}
.footer p {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  margin: 36px 0;
  font-family: "GothicA1-100";
}
.footer .btm {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .btm h2 {
  color: #fff;
}
.footer .btm h2 a {
  font-size: 16px;
  color: #fff;
}
.footer .btm .comm {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
}
.footer .btm .comm span {
  color: #fff;
  margin-left: 32px;
}
