main {
  background: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden;
  border-top: none;
}
.contents {
  border-top: none;
}

.lawyer-slider-container {
  width: 100%;
  position: relative;
  z-index: 2;
}
.visual .swiper {
  padding-top: 50px;
}
.swiper {
  width: 100%;
  height: 100%;
}
.visual .swiper-slide {
  margin-bottom: -2rem;
}
.swiper-slide {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: all 0.4s ease;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(0.85);
  filter: opacity(50%);
  transition: all 0.4s ease;
  object-fit: cover;
  margin-bottom: -2rem;
}
.swiper-slide-active {
  z-index: 10;
  bottom: 2rem;
}
.swiper-slide-active img {
  transform: scale(1.3);
  filter: grayscale(0%) brightness(100%);
}
.lawyer-info {
  position: absolute;
  bottom: 0;
  left: -4rem;
  right: -4rem;
  width: auto;
  height: auto;
  padding: 2rem;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  opacity: 0;
  transition: 0.3s;
  border-radius: 0 0 5px 5px;
  background: linear-gradient(
    180deg,
    rgba(146, 94, 45, 0) 0%,
    rgba(25, 25, 25, 0.8) 100%
  );
}
.swiper-slide-active .lawyer-info {
  opacity: 1;
}
.lawyer-info p {
  color: var(--brown100);
  font-size: 1.6rem;
}
.lawyer-info h3 {
  color: var(--jrwhite);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.lawyer-info h3 + p {
  font-size: 1.4rem;
  color: #aeaeae;
}
/* 변호사 슬라이더: pro 라인만 3배 크기 (이름 1.4rem×3) */
.visual .lawyer-slider-others .lawyer-info p:first-child {
  font-size: 4.2rem !important;
}
/* 후기 */
.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  transform: scale(0.9);
  opacity: 0.8;
}
.section2 .swiper {
  overflow: visible;
}
.swiper-slide-active .review-card {
  transform: scale(1.1);
  opacity: 1;
  z-index: 2;
}
.review-card__profile {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.review-card__img-box {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  background-color: var(--brown100);
}
.review-card__img-box img {
  transform: scale(1.1);
}
.review-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__name {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown900);
  margin-bottom: 5px;
}
.review-card__category {
  display: block;
  font-size: 1.8rem;
  color: var(--brown800);
}
.review-card__body {
  border-top: 1px solid var(--brown200);
  padding-top: 20px;
}
.review-card__text {
  font-size: 1.6rem;
  word-break: keep-all;
  color: var(--brown800);
  line-height: 1.4;
  letter-spacing: -0.04rem;
}
.review-btn {
  display: none;
  width: 4.5rem;
  height: 4.5rem;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: var(--brown800);
  transition: all 0.3s ease;
}
.mobilelayout .review-btn {
  display: inherit;
}
.review-btn::after {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-top: 1.2rem;
}
.review-btn:hover {
  background-color: var(--brown800);
  color: #fff;
  transform: scale(1.1);
}
.review-btn--prev {
  left: 20px;
}
.review-btn--next {
  right: 20px;
}

/* 변호사 롤링 슬라이더 양쪽 화살표 — 홈페이지 갈색 톤과 통일, 사진 중앙 정렬 */
.visual .lawyer-slider-btn {
  position: absolute !important;
  z-index: 20;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  top: 58%;
  transform: translateY(-50%);
  background: rgba(86, 56, 26, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(56, 36, 18, 0.35);
  color: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.visual .lawyer-slider-btn::after {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.visual .lawyer-slider-btn:hover:not(.swiper-button-disabled) {
  background: var(--brown900);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(56, 36, 18, 0.45);
  transform: translateY(-50%) scale(1.05);
}
.visual .lawyer-slider-btn:active:not(.swiper-button-disabled) {
  transform: translateY(-50%) scale(0.97);
}
.visual .lawyer-slider-btn.swiper-button-disabled {
  opacity: 1;
  cursor: pointer;
  transform: translateY(-50%);
  pointer-events: auto;
}
.visual .lawyer-slider-btn--prev {
  left: 12px;
}
.visual .lawyer-slider-btn--next {
  right: 12px;
}

main {
  position: relative;
}
.innerWrap {
  margin: 0 auto;
  width: 140rem;
  padding: 0 5rem;
}
.header {
  height: 64px;
  transition: all 0.4s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #050505;
  width: 100%;
  border: none;
  box-sizing: border-box;
}
.header::before,
.header::after {
  display: none !important;
  content: none !important;
}
.header .innerWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  transition: color 0.25s ease, opacity 0.25s ease;
  display: flex;
  letter-spacing: -0.1rem;
  font-size: 24px;
  line-height: 64px;
  color: var(--jrwhite);
  font-weight: 700;
  text-decoration: none;
}
.header .logo:hover {
  color: var(--jrwhite);
  opacity: 0.9;
}
.header .logo:focus-visible {
  outline: 2px solid rgba(201,162,39,0.8);
  outline-offset: 4px;
  border-radius: 2px;
}
.header .logo i {
  display: inline;
  margin-right: 0.5rem;
}
.header .gnb_menu {
  transition: all 0.4s ease-in-out;
  line-height: 64px;
}
.header .gnb_menu ul {
  display: flex;
}
.header .gnb_menu .gnb_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.header .gnb_menu .gnb_list > li {
  position: relative;
}
/* 메뉴: rem 대신 px로 고정해 메인/서브 동일 렌더링 */
.header .gnb_menu ul a {
  font-size: 16px;
  color: var(--jrsoftwhite);
  font-weight: 300;
  padding: 0 12px;
  height: 100%;
  line-height: 64px;
  display: block;
  transition: color 0.25s ease;
  position: relative;
  text-decoration: none;
}
/* 메뉴 링크 하단 라인 호버 */
.header .gnb_menu .gnb_list > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 0;
  height: 2px;
  background: #c9a227;
  transition: width 0.25s ease, left 0.25s ease;
}
.header .gnb_menu .gnb_list > li > a:hover {
  color: #fff;
}
.header .gnb_menu .gnb_list > li > a:hover::after {
  width: calc(100% - 24px);
  left: 12px;
}
.header .gnb_menu .gnb_list > li > a.current {
  color: #fff;
  font-weight: 500;
}
.header .gnb_menu .gnb_list > li > a.current::after {
  width: calc(100% - 24px);
  left: 12px;
  background: #c9a227;
}
.header .gnb_menu ul a:focus-visible {
  outline: 2px solid rgba(201,162,39,0.8);
  outline-offset: 2px;
  border-radius: 2px;
}
.gnb_seo {
  position: relative;
}
.gnb_seo_label {
  font-size: 16px;
  color: var(--jrsoftwhite);
  font-weight: 300;
  padding: 0 12px 0 12px;
  line-height: 64px;
  cursor: pointer;
  display: block;
  transition: color 0.25s ease;
  position: relative;
  user-select: none;
}
.gnb_seo_label::after {
  content: "";
  display: inline-block;
  margin-left: 0.4rem;
  vertical-align: 0.2em;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.25s ease;
}
.gnb_seo:hover .gnb_seo_label {
  color: #fff;
}
.gnb_seo:hover .gnb_seo_label::after {
  transform: rotate(180deg);
}
.gnb_seo_list {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  z-index: 200;
}
.gnb_seo:hover .gnb_seo_list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gnb_seo_list li { display: block; }
.gnb_seo_list a {
  font-size: 14px;
  padding: 6px 12px !important;
  line-height: 1.4 !important;
  display: block;
  white-space: nowrap;
  color: rgba(255,255,255,0.9);
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
/* 메뉴바 오른쪽 끝: 검색·햄버거 메뉴 */
.gnb_util {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
}
.gnb_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--jrsoftwhite);
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
  text-decoration: none;
}
.gnb_btn::after { display: none !important; }
.gnb_btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.gnb_btn:focus-visible {
  outline: 2px solid rgba(201,162,39,0.8);
  outline-offset: 2px;
}
.gnb_btn svg {
  display: block;
  color: currentColor;
}
.gnb_seo_list a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding-left: 14px !important;
}
.gnb_seo_list a:focus-visible {
  outline: 2px solid rgba(201,162,39,0.6);
  outline-offset: -2px;
}
.gnb_seo_list li:first-child a {
  border-radius: 10px 10px 0 0;
}
.gnb_seo_list li:last-child a {
  border-radius: 0 0 10px 10px;
}

/* ===== 검색 오버레이 (페이지 내 검색) ===== */
.jr-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #1e1e1e;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.jr-search-overlay.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.jr-search-overlay .jr-search-form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}
.jr-search-overlay .jr-search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1.5rem;
  border: none;
  border-radius: 10px;
  background: #333333;
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.jr-search-overlay .jr-search-input::placeholder {
  color: #aaaaaa;
}
.jr-search-overlay .jr-search-input:focus {
  border-color: #C97F3D;
}
.jr-search-overlay .jr-search-btn {
  padding: 0.75rem 1.25rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1e1e1e;
  background: #C97F3D;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.jr-search-overlay .jr-search-btn:hover {
  background: #d48f4d;
  color: #1e1e1e;
}
.jr-search-overlay .jr-search-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: rgba(255,255,255,0.9);
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}
.jr-search-overlay .jr-search-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
/* 검색 결과 영역: 밝은 배경 + 진한 글자로 가독성 확보 */
.jr-search-overlay .jr-search-results-area {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 0.75rem;
  background: #faf9f7;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  padding: 1rem 1.25rem;
  max-height: 70vh;
  overflow-y: auto;
}
.jr-search-overlay .jr-search-result {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2d2018;
  text-align: center;
  margin-bottom: 0.75rem;
  padding: 0.75rem 0;
  line-height: 1.45;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5em;
}
.jr-search-overlay .jr-search-result.jr-search-no-result {
  color: #8b4513;
  font-weight: 500;
}
.jr-search-overlay .jr-search-other-wrap {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(45,32,24,0.12);
}
.jr-search-overlay .jr-search-other-heading {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #2d2018;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.jr-search-overlay .jr-search-results-list {
  max-height: 45vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 10px;
  padding: 0.35rem 0;
  list-style: none;
  margin: 0;
  border: 1px solid rgba(45,32,24,0.08);
}
.jr-search-overlay .jr-search-results-list li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(45,32,24,0.06);
}
.jr-search-overlay .jr-search-results-list li:last-child {
  border-bottom: none;
}
.jr-search-overlay .jr-search-results-list a {
  display: block;
  padding: 0.9rem 1rem;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.4;
  transition: background 0.2s ease, color 0.2s ease;
  border-radius: 6px;
  margin: 0 0.25rem;
}
.jr-search-overlay .jr-search-results-list a:hover {
  background: rgba(201,127,61,0.12);
  color: #1a1a1a;
}
.jr-search-overlay .jr-search-results-list .jr-search-result-title {
  font-weight: 600;
  color: #1a1a1a;
  display: block;
}
.jr-search-overlay .jr-search-results-list .jr-search-result-url {
  font-size: 0.64rem;
  color: #6b5b4f;
  margin-top: 0.25rem;
  display: block;
}

/* ===== 햄버거 메뉴 (오른쪽 슬라이드) — 최신 라이트 스타일 ===== */
.jr-side-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26,26,26,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.jr-side-menu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.jr-side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  max-width: 100%;
  height: 100%;
  background: #faf9f7;
  box-shadow: -16px 0 48px rgba(26,26,26,0.12), -4px 0 0 rgba(201,162,39,0.15);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.jr-side-menu.is-open {
  transform: translateX(0);
}
.jr-side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.25rem 1.25rem 1.5rem;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: #fff;
}
.jr-side-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #333;
  background: transparent;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.jr-side-menu-close:hover {
  background: rgba(0,0,0,0.06);
  color: #1a1a1a;
  transform: scale(1.02);
}
.jr-side-menu-close:active {
  transform: scale(0.98);
  background: rgba(0,0,0,0.08);
}
.jr-side-menu-close svg {
  display: block;
}
.jr-side-menu-body {
  padding: 1.25rem 0 2.5rem;
  flex: 1;
  background: #faf9f7;
}
.jr-side-menu-all {
  margin: 0;
  padding: 0;
  font-size: 2.75rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.jr-side-menu-all a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.jr-side-menu-all a:hover {
  color: #c9a227;
}
.jr-side-menu .jr-side-menu-section {
  padding: 0 1.25rem 1.5rem 1.5rem;
  margin-bottom: 0.75rem;
}
.jr-side-menu .jr-side-menu-section:last-child {
  margin-bottom: 0;
  padding-bottom: 1.5rem;
}
/* 섹션 제목: 좌측 악센트 바 + 배경 블록 */
.jr-side-menu .jr-side-menu-title {
  position: relative;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.9rem 0;
  padding: 0.75rem 1rem 0.75rem 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  background: rgba(201,162,39,0.08);
  border-radius: 10px;
  border-bottom: none;
}
.jr-side-menu .jr-side-menu-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  min-height: 1.2em;
  background: #c9a227;
  border-radius: 0 3px 3px 0;
}
/* 리스트: 블릿(::before)으로 항상 표시 + 디자인 */
.jr-side-menu .jr-side-menu-list {
  list-style: none !important;
  margin: 0;
  padding: 0;
  padding-left: 0;
}
.jr-side-menu .jr-side-menu-list li {
  margin: 0 0 0.35rem 0;
  padding: 0;
  position: relative;
  padding-left: 1.5rem;
}
.jr-side-menu .jr-side-menu-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #c9a227;
  font-size: 1.15em;
  font-weight: 700;
  line-height: 1;
}
.jr-side-menu .jr-side-menu-list a {
  display: block;
  padding: 0.85rem 1rem 0.85rem 0;
  font-size: 1.575rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1.4;
}
.jr-side-menu .jr-side-menu-list a:hover {
  background: rgba(201,162,39,0.08);
  color: #2d2018;
}
.jr-side-menu .jr-side-menu-list a:focus-visible {
  outline: 2px solid rgba(201,162,39,0.5);
  outline-offset: 2px;
}
.jr-side-menu .jr-side-menu-list a:active {
  background: rgba(201,162,39,0.12);
}

.breadcrumb {
  padding: 0.8rem 0;
  margin: 7rem auto 0;
  max-width: 140rem;
  padding-left: 5rem;
  padding-right: 5rem;
  font-size: 1.35rem;
  color: var(--brown700, #8b6914);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: 0.4rem;
  color: #999;
}
.breadcrumb a {
  color: var(--brown800, #714923);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.sect {
  padding: clamp(5rem, 3.269rem + 7.69vw, 10rem) 0;
}
.visual {
  margin-top: 64px;
  background: url("../images/main_visual.png") 50% no-repeat;
  background-size: cover;
  width: 100%;
  background-attachment: fixed;
}
.visual .innerWrap {
  margin-top: 0;
  padding: 0;
}
.slogan_wrap {
  text-align: center;
  padding: 7rem 0 1.5rem 0;
}
.visual .title {
  text-align: left;
  margin-left: 10rem;
}
.visual .title h1 {
  font-size: clamp(2.5rem, 1.808rem + 3.08vw, 4.5rem);
  line-height: 1.2;
  color: var(--brown900);
  margin-bottom: 1.5rem;
  letter-spacing: -0.1rem;
}
.visual .title .subtxt {
  font-size: clamp(1.6rem, 1.392rem + 0.92vw, 2.2rem);
  color: var(--brown800);
  letter-spacing: -0.1rem;
  line-height: 1.4;
  text-align: left;
}
.visual .btn_group {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-top: clamp(1rem, 0.308rem + 3.08vw, 3rem);
}
.visual .btn_group .btnRsv {
  color: var(--jrwhite);
  border: 1px solid var(--jrwhite);
}
.visual .btn_group .btnRsv i {
  filter: brightness(0) invert(1);
}
.visual .btn_group .btnCall {
  display: none !important;
  background-color: var(--brown500);
  color: var(--jrwhite);
  
}
.visual .btn_group .btncs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 4.5rem;
  font-size: clamp(1.6rem, 1.531rem + 0.31vw, 1.8rem);
  border-radius: 100rem;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  cursor: pointer;
  position: relative;
}
.visual .btn_group .btn-hint {
  position: absolute;
  bottom: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 0.9rem;
  background: rgba(86, 56, 26, 0.95);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.visual .btn_group .btn-hint::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top-color: rgba(86, 56, 26, 0.95);
}
.visual .btn_group .btncs:hover .btn-hint {
  opacity: 1;
  visibility: visible;
}
.visual .btn_group .btnCall:hover {
  background-color: var(--brown700, #8b5a2b) !important;
  color: var(--jrwhite);
  transform: translateY(-2px);
}
.visual .btn_group .btnRsv:hover {
  background-color: var(--brown900);
  color: var(--jrwhite);
  border-color: var(--brown900);
  transform: translateY(-2px);
}
.visual .btn_group .btncs i {
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
}

.sect {
  text-align: center;
}
.sect h2 {
  font-size: clamp(2rem, 1.308rem + 3.08vw, 3.5rem);
  color: var(--brown900);
  line-height: 1.2;
}
.sect .innerWrap {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 1.269rem + 7.69vw, 8rem);
}

.section1 {
  background-color: #f9f7f2;
}
.section1 .cont {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}
.section1 .cont .lst {
  width: calc(100% / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid var(--brown100);
  padding: 0 2rem;
  gap: 0.5rem;
}
.section1 .cont .lst:last-child {
  border-right: none;
}
.section1 .cont .lst .icon-scale {
  transition: all 0.4s ease-in-out;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  background: url("../images/icon_judgements.svg") no-repeat;
  background-size: contain;
}
.section1 .cont .lst .jr_result {
  background-color: var(--brown500);
  font-weight: 700;
  color: var(--jrwhite);
  font-size: clamp(1.8rem, 1.731rem + 0.31vw, 2rem);
  padding: 0.5rem 2rem;
  border-radius: 2rem;
}
.section1 .cont .lst .jr_category {
  font-size: clamp(1.6rem, 1.531rem + 0.31vw, 1.8rem);
  font-weight: 500;
  color: var(--brown900);
}
.section1 .cont .lst .desc_txt {
  font-size: clamp(1.6rem, 1.531rem + 0.31vw, 1.8rem);
  color: var(--brown700);
}

.section2 {
  background-color: #f5efe6;
}
.section2 .innerWrap {
  overflow: hidden;
}

.section3 {
  background-color: #f9f7f2;
}
.section3 .cont {
  padding: 3rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2rem;
  display: flex;
  gap: 5rem;
  align-items: center;
}
.section3 .cont .add_info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
  padding: 3rem clamp(1.5rem, 0.981rem + 2.31vw, 3rem);
  background-color: var(--brown500);
  color: var(--jrwhite);
  border-radius: 1.5rem;
}
.section3 .cont .add_info hr {
  border-color: var(--brown600);
}
.section3 .cont .add_info .jrinfo {
  font-size: clamp(1.6rem, 1.531rem + 0.31vw, 1.8rem);
}
.section3 .cont .add_info .jrinfo .add {
  font-weight: 300;
}
.section3 .cont .add_info .name {
  font-size: clamp(1.8rem, 1.385rem + 1.85vw, 3rem);
  font-weight: 700;
}
.section3 .cont .add_info .location_wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section3 .cont .add_info .location_wrap li {
  flex-direction: column;
  font-size: clamp(1.4rem, 1.331rem + 0.31vw, 1.6rem);
  display: flex;
  gap: 1rem;
}
.section3 .cont .add_info .location_wrap span {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  border-radius: 2rem;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 500;
  padding: 0.4rem 1.5rem;
}
.section3 .cont .add_info .location_wrap i {
  width: 2rem;
  height: 2rem;
  display: inline-block;
}
.section3 .cont .add_info .map_wrap {
  display: flex;
}
.section3 .cont .add_info .map_wrap li {
  margin-right: 2rem;
}
.section3 .cont .add_info .map_wrap li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--jrwhite);
}
.section3 .cont .add_info .map_wrap li a img {
  width: clamp(4rem, 3.308rem + 3.08vw, 6rem);
  height: clamp(4rem, 3.308rem + 3.08vw, 6rem);
}
.section3 .cont .map img {
  max-width: 100%;
}

.footer {
  background-color: #c5a67d;
  color: var(--jrwhite);
}
.footer .innerWrap {
  display: flex;
  justify-content: space-between;
  padding-top: clamp(5rem, 3.269rem + 7.69vw, 10rem);
  padding-bottom: clamp(5rem, 3.269rem + 7.69vw, 10rem);
}
.footer .float_left {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.footer .ft_info {
  font-size: clamp(1.4rem, 1.331rem + 0.31vw, 1.6rem);
  color: var(--brown100);
  letter-spacing: -0.1rem;
}
.footer .ft_info .jrci {
  font-size: clamp(2rem, 1.654rem + 1.54vw, 3rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--jrwhite);
}
.footer .ft_info .jrci img {
  width: 1.5rem;
  display: inline-block;
  margin-right: 0.5rem;
}
.footer .ft_info p {
  font-weight: 300;
}
.footer .ft_jrinfo {
  color: var(--jrsoftwhite);
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
  font-size: 1.4rem;
  font-weight: 200;
}
.footer .ft_jrinfo span {
  font-weight: 200;
}
.footer .ft_jrinfo button {
  font-weight: 200;
  color: var(--jrsoftwhite);
}
.footer .ft_jrinfo button b{
  font-weight: 700;
}
.footer .btnFt_rsv {
  background-color: var(--brown800);
  color: var(--jrwhite);
  padding: 1rem 3rem;
  font-size: clamp(1.6rem, 1.531rem + 0.31vw, 1.8rem);
  font-weight: 500;
  border-radius: 0.5rem;
}
.footer .center_lst {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer .center_lst a {
  color: var(--jrwhite);
  font-weight: 500;
  font-size: clamp(1.6rem, 1.531rem + 0.31vw, 1.8rem);
}
.footer .float_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}
.footer .copyright {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: var(--brown200);
}
.footer .sns {
  display: flex;
  gap: 2rem;
}
.footer .footer-region-links {
  font-size: 0.075em;
  color: #c5a67d;
  text-align: right;
  width: 100%;
  margin-top: 0.5rem;
}
.footer .footer-region-links a {
  font-size: 1em;
  color: #c5a67d;
}

.ico_consult {
  background: url("../images/icon_pencil.svg") no-repeat;
  background-size: contain;
}
.ico_call {
  
  background: url("../images/icon_phone.svg") no-repeat;
  background-size: contain;
}
.ico_bus {
  background: url("../images/icon_bus.svg") no-repeat;
  background-size: contain;
}
.ico_car {
  background: url("../images/icon_car.svg") no-repeat;
  background-size: contain;
}
.icon_ctaWrite {
  background: url("../images/icon_cs.svg") no-repeat;
  background-size: contain;
}
.icon_ctakakao {
  background: url("../images/icon_chat.svg") no-repeat;
  background-size: contain;
}
.icon_ctanaver {
  background: url("../images/icon_reservation.svg") no-repeat;
  background-size: contain;
}
.icon_ctacall {
  background: url("../images/icon_call.svg") no-repeat;
  background-size: contain;
}

.ctaWrap {
  width: 8rem;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  position: fixed;
  z-index: 9999;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
.ctaWrap .ctaCs {
  width: 100%;
  background-color: var(--jrwhite);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10rem;
  display: flex;
  padding-bottom: 2rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
}
.ctaWrap .ctaCs .jrcall {
  background-color: var(--brown700);
  display: flex;
  border-radius: 10rem;
  height: 8rem;
  padding: 1.5rem 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.ctaWrap .ctaCs .jrcall p {
  color: var(--jrwhite);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
}
.ctaWrap .ctaCs li {
  display: block;
  width: 100%;
}
.ctaWrap .ctaCs a {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 5px 0;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  align-self: stretch;
  text-align: center;
  color: var(--gray800);
  font-size: 1.4rem;
  font-weight: 600;
}
.ctaWrap .ctaCs a i {
  display: inline-block;
  width: 3rem;
  height: 3rem;
}
.ctaWrap .btntop {
  display: flex;
  width: 5rem;
  height: 5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  font-size: 0;
}
.ctaWrap .btntop i {
  background: url("../images/icon_top.svg") no-repeat;
  background-size: contain;
  font-size: 0;
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
}
.naviTabbar {
  display: none;
  z-index: 100;
  width: 100%;
  bottom: 0;
  position: fixed;
  border-top: 1px solid var(--brown100);
  background-color: var(--jrwhite);
}
.naviTabbar .ctaCs {
  display: flex;
  align-items: center;
  align-self: stretch;
}
.naviTabbar .ctaCs li {
  width: calc(100% / 4);
}
.naviTabbar .ctaCs a {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 10px 0;
  flex-direction: column;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
  color: var(--gray800);
  font-size: 1.4rem;
  font-weight: 600;
  gap: 5px;
}
.naviTabbar .ctaCs a i {
  display: inline-block;
  width: 3rem;
  height: 3rem;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
}
.modal-content {
  padding: 4rem;
  border-radius: 1.2rem;
  position: relative;
  text-align: center;
  animation: slideDown 0.3s ease-out;
}
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 1.75rem;
  cursor: pointer;
  color: #666;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}
.close-btn:hover {
  color: var(--brown800, #714923);
  background: rgba(113, 73, 35, 0.08);
}
.csModal,.termModal {
  width: 50rem;
  max-width: 100%;
  box-sizing: border-box;
}
.csModal {
  background: #faf8f5;
  border: 1px solid rgba(113, 73, 35, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.termModal {
  background: rgba(29, 29, 31, 0.9);
  border: 1px solid #797979;
}
.csModal h2,.termModal h2 {
  font-size: clamp(1.8rem, 1.662rem + 0.62vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}
.csModal h2 {
  color: var(--brown900, #4a3520);
}
.termModal h2 {
  color: var(--jrwhite);
}
.csModal header p {
  color: #5c4a3a;
  font-size: 1.35rem;
  line-height: 1.5;
  margin: 0.35rem 0;
}
.csModal .csModal-header {
  margin-bottom: 0.5rem;
}
.csModal .subinfo {
  margin: 0.5rem 0 1rem 0;
  color: #c44;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.csModal .csModal-desc {
  margin-top: 0.25rem;
}
.csModal .csForm p {
  width: 100%;
  margin: 0;
}
.csModal .csForm textarea {
  font-size: 1.05rem;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(113, 73, 35, 0.25);
  background: #fff;
  color: #333;
  min-height: 5rem;
  resize: vertical;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.csModal .csForm textarea:focus {
  outline: none;
  border-color: var(--brown500, #a67c52);
  box-shadow: 0 0 0 3px rgba(113, 73, 35, 0.12);
}
.csModal .csForm textarea::placeholder {
  color: #999;
}
.csModal .csForm input {
  font-size: 1.05rem;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(113, 73, 35, 0.25);
  background: #fff;
  color: #333;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.csModal .csForm input:focus {
  outline: none;
  border-color: var(--brown500, #a67c52);
  box-shadow: 0 0 0 3px rgba(113, 73, 35, 0.12);
}
.csModal .csForm input::placeholder {
  color: #999;
}
.csModal .csForm {
  margin: 1.75rem 0 1.5rem 0;
  text-align: left;
}
.csModal .submit {
  border-radius: 12px;
  background: var(--brown800, #714923);
  font-size: 1.15rem;
  padding: 1rem 3rem;
  font-weight: 600;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(113, 73, 35, 0.3);
}
.csModal .submit:hover {
  background: var(--brown900, #4a3520);
  transform: translateY(-1px);
}
.csModal .submit:active {
  transform: translateY(0);
}
.termModal .submit {
  border-radius: 4rem;
  background: var(--jrsoftwhite);
  font-size: 1.6rem;
  padding: 0.8rem 5rem;
  font-weight: 700;
  color: var(--gray800);
  border: none;
  cursor: pointer;
}
.modal-content.termModal {padding:4rem 2rem;} 
.termModal h2 {padding-bottom: 2rem;}
.termModal .txt_area {height:50vh; overflow-y: auto;
color:var(--gray300); font-size: 1.4rem; font-weight: 300;; text-align: left;
}
.termModal .txt_area b{font-size: 1.6rem; font-weight: 500;;}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*mobile 950*/
.mobilelayout .brMo {
  display: block;
}
.mobilelayout .header {
  height: 64px;
  overflow: hidden;
}
.mobilelayout .header .innerWrap {
  min-height: 0;
  height: 100%;
}
.mobilelayout .header .gnb_menu {
  line-height: 64px;
}
.mobilelayout .header .logo {
  font-size: 1.8rem;
  line-height: 64px;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mobilelayout .naviTabbar {
  display: inherit;
}
.mobilelayout .ctaWrap {
  display: none;
}
.mobilelayout .csModal {
  width: 100%;
  margin: auto 2rem;
}

@media screen and (max-width: 1500px) {
  .innerWrap {
    width: 100%;
    padding: 0 5rem;
  }
}

@media screen and (max-width: 1200px) {
  .innerWrap {
    padding: 0 2rem;
  }
  .header .innerWrap {
    gap: 1rem;
  }
  .header .logo {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 2rem;
    letter-spacing: -0.06rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header .gnb_menu ul a {
    font-size: 14px;
    padding: 0 8px;
  }
}

@media screen and (max-width: 950px) {
  .innerWrap {
    width: 100%;
    padding: 0 1rem;
  }
  .header .logo {
    font-size: 1.7rem;
    line-height: 64px;
    letter-spacing: -0.04rem;
    max-width: calc(100vw - 8.5rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .visual .btn_group .btnCall {
    display: flex !important;
  }
  .visual {
    margin-top: 64px;
  }
  /* 모바일: 메뉴 링크·전문분야는 숨기고, 돋보기·햄버거만 표시 */
  .header .gnb_menu {
    display: flex !important;
  }
  .header .gnb_menu .gnb_list > li:not(.gnb_util) {
    display: none !important;
  }
  .header .gnb_menu .gnb_list {
    display: flex !important;
    align-items: center;
    gap: 0.25rem;
  }
  .visual .btn_group .btncs i {
    height: 2rem;
    width: 2rem;
  }
  .visual .innerWrap {
    margin-top: 0;
    padding-left: 0;
  }
  .visual .title {
    margin-left: 0;
  }
  .section1 .cont .lst .icon-scale {
    width: 3rem;
    height: 3rem;
  }
  .section3 .cont {
    flex-direction: column;
  }
  .footer .innerWrap {
    flex-direction: column;
  }
  .footer .float_right {
    align-items: flex-start;
  }
  .footer .float_left {
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer .sns img {
    width: 3rem;
  }
  .visual .btn_group .btncs {
    padding: 0.8rem 3rem;
  }
  .section1 .cont {
    flex-direction: column;
    gap: 0;
  }
  .section1 .cont .lst {
    width: 100%;
    border-right: none;
    margin-bottom: 2rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 2rem;
  }
  .swiper-slide-active .review-card {
    transform: scale(1);
  }
  .swiper-wrapper {
    align-items: flex-start;
  }
  .ctaWrap {
    display: none;
  }
  .modal-content {
    padding: 4rem 2rem;
  }
  .section1 .cont .lst:last-child {
    border-bottom: none;
  }
}

/* 고정 헤더(64px)와 서브 히어로 간격 통일 */
.subpage .page-hero {
  margin-top: 64px !important;
}

@media screen and (max-width: 640px) {
  .header .logo {
    font-size: 1.45rem;
    letter-spacing: -0.02rem;
    max-width: calc(100vw - 8rem);
  }
}

@media screen and (max-width: 480px) {
  .header .logo {
    font-size: 1.28rem;
    max-width: calc(100vw - 7.2rem);
  }
}
