@charset "utf-8";
.fc-faaa3b {
  color: #faaa3b;
}
.fc-de662b {
  color: #de662b;
}
.fc-3f4a66 {
  color: #3f4a66;
}
.fc-4ca6fa {
  color: #4ca6fa;
}

#sitemap {
  display: none;
}

.hd_nav nav a {
  position: relative;
  transition: all 0.3s ease;
}

.hd_nav nav {
  gap: 55px;
}

.hd_nav nav a::after {
  content: '';
  position: absolute;
  top: -6px;
  right: -10px;
  width: 6px;
  height: 6px;
  background-color: #de662b;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.hd_nav nav a:hover::after {
  opacity: 1;
  transform: scale(1);
}
/* 헤더 기본 상태 (투명) */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  padding: 1.7% 0;
  background-color: transparent;
  transition: all 0.3s ease; /* 부드러운 전환 효과 */
}
/* 스크롤했을 때 헤더 배경 */
header.scrolled {
  background-color: rgba(255, 255, 255, 0.95); /* 약간 투명한 흰색 */
  backdrop-filter: blur(10px); /* 배경 블러 효과 (선택사항) */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 그림자 효과 (선택사항) */
}
/* mobile */
@media screen and (max-width: 767px) {
  body {
    width: 100vw;
  }
  header {
    padding: 5% 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .hd_nav {
    display: none;
  }

  /* site_map */
  #sitemap {
    display: block;
    width: 100%;
    height: 100vh;
    background: linear-gradient(-113deg, rgba(59, 129, 201, 0.8), #1d2087);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999999;
    transform: translateX(100%);
    transition: transform 0.8s;
  }
  #sitemap.show {
    transform: translateX(0);
  }
  .close_btn {
    display: flex;
    justify-content: flex-end;
    padding-right: 16px;
    padding-top: 25px;
  }
  .close_btn i {
    font-size: 25px;
  }
  .st_box {
    padding: 12vh 15% 0;
    overflow: auto;
    width: 100%;
    height: 100%;
  }
  .st_menu ul {
    width: 100%;
    display: none;
  }
  .st_menu p {
    padding: 15px 0;
  }
  .st_menu li {
    padding: 10px 0;
  }

  .hd {
    height: 60px;
    border-bottom: 1px solid #d9d9d9;
  }
}

/* tablet 세로기준 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  body {
    width: 100vw;
  }
  header {
    padding: 3% 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .hd_nav {
    display: none;
  }

  /* site_map */
  #sitemap {
    display: block;
    width: 100%;
    height: 100vh;
    background: linear-gradient(-113deg, rgba(59, 129, 201, 0.8), #15a2a2);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999999999999;
    transform: translateX(100%);
    transition: transform 0.8s;
  }
  #sitemap.show {
    transform: translateX(0);
  }
  .close_btn {
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
    padding-top: 38px;
  }
  .close_btn i {
    font-size: 30px;
  }
  .st_box {
    padding: 12vh 15% 0;
    overflow: auto;
    width: 100%;
    height: 100%;
  }
  .st_menu ul {
    width: 100%;
    display: none;
  }
  .st_menu p {
    padding: 15px 0;
  }
  .st_menu li {
    padding: 10px 0;
  }


}

/* 태블릿 아이패드미니 가로부터 ~ , 노트북 : 11인치  ~ 15인치 */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
}
