@charset "utf-8";
@font-face {
  font-family: "Happiness-Sans-Title";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2205@1.0/Happiness-Sans-Title.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GowunDodum-Regular";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/GowunDodum-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* board ============ */
/* 약관*/
#ctt,
.register {
  width: 75%;
  margin: 3% auto;
}
.community_policy_txt {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #e3c8bb;
  line-height: 2.1em;
  margin: 0 auto 6rem;
  border-radius: 4px;
  letter-spacing: 7px;
}
/* default ========*/
.swiper-slide a {
  cursor: default;
}
img {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}
section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
section img {
  width: 100%;
  height: auto;
}
.con_wrap {
  width: 100%;
  max-width: 1903px;
  margin: 0 auto;
  overflow: hidden;
}
.pos_absol {
  position: absolute;
}
.bk_cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bk_widthFull_c {
  background-size: 100% auto;
  background-position: center;
}
.bk_repeat_y {
  background-repeat: repeat-y;
}
.bk_repeat_x {
  background-repeat: repeat-x;
}
.bk_attach {
  background-attachment: fixed;
}
.bk_contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.txt_hide {
  text-indent: -99999px;
  color: transparent;
}
button {
  outline: none;
  border: none;
  background: transparent;
}
.non_click {
  pointer-events: none;
}
.d_flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.d_flex_c {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.d_flex_b {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.swiper-slide {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 5%;
  max-width: 85px;
  height: 10%;
  max-height: 85px;
  margin: 0;
  z-index: 10;
  cursor: pointer;
  background-size: 95% auto;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.5s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.5;
}
/* .swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("../img/btn_next.png");
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("../img/btn_prev.png");
} */
.swiper-button-next:after,
.swiper-button-prev:after {
  opacity: 0;
  visibility: hidden;
}
/* main_wrapper ======= */
.main_wrapper img {
  width: 100%;
  height: auto;
}
@media all and (min-width: 1930px) {

}


/* 퀵 메뉴 ----------------------*/
.nav-bar {
  position: fixed;
  top: 38%;
  right: 0;
  width: 92px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.nav-bar.active {
  opacity: 1;
  visibility: visible;
  top: 15.5%;
}
.sns-link img {
  filter: drop-shadow(-2px 2px 3px rgba(0, 0, 0, 0.2));
}
/* 하단 상담바 ----------------------*/
.btm_sangdam,
.btm_sangdam a {
  font-family: "Pretendard", "SpoqaHanSansNeo-Regular", dotum, sans-serif;
  font-weight: 900;
}
.btm_sangdam {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 0;
  z-index: 9999;
  text-align: center;
}
.btm_sangdam .con_wrap {
  min-width: 860px;
  margin: 0 auto;
}
.btm_sangdam span {
  display: inline-block;
  margin: 0 1.5rem 0 0;
  font-size: 2rem;
  color: #fff;
}
.btm_sangdam a {
  display: inline-block;
  padding: 0.2rem 1.5rem;
  border-radius: 30px;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  background: #004a7c;
  transition: 0.4s;
}
.btm_sangdam a:hover {
  background-color: #0f3c5a;
  color: #5cb6f3;
}

.btm_sangdam_bk {
  background: linear-gradient(270deg, #5cb6f4, #7eefff);
  background-size: 400% 400%;
  -webkit-animation: btmSangdamAni 5s ease infinite;
  -moz-animation: btmSangdamAni 5s ease infinite;
  animation: btmSangdamAni 5s ease infinite;
  box-shadow: 0 -1px 12px #00000063;
}

@-webkit-keyframes btmSangdamAni {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-moz-keyframes btmSangdamAni {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes btmSangdamAni {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* 이메일 무단 수집 거부 ------------ */
#mail_bpopup_form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.41);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#mail_bpopup_form.active {
  display: flex;
}
.mail_bpopup_wrap {
  width: 35%;
  min-width: 550px;
  background-color: #fff;
}
.mail_bpopup_btn_wrap {
  text-align: right;
  background-color: #130c00;
}
.mail_bpopup_btn_wrap span {
  display: inline-block;
  background-color: #4afff4;
  color: #fff;
}
.mail_bpopup_btn_wrap .mfp-close {
  display: inline-block;
  margin-top: -0.3rem;
  padding: 0 1rem;
  font-size: 2rem;
  color: #232323;
  line-height: 1.8em;
  vertical-align: middle;
}
.f_pop_tit {
  padding: 2rem 0 1rem;
  line-height: 1.8em;
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
}
.f_pop_txt00 {
  padding: 0 3rem 2rem;
  line-height: 1.8em;
  font-size: 1rem;
  text-align: center;
}
.f_pop_txt01 {
  padding: 0 3rem 2rem;
  line-height: 1.8em;
  font-size: 1rem;
}
