@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=Noto+Serif+KR:wght@400;500;600&display=swap");
/* Regular 400 */
/* Medium 500 */
/* semibold 600 */
/* font-family: "Noto Serif KR", serif; */

/* wrap */
html {
  height: 100%;
  background: #ffffff;
  font-family: "Noto Sans KR", sans-serif;
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.025em;
  word-break: keep-all;
  color: #ffffff;
}
.wrap {
  width: 100%;
  max-width: 1920px;
  min-width: 1400px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
section {
  width: 100%;
  max-width: 1920px;
  /* min-width: 1400px; */
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
a {
  text-decoration: none;
  color: #313131;
}
#common {
  width: 100%;
  max-width: 1920px;
  min-width: 1400px;
  margin: 0 auto;
}

/* header영역 */
header {
  position: fixed;
  left: 50%;
  top: 0;
  transform: translate(-50%);
  width: 100%;
  max-width: 1920px;
  min-width: 1400px;
  margin: 0 auto;
  height: 90px;
  /* background-color: rgba(0, 0, 0, 0.2); */
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 9989;
  /* overflow: hidden; */
  transition: all 0.5s;
  /* line-height: 90px; */
}

header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 100px);
  /* width: 100%; */
  margin: 0 auto;
}

header .inner .logo {
  /* padding-top: 15px; */
}
header .inner .logo a {
  display: block;
}
header .inner .logo a img {
  /* width: 100%; */
}

header .inner .gnb {
  margin-right: 80px;
}
header .inner .gnb .menu {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  gap: 70px;
  width: 70%;
  /* margin: 0 0 0 100px; */
  margin: 0 auto;
}

.gnb .menu li {
  color: #fff;
  text-align: center;
  cursor: pointer;
  flex: 1 0 auto;
  position: relative;
}

.gnb .menu li .mainmenu {
  line-height: 90px;
  display: block;
  position: relative;
  color: #ffffff;
}

/* .gnb .menu li:hover .mainmenu::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 80%;
  left: 50%;
} */
/* sub메뉴 각각나오는거 */
.gnb .menu li .submenu {
  position: absolute;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  top: 90px;
  line-height: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  /* letter-spacing: -3px; */
  background: #fff;
  /* border-radius: 5px; */

  transition: all 0.4s ease-out;
  padding: 10px 1px;
  font-size: 18px;
  box-shadow: 2px 2px 4px 6px rgba(150, 150, 150, 0.1);
}
.gnb .menu li .submenu li a {
  color: #333;
  font-size: 15px;
  letter-spacing: -1px;
  display: block;
}
.gnb .menu li .submenu li:hover a {
  color: #ad8d40;
}

.gnb .menu li:hover .mainmenu {
  /* font-weight: bold; */
}

.gnb .menu li:hover .submenu {
  opacity: 1;
  visibility: visible;
}

/* footer */
.footer {
  width: 100%;
  /* background-color: #5a5a5a; */
  background-color: #0d3154;
  padding: 70px 100px;
  color: #ffffff;
  position: relative;
  margin-top: 120px !important;
}
.footer .inner {
  width: 100%;
}
.footer .inner .f_txt01 {
  width: 747px;
  height: 43px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .inner .f_txt01 img {
  width: 90%;
}
.footer .inner p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.footer .inner .copyright p {
  font-size: 16px;
  padding-top: 20px;
  font-weight: 400;
}
.footer .inner .copyright p a {
  color: #ffffff;
}
.f-logo {
  position: absolute;
  right: 15%;
  top: 35%;
}

/*-----scrollmagic--back-to-position------*/

.back-to-position {
  opacity: 0;
  transition: 1.5s;
}

.back-to-position.up {
  transform: translateY(200px);
}

.back-to-position.down {
  transform: translateY(-200px);
}

.back-to-position.to-right {
  transform: translateX(-150px);
}

.back-to-position.to-left {
  transform: translateX(150px);
}

.show .back-to-position {
  opacity: 1;
  transform: translateX(0);
}

.show .back-to-position.delay-0 {
  transition-delay: 0.2s;
}

.show .back-to-position.delay-1 {
  transition-delay: 0.3s;
}

.show .back-to-position.delay-2 {
  transition-delay: 0.4s;
}

.show .back-to-position.delay-3 {
  transition-delay: 0.5s;
}

@keyframes load_U {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
