@font-face {
  font-family: 'S-CoreDream-3Light';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Tenada';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2210-2@1.0/Tenada.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* 1. Reset (간단한 리셋) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* 2. HTML 기본 */
  html, body {
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    font-family: 'S-CoreDream-3Light';
    font-size: 16px;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    gap: 80px;
    justify-content: center;
  }
  
  /* 3. 링크 */
  a {
    color: inherit;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* 4. 공통 유틸리티 */
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  .flex {
    display: flex;
  }
  
  .flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hidden {
    display: none;
  }
  
  .text-center {
    text-align: center;
  }
  
  /* 5. 버튼 스타일 (기본 버튼) */
  button {
    border: none;
    cursor: pointer;
    background-color: #333;
    color: #fff;
    padding: 10px 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #555;
  }
  
  /* 6. 인풋 요소 */
  input, textarea, select {
    font-family: inherit;
    font-size: 1rem;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #666;
  }
  
  /* 7. 이미지 */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .kelly_dog_background {
    width: 100vw;
    height: 100vh;
    background-image: url(./kelly_dog_img/kelly_dog_background_img.jpg);
    background-size: cover;
    background-blend-mode: multiply;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fcefe4;
    opacity: 0.4;
    z-index: 1;
}

.wrap{
    width: 550px;
    height: 100vh;
    overflow: scroll;
    background-color: #f7f7f7;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.wrap{
  -ms-overflow-style: none;
}
.wrap::-webkit-scrollbar{
  display:none;
}

.kelly_dog_fixed_header {
    width: 100%;
    height: 80px;
    background-color: #E76D25;
    display: flex;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
    justify-content: space-between;
    position: sticky;
    left: 0;
    top: 0px;
    z-index: 90;
}
.fixed_header_title {
    font-weight: 400;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-family: 'Tenada';
    height: 50px;
    line-height: 60px;
}
.fixed_header_title span{
  font-size: 20px;
  margin-left: 10px;
  font-weight: 300;
}
.fixed_header_title img {
    width: 100%;
}
.fixed_header_ham {
    width: 35px;
    height: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.ham_btn{
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    border-radius: 2px;
}
.ham_btn_1 {
    top: 10px;
}
.ham_btn_2 {
    bottom: 50%;
    margin-bottom: -1px;
}
.ham_btn_3 {
    bottom: 10px;
}

.control_btn_wrap{
  display: flex;
  flex-direction: column;
  width: 50px;
  height: auto;
  position: fixed;
  gap: 10px;
  bottom: 40px;
  right: 40px;
  z-index: 999;
}
.control_btn{
  width: 50px;
  height: 50px;
  background-color: #E76D25;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}
.control_btn:hover {
  transform: translateY(-5px);
}
.up_scroll img{
  width: 50%;
}

.menu_wrap{
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 9999;
  right: -100vw;
}
.menu_back_ground{
  width: 100%;
  height: 100%;
  background-color: #1a1a1a99;
  position: absolute;
  left: 0;
  top: 0;
}
.menu_content{
  width: 350px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #E76D25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 30px;
  box-sizing: border-box;
}
.menu_inner_box{
  width: 100%;
}
.menu_title{
  color: #fff;
  font-size: 12px;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  text-align: left;
  margin-bottom: 70px;
}
.menu_footer{
  color: #fff;
  font-size: 12px;
}
.menu_box{
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  color: #fff;
  font-size: 20px;
  gap: 20px;
}
.menu_con{
  cursor: pointer;
  transition: 0.3s;
}
.menu_con:hover{
  color: #ffa600;
}


.kelly_dog_footer{
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  font-size: 12px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.kelly_dog_footer h1{color: #E76D25;}
.kelly_content_box{
  width: 100%;
  height: auto;
  min-height: 150px;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  font-weight: 700;
}
.kelly_content_title_box{}
.kelly_content_main_title{  font-size: 23px; font-weight: 900;}
.kelly_content_sub_title{  
  font-size: 18px; 
  color: #E76D25;
  font-weight: 600;
  font-family: 'Tenada';
}
.kelly_content_text{
  font-size: 14px;
}
.phone_br{display: none;}
.kelly_content_text_pc{display: block;}
.kelly_content_text_mo{display: none;}
@media (max-width: 1000px) {
  .kelly_dog_header,.popup_null_content{display: none;}
  .wrap,.popup_content{width: 100vw;
    max-width: 600px;
  }
  .popup_content .popup_img {
    width: 100%;
    height: 100vw;
}
  .kelly_dog_viewport_text{font-size: 14px;}
 .wrap .kelly_dog_map .kelly_dog_map_text {
    font-size: 12px;
}
.kelly_dog_map p{
    font-size: 13px;
}
.control_btn_wrap{
    width: 42px;
    bottom: 15px;
    right: 15px;
}
.control_btn{
    width: 42px;
    height: 42px;
    background-color: #1a1a1a;
}
.control_btn.kakao{
    background-color: #f0b618;
}
.control_btn img{
    transform: scale(1.4);
}
.wrap .swiper_banner .swiper-slide{

}
.wrap .kelly_dog_viewport{
    height: 200px;
}
.wrap .kelly_content_sub_title{
  font-size: 15px; 

}
.wrap .kelly_content_main_title{ font-size: 18px;}
.kelly_content_title_box{margin-bottom: 20px;}

.phone_br{display: block;}
.wrap .membership_card{width: 100%;    flex: none;}
.kelly_content_text_pc{display: none;}
.kelly_content_text_mo{display: block;}
.wrap .room_slide{height: 200px;}
.wrap .kelly_content_hotel_title{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 5px;
    height: auto;
}
.wrap .kelly_content_hotel_title p{
    margin-left: 0px;
}
.kelly_content_hotel_title h1{font-size: 20px;}
.kelly_content_hotel_title p{font-size: 16px;}
.wrap .grooming_table_wrap h1 {
    font-size: 16px;
}
.wrap .grooming_table_wrap h1 span{
    font-size: 13px;
}
.wrap .grooming_table{
    font-size: 10px;
}
.wrap .point_benefits{
    font-size: 16px;
}
.wrap .membership_price{
    font-size: 22px;
}
.wrap .membership_wrap{
    padding: 0px;
}
.menu_content{
    width: 70%;
}
.menu_content .menu_box{
    font-size: 14px;
}
.kelly_dog_fixed_header{
    position: fixed;
    height: 60px;
}
.fixed_header_title{
    font-size: 22px;
}
.fixed_header_ham{
    transform: scale(0.8);
}
body{
    padding-top: 60px;
    box-sizing: border-box;
}
.wrap .grooming_comment{
  font-size: 12px;
  height: auto;
  padding: 0 30px;
}

}