@charset "utf-8";

/* 공통 */
html {
  font-size: 16px;
  transition: font-size 0.4s ease-in-out;
}

.inner {
  width: 1280px;
}

/* 헤더 */
#hd {
  background-color: rgba(255, 255, 255, 1);
  min-width: 100%;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
  border-bottom: none;
  height: auto;
  transition: all 0.4s ease-in-out;
  border-bottom: 1px solid #fff;
}

#hd.scrolled {
  border-bottom: 1px solid #d6ccc8;
}

#skip_to_container {
  display: none;
}

#hd_wrapper {
  margin: 0 auto;
  width: 1280px;
  display: flex;
  align-items: center;
  height: 96px;
  justify-content: space-between;
  align-items: stretch;
  transition: padding 0.6s ease-in-out, height 0.6s ease-in-out;
}

#logo {
  padding: 0;
  height: auto;
  display: flex;
  align-items: center;
}

#logo > a > img {
  width: 180px;
  padding: 0;
  height: auto;
  display: flex;
  align-items: center;
  transition: width 0.4s ease-in-out;
}

#gnb {
  display: flex;
  align-items: center;
}

.gnb_wrap {
  width: auto;
  height: 100%;
}

#gnb #gnb_1dul {
  width: auto;
  display: flex;
  border-bottom: 0px;
  height: 100%;
}

li.gnb_1dli {
  font-size: 21px;
  height: 100%;
  display: flex;
  align-items: center;
}

.gnb_1dli .gnb_1da {
  display: block;
  color: #333;
  font-weight: 600;
  font-family: "Pretendard", "Malgun Gothic", sans-serif;
  padding: 10px;
  margin: auto 20px;
  line-height: normal;
}

.gnb_2dul {
  position: fixed;
  top: 96px;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  background-color: rgba(0, 0, 0, 0.8);
  height: 96px;
}

.gnb_1dli_over .gnb_2dul,
.gnb_1dli_over2 .gnb_2dul {
  visibility: visible;
  opacity: 1;
}

#gnb .gnb_1dli:hover > a,
#hd.scrolled .gnb_1dli:hover > a {
  color: #f9c041;
  transition: background-color 0.3s ease-out;
}

#gnb .gnb_1dli:hover > a {
  color: #f9c041;
  transition: background-color 0.3s ease-out;
}

.gnb_2dul .gnb_2dul_box {
  width: 100%;
  display: flex;
  width: 1520px;
  margin: 0 auto;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.gnb_2dli .gnb_2da {
  font-size: 18px;
  font-weight: 500;
  padding: 4px 20px;
  text-align: center;
  color: #fff;
}

.gnb_2dli .gnb_2da:hover {
  color: #f9c041;
  transition: all 0.2s ease-out;
}

#hd_wrapper .hd_login {
  color: #333;
  display: flex;
  position: static;
  align-items: center;
  gap: 20px;
}

.hd_login_loginBtn a {
  color: #333;
}

#hd_wrapper .hd_login span {
  font-weight: 600;
}

.hd_login li {
  margin: 0;
  padding: 20px 0;
  border: 0;
  font-size: 18px;
}

.hd_login li.hd_login_nick {
}

.hd_login li:hover {
  cursor: pointer;
}

.hd_login li a.hd_login_logoutBtn,
.hd_login li a.tnb_admin {
  color: #999;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  padding: 8px 8px;
  border-radius: 2px;
  border: 1px solid #d6d6d6;
}

/* 상단햄버거 버튼 */
.gnb_mnal {
  display: block;
}

/* 콘텐츠 */

/* 바디 */
#wrapper,
#container_wr {
  width: 100%;
}

#container_wr {
  display: flex;
  flex-direction: column;
}

#container {
  width: 100%;
  margin: 0;
}

/* 상단 타이틀 */

#container_title {
  display: flex;
  flex-direction: column;
}

.header_top_title {
  width: 100%;
  margin-top: 96px;
  height: 350px;
  position: relative;
  overflow: hidden;
}
.header_top_title_bgImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  object-position: 100% 50%;
  transform: scale(1);
  animation: scale 2s ease;
}

@keyframes scale {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.header_top_title_text {
  position: absolute;
  font-size: 60px;
  color: #fff;
  font-weight: 600;
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 100px;
  animation: slideUp 1.5s ease;
}

@keyframes slideUp {
  0% {
    transform: translate(-50%, 50px);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.header_top_menu {
  width: 100%;
  border-bottom: 1px solid #d6ccc8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header_top_menu_ul {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.header_top_menu_li {
  display: flex;
  flex-direction: column;
  padding: 10px 18px;
  gap: 6px;
  align-items: center;
}

.header_top_menu_li a {
  font-size: 18px;
  color: #848484;
  font-weight: 500;
}

.header_top_menu_li.active a {
  color: #621990;
  font-weight: 700;
}

.header_top_menu_icon {
  display: none;
}

.header_top_menu_icon.active {
  display: block;
}

/* 상단 타이틀 어드민 */
.header_adm_bgImgEditBtn {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid #fff;
  background: none;
}

.header_adm_bgImgEditor_bg {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}

.header_adm_bgImgEditor_bg.open {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header_adm_bgImgEditor_form {
  width: 50%;
  height: 50%;
  background-color: #fff;
}

/* 푸터 */
#ft_bg {
  width: 100%;
  min-width: 100%;
  background-color: #424242;
}

#ft {
  width: 1280px;
  margin: 0 auto;
  height: auto;
  text-align: left;
  background-color: #424242;
}

.ft_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  color: #fff;
}

.ft_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  color: #fff;
  gap: 30px;
}

.ft_content .ft_title {
  font-size: 18px;
  font-weight: 600;
}

.ft_content .ft_title {
  font-size: 18px;
  font-weight: 600;
}

.ft_content .ft_buttons {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #fff;
  opacity: 0.9;
  font-weight: 600;
}

.ft_content .ft_buttons a {
  color: #fff;
  text-decoration: underline;
}

.ft_content .ft_info {
  font-size: 14px;
  opacity: 0.6;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
