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

Title       : Layout
Author      : EASESOFT
Create Date : 2026-05

-------------------------------------------------*/
.layout_fix {
  width: calc(100% - 3.2rem);
  max-width: 144rem;
  margin: 0 auto;
}

.layout_fix_w {
  width: calc(100% - 3.2rem);
  max-width: 179rem;
  margin: 0 auto;
}

#header {
  border-bottom: 3px solid #151515;
  position: sticky;
  top: -4rem;
  left: 0;
  z-index: 100;
  background: #ffffff;
}
#header .top_area {
  border-bottom: 1px solid #333333;
}
#header .top_area .layout_fix_w {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  height: 4rem;
}
#header .bottom_area {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
#header .recent {
  font-size: 1.4rem;
  color: #717171;
  font-family: "Montserrat";
  font-weight: 500;
  letter-spacing: 1px;
}
#header .top_menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}
#header .top_menu a {
  font-size: 1.4rem;
  font-weight: 500;
}
#header.gnb2_active #gnb2 {
  opacity: 1;
  visibility: visible;
}

html:has(.article_view) #header {
  position: relative;
  top: 0;
}

#logo {
  margin-right: 1rem;
}
#logo a {
  display: block;
  width: 30rem;
  height: 6rem;
  background: url("/eng/img/logo.svg") no-repeat left center;
  background-size: 28rem;
}

#gnb1 {
  z-index: 2;
}
#gnb1 #head_menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
#gnb1 #head_menu > li {
  flex: 1;
  position: relative;
}
#gnb1 #head_menu > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 1rem);
  z-index: 2;
  width: 1px;
  height: 2rem;
  background: #151515;
}
#gnb1 #head_menu > li > a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 6rem;
  width: 17rem;
  padding: 0 1.6rem;
  font-size: 1.8rem;
  font-weight: 600;
  transition: 0.2s;
  position: relative;
  box-sizing: border-box;
  white-space: nowrap;
}
#gnb1 #head_menu > li > a.on {
  color: #1F3442;
  background: #F6F4EF;
}
#gnb1 #head_menu > li.active .submenu {
  opacity: 1;
  visibility: visible;
}
#gnb1 #head_menu > li.lnb6::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 1rem);
  z-index: 2;
  width: 1px;
  height: 2rem;
  background: #151515;
}
#gnb1 #head_menu > li.lnb6 a::after {
  content: "AI";
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  left: calc(50% + 5.2rem);
  top: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}
#gnb1 #head_menu .submenu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  z-index: 100;
  background: #FFFFFF;
  border: 1px solid #151515;
  width: 100%;
}
#gnb1 #head_menu .submenu li + li {
  border-top: 1px solid #151515;
}
#gnb1 #head_menu .submenu a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 4rem;
  padding: 1rem 0.5rem;
  word-break: keep-all;
  line-height: 1.2;
  text-align: center;
  font-size: 1.7rem;
}
#gnb1 #head_menu .submenu li.on a {
  background: #F6F4EF;
}
#gnb1 #head_menu .submenu div {
  display: none;
}
@media screen and (min-width: 1024px) {
  #gnb1 #head_menu > li:hover > a {
    background: #9C6B2F;
    color: #FFFFFF;
  }
  #gnb1 #head_menu .submenu a:hover {
    background: #F6F4EF;
  }
}

#gnb2 {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#gnb2 .open {
  display: none;
}
#gnb2 .close {
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 4rem;
  height: 4rem;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Layer_1' data-name='Layer 1' width='7.2mm' height='7.2mm' version='1.1' viewBox='0 0 20.5 20.5'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23000; stroke-linecap: square; stroke-linejoin: round; stroke-width: 2.5px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.8,1.8l17,17'/%3E%3Cpath class='cls-1' d='M1.8,18.7L18.7,1.8'/%3E%3C/svg%3E") no-repeat center center;
  background-size: 1.6rem;
  border: none;
}
#gnb2 .layout_fix {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2.4rem;
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  position: relative;
  max-width: 1560px;
  width: 98%;
  padding: 6.4rem 6.4rem 10rem;
  height: 62rem;
  max-height: calc(100vh - 6rem);
}
#gnb2 .top_area {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4rem;
  padding: 1.6rem 0;
}
#gnb2 .top_area p {
  font-size: 2.4rem;
  font-weight: 600;
  word-break: keep-all;
  width: 40rem;
  line-height: 1.2;
}
#gnb2 .top_area .subscribe {
  margin-left: auto;
  align-self: flex-end;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border: 1px solid #8e8e8e;
  height: 4rem;
  padding: 0 1.6rem;
  transition: 0.3s;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  #gnb2 .top_area .subscribe:hover {
    background: #D9D6CF;
  }
}
#gnb2 .topmenu_all {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  flex: 1;
}
#gnb2 .topmenu_all > li {
  flex: 1;
  width: 20%;
  padding: 1.6rem 2.4rem;
}
#gnb2 .topmenu_all > li + li {
  border-left: 1px solid #dddddd;
}
#gnb2 .topmenu_all > li > a {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 4rem;
  position: relative;
}
#gnb2 .topmenu_all > li.lnb6 a {
  white-space: nowrap;
}
#gnb2 .topmenu_all > li.lnb6 a::after {
  content: "AI";
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  right: 0;
  top: -1rem;
  font-size: 1.8rem;
  font-weight: 600;
}
#gnb2 .submenu > ul > li + li {
  margin-top: 4rem;
}
#gnb2 .submenu > ul > li > a {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  position: relative;
  overflow: hidden;
  transition: 0.2s;
  word-break: keep-all;
  word-wrap: break-word;
  line-height: 1.2;
}
#gnb2 .submenu > ul > li > a em {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  #gnb2 .submenu > ul > li > a:hover {
    color: #9C6B2F;
  }
}
#gnb2 .submenu > ul > li.active > a {
  color: #9C6B2F;
}

.top_border {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #151515;
  position: relative;
}
.top_border.mg_left {
  margin-left: auto;
  position: static;
}
.top_border .btn_search_open {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 4rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='22' height='23' viewBox='0 0 22 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.74712 0.5C15.1275 0.5 19.4942 4.86671 19.4942 10.2471C19.4942 15.6275 15.1275 19.9942 9.74712 19.9942C4.36671 19.9942 0 15.6275 0 10.2471C0 4.86671 4.36671 0.5 9.74712 0.5ZM9.74712 17.8282C13.9357 17.8282 17.3282 14.4357 17.3282 10.2471C17.3282 6.05856 13.9357 2.66603 9.74712 2.66603C5.55856 2.66603 2.16603 6.05856 2.16603 10.2471C2.16603 14.4357 5.55856 17.8282 9.74712 17.8282ZM18.9368 17.9052L22 20.9684L20.4684 22.5L17.4052 19.4368L18.9368 17.9052Z' fill='%23000'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
}
.top_border .btn_search_close {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: calc(50% - 89.5rem);
  top: 2rem;
  width: 4rem;
  height: 4rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Layer_1' data-name='Layer 1' width='7.2mm' height='7.2mm' version='1.1' viewBox='0 0 20.5 20.5'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23000; stroke-linecap: square; stroke-linejoin: round; stroke-width: 2.5px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.8,1.8l17,17'/%3E%3Cpath class='cls-1' d='M1.8,18.7L18.7,1.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2rem;
}
.top_border .search_box {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 3px);
  z-index: 100;
  width: 100%;
  padding: 6.4rem 0;
  background: #ffffff url("/kor/img/bg_search.svg") no-repeat right bottom;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12);
}
.top_border .search_box.open {
  display: block;
}
.top_border .search_box .center {
  width: 100%;
  max-width: 58rem;
  margin: 0 auto;
}
.top_border .search_box .input_box {
  width: 100%;
  border-bottom: 2px solid #151515;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.top_border .search_box .input_box input {
  flex: 1;
  border: none;
  height: 4rem;
  outline: none;
}
.top_border .search_box .input_box .btn_search {
  flex: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 4rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='22' height='23' viewBox='0 0 22 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.74712 0.5C15.1275 0.5 19.4942 4.86671 19.4942 10.2471C19.4942 15.6275 15.1275 19.9942 9.74712 19.9942C4.36671 19.9942 0 15.6275 0 10.2471C0 4.86671 4.36671 0.5 9.74712 0.5ZM9.74712 17.8282C13.9357 17.8282 17.3282 14.4357 17.3282 10.2471C17.3282 6.05856 13.9357 2.66603 9.74712 2.66603C5.55856 2.66603 2.16603 6.05856 2.16603 10.2471C2.16603 14.4357 5.55856 17.8282 9.74712 17.8282ZM18.9368 17.9052L22 20.9684L20.4684 22.5L17.4052 19.4368L18.9368 17.9052Z' fill='%23000'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
}
.top_border .search_box .sub_tit {
  display: block;
  margin-top: 4rem;
  font-size: 1.8rem;
}
.top_border .search_box .recommend {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.top_border .search_box .recommend a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 4.4rem;
  border: 1px solid #dddddd;
  padding: 0 1.6rem;
  color: #555555;
}
@media screen and (min-width: 1024px) {
  .top_border .search_box .recommend a:hover {
    border-color: #0B50D0;
    color: #0B50D0;
  }
}
.top_border .btn_lang_open {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 4rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1M12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1M12 23C9.34213 23 7.1875 18.0751 7.1875 12C7.1875 5.92487 9.34213 1 12 1M12 23C14.6579 23 16.8125 18.0751 16.8125 12C16.8125 5.92487 14.6579 1 12 1M3.0625 17.3465C5.07773 16.1925 8.42589 15.4375 12.2156 15.4375C16.1708 15.4375 19.6451 16.2599 21.625 17.5M3.0625 6.65349C5.07773 7.80748 8.42589 8.5625 12.2156 8.5625C16.1708 8.5625 19.6451 7.74007 21.625 6.5' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2.2rem;
}
.top_border .lang_box {
  display: none;
  position: absolute;
  transform: translate(-50%, 0);
  left: 50%;
  top: calc(100% + 2px);
  z-index: 5;
  border: 1px solid #151515;
  background: #ffffff;
}
.top_border .lang_box.open {
  display: block;
}
.top_border .lang_box a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 4rem;
  padding: 0 1.6rem;
}
@media screen and (min-width: 1024px) {
  .top_border .lang_box a:hover {
    background: #F6F4EF;
  }
}
.top_border .lang_box a + a {
  border-top: 3px solid #151515;
}
.top_border .gnb2_open {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 4rem;
  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='%23000'/%3E%3Crect width='25' height='3' transform='translate(0 8)' fill='%23000'/%3E%3Crect width='25' height='3' transform='translate(0 16)' fill='%23000'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2.2rem;
}

#footer {
  background: #131822;
  position: relative;
}
#footer .lay_top {
  padding: 4rem 0;
  color: #e4e4e4;
}
#footer .lay_top .layout_fix_w {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#footer .lay_left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 3.2rem;
}
#footer .lay_bottom {
  border-top: 1px solid rgba(221, 221, 221, 0.3);
  padding: 1.6rem 0;
}
#footer .lay_bottom .layout_fix {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
}
#footer .address {
  word-break: keep-all;
  word-wrap: break-word;
  font-size: 1.6rem;
}
#footer .address .addr {
  margin-bottom: 1.6rem;
}
#footer .address strong {
  font-weight: 500;
}
#footer .address .fax {
  margin-left: 2.4rem;
}
#footer .menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  text-align: right;
}
#footer .menu li {
  position: relative;
}
#footer .menu a {
  color: #f8f8f8;
}
#footer .menu a::after {
  content: "\ea70";
  font-family: "remixicon";
  font-size: 1.8rem;
  margin-left: 1.6rem;
}
#footer .copyright {
  font-family: "Montserrat";
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.6rem;
}
#footer .bottom_fix {
  position: fixed;
  right: 0;
  bottom: 3rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}
#footer .bottom_fix.is_bottom {
  position: absolute;
  bottom: calc(100% + 1rem);
}
#footer .bottom_fix a {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
  font-weight: 500;
  transition: 0.3s;
  will-change: transform;
  border: 1px solid #000;
  border-bottom: 2px solid #000;
  border-right: 0;
  font-size: 1.5rem;
}
#footer .bottom_fix i {
  display: flex;
  height: 1.6rem;
}
#footer .go_top i {
  font-size: 1.8rem;
}
@media screen and (min-width: 1024px) {
  #footer .go_top:hover {
    background-color: #131822;
    color: #FFFFFF;
  }
}
@media screen and (min-width: 1024px) {
  #footer .trans:hover {
    background-color: #F6F4EF;
  }
}

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

Responsive

-------------------------------------------------*/
/* Media Query */
@media (max-width: 1800px) {
  .top_border .btn_search_close {
    right: 1rem;
    top: 1rem;
  }
}
@media (max-width: 1540px) {
  #gnb1 #head_menu > li > a {
    width: 15.5rem;
  }
}
@media (max-width: 1440px) {
  #logo a {
    width: 28rem;
    background-size: 27rem;
  }
  #gnb1 {
    flex: 1;
  }
  #gnb1 #head_menu > li.lnb6 a::after {
    left: calc(50% + 4.5rem);
  }
  #gnb1 #head_menu > li > a {
    width: auto;
    font-size: 1.7rem;
  }
  #gnb2 .layout_fix {
    padding: 6.4rem 3.2rem 10rem;
  }
  #gnb2 .topmenu_all > li {
    padding: 1.6rem;
  }
}
@media (max-width: 1280px) {
  #header .bottom_area {
    width: 100%;
    padding-left: 1.6rem;
    gap: 0;
  }
  .top_border:last-of-type {
    border-right: none;
  }
  #logo a {
    width: 26rem;
    background-size: 25rem;
  }
  #gnb1 #head_menu > li.lnb6 a::after {
    left: calc(50% + 3.8rem);
  }
  #gnb1 #head_menu > li > a {
    padding: 0 0.8rem;
    font-size: 1.6rem;
  }
  #gnb2 .layout_fix {
    padding: 4.8rem 2.4rem;
  }
  #gnb2 .top_area p {
    font-size: 2rem;
    width: 28rem;
  }
  #gnb2 .topmenu_all > li {
    padding: 1rem;
  }
  #gnb2 .topmenu_all > li > a {
    font-size: 2.4rem;
    word-break: keep-all;
    line-height: 1.2;
  }
  #gnb2 .topmenu_all > li.lnb6 a::after {
    top: -1.5rem;
  }
  #gnb2 .submenu > ul > li + li {
    margin-top: 2.4rem;
  }
  #gnb2 .submenu > ul > li > a {
    font-size: 1.8rem;
  }
  #footer .bottom_fix a {
    width: 6rem;
    height: 6rem;
    gap: 0.5rem;
  }
}
@media (max-width: 1024px) {
  #header {
    position: relative;
    top: 0;
  }
  #header .bottom_area {
    width: 100%;
    padding-left: 1.6rem;
  }
  #header .top_area {
    padding: 0.5rem 0;
  }
  #header.gnb2_active .top_border:has(.btn_lang_open) {
    position: fixed;
    left: 1.6rem;
    top: 1.6rem;
    z-index: 1001;
    border-left: none;
  }
  .top_border {
    border-right: none;
    border-left: 1px solid #151515;
  }
  .top_border .search_box {
    background-size: 80%;
    padding: 6rem 1.6rem;
  }
  #gnb1 {
    display: none;
  }
  #gnb2 {
    align-items: flex-start;
  }
  #gnb2 .close {
    top: 1.6rem;
  }
  #gnb2 .layout_fix {
    width: 100%;
    height: 95%;
    padding: 7rem 0 0;
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
  #gnb2 .top_area {
    border: none;
    background: #F5F7F9;
    margin-top: auto;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    padding: 3.2rem 1.6rem;
  }
  #gnb2 .top_area p {
    text-align: center;
    width: 22rem;
  }
  #gnb2 .top_area .subscribe {
    align-self: center;
    margin: 0;
    width: 100%;
    max-width: 30rem;
  }
  #gnb2 .topmenu_all {
    flex-direction: column;
    border-top: 1px solid #dddddd;
    padding: 2.4rem 1.6rem 0;
    overflow-y: auto;
  }
  #gnb2 .topmenu_all > li {
    width: 100%;
    border: none;
    padding: 0;
    flex: none;
  }
  #gnb2 .topmenu_all > li + li {
    border: none;
  }
  #gnb2 .topmenu_all > li:first-child {
    border-left: none;
  }
  #gnb2 .topmenu_all > li > a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-size: 3.2rem;
    padding: 1.6rem;
    height: auto;
  }
  #gnb2 .topmenu_all > li > a::before {
    content: "";
    order: 2;
    display: block;
    width: 3rem;
    height: 3rem;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath fill='none' d='M0 0h24v24H0z'%3E%3C/path%3E%3Cpath d='M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
    margin-left: auto;
    opacity: 0.6;
  }
  #gnb2 .topmenu_all > li.active > a {
    color: #9C6B2F;
  }
  #gnb2 .topmenu_all > li.active > a::before {
    transform: rotate(180deg);
  }
  #gnb2 .topmenu_all > li.active .submenu {
    max-height: 100rem;
  }
  #gnb2 .topmenu_all > li.on > a::before {
    transform: rotate(180deg);
  }
  #gnb2 .topmenu_all > li.on .submenu {
    max-height: 100rem;
  }
  #gnb2 .topmenu_all > li:not(:has(.submenu)) > a::before {
    transform: rotate(-90deg);
  }
  #gnb2 .topmenu_all > li:not(:has(.submenu)).active > a::before {
    transform: rotate(-90deg);
  }
  #gnb2 .topmenu_all > li.lnb6 a::after {
    left: 23rem;
    top: 1rem;
  }
  #gnb2 .submenu {
    overflow: hidden;
    max-height: 0;
    transition: 0.3s;
  }
  #gnb2 .submenu > ul {
    padding-left: 2rem;
  }
  #gnb2 .submenu > ul > li + li {
    margin-top: 1.2rem;
  }
  #gnb2 .submenu > ul > li > a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 1.2rem 1.6rem;
    font-size: 2rem;
    border-radius: 0.8rem;
    border-radius: 1.2rem;
  }
  #gnb2 .submenu > ul > li.active > a {
    background: #F8F9FA;
    color: #151515;
  }
  #footer .lay_top .layout_fix_w {
    flex-direction: column;
    gap: 2rem;
    width: calc(100% - 3.2rem);
    max-width: 40rem;
  }
  #footer .lay_left {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  #footer .lay_right {
    margin-left: auto;
  }
  #footer .copyright {
    text-align: center;
    font-size: 1.4rem;
  }
}
@media (max-width: 640px) {
  .top_border:has(.btn_lang_open) {
    display: none;
  }
  #header.gnb2_active .top_border:has(.btn_lang_open) {
    display: flex;
  }
  #gnb2 .top_area p {
    font-size: 1.4rem;
    width: 15rem;
  }
  #gnb2 .topmenu_all > li > a {
    padding: 1.6rem 0;
    font-size: 2.4rem;
  }
  #gnb2 .topmenu_all > li.lnb6 a::after {
    left: 16rem;
    top: 1rem;
  }
  #gnb2 .submenu > ul {
    padding-left: 0;
  }
  #gnb2 .submenu > ul > li > a {
    font-size: 1.8rem;
  }
  #gnb2 .submenu > ul > li + li {
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  #footer .address .fax {
    display: block;
    margin: 0.5rem 0 0;
  }
}
@media (max-width: 370px) {
  #logo a {
    width: 19rem;
    background-size: 100%;
  }
  #footer .lay_top .layout_fix_w {
    width: 100%;
    padding: 0 1.6rem;
  }
  #footer .address {
    font-size: 1.4rem;
  }
}