/* =========================
   기본 리셋 & 공통
   ========================= */
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans KR", system-ui, sans-serif;
  color: #111827;
  line-height: 1.5;
  background-color: #ffffff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* 공통 컨테이너 */
.section_wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =========================
   오른쪽 고정 메뉴
   ========================= */
.right_menu_layer {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 999;
}
.right_menu_layer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.right_menu_layer li {
  margin-bottom: 10px;
}
.right_menu_layer img {
  width: 80px;
  height: auto;
  display: block;
}

/* 모바일에서 오른쪽 아래로 이동 */
@media (max-width: 768px) {
  .right_menu_layer {
    top: auto;
    bottom: 16px;
    right: 16px;
    transform: none;
    z-index: 9999;
    display: block;
  }
  .right_menu_layer ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .right_menu_layer img {
    width: 70px;
  }
}

/* =========================
   메인 슬라이더
   ========================= */
.bx_container {
  width: 100vw;
  max-width: 100vw;
  margin: 0 auto;
  overflow: hidden;
}
.bxslider img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   섹션 02 - 메인 카피
   ========================= */
.new_section_02_container {
  width: 100%;
  background: #f5f7fb url("/new_img/section_02_img.png") no-repeat center center;
  background-size: cover;
  min-height: 540px; /* PC 기준 */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.section_02_txt_lyaer {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 16px;
}
.section_02_txt {
  margin-bottom: 18px;
}
.section_02_txt_01 {
  display: block;
  font-size: 40px;
  font-weight: 500;
  color: #1f2933;
  margin-bottom: 6px;
}
.section_02_txt_02 {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #0098b0;
}
.section_02_01_txt_01 {
  font-size: 18px;
  line-height: 1.6;
  color: #374151;
}
.font_bold {
  font-weight: 700;
}

/* =========================
   PROMOTION 섹션
   (PC: .new_section_03_container / 모바일: .sec_03_container)
   ========================= */

/* PC 기본 */
.new_section_03_container {
  padding: 50px 0;
  display: block;
}
.new_sectoin_03_title {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #0098b0;
  margin-bottom: 24px;
}
.new_section_03_img_layer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: 16px;
  justify-content: center;
}
.new_section_03_img_layer span {
  flex: 1 1 0;
}
.new_section_03_img_layer img {
  width: 100%;
  height: auto;
  display: block;
}
.span_margin {
  margin: 0 4px;
}

/* PC에서 이미지 좀 더 작게 */
@media (min-width: 1024px) {
  .new_section_03_img_layer {
    max-width: 960px;      /* 전체 폭 줄이기 */
    gap: 24px;
  }
  .new_section_03_img_layer span {
    flex: 0 0 auto;
  }
  .new_section_03_img_layer img {
    width: auto;
    max-width: 300px;      /* 한 장당 최대 300px */
  }
  .new_section_03_container {
    padding: 60px 0;
  }
}

/* 태블릿(768~1023)에서는 크게 문제 없으니 기본값 유지 */

/* 모바일 전용 프로모션 (기본은 숨김) */
.sec_03_container {
  display: none;
  padding: 40px 0;
}
.sec_03_title {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #0098b0;
  margin-bottom: 18px;
}
.sec_03_slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px;
  padding: 0 15px;
}
.sec_03_slider::-webkit-scrollbar {
  display: none;
}
.sec_03_slide {
  flex: 0 0 80%;
  scroll-snap-align: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  background: #ffffff;
}
.sec_03_slide img {
  width: 100%;
  display: block;
}

/* 모바일에서만 모바일용 프로모션 보이기 */
@media (max-width: 767px) {
  .new_section_03_container {
    display: none;
  }
  .sec_03_container {
    display: block;
  }
}

/* =========================
   의료진 타이틀 & 카드
   ========================= */
.new_section_05_title_container {
  padding: 40px 0 10px;
}
.new_section_05_title {
  text-align: center;
}
.new_section_05_txt {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
}

/* 의료진 이미지 4개 */
.new_section_doc_container {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.new_section_doc_container span {
  flex: 1 1 220px;
}
.span_left_margim {
  margin-left: 0;
}

/* =========================
   지도 + 주소 섹션
   ========================= */
.section_05 {
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.map_layer {
  flex: 1 1 320px;
  min-width: 280px;
}
.map_addr_txt {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  align-items: center;
}
.addr_txt_02 {
  font-size: 14px;
  color: #374151;
}
.addr_txt_02_font {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}
.addr_txt_02_01_font {
  font-size: 14px;
  color: #4b5563;
}

/* =========================
   상담신청 레이아웃
   ========================= */
.section_inquiry {
  background: #0f172a;
  color: #f9fafb;
  padding: 40px 0;
}
.inquiry_center {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.inquiry_img {
  flex: 0 0 auto;
  max-width: 280px;
}
.inquiry_input_layer {
  flex: 1 1 320px;
}
.inquiry_input {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}


.input_div {
  flex: 1 1 120px;
}
.input_01,
.input_02,
.input_03,
.input_04 {
  max-width: 180px;
}
.input_05,
.input_06 {
  max-width: 220px;
}
.input_07 {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.input_08

.input_name{padding:10px 0px;}
.input_name,
.input_phone_num_02,
.input_phone_num_03,
.input_select_01,
.input_select_02,
.input_phone_num_01 {
  width: 100%;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #4b5563;
  background: #020617;
  color: #e5e7eb;
  font-size: 14px;
}
.input_phone_num_01,
.input_select_01,
.input_select_02 {
  appearance: none;
}
.input_check {
  width: 16px;
  height: 16px;
}
.check_font {
  font-size: 13px;
}
.inquiry_btn {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  border-radius: 6px;
  background: #22c55e;
  color: #022c22;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.4;
}
.inquiry_btn:hover {
  background: #16a34a;
}

/* =========================
   반응형 공통
   ========================= */

/* 1024px 이하 : 글자/이미지 살짝 축소 */
@media (max-width: 1024px) {
  .new_section_02_container {
    min-height: 420px;
  }
  .section_02_txt_02 {
    font-size: 28px;
  }
  .section_02_01_txt_01 {
    font-size: 16px;
  }
  .right_menu_layer img {
    width: 50px;
  }
}

/* 768px 이하 : 모바일 레이아웃 */
@media (max-width: 768px) {
  /* 섹션 02 폰트 축소 */
  .section_02_txt_lyaer {
    padding: 24px 16px;
  }
  .section_02_txt_01 {
    font-size: 20px;
  }
  .section_02_txt_02 {
    font-size: 22px;
  }
  .section_02_01_txt_01 {
    font-size: 17px;
  }

  /* 지도 + 주소 세로 배치 */
  .section_05 {
    flex-direction: column;
  }

  /* 상담신청 세로 배치 */
  .inquiry_center {
    flex-direction: column;
    align-items: stretch;
  }
  .inquiry_img {
    margin: 0 auto;
  }
  .inquiry_input {
    gap: 4px;  /* 기존 10px → 4px */
  }

  .input_div {
    width: 100%;
    margin-bottom: 6px; /* 박스 간격 통일 */
  }

  /* 마지막 input은 여백 제거 */
  .input_div:last-child {
    margin-bottom: 0;
  }

  /* 의료진 이미지 간격 조금 줄이기 */
  .new_section_doc_container {
    gap: 12px;
  }
}

/* 769px 이상 : PC에서 모바일 프로모션 확실히 숨김 (안전 장치) */
@media (min-width: 769px) {
  .sec_03_container {
    display: none;
  }
}
