.show-default {
  display: block !important;
}

.hide-default {
  display: none !important;
}

:root {
  --bg: #f0dbc4;
  --bg02: #fbfaff;
  --bg03: #ECEFF4;
  --bg04: #FAFAFA;
  --orange: #f58220;
  --navy: #043b73;
  --deepnavy: #2B2F36;
  --dark: #1a1a1a;
  --medium: #5e5e5e;
  --gray: #949494;
}

.blind {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  text-indent: -99999px;
  color: transparent;
}

.header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid var(--orange);
  -webkit-transition: top 0.5s ease;
  transition: top 0.5s ease;
}
.header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
}
.header.top {
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  background-color: transparent;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  border-color: rgba(255, 255, 255, 0.3);
}
.header.top .header-lang ul {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}
.header.hide {
  top: -101%;
}

.header-gsnb {
  display: none;
  position: absolute;
  top: var(--headerHeight);
  height: 280px;
  width: 101vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.header-gnb {
  margin-left: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-gnb > a {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header-gnb > a:hover {
  color: var(--orange);
  font-weight: 700;
}
.header-gnb ul {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header-gnb ul li {
  padding: 40px;
  border-left: 1px solid #ddd;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 320px;
}
.header-gnb ul li:first-child {
  max-width: none;
  border-left: none;
  padding-left: calc(100% - 1920px);
}
.header-gnb ul li:last-child {
  max-width: none;
  padding-right: calc(100% - 1920px);
}
.header-gnb ul li > a {
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
}
.header-gnb ul li > a i {
  display: none;
}
.header-gnb ul.header-gnb__bg li {
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  border: none;
  background-color: #fff;
}
.header-gnb ul.header-gnb__bg li.on {
  background-color: var(--bg02);
}

.header-gnb__depth02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.header-gnb__depth02 a {
  font-size: 16px;
  font-weight: 500;
  color: var(--medium);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header-gnb__depth02 a:hover {
  color: var(--dark);
}

.header-lang {
  margin-left: auto;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-lang button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--deepnavy);
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-lang button span {
  width: 20px;
  height: 20px;
  background-image: url("/image/common/global_icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  margin-right: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-lang button svg {
  margin-left: 20px;
}
.header-lang button svg path {
  fill: var(--deepnavy);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-lang button.active {
  color: var(--orange);
}
.header-lang button.active span {
  background-image: url("/image/common/global_icon_active.svg");
}
.header-lang button.active svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.header-lang button.active svg path {
  fill: var(--orange);
}
.header-lang ul {
  display: none;
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  border-top: none;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.header-lang ul li {
  padding: 7px 15px;
  border-top: 1px solid #ddd;
}
.header-lang ul li a {
  font-size: 16px;
  color: var(--deepnavy);
  font-weight: 400;
  line-height: 1.57;
}
.header-lang ul li:first-child {
  padding-top: 0;
  border-top: none;
}
.header-lang ul li:last-child {
  padding-bottom: 0;
}
.header-lang ul li.on a {
  color: var(--orange);
}

.header-sideMenu {
  font-size: 30px;
  margin-left: 30px;
  color: var(--navy);
  cursor: pointer;
}

.common-btn a,
.common-btn button {
  background-color: var(--orange);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  width: 200px;
  height: 54px;
}

.view-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--medium);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  white-space: nowrap;
}

.footer {
  position: relative;
  z-index: 99;
  background-color: var(--bg03);
  color: var(--navy);
  font-size: 15px;
}
.footer > .inner {
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer > .inner:first-child {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer > .inner:first-child::after {
  content: "";
  width: 100vw;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}
.footer address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 67px;
}
.footer address p {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer address p span {
  font-weight: 400;
}

.footer-bottom {
  background-color: var(--orange);
  color: var(--navy);
}
.footer-bottom .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-bottom ul li {
  position: relative;
}
.footer-bottom ul li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 1px;
  height: 14px;
  background-color: var(--navy);
}
.footer-bottom ul li a {
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
}

.footer-family {
  position: relative;
}
.footer-family button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 44px;
  gap: 40px;
  color: var(--navy);
  font-weight: 500;
}
.footer-family button svg path {
  fill: var(--navy);
}
.footer-family.active button {
  color: var(--orange);
}
.footer-family.active button svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.footer-family.active button svg path {
  fill: var(--orange);
}
.footer-family > div {
  display: none;
  opacity: 0;
}
.footer-family .family_list {
  min-width: 1065px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background-color: #fff;
  z-index: 3;
  padding: 40px 0;
  -webkit-box-shadow: 4px 4px 30px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 4px 30px 0px rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-family .family_list dl {
  padding: 0 40px;
}
.footer-family .family_list dl:not(:last-child) {
  border-right: 1px solid #ddd;
}
.footer-family .family_list dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  white-space: nowrap;
  font-size: 24px;
  font-weight: 500;
  color: var(--dark);
}
.footer-family .family_list dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 52px;
  margin-top: 33px;
  gap: 10px;
}
.footer-family .family_list dd ul {
  width: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.footer-family .family_list dd ul li a {
  color: var(--medium);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.57;
}
.footer-family .family_list_close {
  position: absolute;
  right: 4%;
  top: 5px;
  font-size: 30px;
  color: var(--navy);
}

.top-btn {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  position: fixed;
  bottom: 70px;
  right: 50%;
  -webkit-transform: translateX(800px);
          transform: translateX(800px);
  -webkit-filter: drop-shadow(4px 4px 30px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(4px 4px 30px rgba(0, 0, 0, 0.15));
  z-index: 99;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.top-btn.hide {
  opacity: 0;
  visibility: hidden;
}

@media all and (max-width: 1700px) {
  .top-btn {
    right: 3%;
    -webkit-transform: none;
            transform: none;
  }
}
@media all and (max-width: 1200px) {
  .footer-family .family_list {
    min-width: 960px;
  }
  .footer-family .family_list dl {
    padding: 0 20px;
  }
  .footer-family .family_list dt {
    gap: 10px;
    font-size: 18px;
  }
  .footer-family .family_list dd {
    padding-left: 43px;
  }
  .footer-family .family_list dd ul {
    width: 150px;
  }
}
@media all and (max-width: 1024px) {
  .show-1024 {
    display: block !important;
  }
  .hide-1024 {
    display: none !important;
  }
  .header-lang button span {
    width: 28px;
    height: 28px;
    margin-right: 0;
    background-image: url(/image/common/global_icon_active_m.svg);
  }
  .header-lang ul {
    left: 50%;
    right: auto;
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
  }
  .header-gnb {
    display: none;
  }
  .header-gnb > a {
    display: none !important;
  }
  .header-gnb ul {
    display: block;
    top: 50px;
  }
  .header-gnb ul li {
    max-width: none;
    border-left: none;
    border-bottom: 1px solid #ddd;
    padding: 0;
  }
  .header-gnb ul li:first-child {
    padding-left: 0;
  }
  .header-gnb ul li:last-child {
    padding-right: 0;
  }
  .header-gnb ul li > a {
    font-size: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 25px 4%;
  }
  .header-gnb ul li > a i {
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header-gsnb {
    height: 100vh;
    background-color: #fff;
  }
  .header-gnb__depth01.on {
    color: var(--orange);
  }
  .header-gnb__depth01.on i {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .header-gnb__depth02 {
    display: none;
    background: #FBFAFF;
    padding: 25px 4%;
    margin-top: 0;
  }
  .header-gnb__depth02 a {
    display: table;
  }
  .header-gnb__depth02 a:not(:last-child) {
    margin-bottom: 30px;
  }
  .footer-family .family_list {
    min-width: auto;
    display: block;
  }
  .footer-family .family_list dl {
    padding: 0;
    margin: 0px 20px;
  }
  .footer-family .family_list dl:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
@media all and (max-width: 768px) {
  .show-768 {
    display: block !important;
  }
  .hide-768 {
    display: none !important;
  }
  .footer-family .family_list {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100vh;
    overflow-y: scroll;
    -webkit-transform: none;
            transform: none;
  }
  .footer-family .family_list dd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 15px;
  }
}
@media all and (max-width: 640px) {
  .show-640 {
    display: block !important;
  }
  .hide-640 {
    display: none !important;
  }
  .header .inner {
    height: 70px;
  }
  .header .inner > h1 {
    width: 130px;
  }
  .header-lang button span {
    width: 20px;
    height: 20px;
  }
  .header-sideMenu {
    font-size: 25px;
  }
  .header-gnb ul {
    top: 25px;
  }
  .header-gnb ul li > a {
    font-size: 19px;
    padding: 20px 4%;
  }
  .header-gnb__depth02 {
    padding: 20px 4%;
  }
  .header-gnb__depth02 a {
    font-size: 14px;
  }
  .header-gnb__depth02 a:not(:last-child) {
    margin-bottom: 20px;
  }
  .common-btn a, .common-btn button {
    font-size: 14px;
    width: 140px;
    height: 40px;
  }
  .view-more {
    font-size: 14px;
  }
  .footer > .inner {
    height: 60px;
  }
  .footer-logo {
    width: 110px;
  }
  .footer-family button {
    font-size: 12px;
    gap: 30px;
  }
  .footer address {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    gap: 0;
  }
  .footer address p {
    font-size: 12px;
  }
  .footer-bottom .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
  }
  .footer-bottom ul li a {
    font-size: 12px;
  }
  .footer-bottom .copy {
    font-size: 12px;
  }
  .top-btn {
    bottom: 3%;
    width: 45px;
    height: 45px;
  }
}