@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400;500;600&display=swap');

/* ===== BASE FONT ===== */
    body { font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif; }

    /* ===== HERO — about 전용 오버라이드 (공통은 common.css) ===== */
  
    /* ===== HOTEL LIST HOVER ===== */
    .hotel-list-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      cursor: pointer;
      transition: background .2s;
    }
    .hotel-list-item:first-child { border-top: 1px solid var(--border); }
    .hotel-thumb {
      width: 72px;
      height: 72px;
      flex-shrink: 0;
      border-radius: 3px;
      background-size: cover;
      background-position: center;
      transition: opacity .2s;
    }
    .hotel-list-name {
      font-size: 20px;
      color: #555;
      text-align: left;
      line-height: 1.5;
      transition: color .2s;
    }
    .hotel-list-item:hover .hotel-list-name,
    .hotel-list-item.active .hotel-list-name { color: #111; font-weight: 600; }
    .hotel-list-item.active { background: #f9f7f4; }

    .w400 {font-weight:400!important}
    
    /* ===== ABOUT PAGE SPECIFIC ===== */
    .hero-bg-top {
      background-image: none;
      background-color: #fff;
      overflow: hidden;
    }

    .hero-bg-top::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../img/company/top.jpg') center / cover no-repeat;
      transform: scale(1.04);
      clip-path: inset(18% 14% 18% 14%);
      animation: aboutHeroOpen 1.8s cubic-bezier(.16, 1, .3, 1) forwards;
      will-change: clip-path, transform;
    }

    .hero-bg-top .page-hero-overlay {
      z-index: 1;
    }

    .hero-bg-top .page-hero-content {
      z-index: 2;
    }

    .hero-bg-top .hero-title {
      display: block;
      font-family: 'Cormorant', 'Libre Caslon Text', 'Big Caslon', 'Caslon', serif;
      font-size: clamp(42px, 7vw, 90px);
      color: #fff !important;
      text-shadow: none;
      opacity: 0;
      transform: translateY(18px);
      animation: aboutHeroTitleIn 1.05s cubic-bezier(.16, 1, .3, 1) .62s forwards;
    }

    @keyframes aboutHeroOpen {
      to {
        clip-path: inset(0);
        transform: scale(1);
      }
    }

    @keyframes aboutHeroTitleIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-bg-top::before,
      .hero-bg-top .hero-title {
        animation: none;
        clip-path: inset(0);
        transform: none;
        opacity: 1;
      }
    }

    body[data-header-theme="dark"] .site-header.header-transparent {
      border-bottom-color: rgba(0, 0, 0, 0.12) !important;
    }

    /* ---- 탭 공통 섹션 간격 ---- */
    .tab-content > section {
      padding-top: 84px !important;
    }

    /* ---- 글로우포트클리닉 탭 ---- */
    .clinic-intro {
      padding: 64px 0 60px !important;
    }

    .clinic-logo-center {
      text-align: center;
      margin-bottom: 48px;
    }

    .clinic-logo-big {
      font-family: 'Libre Caslon Text', 'Big Caslon', 'Caslon', serif;
      font-size: 80px;
      font-weight: 400;
      letter-spacing: 14px;
      color: #1a1a1a;
      margin-bottom: 14px;
    }

    .clinic-logo-sub {
      font-family: 'Montserrat', 'Pretendard', sans-serif;
      font-size: 32px;
      font-weight: 300;
      color: #424242;
      letter-spacing: 0.04em;
    }

    .clinic-v-line {
      width: 1px;
      height: 72px;
      background: #c8c8c8;
      margin: 32px auto;
    }

    .clinic-slogan {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 60px;
    }

    .clinic-slogan h2 {
      font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
      font-size: 32px;
      font-weight: 700;
      color: #252525;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .clinic-slogan p {
      font-size: 20px;
      color: #5f5f5f;
      line-height: 1.65;
    }

    /* Clinic Feature items */
    .feature-block {
      padding: 64px 0;
    }

    .feature-num {
      font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: #424242;
      letter-spacing: 1px;
      margin-bottom: 14px;
    }

    .feature-title {
      font-family: 'Montserrat', 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
      font-size: 40px;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 14px;
    }

    .feature-row {
      display: flex;
      align-items: flex-start;
      gap: 60px;
    }

    .feature-row.reverse {
      flex-direction: row-reverse;
    }

    .feature-img-col {
      flex: 0 0 42%;
    }

    .feature-text-col {
      flex: 1;
      padding-top: 8px;
    }

    /* Feature 01 전용 — 이미지 좌측 블리드 + 타이틀 우측 */
    .feature-01-wrap { padding: 0; }
    .feature-01-layout {
      display: flex;
      align-items: stretch;
      min-height: 580px;
    }
    .feature-01-imgs {
      flex: 0 0 50%;
      position: relative;
      overflow: hidden;
    }
    .feat01-bg {
      position: absolute;
      inset: 0;
      left: -55%;
      width: 135%;
      background-size: cover;
      background-position: center;
    }
    .feat01-fg {
      position: absolute;
      top: 8%;
      left: 35%;
      width: 72%;
      height: 78%;
      background-size: cover;
      background-position: center top;
      border-radius: 2px;
      box-shadow: 0 12px 48px rgba(0,0,0,0.22);
    }
    .feature-01-text {
      flex: 1;
      width: 100%;
      max-width: 700px;
      padding: 72px 80px 72px 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    @media (max-width: 1919px) {
    .feat01-bg {
      position: absolute;
      inset: 0;
      left: -45%;
    }}

    @media (max-width: 900px) {
      .feature-01-layout { flex-direction: column; }
      .feature-01-imgs { flex: none; width: 100%; height: 420px; }
      .feature-01-text { padding: 48px 24px; }
    }

    /* Feature 02 — 겹치는 원 3개 */
    .pkg-circles {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 98px 0 20px;
      isolation: isolate;
    }
    .pkg-circle {
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: rgba(251,245,238,0.8); mix-blend-mode: multiply;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px 32px;
    }
    .pkg-circle + .pkg-circle { margin-left: -44px; }
    .pkg-circle-name {
      font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
      font-size: 32px;
      font-weight: 800;
      color: #424242;
      margin-bottom: 14px;
    }
    .pkg-circle-desc {
      font-size: 20px;
      color: #666;
      line-height: 1.75;
    }
    @media (max-width: 900px) {
      .pkg-circles { flex-direction: column; }
      .pkg-circle + .pkg-circle { margin-left: 0; margin-top: -44px; }
      .pkg-circle { width: 280px; height: 280px; }
    }

    /* Feature desc list */
    .feature-desc {
      font-size: 19px;
      color: #555;
      line-height: 1.75;
    }

    .feature-desc p {
      margin-bottom: 12px;
    }

    @media (min-width: 901px) and (max-width: 1440px) {
      .clinic-logo-big { font-size: 64px; }
      .clinic-logo-sub { font-size: 24px; }
      .clinic-slogan h2 { font-size: 27px; }
      .clinic-slogan p {
        font-size: 17px;
        line-height: 1.75;
      }
      .feature-title { font-size: 32px; }
      .feature-desc {
        font-size: 16px;
        line-height: 1.8;
      }
      .feature-01-layout { min-height: 500px; }
      .feature-01-text { padding: 64px 56px; }
      .pkg-circles { padding-top: 72px; }
      .pkg-circle {
        width: 292px;
        height: 292px;
        padding: 34px 28px;
      }
      .pkg-circle-name { font-size: 25px; }
      .pkg-circle-desc {
        font-size: 16px;
        line-height: 1.7;
      }
      .hosp-panel-desc { font-size: 16px; }
    }

    /* Feature 04 — 국가별 풀와이드 캐러셀 */
    .country-carousel {
      overflow: hidden;
      width: 100%;
    }
    .country-track {
      display: flex;
      gap: 30px;
      width: max-content;
      will-change: transform;
      cursor: grab;
    }
    .country-track.dragging { cursor: grabbing; }
    .country-slide {
      flex: 0 0 22vw;
      aspect-ratio: 443 / 540;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
      border-radius: 4px;
    }
    .country-slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.08) 55%, transparent 75%);
    }
    .country-slide-text {
      position: absolute;
      bottom: 24px;
      left: 20px;
      right: 12px;
      color: #fff;
    }
    .country-slide-name {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .country-slide-desc {
      font-size: 20px;
      color: rgba(255,255,255,0.85);
      line-height: 1.6;
    }
    @media (max-width: 900px) {
      .country-slide { flex: 0 0 60vw; }
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Event section */
    .event-main {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 6;
      overflow: hidden;
      border-radius: 4px 4px 0 0;
    }
    .event-main-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: opacity 0.35s ease;
    }
    .event-main-img.is-current { z-index: 0; }
    .event-main-img.is-prev {
      z-index: 1;
      opacity: 0;
      pointer-events: none;
    }
    .event-main-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
      z-index: 2;
    }
    .event-main-text {
      position: absolute;
      top: 50%;
      left: 8%;
      transform: translateY(-50%);
      color: #fff;
      text-align: left;
      z-index: 3;
    }
    .event-main-title {
      font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
      font-size: 40px;
      font-weight: 800;
      line-height: 1.45;
      margin-bottom: 14px;
    }
    .event-main-sub {
      font-size: 20px;
      color: rgba(255,255,255,0.78);
      margin-bottom: 22px;
    }
    .event-main-list {
      list-style: none;
      font-size: 20px;
      color: rgba(255,255,255,0.72);
      line-height: 2;
    }
    .event-thumbs {
      display: flex;
      height: 140px;
      gap: 4px;
    }
    .event-thumb {
      flex: 1 1 0;
      position: relative;
      background-size: cover;
      background-position: center;
      cursor: pointer;
      overflow: hidden;
    }
    .event-thumb-overlay {
      position: absolute;
      inset: 0;
      
      transition: background 0.3s;
    }
    .event-thumb:hover .event-thumb-overlay,
    .event-thumb.active .event-thumb-overlay { background: rgba(0,0,0,0.2); }
    .event-thumb-text {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 14px 20px;
      color: #fff;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .event-thumb-num {
      font-size: 20px;
      color: rgba(255,255,255,0.65);
      padding-top: 2px;
      flex-shrink: 0;
    }
    .event-thumb-title {
      font-size: 20px;
      font-weight: 700;
      line-height: 1.5;
    }

    /* Hospital expanding panels */
    .hosp-panels {
      display: flex;
      height: 460px;
      overflow: hidden;
    }
    .hosp-panel {
      flex: 1;
      position: relative;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }
    .hosp-panels:hover .hosp-panel { flex: 0.5; }
    .hosp-panels .hosp-panel:hover { flex: 2.5; }
    .hosp-panel-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
    }
    .hosp-panel-text {
      position: absolute;
      bottom: 28px;
      left: 24px;
      color: #fff;
    }
    .hosp-panel-name {
      font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .hosp-panel-desc {
      font-size: 20px;
      color: rgba(255,255,255,0.85);
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.35s 0.1s, transform 0.35s 0.1s;
    }
    .hosp-panel:hover .hosp-panel-desc {
      opacity: 1;
      transform: translateY(0);
    }

    /* Hotel cards */
    .hotel-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 28px;
    }

    .hotel-card .img-box {
      border-radius: 2px;
      margin-bottom: 10px;
    }

    .hotel-label {
      font-size: 20px;
      color: #888;
      text-align: center;
    }

    /* Country tags */
    .country-tags {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin: 20px 0;
    }

    .country-tag {
      padding: 6px 16px;
      border: 1px solid var(--border);
      border-radius: 20px;
      font-size: 20px;
      color: #666;
    }

    /* Treatment cards */
    .treat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 80px;
    }

    .treat-card .img-box {
      margin-bottom: 12px;
      border-radius: 2px;
    }

    /* 원형 이미지만 크기 제한 */
    .treat-card .img-box.ratio-1-1 {
      max-width: 280px;
      max-height: 280px;
      margin-left: auto;
      margin-right: auto;
    }
    

    .treat-name {
      font-size: 26px;
      font-weight: 600;
      color: #333;
      margin-bottom: 6px;
    }

    .treat-desc {
      font-size: 19px;
      color: #999;
      line-height: 1.7;
    }

    /* ---- 의료진 탭 ---- */
    .doctors-section {
      padding: 100px 0;
      text-align: center;
    }

    .doctors-section .container {
      max-width: 1200px;
    }

    .doctors-intro {
      margin-bottom: 118px;
    }

    .doctors-intro h2 {
      font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
      font-size: clamp(38px, 4.4vw, 60px);
      font-weight: 400;
      line-height: 1.25;
      color: #1a1a1a;
      margin-bottom: 24px;
    }

    .doctors-intro h2 .doctors-intro-bold,
    .doctors-intro h2.w800 {
      font-weight: 800;
    }

    .doctors-intro p {
      font-size: clamp(16px, 1.6vw, 22px);
      font-weight: 400;
      color: #000;
      line-height: 2;
    }

    .doctors-intro-line {
      display: block;
      width: 1px;
      height: 72px;
      margin: 44px auto 0;
      background: #cfcfcf;
    }

    .doctor-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(36px, 5.4vw, 80px);
      margin-bottom: clamp(64px, 7vw, 100px);
      padding-bottom: 0;
      border-bottom: none;
      text-align: center;
    }

    .doctor-item:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .doctor-item.reverse {
      flex-direction: row-reverse;
    }

    /* 2번부터: 사진만 위로 (텍스트는 아래 그대로) */
    .doctor-item + .doctor-item .doctor-photo {
      margin-top: clamp(-140px, -9vw, -72px);
    }

    .doctor-photo {
      flex: 0 1 clamp(360px, 45vw, 540px);
    }

    .doctor-photo .img-box {
      border-radius: 8px;
      aspect-ratio: 668/803;
      background-size: cover;
      background-position: top center;
    }

    .doctor-info {
      flex: 0 1 720px;
      min-width: 0;
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }

    .doctor-item:not(:first-of-type) .doctor-info {
      transform: translateY(clamp(-70px, -4.6vw, -36px));
    }

    .doctor-clinic {
      font-family: 'Pretendard', sans-serif;
      font-size: clamp(32px, 3.1vw, 40px);
      font-weight: 400;
      color: #000;
      line-height: 1.1;
    }

    .doctor-heading {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 18px;
      margin-bottom: clamp(24px, 2.8vw, 36px);
      white-space: nowrap;
    }

    .doctor-title {
      font-family: 'Pretendard', sans-serif;
      font-size: clamp(34px, 3.4vw, 45px);
      color: #1a1a1a;
      line-height: 1.15;
    }

    .doctor-title .doc-role {
      font-weight: 400;
    }

    .doctor-title .doc-name {
      font-weight: 700;
    }

    .doctor-career {
      font-family: 'Pretendard', sans-serif;
      font-size: clamp(16px, 1.6vw, 22px);
      font-weight: 400;
      color: #999;
      line-height: 2;
    }

    /* ---- 오시는길 탭 ---- */
    .location-section {
      padding: 80px 0 0;
      overflow: hidden;
    }

    .location-heading {
      text-align: center;
      margin-bottom: 56px;
      max-width: 1460px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 max(40px, calc((100vw - 1460px) / 2));
    }

    .location-heading h2 {
      font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #1a1a1a;
    }

    .location-heading p {
      font-size: 20px;
      color: #888;
    }

    /* index prime-section 동일 구조 */
    .loc-carousel {
      overflow: hidden;
      position: relative;
      padding-left: max(40px, calc((100vw - 1460px) / 2));
    }

    .loc-track {
      display: flex;
      gap: 30px;
      transition: transform .55s cubic-bezier(0.25, 0.1, 0.25, 1);
      will-change: transform;
      cursor: grab;
    }

    .loc-card {
      flex: 0 0 calc(33.333% - 20px);
      min-width: 160px;
      aspect-ratio: 4/3;
      border-radius: 15px;
      overflow: hidden;
    }

    .loc-card .img-box {
      height: 100%;
      background-size: cover;
      background-position: center;
    }

    .loc-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      width: 44px; height: 44px;
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(0,0,0,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #333;
      cursor: pointer;
      opacity: 0;
      transition: opacity .2s;
    }

    .loc-carousel:hover .loc-arrow { opacity: 1; }
    .loc-arrow.prev { left: calc(max(40px, calc((100vw - 1460px) / 2)) + 8px); }
    .loc-arrow.next { right: calc(max(40px, calc((100vw - 1460px) / 2)) + 8px); }

    .loc-prog-outer {
      padding: 24px max(40px, calc((100vw - 1460px) / 2)) 60px;
      max-width: 1460px;
      margin: 0 auto;
    }

    .loc-prog-bar {
      width: 100%;
      height: 2px;
      background: #d0d0d0;
      position: relative;
    }

    .loc-prog-fill {
      position: absolute;
      left: 0; top: 0;
      height: 100%;
      background: #000;
      width: 33.33%;
      transition: width .45s ease;
    }

    .location-map-section {
      display: grid;
      grid-template-columns: 50% 1fr;
      gap: 0;
      align-items: stretch;
      max-width: 100%;
      padding: 150px 0 200px;
      margin: 0;
    }

    .location-map-box {
      width: 100%;
      min-height: 500px;
      border-radius: 0;
      overflow: hidden;
      position: relative;
    }

    .location-map-box iframe,
    .location-map-box .naver-map {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .contact-info {
      padding: 0 max(40px, calc((100vw - 1460px) / 2)) 0 140px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .contact-info h3 {
      font-family: var(--serif);
      font-size: 40px;
      font-weight: 400;
      margin-bottom: 32px;
      color: #1a1a1a;
    }

    .contact-num-big {
      font-size: 26px!important;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 32px;
      line-height:1em!important
    }

    .info-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 20px;
      margin-bottom: 20px;
    }

    .info-table th {
      text-align: left;
      padding: 8px 0;
      color: #666;
      font-weight: 600;
      width: 90px;
      vertical-align: top;
      font-size: 20px;
    }

    .info-table td {
      padding: 8px 0;
      color: #1a1a1a;
      line-height: 1.7;
      font-size: 20px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .feature-row {
        flex-direction: column;
        gap: 32px;
      }

      .feature-row.reverse {
        flex-direction: column;
      }

      .feature-img-col {
        flex: none;
        width: 100%;
      }

      .hotel-cards {
        grid-template-columns: repeat(2, 1fr);
      }

      .treat-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .doctor-item {
        flex-direction: column !important;
        gap: 32px;
        margin-bottom: 48px !important;
      }

      .doctor-item .doctor-photo,
      .doctor-item + .doctor-item .doctor-photo {
        margin-top: 0;
      }

      .doctor-item:not(:first-of-type) .doctor-info {
        transform: none;
      }

      .doctor-photo {
        flex: none;
        width: 100%;
        max-width: min(100%, 420px);
      }

      .doctors-intro h2 {
        font-size: clamp(34px, 9vw, 44px);
      }

      .doctors-intro p {
        font-size: 16px;
        line-height: 1.9;
      }

      .doctor-clinic,
      .doctor-title {
        font-size: clamp(28px, 7.6vw, 34px);
      }

      .doctor-heading {
        gap: 12px;
      }

      .doctor-title {
        margin-bottom: 0;
      }

      .doctor-career {
        font-size: 16px;
        line-height: 1.9;
      }

      .location-map-section {
        grid-template-columns: 1fr;
        padding: 80px 0 100px;
      }

      .contact-info {
        padding: 48px 40px 0;
      }

      .location-map-box {
        min-height: 340px;
      }

      .loc-carousel {
        padding-left: 40px;
        padding-right: 40px;
      }

      .loc-card {
        flex: 0 0 72%;
      }

      .loc-prog-outer {
        padding: 20px 40px 40px;
      }

      .loc-arrow {
        opacity: 1;
      }

      .loc-arrow.prev { left: 12px; }
      .loc-arrow.next { right: 12px; }

      .interior-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .location-section {
        padding-top: 48px;
      }
.info-table--phone th{margin-bottom:0px!important; padding-bottom:0px!important}
.info-table td {padding-bottom:0px!important}
      .location-heading {
        margin-bottom: 32px;
        padding: 0 24px;
      }

      .location-heading h2 {
        font-size: 28px;
        line-height: 1.35;
        margin-bottom: 8px;
      }

      .location-heading p {
        font-size: 14px;
      }

      .loc-carousel {
        padding-left: 24px;
        padding-right: 24px;
      }

      .loc-track {
        gap: 14px;
      }

      .loc-card {
        flex: 0 0 84%;
        border-radius: 10px;
        aspect-ratio: 4 / 3.15;
      }

      .loc-arrow {
        width: 38px;
        height: 38px;
        font-size: 18px;
      }

      .loc-prog-outer {
        padding: 18px 24px 36px;
      }

      .location-map-section {
        padding: 48px 0 72px;
      }

      .location-map-box {
        min-height: 280px;
      }

      .contact-info {
        padding: 36px 24px 0;
      }

      .contact-info h3 {
        font-size: 30px;
        margin-bottom: 22px;
      }

      .loc-contact-label {
        font-size: 12px;
      }

      .contact-num-big {
        font-size: 22px;
        margin-bottom: 24px;
      }

      .info-table:not(.info-table--phone),
      .info-table:not(.info-table--phone) tbody,
      .info-table:not(.info-table--phone) tr,
      .info-table:not(.info-table--phone) th,
      .info-table:not(.info-table--phone) td {
        display: block;
        width: 100%;
      }

      .info-table--phone {
        display: table;
        width: 100%;
        table-layout: fixed;
      }

      .info-table--phone tbody {
        display: table-row-group;
      }

      .info-table--phone tr {
        display: table-row;
      }

      .info-table--phone th,
      .info-table--phone td {
        display: table-cell;
        width: auto;
      }

      .info-table--phone th {
        width: 76px;
        padding: 0 8px 0 0;
        font-size: 16px;
        font-weight: 700;
        color: #111;
      }

      .info-table--phone .contact-num-big {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.45;
        margin: 0;
      }

      .info-table {
        font-size: 15px;
        margin-bottom: 18px;
      }

      .info-table th {
        padding: 0 0 8px;
        font-size: 14px;
        color: #888;
      }

      .info-table td {
        padding: 2px 0;
        font-size: 16px;
        line-height: 1.7;
      }

      .loc-divider {
        margin: 22px 0;
      }

      .hotel-cards {
        grid-template-columns: 1fr;
      }

      .treat-grid {
        grid-template-columns: 1fr;
      }

      .interior-grid {
        grid-template-columns: 1fr;
      }

      .pkg-types {
        flex-direction: column;
      }
    }

/* ===== about.html inline styles moved ===== */
.ab-inline-2 { padding: 56px 0 0; }
.ab-inline-3 { max-width: 1560px; margin: 0 auto; padding: 0 40px; }
.ab-inline-4 { width:100%; height:380px; object-fit:cover; object-position:center; display:block; }
.feat01-bg-image { background-image: url('../img/index/in_3.jpg'); }
.feat01-fg-image { background-image: url('../img/company/03.jpg'); }
.ab-inline-7 { font-size: 24px; font-weight: 700; color: #333; margin-bottom: 12px; }
.ab-inline-8 { font-size: 24px; font-weight: 700; color: #333; margin-top: 28px; margin-bottom: 12px; }
.ab-inline-9 { background: #fff; padding-bottom: 296px; }
.about-text-center { text-align: center; }
.about-text-muted { color: #888; }
.treat-image-1 { background-image: url('../img/index/in_6.jpg'); background-size: cover; background-position: center; border-radius:3px; }
.treat-name-top-gap { margin-top: 18px; }
.treat-image-2 { background-image: url('../public/about_2.jpg'); background-size: cover; border-radius:3px; }
.treat-image-3 { background-image: url('../public/about_3.jpg'); background-size: cover; border-radius:3px; }
.about-section-white-nopb { background: #fff; padding-bottom: 0; }
.about-section-head { text-align: center; padding-bottom: 48px; }
.about-country-subtitle { font-size: 20px; font-weight: 600; color: #555; margin-bottom: 0; }
.country-slide-image-1 { background-image: url('../img/company/s_1.jpg'); }
.country-slide-image-2 { background-image: url('../img/company/s_2.jpg'); }
.country-slide-image-3 { background-image: url('../img/company/s_3.jpg'); }
.country-slide-image-4 { background-image: url('../img/company/s_4.jpg'); }
.country-slide-image-5 { background-image: url('../img/company/s_5.jpg'); }
.feature-bg-04-bottom { background-image: url('../img/company/bg_3.jpg'); background-size: cover; background-position: center; margin-top: 180px; }
.ab-inline-26 { font-size: 20px; color: #555; margin-bottom: 40px; }
.circle-image-1 { background-image: url('../img/company/04_1.png'); background-size: cover; background-color: transparent; border-radius: 50%; }
.ab-inline-28 { margin-top: 15px; }
.circle-image-2 { background-image: url('../img/company/04_2.png'); background-size: cover; background-color: transparent; border-radius: 50%; }
.circle-image-3 { background-image: url('../img/company/04_3.png'); background-size: cover; background-color: transparent; border-radius: 50%; }
.ab-inline-31 { padding-bottom: 0; }
.ab-inline-32 { font-size: 20px; color: #888; margin-bottom: 0; }
.ab-inline-33 { display:flex; align-items:stretch; min-height:480px; }
.hotel-main-bg-default { flex:0 0 50%; position:relative; background-size:cover; background-position:center; background-image:url('../public/images/hotel_3.jpg'); transition:background-image 0.4s ease; }
.ab-inline-35 { position:absolute; bottom:20px; left:24px; color:#fff; font-size:20px; background:rgba(0,0,0,0.45); padding:6px 14px; border-radius:2px; }
.ab-inline-36 { flex:1; display:flex; flex-direction:column; justify-content:center; padding:0 60px; }
.hotel-thumb-image-1 { background-image:url('../public/images/hotel_1.jpg'); }
.hotel-thumb-image-2 { background-image:url('../public/images/hotel_2.jpg'); }
.hotel-thumb-image-3 { background-image:url('../public/images/hotel_3.jpg'); }
.hotel-thumb-image-4 { background-image:url('../public/images/hotel_4.jpg'); }
.hospital-panel-image-1 { background-image: url('../img/06_1.jpg'); }
.hospital-panel-image-2 { background-image: url('../img/06_2.jpg'); }
.hospital-panel-image-3 { background-image: url('../img/06_3.jpg'); }
.ab-inline-44 { background: #f4f2ef url('../public/images/over_bg.jpg') no-repeat center center / cover; padding-bottom: 100px; margin-top: 180px; }
.event-main-image-default { background-image: url('../public/images/over_01.jpg'); }
.ab-inline-46 { display:none; }
.doctor-image-1 { background-image:url('../img/company/people_1.jpg'); border-radius:8px; aspect-ratio:3/4; background-size:cover; background-position:top center; }
.doctor-image-2 { background-image:url('../img/company/people_2.jpg'); border-radius:8px; aspect-ratio:3/4; background-size:cover; background-position:top center; }
.doctor-image-3 { background-image:url('../img/company/people_3.jpg'); border-radius:8px; aspect-ratio:3/4; background-size:cover; background-position:top center; }
.doctor-image-4 { background-image:url('../img/company/people_4.jpg'); border-radius:8px; aspect-ratio:3/4; background-size:cover; background-position:top center; }
.interior-image-1 { background-image: url('../img/interior_1.jpg'); }
.interior-image-2 { background-image: url('../img/interior_2.jpg'); }
.interior-image-3 { background-image: url('../img/interior_3.jpg'); }

.loc-image { height: 100%; background-repeat: no-repeat; background-position: center; background-size: cover; }
.loc-image-1 { background-image: url('../img/index/in_1.jpg'); }
.loc-image-2 { background-image: url('../img/index/in_2.jpg'); }
.loc-image-3 { background-image: url('../img/index/in_3.jpg'); }
.loc-image-4 { background-image: url('../img/index/in_4.jpg'); }
.loc-image-5 { background-image: url('../img/index/in_5.jpg'); }
.loc-image-6 { background-image: url('../img/index/in_6.jpg'); }

.loc-contact-label {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.iframe-no-border { border:0; }
.about-divider-gap { margin: 16px 0; }
.about-btn-top-gap { margin-top:16px; }
.event-thumb-image-1 { background-image: url('../public/images/over_01.jpg'); }
.event-thumb-image-2 { background-image: url('../public/images/over_02.jpg'); }
.event-thumb-image-3 { background-image: url('../public/images/over_03.jpg'); }

/* ===== 오시는 길 ===== */
.location-heading {
  text-align: center;
  padding: 64px 0 48px;
}
.location-heading h2 {
  font-size: 40px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.location-heading p {
  font-size: 20px;
  color: #aaa;
  letter-spacing: 1px;
}

.loc-map-wrap {
  display: flex;
  gap: 48px;
  align-items: stretch;
  padding-bottom: 100px;
}

.loc-map-box {
  flex: 1 1 0;
  min-height: 520px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.loc-info-panel {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.loc-info-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.loc-info-icon {
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.loc-info-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #bbb;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.loc-info-value {
  font-size: 20px;
  color: #222;
  line-height: 1.7;
}
.loc-tel {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #1a1a1a;
}

.loc-divider {
  height: 1px;
  background: #ececec;
  margin: 20px 0 22px;
}

.loc-hours-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}
.loc-hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  color: #444;
}
.loc-day { color: #555; font-weight: 500; }
.loc-time { color: #222; }
.loc-lunch .loc-day,
.loc-lunch .loc-time { color: #aaa; font-size: 15px; }
.loc-closed .loc-day { color: #bbb; font-size: 15px; }
.loc-closed-text { color: #e55; font-size: 15px; }

.loc-transport-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.loc-transport-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: #444;
}
.loc-transport-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.loc-transport-badge.subway { background: #2c6fad; color: #fff; }
.loc-transport-badge.bus    { background: #2a9d5c; color: #fff; }
.loc-transport-badge.car    { background: #555; color: #fff; }

.loc-reserve-btn {
  display: block;
  text-align: center;
  margin-top: 28px;
  padding: 15px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 4px;
  font-size: 20px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background .2s;
}
.loc-reserve-btn:hover { background: #333; }

@media (max-width: 900px) {
  .loc-map-wrap { flex-direction: column; gap: 32px; }
  .loc-map-box  { min-height: 320px; }
  .loc-info-panel { flex: none; width: 100%; }
}
@media (max-width: 640px) {
  .location-heading { padding: 40px 0 28px; }
  .location-heading h2 { font-size: 26px; }
  .loc-map-box { min-height: 260px; }
  .loc-tel { font-size: 18px; }
}

/* about.html 오시는 길 실제 마크업용 모바일 보정 */
@media (max-width: 640px) {
  .doctor-heading {
    gap: 8px;
  }

  .doctor-clinic {
    font-size: clamp(20px, 5.8vw, 28px);
  }

  .doctor-title {
    font-size: clamp(21px, 6vw, 30px);
  }

  .location-section {
    padding-top: 48px;
  }

  .location-heading {
    margin-bottom: 32px;
    padding: 0 24px 28px;
  }

  .location-heading h2 {
    font-size: 28px;
    line-height: 1.35;
  }

  .location-heading p {
    font-size: 14px;
    line-height: 1.6;
  }

  .location-map-section {
    padding: 48px 0 72px;
  }

  .location-map-box {
    min-height: 280px;
  }

  .contact-info {
    padding: 36px 24px 0;
  }

  .contact-info h3 {
    font-size: 30px;
    margin-bottom: 22px;
  }

  .contact-num-big {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .info-table:not(.info-table--phone),
  .info-table:not(.info-table--phone) tbody,
  .info-table:not(.info-table--phone) tr,
  .info-table:not(.info-table--phone) th,
  .info-table:not(.info-table--phone) td {
    display: block;
    width: 100%;
  }

  .info-table--phone {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  .info-table--phone tbody {
    display: table-row-group;
  }

  .info-table--phone tr {
    display: table-row;
  }

  .info-table--phone th,
  .info-table--phone td {
    display: table-cell;
    width: auto;
    vertical-align: middle;
  }

  .info-table--phone th {
    width: 76px;
    padding: 0 8px 0 0;
    font-size: 16px;
    font-weight: 700;
    color: #111;
  }

  .info-table--phone .contact-num-big {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0;
  }

  .info-table th {
    padding: 0 0 8px;
    font-size: 14px;
    color: #888;
  }

  .info-table td {
    padding: 2px 0;
    font-size: 16px;
    line-height: 1.7;
  }
}

/* ===== 오시는 길 최종 레이아웃 ===== */
.location-section {
  padding: 82px 0 120px;
  background: #F6F6F6;
  overflow: hidden;
}

.location-heading {
  max-width: 1120px;
  margin: 0 auto 54px;
  padding: 0 40px;
  text-align: center;
}

.location-heading h2 {
  font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: #111;
}

.location-heading p {
  font-size: 15px;
  color: #444;
  letter-spacing: 0;
}

.loc-carousel {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  overflow: hidden;
  position: relative;
}

.loc-track {
  display: flex;
  gap: 24px;
  transition: transform .55s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
  cursor: grab;
}

.loc-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 160px;
  aspect-ratio: 1.62 / 1;
  border-radius: 9px;
  overflow: hidden;
}

.loc-card:nth-child(n + 4) {
  display: block;
}

.loc-arrow {
  display: flex;
}

.loc-prog-outer {
  display: block;
  max-width: 1120px;
  margin: 32px auto 0;
  padding: 0 40px;
}

.loc-prog-bar {
  width: 260px;
  height: 2px;
  background: #e5e5e5;
  position: relative;
}

.loc-prog-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 33.333%;
  background: #1a1a1a;
  transition: width .45s ease;
}

.loc-card .img-box {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.location-map-section {
  display: grid;
  grid-template-columns: minmax(520px, 1.08fr) minmax(360px, 0.8fr);
  gap: clamp(72px, 7vw, 112px);
  align-items: center;
  max-width: 1320px;
  margin: 108px auto 0;
  padding: 88px 0 0;
  border-top: none;
}

.location-map-box {
  width: 100%;
  min-height: 0;
  height: clamp(480px, 37vw, 560px);
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  background: #f2f2f2;
}

.contact-info {
  padding: 0;
  display: block;
}

.contact-info h3 {
  font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  font-size: clamp(46px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #111;
  margin-bottom: 34px;
}

.contact-phone-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-phone-label {
  flex: 0 0 76px;
  width: 76px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #111;
}

.contact-phone-num {
  flex: 1;
  min-width: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #111;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.info-table th {
  width: 76px;
  padding: 2px 0;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  line-height: 1.45;
}

.info-table td {
  padding: 2px 0;
  font-size: 16px;
  line-height: 1.45;
  color: #222;
}

.info-table .hours-row {
  display: inline-flex;
  align-items: baseline;
}

.info-table .hours-label {
  display: inline-block;
  min-width: 70px;
  margin-right: 12px;
  white-space: nowrap;
}

.info-table .hours-time {
  display: inline-block;
  white-space: nowrap;
}

.loc-divider {
  height: 0;
  margin: 12px 0;
  background: transparent;
}

@media (max-width: 900px) {
  .location-section { padding: 64px 0 90px; }
  .loc-track { gap: 16px; }
  .loc-card { flex-basis: calc(50% - 8px); }
  .location-map-section {
    grid-template-columns: 1fr;
    max-width: 620px;
    gap: 36px;
    margin-top: 64px;
    padding-top: 48px;
  }
  .location-map-box { height: 420px; }
}

@media (max-width: 640px) {
  .location-heading { padding: 0 24px; margin-bottom: 32px; }
  .location-heading h2 { font-size: 26px; }
  .loc-carousel { padding: 0 24px; }
  .loc-track { gap: 14px; }
  .loc-card { flex-basis: 82%; }
  .loc-prog-outer { padding: 0 24px; }
  .location-map-section { padding: 40px 24px 0; margin-top: 48px; }
  .location-map-box { height: 320px; }
  .contact-info h3 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .info-table:not(.info-table--phone),
  .info-table:not(.info-table--phone) tbody,
  .info-table:not(.info-table--phone) tr,
  .info-table:not(.info-table--phone) th,
  .info-table:not(.info-table--phone) td {
    display: block;
    width: 100%;
  }

  .contact-phone-row {
    align-items: center;
    margin-bottom: 20px;
  }

  .contact-info .contact-phone-label {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
  }

  .contact-info .contact-phone-num {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.45;
  }

  .contact-info .info-table th {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    padding-bottom: 8px;
  }

  .contact-info .info-table td {
    font-size: 18px;
    line-height: 1.55;
    color: #222;
  }

  .info-table th { padding-bottom: 6px; }
  .info-table td { padding-top: 0; }
}

/* 오시는 길 상단 캐러셀 - gwang Space slider tone */
.location-section {
  padding: 96px 80px 120px;
  background: #F6F6F6;
}

.location-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  max-width: 1460px;
  margin: 0 auto 46px;
  padding: 0;
  text-align: left;
}

.location-heading .label {
  display: block;
  margin-bottom: 12px;
  font-family: 'Montserrat', 'Pretendard', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #1a1a1a;
  text-transform: uppercase;
}

.location-heading h2 {
  font-family: 'Pretendard', sans-serif;
  font-size: clamp(24px, 3.1vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}

.location-heading p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b625b;
}

.loc-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.loc-carousel {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0;
}

.loc-track {
  gap: 37px;
}

.loc-card {
  flex: 0 0 calc(33.333% - 25px);
  aspect-ratio: 16 / 9;
  border-radius: 15px;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}

.loc-card .img-box {
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}

.loc-card:hover .img-box {
  transform: scale(1.05);
}

.loc-arrow {
  position: static;
  top: auto;
  transform: none;
  width: 28px;
  height: 28px;
  padding: 0;
  background: #fff;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: transparent;
  opacity: 1;
  transition: transform .25s ease;
}

.loc-arrow::before {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 1.5px solid #a89786;
  border-left: 1.5px solid #a89786;
  transition: border-color .25s ease;
}

.loc-arrow.prev::before {
  transform: rotate(-45deg) translate(1px, 1px);
}

.loc-arrow.next::before {
  transform: rotate(135deg) translate(1px, 1px);
}

.loc-arrow:hover {
  transform: translateY(-2px);
}

.loc-arrow:hover::before {
  border-color: #111;
}

.loc-prog-outer {
  max-width: 1460px;
  margin: 28px auto 0;
  padding: 0;
}

.loc-prog-bar {
  width: 100%;
  height: 2px;
  background: #e3ddd6;
}

.loc-prog-fill {
  background: #1a1a1a;
}

.location-map-section {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
}

@media (max-width: 900px) {
  .location-section { padding: 72px 48px 96px; }
  .location-heading { margin-bottom: 36px; }
  .loc-card { flex-basis: calc(50% - 19px); }
}

@media (max-width: 640px) {
  .location-section { padding: 60px 24px 80px; }
  .location-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
  }
  .location-heading h2 { font-size: 28px; }
  .loc-carousel,
  .loc-prog-outer { padding: 0; }
  .loc-card { flex-basis: 82%; }
}

/* ===== ABOUT / CLINIC RESPONSIVE FINAL ===== */
@media (max-width: 1024px) {
  .page-hero.hero-bg-top {
    height: clamp(360px, 52vw, 520px);
    min-height: 360px;
  }

  .sub-nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 24px;
    -webkit-overflow-scrolling: touch;
  }

  .sub-nav a {
    flex: 0 0 auto;
    min-width: max-content;
    padding: 18px 8px;
    font-size: 15px;
  }

  .ab-inline-2 {
    padding-top: 42px;
  }

  .ab-inline-3 {
    padding: 0 28px;
  }

  .ab-inline-4 {
    height: clamp(280px, 42vw, 380px);
  }

  .clinic-intro {
    padding: 54px 0 46px !important;
  }

  .clinic-intro .container,
  .ab-inline-9 .container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .clinic-logo-center {
    margin-bottom: 34px;
  }

  .clinic-logo-big {
    font-size: clamp(42px, 8vw, 64px);
    letter-spacing: clamp(5px, 1.4vw, 10px);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .clinic-logo-sub {
    font-size: clamp(17px, 3.2vw, 24px);
  }

  .clinic-v-line {
    height: 54px;
    margin: 24px auto;
  }

  .clinic-slogan {
    max-width: 680px;
    margin-bottom: 42px;
  }

  .clinic-slogan h2 {
    font-size: clamp(23px, 3.8vw, 28px);
    line-height: 1.45;
    letter-spacing: -0.04em;
  }

  .clinic-slogan p {
    font-size: 16px;
    line-height: 1.8;
    word-break: keep-all;
  }

  .feature-01-layout {
    min-height: 0;
  }

  .feature-01-imgs {
    height: clamp(340px, 52vw, 460px);
  }

  .feat01-bg {
    left: 0;
    width: 100%;
    opacity: .35;
  }

  .feat01-fg {
    left: 50%;
    top: 10%;
    width: min(72%, 520px);
    height: 78%;
    transform: translateX(-50%);
  }

  .feature-01-text {
    max-width: none;
    padding: 44px 28px 58px;
    text-align: center;
  }

  .feature-title {
    font-size: clamp(28px, 4.2vw, 34px);
    line-height: 1.25;
    letter-spacing: -0.03em;
  }

  .feature-desc {
    max-width: 720px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.78;
    word-break: keep-all;
  }

  .treat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 52px;
  }

  .treat-card .img-box.ratio-1-1 {
    max-width: 220px;
    max-height: 220px;
  }

  .treat-name {
    font-size: 20px;
    line-height: 1.35;
    word-break: keep-all;
  }

  .treat-desc {
    font-size: 15px;
    line-height: 1.65;
    word-break: keep-all;
  }

  .ab-inline-9 {
    padding-top: 58px;
    padding-bottom: 110px;
  }
}

@media (max-width: 768px) {
  .treat-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 420px;
    margin: 46px auto 0;
  }

  .treat-card .img-box.ratio-1-1 {
    max-width: min(280px, 72vw);
    max-height: min(280px, 72vw);
  }

  .location-map-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .page-hero.hero-bg-top {
    height: 320px;
    min-height: 320px;
  }

  .hero-bg-top::before {
    background-position: center top;
    clip-path: inset(10% 8% 10% 8%);
  }

  .ab-inline-2 {
    padding-top: 32px;
  }

  .ab-inline-3 {
    padding: 0 20px;
  }

  .ab-inline-4 {
    height: 230px;
  }

  .clinic-intro {
    padding: 44px 0 34px !important;
  }

  .clinic-intro .container,
  .ab-inline-9 .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .clinic-logo-center {
    margin-bottom: 28px;
  }

  .clinic-logo-big {
    font-size: clamp(34px, 10vw, 44px);
    letter-spacing: clamp(2px, 1vw, 5px);
  }

  .clinic-logo-sub {
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .clinic-v-line {
    height: 42px;
    margin: 20px auto;
  }

  .clinic-slogan {
    margin-bottom: 30px;
  }

  .clinic-slogan h2 {
    font-size: 22px;
    line-height: 1.42;
    margin-bottom: 14px;
  }

  .clinic-slogan p {
    font-size: 15px;
    line-height: 1.75;
  }

  .clinic-slogan p br,
  .treat-desc br {
    display: none;
  }

  .feature-01-imgs {
    height: 300px;
  }

  .feat01-fg {
    width: min(78%, 320px);
    height: 76%;
  }

  .feature-01-text {
    padding: 36px 20px 50px;
  }

  .feature-title {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .feature-desc {
    font-size: 15px;
    line-height: 1.72;
    text-align: center;
  }

  .feature-desc p {
    margin-bottom: 10px;
  }

  .ab-inline-9 {
    padding-top: 46px;
    padding-bottom: 82px;
  }

  .treat-grid {
    gap: 36px;
    max-width: 360px;
  }

  .treat-name {
    font-size: 19px;
    margin-top: 14px;
  }

  .treat-desc {
    font-size: 14px;
    line-height: 1.68;
  }
}

@media (max-width: 390px) {
  .clinic-logo-big {
    font-size: 31px;
    letter-spacing: 1px;
  }

  .clinic-slogan h2 {
    font-size: 20px;
  }

  .feature-title {
    font-size: 24px;
  }
}

