/* wrap */
html {
  height: 100%;
  background: #ffffff;
  font-family: "NanumSquare", 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: #4a4a4a;
}
#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: 100px;

  z-index: 9995;
  /* overflow: hidden; */
  transition: all 0.5s;

  box-shadow: 2px 2px 2px 4px rgba(150, 150, 150, 0.05);
}

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

header .inner .logo {
  width: 425px;
  height: 100px;
  background-color: #274140;
  clip-path: polygon(0 0, 85% 0%, 75% 100%, 0% 100%);
  /* line-height: 100px; */
}
header .inner .logo a {
  /* display: block; */
  width: 390px;
  height: 100px;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  margin-left: 50px;
}
header .inner .logo a img {
  width: 221px;
  height: 45px;
}

header .inner .gnb {
  /* margin-right: 50px; */
  width: 63%;
}
header .inner .gnb .menu {
  display: flex;
  justify-content: center;
  font-size: 18px;
  /* font-weight: 700; */
  /* gap: 70px; */
  width: 70%;
  /* margin: 0 auto; */
  margin-left: 300px;
}

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

.gnb .menu li .mainmenu {
  color: #274140;
  font-weight: 600;
  line-height: 100px;
  display: block;
  position: relative;
}

header .inner .open {
  background-color: #ffffff;
  width: 400px;
  height: 100px;
  /* line-height: 100px; */
  clip-path: polygon(0 0, 85% 0%, 75% 100%, 0% 100%);
  /* clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%); */
  position: absolute;
  left: 290px;
  z-index: -1;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  padding-left: 100px;
}

header .inner .open img {
  width: 220px;
  /* height: 31px; */
  margin-left: 17px;
}

header .inner .call-box {
  width: 10%;
  margin-right: 50px;
}
/* .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: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;

  background: #fff;
  border-radius: 5px;

  transition: all 0.4s ease-out;
  padding: 10px 2px;
  font-size: 18px;
}
.gnb .menu li .submenu li a {
  color: #333;
  font-size: 17px;
  letter-spacing: -1px;
  display: block;
}
.gnb .menu li .submenu li:hover a {
  color: #272e53;
  font-weight: bold;
}

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

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

/* footer */

.footer {
  width: 100%;
  margin: 0 auto;
  background-color: #333333;
  padding: 55px 0px;
}
.footer .inner {
  width: calc(100% - 100px);
  margin: 0 auto;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  /* gap: 5%; */
}
.f-logo {
  width: 10%;
}
.footer-l {
  padding-left: 70px;
  width: 100%;
}
.footer-r {
  width: 20%;
  text-align: right;
  margin-top: 5%;
}
.f-txt01 {
  text-align: left;
}

.footer p {
  padding-top: 15px;
  text-align: left;
  line-height: 25px;
  font-size: 15px;
  color: #ffffff;
  font-weight: 300;
}
.f_txt {
  display: block;
  margin-bottom: 5px;
  font-weight: 400;
}
.copyright {
  text-align: center;
  line-height: 25px;
  font-size: 15px;
  font-weight: 700;
  /* padding-top: 10px; */
  text-transform: uppercase;
}

.copyright a {
  font-weight: 300;
  color: #ffffff;
}

/*-----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.4s;
}

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

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

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

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

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