/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 11 2026 | 05:29:19 */
* { box-sizing: border-box; font-family: 'Noto Sans KR', sans-serif; }
ol, ul, dl, dd, dt { list-style: none; padding: 0; margin: 0; }
a { display: inline-block; color: inherit; text-decoration: none; }
p, h1, h2, h3, h4 { padding: 0; margin: 0; }

:root {
  --main-color: #907d5d;
  --main-bg-color: #dedede;
  --sub-color01: #c1c1c1;
  --sub-color02: #c1a36f;
  --gray-color01: #f3f3f3;
  --one-layout: 1200px;
  --white-color: #f2f2f2;
  --one-txt-color: #232323;
  --one-txt-gray: #555;
  --one-hd1: 48px;
  --one-hd2: 40px;
  --one-hd3: 32px;
  --one-p-tit: 24px;
  --one-body: 18px;
  --one-caption: 15px;
  --one-lh-lg: 1.3;
  --one-lh-r: 1.6;
  --one-space-xl: 120px;
  --one-space-lg: 100px;
  --one-space-r: 80px;
  --one-space-s: 48px;
  --one-space-safe: 16px;
  --one-gap-xl: 32px;
  --one-gap-lg: 24px;
  --one-gap-r: 16px;
  --one-gap-sm: 8px;

  /* 새 레이아웃 전용 */
  --accent: #4a6670;
  --accent-light: #e8eef0;
  --accent-mid: #8fadb5;
  --border-line: #e0e0de;
}

/* =========== 유틸리티 =========== */
.flx-row { display: flex; flex-direction: row; }
.flx-col { display: flex; flex-direction: column; }
.txt-ct { text-align: center; }
.txt-wrap {
  color: var(--one-txt-color);
  font-size: var(--one-body);
  line-height: var(--one-lh-r);
  font-weight: 400;
  word-break: keep-all;
  letter-spacing: -0.02em;
}
.txt-wrap .hd1 { font-size: var(--one-hd1); line-height: var(--one-lh-lg); font-weight: 700; }
.txt-wrap .hd2 { font-size: var(--one-hd2); line-height: var(--one-lh-lg); font-weight: 600; }
.txt-wrap .hd3 { font-size: var(--one-hd3); line-height: var(--one-lh-r); font-weight: 500; }
.txt-wrap .p-tit { font-size: var(--one-p-tit); line-height: var(--one-lh-r); font-weight: 500; }
.txt-wrap .body-txt { font-size: var(--one-body); line-height: var(--one-lh-r); font-weight: 400; }
.txt-wrap .cp-txt { font-size: var(--one-caption); line-height: var(--one-lh-r); font-weight: 400; }
.con-list-dot li { position: relative; padding-left: var(--one-gap-r); padding-bottom: 4px; }
.con-list-dot li::before { position: absolute; content: ''; width: 3px; height: 3px; border-radius: 50%; background: var(--one-txt-color); left: 2px; top: 0.78em; }

/* =========== 글로벌 레이아웃 =========== */
body { margin: 0; background: #fff; }

section { position: relative; padding-left: var(--one-space-safe); padding-right: var(--one-space-safe); overflow: hidden; }
.con-inner { position: relative; margin: 0 auto; max-width: var(--one-layout); padding: var(--one-space-xl) 0; }

/* =========== 
  HERO — 사이드 레이아웃 (기존과 다른 구조)
=========== */
.hero-section {
  background: #fff;
  border-bottom: 1px solid var(--border-line);
  padding: 0 var(--one-space-safe);
}
.hero-inner {
  max-width: var(--one-layout);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  min-height: 560px;
  align-items: stretch;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 0;
  border-right: 1px solid var(--border-line);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
}
.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--one-txt-color);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  word-break: keep-all;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--one-txt-gray);
  margin-bottom: 40px;
  word-break: keep-all;
}
.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--one-txt-color);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border: 2px solid var(--one-txt-color);
  letter-spacing: -0.01em;
  transition: 0.25s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--one-txt-color);
  font-size: 15px;
  font-weight: 500;
  border: 2px solid var(--border-line);
  letter-spacing: -0.01em;
  transition: 0.25s;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--one-txt-color); }

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 60px 60px;
  gap: 0;
}
.hero-info-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-line);
}
.hero-info-block:first-child { border-top: 1px solid var(--border-line); }
.hero-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.hero-info-value {
  font-size: 15px;
  color: var(--one-txt-color);
  line-height: 1.6;
  word-break: keep-all;
}

/* =========== 
  SECTION 공통
=========== */
.sec-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 32px;
}
.sec-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--one-txt-color);
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  word-break: keep-all;
}
.sec-sub {
  font-size: 17px;
  color: var(--one-txt-gray);
  line-height: 1.7;
  word-break: keep-all;
}

/* =========== 
  02. 캐치프레이즈 — 3단 가로 배너 (새 레이아웃)
=========== */
.philosophy-section { background: #3c311b; }
.philosophy-inner {
  max-width: var(--one-layout);
  margin: 0 auto;
  padding: var(--one-space-lg) 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.philosophy-item {
  padding: 48px 40px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.philosophy-item:last-child { border-right: none; }
.philosophy-num {
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.philosophy-tit {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.4;
  word-break: keep-all;
}
.philosophy-txt {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  word-break: keep-all;
}

/* =========== 
  03. 의료진
=========== */
.doctor-section { background: #fff; }
.doctor-inner {
  max-width: var(--one-layout);
  margin: 0 auto;
  padding: var(--one-space-xl) 0;
}
.doctor-hd-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 2px solid var(--one-txt-color);
  margin-top: 56px;
}
/* 각 원장 블록 */
.dr-block {
  padding: 56px 48px 56px 0;
  border-right: 1px solid var(--border-line);
}
.dr-block:last-child {
  border-right: none;
  padding: 56px 0 56px 48px;
}
/* 원장 이름 영역 */
.dr-name-row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 6px;
}
.dr-name {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--one-txt-color);
  line-height: 1;
}
.dr-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  padding-bottom: 3px;
  letter-spacing: -0.01em;
}
.dr-spec-row {
  font-size: 15px;
  color: var(--one-txt-gray);
  margin-bottom: 32px;
  line-height: 1.5;
}
/* 면허 강조 — 박스 없이 텍스트 레이어로 */
.dr-license-block {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-line);
}
.dr-license-block p {
  font-size: 14px;
  font-weight: 500;
  color: var(--one-txt-color);
  line-height: 1.75;
  letter-spacing: -0.01em;
}
.dr-license-block p + p {
  margin-top: 2px;
}
.dr-license-block .dr-license-note {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--one-txt-gray);
  line-height: 1.65;
}
/* 경력 구분자 */
.dr-career-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sub-color01);
  margin-bottom: 14px;
}
/* 경력 항목 */
.dr-career-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dr-career-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0ee;
}
.dr-career-item:first-child {
  border-top: 1px solid #f0f0ee;
}
.dr-career-dot {
  flex-shrink: 0;
  margin-top: 7px;
  width: 6px;
  height: 6px;
  border: 1.5px solid var(--accent-mid);
  border-radius: 50%;
}
.dr-career-txt {
  font-size: 14px;
  color: var(--one-txt-gray);
  line-height: 1.6;
  letter-spacing: -0.01em;
}
.dr-career-txt strong {
  color: var(--one-txt-color);
  font-weight: 600;
}
/* 모바일 */
@media (max-width: 767px) {
  .doctor-hd-wrap { grid-template-columns: 1fr; }
  .dr-block { padding: 40px 0; border-right: none; border-bottom: 1px solid var(--border-line); }
  .dr-block:last-child { border-bottom: none; padding: 40px 0; }
  .dr-name { font-size: 28px; }
}

/* =========== 
  04. 진료과목
=========== */
.treatment-section { background: var(--gray-color01); }
.treatment-inner {
  max-width: var(--one-layout);
  margin: 0 auto;
  padding: var(--one-space-xl) 0;
}
/* 전체 테이블 래퍼 */
.tr-table {
  margin-top: 56px;
  border-top: 2px solid var(--one-txt-color);
}
/* 각 행 — 과목 하나 */
.tr-row {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  border-bottom: 1px solid var(--border-line);
  min-height: 100px;
  transition: background 0.2s;
}
.tr-row:hover { background: #fff; }
/* 열: 과목명 */
.tr-col-name {
  padding: 36px 0 36px 0;
  border-right: 1px solid var(--border-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tr-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sub-color01);
  margin-bottom: 10px;
}
.tr-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--one-txt-color);
  letter-spacing: -0.025em;
  line-height: 1.2;
  word-break: keep-all;
}
.tr-name-en {
  font-size: 12px;
  color: var(--sub-color01);
  margin-top: 5px;
  letter-spacing: 0.02em;
}
/* 열: 담당·설명 */
.tr-col-desc {
  padding: 36px 40px;
  border-right: 1px solid var(--border-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tr-desc-main {
  font-size: 15px;
  color: var(--one-txt-color);
  line-height: 1.7;
  word-break: keep-all;
  margin-bottom: 10px;
}
.tr-desc-note {
  font-size: 13px;
  color: var(--one-txt-gray);
  line-height: 1.65;
  word-break: keep-all;
}
/* 열: 세부 항목 */
.tr-col-items {
  padding: 36px 0 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.tr-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  color: var(--one-txt-gray);
  line-height: 1.5;
}
.tr-item::before {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 1px;
  background: var(--sub-color01);
  margin-top: 0.7em;
}

@media (max-width: 1024px) {
  .tr-row { grid-template-columns: 180px 1fr 1fr; }
}
@media (max-width: 767px) {
  .tr-row { grid-template-columns: 1fr; }
  .tr-col-name { padding: 28px 0 16px; border-right: none; border-bottom: 1px solid var(--border-line); }
  .tr-col-desc { padding: 16px 0; border-right: none; border-bottom: 1px solid var(--border-line); }
  .tr-col-items { padding: 16px 0 28px; }
}

/* =========== 
  05. FAQ
=========== */
.faq-section { background: var(--gray-color01); }
.faq-inner {
  max-width: var(--one-layout);
  margin: 0 auto;
  padding: var(--one-space-xl) 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  margin-top: 56px;
}
.faq-sidebar {
  position: sticky;
  top: 24px;
  align-self: start;
}
.faq-sidebar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.faq-nav-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--one-txt-gray);
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: 0.2s;
  letter-spacing: -0.01em;
  word-break: keep-all;
}
.faq-nav-btn:hover { color: var(--one-txt-color); background: rgba(0,0,0,0.03); }
.faq-nav-btn.is-active {
  color: var(--one-txt-color);
  font-weight: 700;
  border-left-color: var(--accent);
  background: #fff;
}
.faq-panel { display: none; }
.faq-panel.is-active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

.faq-item {
  background: #fff;
  border: 1px solid var(--border-line);
  margin-bottom: 8px;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-q-badge {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-q-text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: var(--one-txt-color);
  line-height: 1.5;
  word-break: keep-all;
}
.faq-q-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s;
}
.faq-q-arrow::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
  transform: rotate(45deg);
  position: absolute;
  top: 3px;
  left: 4px;
}
.faq-item.is-open .faq-q-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}
.faq-a-inner {
  padding: 0 24px 24px 64px;
  font-size: 15px;
  color: var(--one-txt-gray);
  line-height: 1.8;
  word-break: keep-all;
  white-space: pre-line;
}
.faq-nav-btn:hover { color: #fff; background: var(--main-color); }
.faq-item:hover > .faq-q { background: var(--main-color); }
.faq-item:hover .faq-q-text { color: #fff; }
.faq-item:hover .faq-q-arrow::after { border-color: #fff; }
/* =========== 
  06. 찾아오시는 길 — 사이드 레이아웃
=========== */
.map-section { background: #fff; }
.map-inner {
  max-width: var(--one-layout);
  margin: 0 auto;
  padding: var(--one-space-xl) 0;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.map-left {}
.map-embed {
  height: 360px;
  background: var(--accent-light);
  border: 1px solid var(--border-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  overflow: hidden;
}
.map-right {
  padding-top: 8px;
}
.map-info-group { margin-bottom: 32px; }
.map-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.map-info-value {
  font-size: 15px;
  color: var(--one-txt-color);
  line-height: 1.75;
  word-break: keep-all;
}
.map-info-value strong { font-weight: 600; }
.time-table { width: 100%; border-collapse: collapse; }
.time-table td {
  padding: 6px 0;
  font-size: 14px;
  color: var(--one-txt-color);
  border-bottom: 1px solid var(--border-line);
  vertical-align: top;
}
.time-table td:first-child {
  font-weight: 500;
  width: 80px;
  color: var(--one-txt-gray);
}
.time-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  padding: 2px 8px;
  margin-left: 6px;
  vertical-align: middle;
}

/* =========== 
  Footer
=========== */
.footer-section {
  background: var(--one-txt-color);
  padding: 0 var(--one-space-safe);
}
.footer-inner {
  max-width: var(--one-layout);
  margin: 0 auto;
  padding: 48px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-brand {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.footer-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-tel {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer-tel-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========== 반응형 =========== */
@media (max-width: 1024px) {
  :root {
    --one-hd1: 46px; --one-hd2: 38px; --one-hd3: 30px; --one-p-tit: 20px;
    --one-body: 16px; --one-caption: 13px;
    --one-space-xl: 80px; --one-space-lg: 60px;
  }
  .hero-title { font-size: 40px; }
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .faq-sidebar > .faq-sidebar-label { display: none; }
  .faq-nav-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
  .faq-nav-btn { width: auto; border-left: none; border-bottom: 2px solid transparent; padding: 8px 14px; border-radius: 2px; background: #fff; }
  .faq-nav-btn.is-active { border-bottom-color: var(--accent); background: #fff; }
  .map-inner { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  :root {
    --one-hd1: 8vw; --one-hd2: 7vw; --one-hd3: 6vw;
    --one-p-tit: 5vw; --one-body: 3.8vw; --one-caption: 3vw;
    --one-space-xl: 15vw; --one-space-lg: 12vw;
    --one-gap-xl: 5vw; --one-gap-lg: 4vw;
  }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 0 32px; border-right: none; border-bottom: 1px solid var(--border-line); }
  .hero-title { font-size: 32px; }
  .hero-right { padding: 32px 0 48px; }
  .philosophy-inner { grid-template-columns: 1fr; }
  .philosophy-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 36px 24px; }
  .doctor-cards { grid-template-columns: 1fr; }
  .treatment-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; }
}

/* =========== 최신글 섹션 헤더 =========== */
.news-section {
  padding-left: var(--one-space-safe);
  padding-right: var(--one-space-safe);
}

.news-inner {
  max-width: var(--one-layout);
  margin: 0 auto;
  padding: var(--one-space-xl) 0 var(--one-space-s);
}

.news-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 2px solid var(--one-txt-color);
  padding-top: 28px;
}

.news-hd-left {}

.news-hd-rule {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sub-color01);
  margin-bottom: 12px;
}

.news-hd-title {
  font-size: var(--one-hd2);
  font-weight: 700;
  color: var(--one-txt-color);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.news-hd-more {
  font-size: 13px;
  font-weight: 500;
  color: var(--one-txt-gray);
  letter-spacing: -0.01em;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--one-txt-gray);
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.news-hd-more:hover {
  color: var(--one-txt-color);
  border-color: var(--one-txt-color);
}

/* 반응형 */
@media (max-width: 767px) {
  .news-hd { align-items: flex-start; flex-direction: column; gap: 20px; }
  .news-hd-title { font-size: var(--one-hd3); }
}

.btn-primary {
	border: none !important;
}