@charset "UTF-8";
/* 인풋스타일*/
input::-moz-placeholder {
  font-size: inherit;
}
input::placeholder {
  font-size: inherit;
}

/* 스킵메뉴 */
.skip-nav {
  z-index: 5100;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: -100%;
  width: 100%;
}
.skip-nav.active {
  top: 0;
}
.skip-nav .skip {
  padding: 1rem;
  flex-basis: 50%;
  text-align: center;
  background-color: #fff;
}
.skip-nav .skip:focus {
  color: #fff;
  background-color: #a7a7a7;
}

.header-wrap {
  z-index: 5000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 100vw;
  background-color: #fff;
}
.header-wrap.scroll {
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.05);
}
.header-wrap.active .header .logo img {
  content: url("../img/common/color-logo.svg");
}
.header-wrap.active .lang img {
  content: url("../img/icon/h-lang.svg");
}
.header-wrap.active .header-bg {
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.05);
}

.header {
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin: 0 auto;
  padding: 4.2rem 4rem 0;
  max-width: 162rem;
  min-height: 12rem;
  color: #333;
  background-color: transparent;
  transition: background-color 0.3s 0.6s, height 0.6s 0s;
  -webkit-transition: background-color 0.3s 0.6s, height 0.6s 0s;
  -moz-transition: background-color 0.3s 0.6s, height 0.6s 0s;
  -ms-transition: background-color 0.3s 0.6s, height 0.6s 0s;
  -o-transition: background-color 0.3s 0.6s, height 0.6s 0s;
}
.header.hover::after {
  opacity: 1;
}
.header .logo {
  width: 18.7rem;
}
.header .nav .gnb > li.active > .dep-01 {
  color: #01518C;
}
.header .lnb > li > .dep-02:hover, .header .lnb > li > .dep-02:focus {
  color: #01518C;
}

.gnb {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: inherit;
}
.gnb > li {
  position: relative;
  height: 3.8rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  line-height: 3.8rem;
}
.gnb > li > .dep-01 {
  display: block;
  position: relative;
  padding: 0 4.2rem;
  height: 100%;
  text-align: center;
  font-weight: inherit;
}
.gnb > li > .dep-01::before {
  position: absolute;
  left: 0;
  top: 7.8rem;
  content: "";
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: center center;
  background-color: #1376C6;
  transition: all 0.4s 0.2s;
  -webkit-transition: all 0.4s, 0.2s;
  -moz-transition: all 0.4s, 0.2s;
  -ms-transition: all 0.4s, 0.2s;
  -o-transition: all 0.4s, 0.2s;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
}
.gnb > li > .dep-01:focus::before {
  transform: scaleX(1);
  transition: all 0.4s 0.2s;
  -webkit-transition: all 0.4s, 0.2s;
  -moz-transition: all 0.4s, 0.2s;
  -ms-transition: all 0.4s, 0.2s;
  -o-transition: all 0.4s, 0.2s;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}
.gnb > li.active > .dep-01::before {
  transform: scaleX(1);
  transition: all 0.4s 0.2s;
  -webkit-transition: all 0.4s, 0.2s;
  -moz-transition: all 0.4s, 0.2s;
  -ms-transition: all 0.4s, 0.2s;
  -o-transition: all 0.4s, 0.2s;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}

.lnb {
  display: none;
  position: relative;
  top: 4.2rem;
  padding: 2.2rem 0 4.2rem;
  width: 100%;
  height: 100%;
  text-align: center;
}
.lnb > li {
  position: relative;
  width: inherit;
  min-width: 100%;
  height: 3.6rem;
}
.lnb > li > .dep-02 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  display: block;
  height: 3.5rem;
  line-height: 3.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #939BA2;
  white-space: nowrap;
}
.lnb > li > .dep-02:hover, .lnb > li > .dep-02:focus {
  font-weight: 800;
  color: #fff;
}

.header-bg {
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transition: background-color 0.5s 0;
  -webkit-transition: background-color 0.5s, 0;
  -moz-transition: background-color 0.5s, 0;
  -ms-transition: background-color 0.5s, 0;
  -o-transition: background-color 0.5s, 0;
}
.header-bg .top-bg {
  position: relative;
  width: 100%;
  height: 12rem;
  background-color: transparent;
  transition: background-color 0.5s 0.5s;
  -webkit-transition: background-color 0.5s, 0.5s;
  -moz-transition: background-color 0.5s, 0.5s;
  -ms-transition: background-color 0.5s, 0.5s;
  -o-transition: background-color 0.5s, 0.5s;
}
.header-bg .top-bg::after {
  z-index: 1;
  position: absolute;
  top: 12rem;
  width: 100%;
  height: 1px;
  content: "";
  background-color: transparent;
}
.header-bg.active .top-bg {
  background-color: #fff;
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
}
.header-bg.active .top-bg::after {
  background-color: #E9EBEC;
}
.header-bg .h-inner {
  background-color: #fff;
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
}

.lang {
  position: relative;
  min-width: 5.1rem;
  font-size: 1.4rem;
  color: #939BA2;
  text-align: center;
}
.lang .select-btn {
  margin: 0.8rem 0;
}
.lang .option {
  display: none;
  position: absolute;
  top: 4.8rem;
  padding: 0.4rem 0;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #4f555a;
}
.lang .option::before {
  position: absolute;
  left: 50%;
  top: -1.2rem;
  width: 1rem;
  height: 1.2rem;
  content: "";
  border-style: solid;
  border-width: 0 0.6rem 1.2rem 0.6rem;
  border-color: transparent transparent #4f555a transparent;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.lang .option a {
  display: block;
  padding: 0.4rem;
}
.lang .option a:focus {
  color: #fff;
  font-weight: 700;
}
.lang .option li:hover > a, .lang .option li.selected > a {
  color: #fff;
  font-weight: 700;
}

.mobile-btn {
  display: none;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  outline: 0 none;
}
.mobile-btn span {
  position: absolute;
  left: 0.25rem;
  width: 2.5rem;
  height: 0.2rem;
  border-radius: 0.2rem;
  background-color: #fff;
  -webkit-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  -ms-border-radius: 0.2rem;
  -o-border-radius: 0.2rem;
}
.mobile-btn span:nth-of-type(1) {
  top: 0.35rem;
  transform: rotate(0);
  transform-origin: right center;
  transition: transform 0.6s;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  -webkit-transition: transform 0.6s;
  -moz-transition: transform 0.6s;
  -ms-transition: transform 0.6s;
  -o-transition: transform 0.6s;
}
.mobile-btn span:nth-of-type(2) {
  opacity: 1;
  top: 1.3rem;
  transition: opacity 0.7s;
  -webkit-transition: opacity 0.7s;
  -moz-transition: opacity 0.7s;
  -ms-transition: opacity 0.7s;
  -o-transition: opacity 0.7s;
}
.mobile-btn span:nth-of-type(3) {
  top: 2.2rem;
  transform: rotate(0);
  transform-origin: right center;
  transition: transform 0.6s;
  -webkit-transition: transform 0.6s;
  -moz-transition: transform 0.6s;
  -ms-transition: transform 0.6s;
  -o-transition: transform 0.6s;
}
.mobile-btn.active span {
  background-color: #333;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.mobile-btn.active span:nth-of-type(1) {
  transform: rotate(-45deg);
  transition: all 0.6s;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.mobile-btn.active span:nth-of-type(2) {
  opacity: 0;
  transition: all 0s;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
}
.mobile-btn.active span:nth-of-type(3) {
  transform: rotate(45deg);
  transition: all 0.6s;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.mobile-btn span {
  background-color: #333;
}

@media all and (max-width: 85.375rem) {
  .header-wrap {
    min-height: 8rem;
  }
  .header-wrap .nav {
    display: none;
  }
  .header-wrap.active {
    height: 100%;
    background-color: #fff;
  }
  .header-wrap.active .header {
    height: 100%;
    color: #333;
  }
  .header-wrap.active .header .logo img {
    content: url("../img/common/color-logo.svg");
  }
  .header-wrap.active .header .nav {
    display: block;
    width: 100%;
    height: 100%;
  }
  .header-wrap.active .header .lang {
    display: block;
  }
  .header-wrap.active .mobile-btn span {
    background-color: #333;
  }
  .header-wrap .dep-01 {
    color: #333;
  }
  .header {
    padding: 2rem 4rem 0;
    min-height: 8rem;
  }
  .nav {
    position: absolute;
    left: 50%;
    top: 9rem;
    padding-right: 0;
    width: 100%;
    height: calc(100% - 9rem);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .gnb {
    position: absolute;
    left: 50%;
    top: 10%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .gnb .dep-01.active::before, .gnb .dep-01:hover::before {
    transform: scaleX(0);
  }
  .lnb > li .dep-02:focus, .lnb > li .dep-02:hover {
    color: #1376C6;
  }
  .lang {
    display: none;
    position: absolute;
    right: 8rem;
  }
  .lang img {
    content: url("../img/icon/h-lang.svg");
  }
  .mobile-btn {
    display: block;
  }
  .header-bg .top-bg {
    height: 8rem;
  }
}
@media all and (max-width: 64rem) {
  .header {
    padding: 2rem 2rem 0;
  }
  .header .logo {
    padding-top: 0.7rem;
  }
  .nav {
    top: 12rem;
    overflow-y: scroll;
  }
  .nav::-webkit-scrollbar {
    width: 0;
  }
  .gnb {
    display: block;
    position: relative;
    top: 0;
    text-align: center;
  }
  .gnb > li {
    height: auto;
    min-height: 3.8rem;
  }
  .gnb > li .dep-01 {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
  }
  .gnb > li .dep-01::before {
    top: 1rem;
    left: 2rem;
    width: 1rem;
    height: 1rem;
    transform: scale(0);
    transition: transform 0.3s 0;
    -webkit-transition: transform 0.3s, 0;
    -moz-transition: transform 0.3s, 0;
    -ms-transition: transform 0.3s, 0;
    -o-transition: transform 0.3s, 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }
  .gnb > li.active .dep-01 {
    transform: scale(1);
    transition: transform 0.3s 0;
    -webkit-transition: transform 0.3s, 0;
    -moz-transition: transform 0.3s, 0;
    -ms-transition: transform 0.3s, 0;
    -o-transition: transform 0.3s, 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  .lnb {
    top: 0;
    padding-bottom: 2rem;
  }
  .lnb > li > .dep-02 {
    position: relative;
  }
  .lnb .dep-02 {
    display: inline-block;
  }
  .header-bg .top-bg {
    height: 7rem;
  }
  .lang {
    margin-top: 0.25rem;
    right: 6rem;
  }
  .mobile-btn {
    margin-top: 0.5rem;
  }
}
@media all and (max-width: 64rem) {
  .header-wrap {
    min-height: 7rem;
  }
  .header {
    padding: 1.5rem 2rem;
    min-height: 7rem;
  }
  .header .logo {
    width: 14rem;
  }
  .header .logo img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .nav .gnb > li {
    padding-bottom: 0;
  }
  .lang {
    right: 5rem;
  }
  .mobile-btn {
    margin-top: 0.5rem;
  }
  .header-bg .top-bg {
    height: 6rem;
  }
}
/*
푸터 */
.footer-wrap {
  border-top: 2px solid #939BA2;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 6rem 0 12rem;
}
.footer .left {
  max-width: 40%;
}
.footer .left .f-logo {
  margin-bottom: 4rem;
}
.footer .right {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 89rem;
}
.footer .right dl {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 3rem 0;
}
.footer .right dl:not(:nth-of-type(2)) dt {
  height: 2.8rem;
}
.footer .right dl:last-child dd ul {
  gap: 2.8rem 0;
}
.footer .right dd ul {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1.4rem 0;
}
.footer .right .no-wrap {
  white-space: nowrap;
}
.footer .f-tit,
.footer dt {
  font-size: var(--sm-f);
  font-weight: 700;
}
.footer .copy,
.footer dd {
  font-size: var(--sm-f);
}
.footer .copy {
  font-weight: 400;
  color: #939BA2;
}
.footer .address {
  margin: 2.4rem 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.footer .address dl {
  margin-bottom: 2rem;
  width: 100%;
}
.footer .address dl dt {
  margin-bottom: 0.8rem;
}
.footer .address dl:nth-of-type(1) {
  margin-bottom: 0.4rem;
}
.footer .address dl:last-child {
  margin-bottom: 0;
}
.footer .address dl:nth-of-type(2), .footer .address dl:nth-of-type(3) {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.footer .address dl:nth-of-type(2) dt, .footer .address dl:nth-of-type(3) dt {
  margin-bottom: 0;
}
.footer .address dl:nth-of-type(3) {
  margin-left: 0.8rem;
  padding-left: 0.8rem;
}
.footer .address dl:nth-of-type(3)::before {
  position: absolute;
  left: -0.4rem;
  content: "|";
}

@media all and (max-width: 85.375rem) {
  .footer {
    flex-direction: column-reverse;
    gap: 3rem 0;
    padding-bottom: 6rem;
  }
  .footer .left {
    max-width: none;
  }
  .footer .left .f-logo {
    margin-bottom: 4rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .footer .right {
    grid-template-columns: repeat(3, minmax(auto, 30%));
    gap: 2rem 0;
  }
}
@media all and (max-width: 47.9375rem) {
  .footer {
    padding-top: 3rem;
  }
  .footer .left .f-logo {
    margin-bottom: 2rem;
  }
  .footer .right dl {
    gap: 2rem 0;
  }
  .footer .right dl:not(:nth-of-type(2)) dt {
    height: 2.4rem;
  }
  .footer .address dl {
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
  }
  .footer .address dl:not(:nth-of-type(2), :nth-of-type(3)) {
    flex-direction: column;
  }
  .footer .address dl:not(:nth-of-type(2), :nth-of-type(3)) dt {
    width: 100%;
  }
  .footer .address dl:nth-of-type(2), .footer .address dl:nth-of-type(3) {
    margin-left: 0;
    padding-left: 0;
  }
  .footer .address dl:nth-of-type(2)::before, .footer .address dl:nth-of-type(3)::before {
    display: none;
  }
  .footer .address dl dd {
    font-size: 1.2rem;
  }
  .footer .copy {
    font-size: 1.2rem;
  }
}
.inner {
  margin: 0 auto;
  padding: 0 4rem;
  width: 100%;
  max-width: 162rem;
}

@media all and (max-width: 63.9375rem) {
  .inner {
    padding: 0 2rem;
  }
}