@charset "UTF-8";
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  transition: 0.2s all ease-in-out;
  z-index: 900;
  /* 모바일 햄버거 메뉴 추가 */
  /* 모바일에서 햄버거 메뉴 및 모바일 네비게이션 표시 */
}
.header .container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header .container > img {
    width: 80%;
  }
}
.header .container #h-logo {
  width: auto;
  height: 60%;
}
.header .container #h-logo > img {
  width: auto;
  height: 100%;
  transition: 0.2s all ease-in-out;
}
.header .container .h-global-nav {
  height: 100%;
  display: flex;
  flex-direction: row;
  grid-gap: 40px;
}
.header .container .h-global-nav .depth-1 {
  position: relative;
  height: 100%;
}
.header .container .h-global-nav .depth-1 > a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: white;
  transition: 0.2s all ease-in-out;
}
.header .container .h-global-nav .depth-1 > a:hover {
  color: #3162D6;
  border-bottom: 8px solid #3162D6;
}
.header .container .h-global-nav .depth-1:hover .depth-2 {
  max-height: 500px;
}
.header .container .h-global-nav .depth-1 .depth-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 120px;
  height: auto;
  max-height: 0;
  display: flex;
  flex-direction: column;
  background: white;
  transform: translateX(-50%);
  box-shadow: 2px 2px 8px -4px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: 0.2s all ease-in-out;
}
.header .container .h-global-nav .depth-1 .depth-2 .d-2-item {
  width: 100%;
}
.header .container .h-global-nav .depth-1 .depth-2 .d-2-item > a {
  display: block;
  width: 100%;
  padding: 14px 0;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  color: black;
  background: transparent;
  transition: 0.2s all ease-in-out;
}
.header .container .h-global-nav .depth-1 .depth-2 .d-2-item > a:hover {
  color: white;
  background: #3162D6;
}
.header.active, .header:hover {
  background: white;
}
.header.active .container .h-global-nav .depth-1 > a, .header:hover .container .h-global-nav .depth-1 > a {
  color: black;
  font-weight: 500;
}
.header.active .container .h-global-nav .depth-1 > a:hover, .header:hover .container .h-global-nav .depth-1 > a:hover {
  color: #3162D6;
}
.header.active .container #h-logo > img, .header:hover .container #h-logo > img {
  content: url("/img/head_logo_2.png");
}
.header .hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  transition: 0.3s ease-in-out;
}
.header .hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  margin: 3px 0;
  transition: 0.3s ease-in-out;
}
.header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 8px;
}
.header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: -8px;
}
.header .mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  transition: right 0.3s ease-in-out;
  z-index: 999;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
}
.header .mobile-menu.show {
  right: 0;
}
.header .mobile-menu .mobile-logo {
  display: block;
  padding: 20px;
  cursor: pointer;
}
.header .mobile-menu .mobile-logo > img {
  width: 100%;
}
.header .mobile-menu .mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header .mobile-menu .mobile-nav li {
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.header .mobile-menu .mobile-nav li > a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  display: block;
}
.header .mobile-menu .mobile-nav li > ul > li > a {
  font-size: 13px;
}
.header .mobile-menu .close-btn {
  position: absolute;
  bottom: 10%;
  left: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #3162D6;
}
.header .mobile-sub-menu {
  display: none; /* 초기 상태에서 숨기기 */
  transition: max-height 0.3s ease-out; /* 부드러운 전환 효과 */
  overflow: hidden; /* 넘치는 부분 숨기기 */
  max-height: 0; /* 기본 최대 높이 설정 */
}
.header .mobile-sub-menu.show {
  display: block; /* 메뉴가 열리면 보이도록 설정 */
  max-height: 560px; /* 적절한 최대 높이 설정 (필요에 따라 조정 가능) */
  overflow-y: scroll; /* 스크롤바 추가 */
}
@media (max-width: 1280px) {
  .header .hamburger {
    display: flex;
  }
  .header .h-global-nav {
    display: none;
  }
}

@media (max-width: 1740px) {
  .header .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .header {
    height: 70px;
  }
  .header .container .h-global-nav {
    display: none;
  }
  .header .container .m-menu-open {
    padding: 0;
    display: flex;
  }
}
footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: black;
}
footer .footer_wrap {
  width: 100%;
  max-width: 1670px;
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
}
@media (max-width: 1024px) {
  footer .footer_wrap {
    flex-direction: column;
    gap: 40px;
  }
}
footer .footer_wrap > .left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .footer_wrap > .left > .top > h2 {
  font-family: "Chosunilbo_myungjo";
  font-size: 45px;
  color: white;
  margin-bottom: 30px;
  font-weight: 300;
}
@media (max-width: 768px) {
  footer .footer_wrap > .left > .top > h2 {
    font-size: 25px;
  }
}
footer .footer_wrap > .left > .bottom {
  width: 100%;
  max-width: 650px;
}
@media (max-width: 768px) {
  footer .footer_wrap > .left > .bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
footer .footer_wrap > .left > .bottom > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .footer_wrap > .left > .bottom > div {
    flex-direction: column;
    align-items: start;
    width: 350px;
  }
}
footer .footer_wrap > .left > .bottom h2 {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5490196078);
}
footer .footer_wrap > .left > .bottom h2 > span {
  font-weight: 500;
  color: white;
  margin-right: 24px;
}
footer .footer_wrap > .right {
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media (max-width: 1024px) {
  footer .footer_wrap > .right {
    align-items: center;
  }
}
footer .footer_wrap > .right > .top {
  display: flex;
  gap: 63px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  footer .footer_wrap > .right > .top {
    flex-direction: column;
    gap: 20px;
  }
}
footer .footer_wrap > .right > .top > .left {
  display: flex;
}
footer .footer_wrap > .right > .top > .left > h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6235294118);
}
footer .footer_wrap > .right > .top > .left > h2 > a {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6235294118);
}
footer .footer_wrap > .right > .top > .right {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
footer .footer_wrap > .right > .bottom > h2 {
  font-size: 15px;
  color: rgba(207, 207, 207, 0.6862745098);
  font-weight: 400;
}/*# sourceMappingURL=common.css.map */