@charset "UTF-8";
/*-------------------------------------------------

Title       : 레이아웃
Author      : EASESOFT
Create Date : 2025-06

-------------------------------------------------*/
#header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  transition: 0.3s;
}
#header::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
#header::after {
  content: "";
  background-color: #fff;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 14rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
#header #headmn > .layout_fix {
  position: relative;
  z-index: 2;
  width: calc(100% - 3.2rem);
  max-width: 144rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
}
#header #logo {
  flex: none;
  position: relative;
}
#header #logo a {
  display: block;
  background: url("/kor/img/logo.png") no-repeat 0 0;
  background-size: contain;
  width: 26.6rem;
  height: 6.5rem;
}
#header #gnb1 {
  flex: 1;
}
#header #gnb1 > ul {
  display: flex;
  justify-content: space-between;
}
#header #gnb1 > ul > li {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  position: relative;
  height: 14rem;
}
#header #gnb1 > ul > li > a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
}
#header #gnb1 > ul > li > a::after {
  content: "";
  width: 0;
  height: 3px;
  background-color: #fff;
  position: absolute;
  transform: translate(-50%, 0);
  left: 50%;
  bottom: -2rem;
  z-index: 1;
  transition: all 0.3s;
}
#header #gnb1 > ul > li > a.on {
  color: #ffd000;
}
#header #gnb1 > ul > li > a.on::after {
  width: 100%;
  background: #ffd000;
}
#header #gnb1 > ul > li.active > a::after {
  width: 100%;
}
#header #gnb1 > ul > li.active .submenu {
  opacity: 1;
  visibility: visible;
}
#header #gnb1 .submenu {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  width: 22rem;
  padding: 1rem;
  position: absolute;
  left: calc(50% - 11rem);
  top: 14rem;
  z-index: 1;
  transition: all 0.3s;
  background: #0077D4;
  box-sizing: border-box;
}
#header #gnb1 .submenu > ul {
  text-align: center;
}
#header #gnb1 .submenu > ul > li {
  padding: 0.5rem 0;
}
#header #gnb1 .submenu > ul > li > a {
  color: #C1D0EF;
  font-size: 1.6rem;
  padding: 0 0 1rem;
  position: relative;
  word-break: keep-all;
}
#header #gnb1 .submenu > ul > li > a:after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}
#header #gnb1 .submenu > ul > li > a:hover:after {
  width: 100%;
}
#header #gnb1 .submenu > ul > li.active > a {
  color: #fff;
}
#header #gnb1 .submenu > ul > li.active > a:after {
  width: 100%;
}
#header #gnb1 .submenu > ul > li.on > a {
  color: #fff;
}
#header #gnb1 .submenu > ul > li.on > a:after {
  width: 100%;
}
#header #gnb1 .submenu div {
  display: none;
}
#header #gnb1 .submenu .linkWindow:after {
  content: "\e980";
  font-family: "xeicon";
  display: inline;
  margin-left: 0.3rem;
  vertical-align: -0.1rem;
}
#header #gnb2 {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  top: -20%;
  z-index: 200;
  width: 100%;
  padding: 8rem;
  height: 90vh;
  background-color: #fff;
  overflow: hidden;
  box-sizing: border-box;
  transition: 0.5s;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12);
}
#header #gnb2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 100%;
  background: #0077D4;
}
#header #gnb2 .control.open {
  display: none;
}
#header #gnb2 .control.close {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 7%;
  top: 4rem;
  z-index: 201;
  width: 3.4rem;
  height: 3.4rem;
  transition: 0.3s;
}
#header #gnb2 .control.close::before, #header #gnb2 .control.close:after {
  content: "";
  width: 3rem;
  height: 2px;
  background: #000;
  position: absolute;
  left: calc(50% - 1.5rem);
  top: 50%;
  transition: 0.4s;
  transform-origin: center center;
}
#header #gnb2 .control.close::before {
  transform: rotate(45deg);
}
#header #gnb2 .control.close:after {
  transform: rotate(-45deg);
}
@media screen and (min-width: 1024px) {
  #header #gnb2 .control.close:hover::before {
    transform: rotate(135deg);
  }
  #header #gnb2 .control.close:hover:after {
    transform: rotate(-135deg);
  }
}
#header #gnb2 .layout_fix {
  display: block;
  overflow-y: auto;
  padding: 0 16rem;
  height: 100%;
}
#header #gnb2 .layout_fix::-webkit-scrollbar-track {
  background-color: #EBEDF1;
  border-radius: 0;
}
#header #gnb2 .layout_fix::-webkit-scrollbar {
  width: 0.5rem;
}
#header #gnb2 .layout_fix::-webkit-scrollbar-thumb {
  background-color: #A3A3A3;
  border-radius: 0;
}
#header #gnb2 .topmenu_all {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  height: 100%;
}
#header #gnb2 .topmenu_all > li {
  flex: none;
  width: 33.33%;
  min-height: 50%;
  box-sizing: border-box;
  padding: 3rem;
  border-left: 1px dotted #ddd;
  position: relative;
}
#header #gnb2 .topmenu_all > li::after {
  content: "";
  position: absolute;
  left: -1rem;
  top: -1rem;
  width: 2rem;
  height: 2rem;
  background: #fff;
  border-radius: 4px;
  transform: rotate(45deg);
}
#header #gnb2 .topmenu_all > li:nth-child(n+4) {
  border-top: 1px dotted #ddd;
}
#header #gnb2 .topmenu_all > li:nth-child(3n-2) {
  border-left: none;
}
#header #gnb2 .topmenu_all > li > a {
  display: block;
  width: 24rem;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 4rem;
  line-height: 1.2;
  letter-spacing: -1px;
  transition: 0.3s;
  word-break: keep-all;
  word-wrap: break-word;
}
@media screen and (min-width: 1024px) {
  #header #gnb2 .topmenu_all > li > a:hover {
    color: #0077D4;
  }
}
#header #gnb2 .submenu > ul > li + li {
  margin-top: 1.6rem;
}
#header #gnb2 .submenu > ul > li > a {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.5px;
  transition: 0.3s;
  word-break: keep-all;
  word-wrap: break-word;
}
@media screen and (min-width: 1024px) {
  #header #gnb2 .submenu > ul > li > a:hover {
    color: #0077D4;
  }
}
#header #gnb2 .submenu > ul > li.show > a {
  color: #0077D4;
}
#header #gnb2 .submenu > ul > li.show div {
  max-height: 50rem;
}
#header #gnb2 .submenu div {
  max-height: 0;
  overflow: hidden;
  padding-top: 1rem;
}
#header #gnb2 .submenu div li + li {
  margin-top: 1rem;
}
#header #gnb2 .submenu div li {
  position: relative;
  padding-left: 1rem;
}
#header #gnb2 .submenu div li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 2px;
  height: 2px;
  background-color: #BEBEBE;
  border-radius: 100%;
}
#header #gnb2 .submenu div a {
  position: relative;
  z-index: 1;
  transition: 0.3s;
  word-break: keep-all;
  word-wrap: break-word;
}
#header #gnb2 .submenu div a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 0;
  height: 4px;
  background: #C2DCFE;
  transition: 0.3s;
}
@media screen and (min-width: 1024px) {
  #header #gnb2 .submenu div a:hover {
    font-weight: 600;
  }
  #header #gnb2 .submenu div a:hover::before {
    width: 100%;
  }
}
#header .etc {
  flex: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}
#header .etc button {
  display: block;
  width: 3rem;
  height: 3rem;
  background-repeat: no-repeat;
  background-position: center center;
}
#header .etc .lang_open {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath fill='none' d='M0 0h24v24H0z'%3E%3C/path%3E%3Cpath d='M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM9.71002 19.6674C8.74743 17.6259 8.15732 15.3742 8.02731 13H4.06189C4.458 16.1765 6.71639 18.7747 9.71002 19.6674ZM10.0307 13C10.1811 15.4388 10.8778 17.7297 12 19.752C13.1222 17.7297 13.8189 15.4388 13.9693 13H10.0307ZM19.9381 13H15.9727C15.8427 15.3742 15.2526 17.6259 14.29 19.6674C17.2836 18.7747 19.542 16.1765 19.9381 13ZM4.06189 11H8.02731C8.15732 8.62577 8.74743 6.37407 9.71002 4.33256C6.71639 5.22533 4.458 7.8235 4.06189 11ZM10.0307 11H13.9693C13.8189 8.56122 13.1222 6.27025 12 4.24799C10.8778 6.27025 10.1811 8.56122 10.0307 11ZM14.29 4.33256C15.2526 6.37407 15.8427 8.62577 15.9727 11H19.9381C19.542 7.8235 17.2836 5.22533 14.29 4.33256Z'%3E%3C/path%3E%3C/svg%3E%0A");
}
#header .etc .gnb2_open {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='19' viewBox='0 0 25 19'%3E%3Cg transform='translate(0)'%3E%3Crect width='25' height='3' transform='translate(0)' fill='%23fff'/%3E%3Crect width='25' height='3' transform='translate(0 8)' fill='%23fff'/%3E%3Crect width='25' height='3' transform='translate(0 16)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
}
#header .etc .lang_box {
  position: absolute;
  transform: translate(-50%, 0);
  left: 50%;
  top: calc(100% + 10px);
  z-index: 1;
  max-height: 0;
  transition: 0.4s;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
#header .etc .lang_box ul {
  background: #fff;
  border-radius: 0.8rem;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
#header .etc .lang_box li + li {
  margin-top: 0.5rem;
}
#header .etc .lang_box a {
  font-size: 1.4rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 7.4rem;
  height: 2.4rem;
  border-radius: 100px;
  transition: 0.3s;
}
@media screen and (min-width: 1024px) {
  #header .etc .lang_box a:hover {
    background: #F5F7FB;
    font-weight: 700;
  }
}
#header .etc .language {
  position: relative;
}
#header .etc .language.active .lang_box {
  max-height: 50rem;
}
#header.fixed {
  background: #0077D4;
}
#header.gnb1_active {
  background: #0077D4;
}
#header.gnb1_active .top_area {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#header.gnb2_active::before {
  opacity: 1;
  visibility: visible;
}
#header.gnb2_active #gnb2 {
  opacity: 1;
  visibility: visible;
  top: 0;
}
#header.gnb2_active #gnb2 .control.close {
  opacity: 1;
  visibility: visible;
}

html:has(#header.gnb2_active) {
  overflow: hidden;
}

#footer {
  background-color: #363839;
  margin-top: 10rem;
}
#footer .layout_fix {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
  padding: 4rem 0;
}
#footer .layout_fix > div {
  flex: 1;
}
#footer .tit {
  display: block;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
#footer li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
}
#footer li + li {
  margin-top: 0.5rem;
}
#footer li span {
  flex: none;
  width: 8rem;
}
#footer li em {
  opacity: 0.7;
}
#footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 0;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
}
#footer .go_top {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 30;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  background: #222A3A;
  border-radius: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
  transition: 0.3s;
}
#footer .go_top::after {
  content: "\ea76";
  color: #fff;
  font-family: "remixicon";
  font-size: 2rem;
}
#footer .go_top.show {
  opacity: 1;
  visibility: visible;
}
#footer .trans {
  position: fixed;
  right: 2rem;
  bottom: 8rem;
  z-index: 30;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 5rem;
  height: 5rem;
  background: #222A3A;
  border-radius: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
  transition: 0.3s;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
}
#footer .trans::before {
  content: "\f33d";
  font-family: "remixicon";
  font-size: 1.6rem;
}
@media screen and (min-width: 1024px) {
  #footer .go_top:hover {
    transform: translateY(-1rem);
  }
}

/*-------------------------------------------------

Responsive

-------------------------------------------------*/
/* Media Query */
@media screen and (max-width: 1440px) {
  #header #gnb2 {
    padding: 8rem 4rem;
  }
  #header #gnb2 .layout_fix {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 1280px) {
  #header #logo a {
    width: 21rem;
    height: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  #header #headmn > .layout_fix {
    justify-content: space-between;
    height: 8rem;
  }
  #header #gnb1 {
    display: none;
  }
  #header #gnb2 {
    padding: 6rem 2rem 3rem 4rem;
    transition: none;
  }
  #header #gnb2 .control.close {
    right: 3rem;
    top: 3rem;
  }
  #header #gnb2 .layout_fix {
    padding: 0;
    width: 100%;
  }
  #header #gnb2 .topmenu_all {
    display: block;
    height: auto;
  }
  #header #gnb2 .topmenu_all > li {
    width: 100%;
    height: auto;
    border: none;
    padding: 0;
  }
  #header #gnb2 .topmenu_all > li::after {
    display: none;
  }
  #header #gnb2 .topmenu_all > li:nth-child(n+4) {
    border-top: 1px solid #DDDDDD;
  }
  #header #gnb2 .topmenu_all > li + li {
    border-top: 1px solid #DDDDDD;
  }
  #header #gnb2 .topmenu_all > li > a {
    margin: 0;
    width: 100%;
    padding: 2.4rem 1rem;
    font-size: 2.8rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  #header #gnb2 .topmenu_all > li > a::after {
    content: "\ea6e";
    font-family: "remixicon";
    margin-left: auto;
    font-weight: 400;
  }
  #header #gnb2 .topmenu_all > li:has(.submenu) > a::after {
    content: "\ea4e";
  }
  #header #gnb2 .topmenu_all > li:has(.submenu).active > a::after {
    content: "\ea78";
  }
  #header #gnb2 .topmenu_all > li.active .submenu {
    max-height: 50rem;
    padding-bottom: 2rem;
  }
  #header #gnb2 .topmenu_all .submenu {
    padding-left: 2rem;
    max-height: 0;
    overflow: hidden;
  }
  #header #gnb2 .topmenu_all .submenu > ul > li {
    position: relative;
    padding-left: 1rem;
  }
  #header #gnb2 .topmenu_all .submenu > ul > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    background: #333;
    border-radius: 100%;
  }
  #header #gnb2 .topmenu_all .submenu div ul li::before {
    width: 5px;
    height: 2px;
  }
  #footer .layout_fix {
    flex-wrap: wrap;
  }
  #footer div.address {
    flex: none;
    width: 100%;
    padding-left: calc(50% - 15rem);
  }
}
@media screen and (max-width: 640px) {
  #footer .layout_fix {
    gap: 3rem;
  }
  #footer .layout_fix > div {
    flex: none;
    width: 100%;
    padding-left: calc(50% - 15rem);
  }
}
@media screen and (max-width: 480px) {
  #header #gnb2 .topmenu_all > li > a {
    font-size: 2.4rem;
  }
}