
#wrap{
  width: 100%;
  height: 100%;
  position: relative;
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}

.black_dim {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1e2b3783;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 95;
  backdrop-filter: blur(5px);
  transition: 0.2s ease;
}

.mo_black_dim {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1e2b3783;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 95;
  backdrop-filter: blur(5px);
  transition: 0.6s ease;
}

.black_dim.on, .mo_black_dim.on {
  top: 0;
  visibility: visible;
  opacity: 1;
  pointer-events: inherit;
}

.none_point{
  pointer-events: none;
}

/* 텍스트 포인트 원 */
.point_circle{
  width: 4px;
  height: 4px;
  background: var(--green-200);
  border-radius: 1000px;
  transition: 0.2s ease;
}

/* HS여름물빛체 타이틀 */
.contents_hs_title{
  font-size: 24px;
  font-family: var(--HSSummer);
  color: var(--gray-900);
}


/* swiper 페이징/화살표 */
.slider_control{
  border-radius: 1000px;
  background: #ffffffb2;
  display: inline-flex;
  align-items: center;
  padding: 0 20px 0 25px;
  min-width: 140px;
  box-shadow: 5px 5px 10px #00000015;
}

.slider_nav{
  display: flex;
  align-items: center;
}

.slider_nav button{
  background: none;
  border: none;
}

.slider_next,.slider_prev{
  padding: 18px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.slider_prev_parrow{
 width: 12px;
 height: 12px;
 border-top: 2px solid var(--black);
 border-right: 2px solid var(--black);
 transform: rotate(-135deg); 
}

.slider_prev_narrow{
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--black);
  border-right: 2px solid var(--black);
  transform: rotate(45deg); 
 }

.slider_fraction {
  font-size: 16px;
  font-weight: var(--medium);
  color: var(--gray-400) !important;
}

.slider_fraction .swiper-pagination-current {
  font-size: 16px;
  font-weight: var(--bold);
  color: var(--black);
}

.slider_fraction .swiper-pagination-total {
  font-weight: var(--medium);
  color: var(--gray-400)
}

.swiper-pagination-fraction {
  min-width: 45px !important;
}



/* 셀렉트 박스 */
.select_up_box {
  position: relative;
}

.select_up_btn {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.select_up_btn:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-25%) rotate(-45deg);
  transform-origin: center;
  transition: 0.3s ease;
}

.select_up_list_box {
  position: absolute;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  transition: 0.3s ease;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}

.select_up_list_box::-webkit-scrollbar {width: 0px; height: 100%;}
.select_up_list_box::-webkit-scrollbar-thumb {background-color: var(--gray-400); border-radius: 100px;}
.select_up_list_box::-webkit-scrollbar-track {background-color: none;}

.select_up_list_box.on {
  visibility: visible;
  opacity: 1;
  pointer-events: unset;
}

.select_up_ul {
  padding: 0 20px;
}

.select_up_list a {
  display: block;
  transition: 0.3s ease;
}

.select_up_list a span {
  color: var(--white);
}


/* more 버튼 */
.more_box{
  width: 40px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 1000px;
  transition: 0.3s ease;
}

.more_box a{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.h_line{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 2px;
  background: var(--gray-900);
}

.v_line{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 24px;
  background: var(--gray-900);
}






/* 돌아가기 버튼 */
.back_btn_box{
  min-width: 170px;
  border-radius: 16px;
  background: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.back_btn_box:hover{
  background: var(--gray-800);
}

.back_btn_box a{
  width: 100%;
  height: 100%;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
}

.back_btn_text{
  font-size: 14px;
  font-weight: var(--bold);
  color: var(--white);
}

/* 동그라미 화살표 */
.circle_arrow_box{
  background: var(--black);
  width: 24px;
  min-width: 24px;
  aspect-ratio: 1/1;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle_arrow_box .circle_arrow{
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(-135deg) translate(-1px, 1px);
}









/* 비밀번호 입력 팝업 */
/*.pw_popup_wrap {*/
/*  position: fixed;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  top: 0;*/
/*  left: 0;*/
/*  z-index: 9999;*/
/*  pointer-events: none;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*}*/

/*.pw_popup_wrap.on {*/
/*  pointer-events: auto;*/
/*}*/

/*.pw_popup_wrap .pw_popup_box {*/
/*  background: #fff;*/
/*  position: relative;*/
/*  z-index: 9999;*/
/*  border-radius: 20px;*/
/*  padding: 20px;*/
/*  text-align: center;*/
/*  width: 100%;*/
/*  max-width: 480px;*/
/*  margin: 0 16px;*/
/*  opacity: 0;*/
/*  transform: scale(0.7);*/
/*}*/

/*.pw_popup_wrap.on .pw_popup_box {*/
/*  display: block;*/
/*  animation: view3 0.3s forwards cubic-bezier(0, 0.49, 0.25, 1);*/
/*}*/

/* 비밀번호 입력 팝업 */
.pw_popup_wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none; /* ✅ 처음에는 안 보이도록 설정 */
  align-items: center;
  justify-content: center;
}

.pw_popup_wrap.on {
  display: flex; /* ✅ .on이 추가되면 flex 적용 */
  pointer-events: auto;
}

.pw_popup_wrap .pw_popup_box {
  background: #fff;
  position: relative;
  z-index: 9999;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  width: 100%;
  max-width: 480px;
  margin: 0 16px;
  opacity: 0; /* ✅ 처음에는 안 보이도록 설정 */
  transform: scale(0.7);
}

.pw_popup_wrap.on .pw_popup_box {
  display: block;
  opacity: 1; /* ✅ 투명도 변경 */
  transform: scale(1); /* ✅ 원래 크기로 */
  animation: view3 0.3s forwards cubic-bezier(0, 0.49, 0.25, 1);
}


@keyframes view3{
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  70% {
      transform: scale(1.05);
  }
  100% {
      transform: scale(1);
      opacity: 1;
  }
}

.pw_popup_wrap .pw_popup_box .tit_box {
  margin-bottom: 20px;
}

.pw_popup_wrap .pw_popup_box .tit_box img {
  margin-bottom: 8px;
}

.pw_popup_wrap .pw_popup_box .tit_box .tit_txt {
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
}

.pw_popup_wrap .pw_popup_box .ip_box {
  display: flex;
  flex-direction: column;
  max-height: 360px;
  overflow-y: auto;
}

.pw_popup_wrap .pw_popup_box .ip_box input {
  height: var(--input_high);
  background: var(--input_background_color);
  border: 1px solid var(--input_border_color);
  padding: 0 16px;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Pretendard';
  font-weight: 500;
  color: var(--gray-600);
  text-align: center;
}

.pw_popup_wrap .pw_popup_box .ip_box input:focus {
  background: var(--primary_bg_color); /* 배경색 변경 */
  border-color: var(--primary_color); /* 포커스 시 테두리 색상 변경 */
  outline: none; /* 기본 포커스 효과 제거 */
}

.pw_popup_wrap .pw_popup_box .ip_box .guide_txt {
  color: var(--primary-color);
  font-weight: 500;
  line-height: 120%;
  font-size: 14px;
  margin-top: 8px;
  display: block;
}

.basic_btn_box {
  padding-top: 40px;
}


.basic_btn_box ul {
  display: flex;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.basic_btn_box ul .btn_list {
  width: 100%;
  max-width: 184px;
  height: 52px;
  border-radius: 8px;
  background: var(--gray-400);
  transition: 0.2s ease;
}


.pw_popup_wrap .basic_btn_box ul .btn_list {
  width: calc(100% - 8px);
  max-width: unset;
}

.basic_btn_box ul .btn_list a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.basic_btn_box ul .btn_list a span {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.basic_btn_box ul .btn_list.complete {
  background: var(--gray-900);
}

.basic_btn_box ul .btn_list.complete {
  background: var(--gray-900);
}

.basic_btn_box ul .btn_list button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: none;
}

.basic_btn_box ul .btn_list button span {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.basic_btn_box ul .btn_list:hover {
  background: var(--primary-color);
}

.pw_popup_wrap .pw_popup_dim_box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #1e2b3783;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s ease;
}

.pw_popup_wrap.on .pw_popup_dim_box {
  opacity: 1;
  pointer-events: auto;
}






/* 반응형 */
@media(max-width : 1600px){
}

@media(max-width : 1400px){
}

@media(max-width : 1200px){
}

@media(max-width : 1000px){
}

@media(max-width : 800px){
}

@media(max-width : 600px){
}

@media(max-width : 400px){
}





















