:root {
  --max-w: 1400px;
  --brand: #ff78a2;
  --ink: #111;
  --muted: #666;
  --line: #ededed;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  --headerH: 64px; /* JS가 실제 헤더 높이로 덮어씀 */
  --radius: 20px;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
}
body {
  font-family: Pretendard, sans-serif;
  color: var(--ink);
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ===== Header ===== */
/* ===== Header ===== */
.header {
  position: fixed; /* 기존 sticky → fixed 권장 */
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #fff;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.header-spacer {
  height: var(--headerH);
} /* 본문 밀림 방지 스페이서 */

.bar {
  max-width: 1800px; /* ← 요구사항: PC 최대 폭 1800px */
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 24px;
  justify-content: space-between;
}
.logo {
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo b {
  color: var(--brand);
}
.spacer {
  flex: 1;
  display: none;
}

/* ── GNB (desktop) ───────────────────── */
.gnb {
  position: relative;
  z-index: 900;
}
.gnb > ul {
  display: flex;
  gap: 100px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gnb > ul > li {
  position: relative;
}
.gnb > ul > li > a {
  display: block;
  font-weight: 700;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

/* 2depth Mega (기존 유지) */
.mega {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 100%;
  border-top: 1px solid var(--line);
  padding: 10px 0 34px;
  opacity: 0;
  visibility: hidden;
  translate: 0 8px;
  transition: 0.2s ease;
  pointer-events: none;
}
.gnb > ul > li:hover .mega,
.gnb > ul > li:focus-within .mega {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
  pointer-events: auto;
}
.mega .wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
}

/* ── 로그인/회원가입 (추가) ───────────────── */
.auth-desktop {
  display: flex;
  gap: 14px;
  align-items: center;
}
.auth-desktop a {
  color: #333;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.auth-mobile {
  display: none;
  gap: 14px;
  align-items: center;
}
.auth-mobile .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.auth-mobile .circle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
}
.auth-mobile .label {
  font-size: 11px;
  color: #333;
  font-weight: 700;
}

/* ── Mobile (≤1024px) ─────────────────── */
.hamburger {
  display: none;
}
@media (max-width: 1024px) {
  .bar {
    padding: 14px 16px;
  }

  .hamburger {
    display: flex;
    appearance: none;
    border: 0;
    background: transparent;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .hamburger .bars {
    position: relative;
    width: 22px;
    height: 12px;
  }
  .hamburger .bars::before,
  .hamburger .bars::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #111;
    transition: 0.25s ease;
  }
  .hamburger .bars::before {
    top: 0;
  }
  .hamburger .bars::after {
    bottom: 0;
  }
  .hamburger[aria-expanded="true"] .bars::before {
    top: 5px;
    transform: rotate(45deg);
  }
  .hamburger[aria-expanded="true"] .bars::after {
    bottom: 5px;
    transform: rotate(-45deg);
  }

  .gnb {
    position: fixed;
    inset: 60px 0 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    overflow: auto;
  }
  .gnb.open {
    transform: none;
    opacity: 1;
    visibility: visible;
    margin-top: 50px;
  }
  .gnb > ul {
    flex-direction: column;
    gap: 0;
  }
  .gnb > ul > li > a {
    padding: 16px 18px;
    border-bottom: 1px solid #f3f3f3;
  }

  /* 2depth: 모바일에선 아코디언 */
  .mega {
    position: static;
    transform: none;
    width: auto;
    max-width: none;
    border-top: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    translate: 0;
    pointer-events: auto;
    display: none;
  }
  .gnb.open > ul > li.open .mega {
    display: block;
  }
  .mega .wrap {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 18px;
  }

  /* 로그인/회원가입 노출 전환 */
  .auth-desktop {
    display: none;
  }
  .auth-mobile {
    display: flex;
  }
}

.col {
  min-width: 0;
}
.col.bg {
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid #f3f3f3;
  border-radius: 16px;
  padding: 24px 18px;
}
.col h3 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.sub {
  margin: 4px 0 18px;
  font-size: 14px;
  color: var(--muted);
}
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  line-height: 1.4;
}
.item:hover,
.item:focus {
  border-color: #f1f1f1;
  background: #fafafa;
  outline: none;
}
.badge {
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #f6f6f6;
  border: 1px solid #eee;
}

/* ── Mobile GNB ───────────────────────── */
.hamburger {
  display: none;
}
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
    z-index: 1100;
    appearance: none;
    border: 0;
    background: transparent;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .hamburger .bars {
    position: relative;
    width: 22px;
    height: 12px;
  }
  .hamburger .bars::before,
  .hamburger .bars::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #111;
    transition: 0.25s ease;
  }
  .hamburger .bars::before {
    top: 0;
  }
  .hamburger .bars::after {
    bottom: 0;
  }
  .hamburger[aria-expanded="true"] .bars::before {
    top: 5px;
    transform: rotate(45deg);
  }
  .hamburger[aria-expanded="true"] .bars::after {
    bottom: 5px;
    transform: rotate(-45deg);
  }

  .gnb {
    position: fixed;
    inset: 60px 0 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    overflow: auto;
  }
  .gnb.open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .gnb > ul {
    flex-direction: column;
    gap: 0;
  }
  .gnb > ul > li > a {
    padding: 16px 18px;
    border-bottom: 1px solid #f3f3f3;
  }

  .mega {
    position: static;
    transform: none;
    width: auto;
    max-width: none;
    border-top: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    translate: 0;
    pointer-events: auto;
    display: none;
  }
  .gnb.open > ul > li.open .mega {
    display: block;
  }

  .mega .wrap {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 18px;
  }
  .col.bg {
    padding: 18px 14px;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid #f2f2f2;
  }
  .col h3 {
    font-size: 20px;
  }
  .item {
    padding: 12px 10px;
  }
}

/* ===== 페이지 부모(wrapper) ===== */
.page {
  display: block;
}

/* ===== Hero (Swiper) ===== */
.hero {
  max-width: 100%;
  margin: 16px auto 0;
  padding: 0 60px;
}
.hero .swiper {
  border-radius: 24px;
  overflow: hidden;
}
.hero .swiper-slide {
  height: clamp(240px, 38vw, 750px);
}
.hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero .swiper-pagination-bullets .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.85);
}
.hero .swiper-button-next,
.hero .swiper-button-prev {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ===== 상담바 (순수 CSS sticky) ===== */
.consult-wrap {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  /* 히어로에 살짝 겹쳐 보이게 */
  margin-top: 0px;
  position: sticky;
  top: calc(var(--headerH) + 8px);
  z-index: 9000;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media (max-width: 768px) {
	.consult-wrap {
		display: none;
	}
}

.consult-sticky {
  position: static;
} 

.consult-bar {
  box-sizing: border-box;
  background: #FF78A2;
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-flex; /* ← 핵심: inline-flex로 변경 */
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: fit-content; /* ← 폭이 내용물에 맞게 자동 조절 */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
}

.consult-bar input,
.consult-bar select {
  appearance: none;
  border: 0;
  outline: 0;
  background: white;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  flex: 1 1 160px;
  min-width: 0;
}
.consult-bar input::placeholder {
  color: #aaa;
}
.consult-bar .agree {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: white;
  white-space: nowrap;
  flex: 0 0 auto;
}
.consult-bar .btn {
  border: 0;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex: 0 0 auto;
}
.consult-bar .btn:hover {
  filter: brightness(0.95);
}
/* 텍스트/전화/셀렉트만 알약 스타일 */
.consult-bar input[type="text"],
.consult-bar input[type="tel"],
.consult-bar select {
  background: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 14px;
}


/* 체크박스는 기본 UI 사용 (색상만 강조) */
.consult-bar input[type="checkbox"] {
  appearance: auto; /* ← 기본 체크박스 복원 */
  width: 16px;
  height: 16px;
  margin: 0; /* 필요시 간격 조정 */
  accent-color: var(--brand); /* 체크 색상(지원 브라우저) */
}

/* 레이블 정렬 */
.consult-bar .agree {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: white;
  white-space: nowrap;
  flex: 0 0 auto;
  cursor: pointer; /* 레이블 클릭시도 토글 느낌 */
}

/* @media (max-width: 640px) {
  .consult-bar {
    padding: 8px;
    gap: 8px;
  }
  .consult-bar .agree {
    font-size: 11px;
  }
  .consult-bar .btn {
    width: 100%;
  }
} */
/* ===== Best Section (Full Width) ===== */
.best-fw {
  width: 100%;
  /* 양옆 여백은 뷰포트 기준으로 반응형 */
  padding-inline: clamp(15px, 3vw, 56px);
  padding-bottom: 150px;
}
.best-wrap {
  /* 전체폭 사용 + 좌 텍스트 1열, 우 슬라이더 1열 */
  display: grid;
  grid-template-columns: 420px 1fr; /* 좌측 고정폭 느낌 */
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
  margin-left: 230px;
}
@media (max-width: 1024px) {
  .hero .swiper-slide {
    height: clamp(500px, 38vw, 750px);
  }
  .consult-bar {
    border-radius: 0;
  }
  .hero {
    margin: 0 auto;
    margin-top: 15px;
    padding: 0 15px;
  }
  .best-wrap {
    grid-template-columns: 1fr;
    margin-left: 0px;
  }
}

/* Left */
.best-left {
  padding-top: 0px;
}
.best-left .eyebrow {
  display: block;
  color: #131313;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.best-title {
  margin: 0 0 20px;
  font-size: 48px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.best-title b {
  color: var(--brand);
}
.best-desc {
  margin: 0 0 16px;
  color: #666;
}
.best-ctrl {
  display: flex;
  gap: 40px;
}
.best-ctrl button {
  border-radius: 999px;
  cursor: pointer;
  font-size: 18px;
  display: grid;
  place-items: center;
}
.best-ctrl button:hover {
  filter: brightness(0.97);
}

/* Right: 가로 슬라이드 – 카드 고정(400x530) */
.best-slider {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 400px; /* 카드 폭 고정 */
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 18px; /* 아래 스크롤바 공간 */
  /* mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%); */
  z-index: 0;
}
.best-slider::-webkit-scrollbar {
  height: 8px;
  display: none;
}
.best-slider::-webkit-scrollbar-thumb {
  background: #eaeaea;
  border-radius: 999px;
}

@media (max-width: 1280px) {
  .best-slider {
    grid-auto-columns: 360px;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .best-slider {
    grid-auto-columns: 90vw;
    gap: 60px;
  }
}

/* Card */
.bcard {
  position: relative;
  width: 400px;
  height: 530px; /* 고정 사이즈 */
  border-radius: 22px;
  overflow: hidden;
  scroll-snap-align: start;
  /* box-shadow: 0 18px 36px rgba(0,0,0,.12); */
}
.bcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1280px) {
  .bcard {
    width: 360px;
    height: 510px;
  }
}

/* 하단 오버레이(가운데 정렬) */
.bcard .meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 16px 20px;
  color: #fff;
  text-align: center;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.4)
  );
  backdrop-filter: blur(10px);
}
.bcard .meta h4 {
  margin: 0 0 6px;
  font-weight: 600;
  letter-spacing: -0.2px;
  font-size: 24px;
  color: #fff;
}
.bcard .meta p {
  margin: 0;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}

/* ===== Equipment (Devices) ===== */
.equip-sec {
  background: #f7f7f7;
  padding: 150px 15px 150px;
}
.equip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.equip-head {
  text-align: center;
  margin-bottom: 60px;
  font-size: 48px;
}
.equip-eyebrow {
  display: block;
  color: #131313;
  font-size: 48px;
  margin-bottom: 0px;
  font-weight: 400;
}
.equip-title {
  margin: 0;
  font-size: 48px;
  line-height: 1.32;
  letter-spacing: -0.3px;
  font-weight: 700;
  color: #ff78a2;
}

.equip-swiper {
  position: relative;
}
.equip-swiper .swiper {
  overflow: hidden;
  padding: 14px 0;
}
.equip-swiper .swiper-slide {
  height: auto;
}

/* 카드(둥근 캡슐 형태) */
.device {
  width: 266px;
  height: 500px; /* 전체 카드 사이즈 */
  margin: 0 auto;
  border-radius: 180px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 22px 24px;
  text-align: center;
  gap: 15px;
}
.device .thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin:0 auto 18px; */
}
.device .thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.device .name {
  color: #ff78a2;
  font-weight: 600;
  font-size: 20px;
}
.device span {
  display: block;
  width: 30px;
  background: #cfcfcf;
  height: 1px;
}
.device .desc {
  margin: 0;
  color: #606060;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

/* 네비 버튼 */
.equip-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.equip-btn {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 18px;
  z-index: 100000;
}
.equip-btn:hover {
  filter: brightness(0.98);
}
.equip-prev {
  margin-left: -75px;
}
.equip-next {
  margin-right: -75px;
}

@media (max-width: 768px) {
  .equip-prev {
    margin-left: -2px;
  }
  .equip-next {
    margin-right: -2px;
  }
}

.content_bg {
  width: 100vw;
  overflow: hidden;
}

.hero-link img {
  width: 100%;
  height: 550px; /* 브라우저 높이에 맞게 꽉 채움 */
  object-fit: cover; /* 비율 유지하면서 잘리는 부분은 자동 처리 */
  display: block;
}

@media (max-width: 768px) {
  .hero-link img {
    height: 350px; /* 모바일에서는 높이를 줄여서 비율 조정 */
  }
}

.best-fw,
.equip-sec,
.equip-swiper {
	width: 100%;
  position: relative;
  z-index: 0;
}

/* ===== 차별화된 서비스 ===== */
.svc-section {
  padding: 150px 0;
}
.svc-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.svc-head {
  text-align: center;
  margin-bottom: 60px;
}
.svc-head span {
  color: #ff78a2;
  font-size: 48px;
  font-weight: 600;
}
.svc-head h2 {
  margin: 0;
  font-size: 48px;
  letter-spacing: -0.3px;
  color: #131313;
}

.svc-head b {
  color: #ff78a2;
}

.svc-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 50px 0;
}
.svc-row.reverse {
  flex-direction: row-reverse;
}

.svc-text {
  flex: 1 1 420px;
  min-width: 0;
}
.svc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #ff78a2;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  box-shadow: 0 6px 14px rgba(255, 59, 143, 0.12);
  margin-bottom: 12px;
}
.svc-text h3 {
  margin: 30px 0 30px;
  font-size: 36px;
  letter-spacing: -0.2px;
  font-weight: 500;
  color: #131313;
}
.svc-text p {
  margin: 0;
  color: #555;
  line-height: 1.5;
  font-size: 16px;
}

.svc-media {
  flex: 1 1 560px;
}
.svc-media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: block;
}

.pc_only {
  display: block !important;
}
.mo_only {
  display: none !important;
}

/* 반응형: 세로 스택 */
@media (max-width: 1024px) {
  .svc-row,
  .svc-text {
    /* 텍스트 블록 아래 여백만 */
    margin: 0 0 12px;
    flex: auto;
  }
  .svc-text {
    margin: 20px 0 20px;
  }
  .svc-media {
    /* 이미지 블록은 가로 100% */
    width: 100%;
    flex: auto;
  }
  .svc-row {
    flex-direction: column;
    gap: 20px;
  }
  .svc-media img {
    width: 100%;
    height: auto; /* 자연 높이 */
    aspect-ratio: 4 / 3; /* 너무 길어지지 않게(원하면 삭제 가능) */
    border-radius: 14px; /* 반응형에서 radius 살짝 줄이기 */
    box-shadow: var(--shadow);
  }
  .best-fw {
    padding-bottom: 60px;
  }
  .equip-sec {
    background: #f7f7f7;
    padding: 60px 15px 60px;
  }

  /* 폰에서 타이포/배지도 살짝 줄이기 */
  .svc-text h3 {
    font-size: 24px;
    margin: 20px 0 20px;
  }
  .svc-badge {
    width: 50px;
    height: 50px;
    font-size: 16px;
    margin-bottom: 8px;
  }
  .svc-section {
    padding: 60px 0;
  }
  .svc-head {
    margin-bottom: 40px;
  }
  
  .svc-head span {
	font-size: 26px;
  }
  
  .equip-eyebrow {
    font-size: 30px;
  }
  .equip-head {
    text-align: center;
    margin-bottom: 40px;
  }
  .device {
    padding-bottom: 0;
    border-radius: 50px;
  }
  .svc-section.con_main {
    padding: 60px 15px;
  }
}

/* 오시는 길 */
.map-sec {
  background: #131313;
  color: #eee;
  padding: 150px 0; /* 데스크톱 상하 여백 */
}
.map-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
  align-items: stretch;
}
.map-left {
  flex: 1;
  min-height: 420px;
}
.map-frame {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}
/* 카카오 퍼가기 컨테이너를 반응형으로 강제 */
#daumRoughmapContainer1757912981343,
#daumRoughmapContainer1757912981343.root_daum_roughmap {
  width: 100% !important;
  height: 100% !important;
}
.root_daum_roughmap .wrap_map {
  height: 100% !important;
}

/* Right panel */
.map-right {
  flex: 0 0 450px;
}
.map-title {
  margin: 6px 0 10px;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #fff;
}
.map-sub {
  margin: 0 0 18px;
  color: #fff;
  line-height: 1.6;
  font-size: 18px;
}

.map-links {
  display: flex;
  gap: 12px;
  margin: 0 0 22px;
}
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 30px;
  border-radius: 12px;
  background: #fff;
  color: #131313;
  font-weight: 600;
  font-size: 16px;
}
.map-btn:hover {
  filter: brightness(1.06);
}

.map-phone {
  margin: 60px 0 60px;
}
.map-phone .label {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}
.label.hour {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}
.map-phone .tel {
  font-size: 36px;
  font-weight: 600;
  color: #ff78a2;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.map-hours {
  margin-top: 10px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.map-hours .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  color: #e9e9e9;
  font-size: 16px;
}
.map-hours .row b {
  font-weight: 800;
  color: #fff;
}
.map-hours .note {
  margin: 10px 0 0;
  color: #9e9e9e;
  font-size: 16px;
}

/* 반응형: 상하 여백 40px, 1열로 쌓기 */
@media (max-width: 1024px) {
  .map-left {
    min-height: 300px;
  }
  .map-frame {
    min-width: 300px;
  }
  #daumRoughmapContainer1757912981343,
  #daumRoughmapContainer1757912981343.root_daum_roughmap {
    height: 300px !important;
  }
  .root_daum_roughmap .wrap_map {
    height: 100% !important;
  }
  .map-sec {
    padding: 60px 0;
  } /* 요구사항: 100 → 40 */
  .map-inner {
    flex-direction: column;
    padding: 0 15px;
    gap: 40px;
  }
  .map-right {
    width: auto;
    flex: none;
  }
  .map-left {
    min-height: 320px;
  }
  .map-title {
    font-size: 20px;
  }
  .map-phone {
    margin: 30px 0 30px;
  }
  .map-phone .tel {
    font-size: 24px;
  }
  .map-links {
    flex-wrap: wrap;
  }

  /* 지도 내부 라벨/주소/하단 안내 숨김 (모바일 전용) */
  #daumRoughmapContainer1757912981343 .roughmap_maker_label,
  #daumRoughmapContainer1757912981343 .roughmap_maker_address,
  #daumRoughmapContainer1757912981343 .roughmap_legend,
  #daumRoughmapContainer1757912981343 .wrap_controllers {
    display: none !important;
  }
  /* 혹시 컨테이너 안에 지도 외 요소가 따로 붙을 경우 일괄 차단 */
  #daumRoughmapContainer1757912981343 > :not(.wrap_map) {
    display: none !important;
  }
  .map-sub {
    font-size: 16px;
  }
  .pc_only {
    display: none !important;
  }
  .mo_only {
    display: block !important;
  }
}

/* ===== Footer ===== */
/* ===== Footer (simple) ===== */
.site-footer.simple {
  background: #161616;
  color: #d7d7d7;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 100px 15px 100px;
}
.foot-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.foot-row {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.7;
  color: #d7d7d7;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.foot-row .label {
  color: #bebebe;
}
.foot-row .val {
  color: #e2e2e2;
}
.foot-row .tel {
  color: #ff7aa8;
  font-weight: 700;
}
.foot-row .sep {
  margin: 0 6px;
  color: #7a7a7a;
}

.policy {
  color: #e2e2e2;
  text-decoration: underline;
}
.policy:hover {
  color: #fff;
}

.foot-copy {
  margin-top: 10px;
  font-size: 12px;
  color: #9a9a9a;
}
.site-footer.simple .foot-row {
  align-items: baseline; /* 텍스트 기준선에 맞춰 정렬 */
}

.site-footer.simple .foot-row > .label,
.site-footer.simple .foot-row > .val,
.site-footer.simple .foot-row > .tel,
.site-footer.simple .foot-row > .sep,
.site-footer.simple .foot-row > a {
  line-height: 1.5; /* 모든 항목 동일 라인하이트 강제 */
}

.site-footer.simple .foot-row .tel {
  display: inline-block; /* 인라인박스로 변환해 라인하이트 적용 확실히 */
  line-height: 1.5;
  font-weight: 700; /* 기존 강조 유지 */
}
/* 반응형 */
@media (max-width: 640px) {
  .site-footer.simple {
    padding: 40px 15px 120px;
  }
  .foot-row {
    font-size: 13px;
    line-height: 1.6;
    gap: 4px;
  }
  .foot-row .sep {
    margin: 0 4px;
  }
  .foot-copy {
    font-size: 11.5px;
  }
}

.hr {
  border: 0;
  border-top: 1px solid #ededed;
  margin: 24px 0;
}
.spacer-sec {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 15px 150px;
}

@media (max-width: 1024px) {
  .spacer-sec {
    padding: 0 15px 60px;
  }
}

/* 탭 패널 표시/숨김: .is-active만 보이기 */
.panel {
  display: none;
}
.panel.is-active {
  display: block !important;
}

/* quick */

/* 공통 컨테이너 */
.quick {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 77px;
  background: #fff;
  border: 1px solid #eceff1;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
  z-index: 9999;
  font-size: 14px;
}

/* 항목 */
.qk-item {
  display: grid;
  grid-template-rows: 28px auto;
  align-items: center;
  justify-items: center;
  color: var(--qk-ink);
  text-decoration: none;
  padding: 2px 8px;
  line-height: 1.15;
  font-size: 14px;
}

/* 아이콘 영역만 자리 고정 (이미지는 갖고 계신 것 사용) */
.qk-ico {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}
.qk-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: none; /* 필요시 색상 조정 */
}

/* 텍스트 */
.qk-txt {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}

/* 구분선 */
.qk-item:not(:last-child) {
  position: relative;
}
.qk-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: calc(-1 * 30px / 2);
  height: 1px;
  background: #eceff1;
}

/* 호버 효과(데스크톱) */
@media (hover: hover) {
  .qk-item:hover .qk-ico img {
    transform: translateY(-1px);
  }
  .qk-item:hover .qk-txt {
    color: #ff78a2;
  }
}

/* =========================
   Mobile (<=768px): 하단 고정 그리드 4칸
   ========================= */
@media (max-width: 768px) {
  .quick {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
    width: auto;
    border-radius: 14px 14px 0 0;
    padding: max(6px, env(safe-area-inset-bottom) * 0.2)
      max(10px, env(safe-area-inset-left)) max(6px, env(safe-area-inset-bottom))
      max(10px, env(safe-area-inset-right));
    border-left: none;
    border-right: none;
    gap: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .qk-item {
    grid-template-rows: 24px auto;
    padding: 8px 6px 10px;
    font-size: 11.5px;
  }
  .qk-ico {
    width: 24px;
    height: 24px;
  }
  .qk-item::after {
    display: none;
  } /* 세로 구분선 제거 */
  .qk-item + .qk-item {
    border-left: 1px solid #eceff1; /* 그리드 내부 분리선 */
  }
}

:root {
  --topbtn-size: 40px;
  --topbtn-bg: #ff78a2; /* 버튼 배경색 (원본 비슷한 오렌지) */
  --topbtn-ink: #fff; /* 아이콘(꺾쇠) 색 */
  --topbtn-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* 기본 상태: 숨김 */
.topbtn {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: calc(16px + env(safe-area-inset-bottom));
  width: var(--topbtn-size);
  height: var(--topbtn-size);
  border: 0;
  border-radius: 999px;
  background: var(--topbtn-bg);
  box-shadow: var(--topbtn-shadow);
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.96);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s 0.18s; /* 숨김때 지연 */
}

/* 화살표(아이콘) – CSS로 그림 */
.topbtn::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 3px solid var(--topbtn-ink);
  border-right: 3px solid var(--topbtn-ink);
  transform: rotate(-45deg); /* ∧ 모양 */
  top: 2px; /* 살짝 위로 */
}

/* 포커스/호버 */
.topbtn:hover {
  filter: brightness(1.05);
}
.topbtn:active {
  transform: translateY(10px) scale(0.95);
}
.topbtn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* 활성 상태 */
.topbtn.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition: opacity 0.18s ease, transform 0.18s ease; /* 보일 땐 즉시 */
}

/* 작은 화면에서 살짝 축소 */
@media (max-width: 640px) {
  :root {
    --topbtn-size: 40px;
  }
  .topbtn {
    bottom: 15%;
  }
}


.Real_review {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 150px;
}

.review_text {
  color: #FF78A2;
  font-weight: 600;
  font-size: 48px;
  margin-bottom: 60px;
}

.review_img {
  column-count: 4; /* 열 개수 (반응형에 따라 조절) */
  column-gap: 20px;
  width: 90%;
  max-width: 1200px;
}

.review_img img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 16px;
  display: block;
  break-inside: avoid; /* 이미지가 중간에서 잘리지 않게 */
}

/* 반응형 */
@media (max-width: 1200px) {
  .review_img {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .review_img {
    column-count: 2;
  }

  .review_text,
  .equip-title,
  .best-title {
	font-size: 30px;
  }
  .svc-head h2 {
	font-size: 20px;
  }
  .Real_review {
	padding-top: 60px;
	padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .review_img {
    column-count: 1;
  }
}
