

/* =========================================================
   메인 비주얼
========================================================= */

.main_visual {
    min-height: 780px;
    padding: 147px 0 166px;
    overflow: hidden;
    background: linear-gradient(to bottom,
            #ffffff 0%,
            #ffffff 15%,
            #f8faff 40%,
            #f3f6ff 70%,
            #edf2ff 100%);
}


/* common_box > div > div */
.main_visual .main_visual_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 700px;
    float: none;
}

/* 왼쪽 텍스트 */
.main_visual_text {
    width: 540px;
    padding-top: 20px;
}

.main_visual_category {
    margin-bottom: 22px;
    color: #111;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -1.2px;
}

.main_visual_title {
    color: #050505;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.48;
    letter-spacing: -2.6px;
}

.main_visual_title strong {
    color: #394d97;
    font-weight: 700;
}

.main_visual_description {
    margin-top: 34px;
    color: #222;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: -1px;
}

/* 하단 슬라이드 컨트롤 */
.main_visual_control {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 118px;
}

.main_visual_num {
    flex-shrink: 0;
    margin-right: 16px;
    font-weight: 700;
    font-size: 14px;
    color: #1f3f9a;
}

.main_visual_progress {
    width: 448px;
    height: 3px;
    overflow: hidden;
    background: #e2e4e9;
}

.main_visual_progress span {
    display: block;
    width: 33.3333%;
    height: 100%;
    background: #3154aa;
    transition: width 0.6s ease;
}

.main_visual_arrows {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: 28px;
}

.main_visual_arrows button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 24px;
    padding: 0;
    background: transparent;
    color: #a2a7b1;
    font-family: Arial, sans-serif;
    font-size: 25px;
    font-weight: 300;
    line-height: 1;
    transition: color 0.2s ease;
}

/* ‹ › 글리프가 광학적으로 아래에 치우쳐 그려져 미세 보정 */
.main_visual_arrows button {
    transform: translateY(-2px);
}

.main_visual_arrows button:hover {
    color: #3154aa;
}

/* 오른쪽 이미지 */
.main_visual_image {
    width: 630px;
    height: 530px;
    overflow: hidden;
    border-radius: 190px 60px 60px 60px;
    background: #f2f2f2;
    box-shadow:
        0 0 18px rgba(64, 105, 181, 0.18),
        0 12px 30px rgba(38, 57, 94, 0.08);
}

.main_visual_image img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.main_visual_image:hover img {
    transform: scale(1.03);
}

/* 메인 비주얼 슬라이더 (Slick) */
.main_visual_text_slider {
    width: 100%;
}

/* 초기 로딩 시 슬라이드 세로 쌓임 방지 */
.main_visual_text_slider .main_visual_text_inner {
    display: none;
}

.main_visual_text_slider .main_visual_text_inner:first-child,
.main_visual_text_slider.slick-initialized .main_visual_text_inner {
    display: block;
}

.main_visual_image_slider,
.main_visual_image_slider .slick-list,
.main_visual_image_slider .slick-track,
.main_visual_image_item {
    height: 100%;
}

.main_visual_image_item {
    display: none;
}

.main_visual_image_item:first-child,
.main_visual_image_slider.slick-initialized .main_visual_image_item {
    display: block;
}


/* =========================================================
   Header
========================================================= */

#header {
    position: fixed;
    top: 24px;
    left: 0;

    width: 100%;
    height: auto;

    background: transparent;
    border: 0;

    z-index: 1000;

    pointer-events: none;

    /* 헤더 텍스트 선택 방지 */
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* 헤더 링크·로고 드래그(고스트 이미지) 방지 */
#header a,
#header img {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
}

/* 퀵메뉴·예약메뉴 텍스트 선택 방지 */
.quick_menu,
.reservation_menu {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* 퀵메뉴·예약메뉴 링크·아이콘 드래그(고스트 이미지) 방지 */
.quick_menu a,
.quick_menu img,
.reservation_menu a,
.reservation_menu img {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
}

/* =========================================================
   Header Inner
========================================================= */

.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 1420px;
    height: 86px;

    margin: 0 auto;
    padding: 0 38px;

    box-sizing: border-box;

    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 999px;

    background: rgba(255, 255, 255, .9);

    box-shadow:
        0 10px 35px rgba(12, 31, 76, .12);

    transition:
        height .3s ease,
        background .3s ease,
        box-shadow .3s ease,
        transform .3s ease;

    pointer-events: auto;
}

/* =========================================================
   Logo
========================================================= */

.header_logo {
    width: 235px;
    margin: 0;

    flex-shrink: 0;
}

.header_logo a {
    display: block;
}

.header_logo img {
    display: block;
    height: auto;
}

/* =========================================================
   Navigation
========================================================= */

.header_nav {
    height: 100%;
}

.gnb {
    display: flex;
    align-items: center;

    height: 100%;
    margin: 0;
    padding: 0;

    gap: 38px;

    list-style: none;
}

.gnb>li {
    position: relative;
    height: 100%;
}

.gnb>li>a {
    position: relative;

    display: flex;
    align-items: center;

    height: 100%;

    color: #222;
    font-size: 19px;
    font-weight: 600;
    line-height: 1;

    text-decoration: none;
    white-space: nowrap;

    transition: color .25s ease;
}

.gnb>li>a::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;

    width: 0;
    height: 2px;

    margin: auto;

    border-radius: 999px;
    background: #152553;

    transition: width .3s ease;
}

.gnb>li>a:hover,
.gnb>li>a:focus-visible {
    color: #3853a3;
}

.gnb>li>a:hover::after,
.gnb>li>a:focus-visible::after {
    width: 100%;
}

/* 현재 메뉴 활성화 */
.gnb>li.active>a {
    color: #3853a3;
}

.gnb>li.active>a::after {
    width: 100%;
}

/* =========================================================
   Scroll Active
========================================================= */

#header.active .header_inner {
    height: 72px;

    background: rgba(255, 255, 255, .96);

    box-shadow:
        0 8px 28px rgba(12, 31, 76, .18);
}

#header.active .gnb>li>a::after {
    bottom: 16px;
}

/* =========================================================
   Focus
========================================================= */

.gnb>li>a:focus-visible {
    outline: 2px solid #3853a3;
    outline-offset: 6px;
    border-radius: 4px;
}

/* =========================================================
   Responsive
========================================================= */

@media screen and (max-width:1500px) {
    .header_inner {
        width: calc(100% - 60px);
    }

    .gnb {
        gap: 28px;
    }

    .gnb>li>a {
        font-size: 16px;
    }

    .header_logo {
        width: 210px;
    }
}

@media screen and (max-width:1250px) {
    #header {
        min-width: 1200px;
    }

    .header_inner {
        width: 1140px;
        padding: 0 28px;
    }

    .gnb {
        gap: 22px;
    }

    .gnb>li>a {
        font-size: 15px;
    }

    .header_logo {
        width: 190px;
    }
}

/* =========================================================
   섹션02 진료분야
========================================================= */

.process_section {
    padding: 160px 0 160px;
    overflow: hidden;
    background: linear-gradient(122deg, #2b4999 30%, #001c69 100%);
}



/* =========================================================
   상단 제목
========================================================= */

.process_head.process01 {
    width: 100%;
    margin-bottom: 52px;
}

.process_eng {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3.5px;
}

.process_title {
    margin-bottom: 10px;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -2px;
}

.process_subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
}

.process_subtitle strong {
    color: #fff;
    font-weight: 700;
}

/* =========================================================
   하단 전체 배치
========================================================= */

.process_body {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 42px;
}

/* =========================================================
   왼쪽 대표 이미지
========================================================= */

.process_main_image {
    flex-shrink: 0;
    width: 420px;
    height: 420px;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
}

.process_main_image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.process_main_image:hover img {
    transform: scale(1.04);
}

/* =========================================================
   중앙 진료 설명
========================================================= */

.process_info {
    flex-shrink: 0;
    width: 290px;
    min-height: 395px;
}

.process_number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 125px;
    height: 30px;
    margin-bottom: 18px;
    padding: 0 16px;
    border-radius: 30px;
    background: #dce8ff;
    color: #173b8e;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.process_name {
    margin-bottom: 13px;
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -2px;
}

.process_list {
    width: 100%;
}

.process_list li {
    padding-left: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    line-height: 2.0;
    letter-spacing: -0.7px;
}


/* 이전·다음 버튼 */
.process_arrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 42px;
}

.process_arrow button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
    background: #fff;
    color: #1c438f;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.process_arrow button:hover {
    background: #dce8ff;
    color: #0d2b74;
    transform: translateY(-2px);
}

/* =========================================================
   오른쪽 진료 카드
========================================================= */

.process_cards {
    display: flex;
    align-items: flex-start;
    flex: 1;
    gap: 18px;
    min-width: 0;
}

.process_card {
    display: block;
    flex: 1;
    min-width: 0;
    text-align: left;
}

.process_card_image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
}

.process_card:nth-child(1) {
    flex: 1.25;
}

.process_card:nth-child(2),
.process_card:nth-child(3) {
    flex: 0.8;
}

.process_card_image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.process_card p {
    margin-top: 12px;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.7px;
}

.process_card:hover .process_card_image img {
    transform: scale(1.05);
}

.process_card:hover p {
    font-weight: 700;
}

/* 진료분야 순환 전환 — 좌측 대표 이미지만 크로스페이드 (텍스트는 즉시 교체) */
.process_body .process_main_image img {
    transition:
        opacity 0.35s ease,
        transform 0.45s ease;
    will-change: opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.process_body.is-changing .process_main_image img {
    opacity: 0;
}

/* 우측 카드는 페이드 없이 즉시 교체 */

/* =========================================================
   섹션03 증상 안내
========================================================= */

.symptom_section {
    padding: 160px 0 160px;
    background: #fff;
}


.symptom_content {
    width: 100%;
    float: none;
}

/* =========================================================
   상단 타이틀
   기존 process_head 구조 그대로 사용
========================================================= */

.symptom_section .process_head {
    width: 100%;
    margin-bottom: 70px;
    text-align: center;
}

.symptom_section .process_eng {
    margin-bottom: 28px;
    color: #969696;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 3.5px;
}

.symptom_section .process_title {
    margin-bottom: 12px;
    color: #111;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -2px;
}

.symptom_section .process_title strong {
    color: #1c3d97;
    font-weight: 700;
}

.symptom_section .process_subtitle {
    color: #333;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
}

.symptom_section .process_subtitle strong {
    color: #111;
    font-weight: 700;
}

/* =========================================================
    증상
========================================================= */

.symptom_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 28px;

    width: 100%;
}

.symptom_box {
    display: flex;
    align-items: center;

    height: 142px;
    padding: 0 34px;

    border-radius: 28px;

    background: #0f369b;

    cursor: pointer;

    transition:
        transform .35s cubic-bezier(.4, 0, .2, 1),
        box-shadow .35s ease,
        background-color .35s ease;
}


.symptom_check {
    width: 58px;
    flex-shrink: 0;
}

.symptom_check img {
    display: block;
    width: 58px;
}

.symptom_txt {
    flex: 1;

    padding: 0 28px;

    color: #fff;

    font-size: 24px;
    font-weight: 400;

    line-height: 1.6;

    word-break: keep-all;
}

.symptom_txt strong {
    font-weight: 700;
}

.symptom_icon {
    width: 78px;
    flex-shrink: 0;

    text-align: right;
}

.symptom_icon img {
    max-width: 100%;
}



.symptom_box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(18, 46, 126, .18);
    filter: brightness(1.05);
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    background: #3f67cc;
}

/* =========================================================
   전문 진료 안내 배너
========================================================= */

.medical_banner {
    height: 345px;
    overflow: hidden;

    background:
        linear-gradient(rgba(0, 0, 0, .62),
            rgba(0, 0, 0, .62)),
        url('/images/medical_banner.png') center center / cover no-repeat;
}

/* common_box > div */
.medical_banner>div {
    height: 100%;
    margin: 0 auto;
}

/* common_box > div > div */
.medical_banner .medical_banner_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
    float: none;

    text-align: center;
}

/* 소제목 */
.medical_banner_subtitle {
    margin-bottom: 12px;

    color: #fff;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.5;
}

/* 메인 타이틀 */
.medical_banner_title {
    margin-bottom: 22px;

    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -2px;
}

/* 설명 */
.medical_banner_description {
    color: rgba(255, 255, 255, .9);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    word-break: keep-all;
}


/* =========================================================
   병원환경
========================================================= */

.environment_section {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

/* common_box 기본 너비 해제 */
.environment_section>.environment_inner {
    width: 100%;
    margin: 0;
}

.environment_content {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 900px;
    padding-left: calc((100vw - 1300px) / 2);
    float: none;
}

/* =========================================================
   왼쪽 영역
========================================================= */

.environment_left {
    flex-shrink: 0;
    width: 500px;
    padding: 110px 70px 90px 0;
}

/* 왼쪽 작은 슬라이더 */
.environment_small_slider {
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
}

.environment_small_slider .swiper-wrapper,
.environment_small_slider .swiper-slide {
    width: 100%;
}

.environment_small_image {
    width: 100%;
    height: 525px;
    overflow: hidden;
    border-radius: 30px;
    background: #f3f3f3;
}

.environment_small_image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

/* =========================================================
   이전·다음 버튼
========================================================= */

.environment_control {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.environment_control button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;
    padding: 0;

    border-radius: 50%;
    background: #f0f0f0;
    color: #273244;

    font-family: Arial, sans-serif;
    font-size: 24px;
    line-height: 1;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.environment_control button:hover {
    background: #23469f;
    color: #fff;
    transform: translateY(-2px);
}

/* =========================================================
   하단 텍스트
========================================================= */

.environment_text {
    margin-top: 12px;
    transition: opacity 0.35s ease;
}

/* 슬라이드 전환 시 텍스트 크로스페이드 */
.environment_text.is-changing {
    opacity: 0;
}

.environment_label {
    margin-bottom: 8px;
    color: #111;
    font-size: 27px;
    font-weight: 500;
    line-height: 1.5;
}

.environment_title {
    color: #050505;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -2px;
}

.environment_title strong {
    color: #294aa3;
    font-weight: 700;
}

/* =========================================================
   오른쪽 큰 이미지 슬라이더
========================================================= */

.environment_large_image {
    flex: 1;
    min-width: 0;
    height: 900px;
    overflow: hidden;
    background: #f4f4f4;
}

.environment_large_slider {
    width: 100%;
    height: 100%;
}

.environment_large_slider .swiper-wrapper,
.environment_large_slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.environment_large_slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.treatment_process {
    padding: 110px 0;
    background: #294aa3;
}


.treatment_process_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========================================================
   공통 타이틀 (기존 process_head 사용)
========================================================= */

.treatment_process .process_head {
    width: 400px;
    flex-shrink: 0;
}

.treatment_process .process_eng {
    color: rgba(255, 255, 255, .85);
}

.treatment_process .process_title {
    color: #fff;
}

.treatment_process .process_subtitle {
    color: rgba(255, 255, 255, .9);
}

.treatment_process .process_subtitle strong {
    color: #fff;
}

/* =========================================================
   프로세스
========================================================= */

.treatment_process_list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex: 1;
}

.treatment_process_item {
    width: 170px;
    text-align: center;
}

/* 원형 이미지 */

.treatment_process_image {
    width: 170px;
    height: 170px;

    overflow: hidden;

    border-radius: 50%;

    margin: 0 auto 22px;

    background: #fff;
}

.treatment_process_image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* 단계명 */

.treatment_process_name {
    color: #fff;

    font-size: 20px;
    font-weight: 400;

    line-height: 1.6;

    word-break: keep-all;
}

.treatment_process_name span {
    font-weight: 700;
}

/* 화살표 */

.treatment_process_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 175px;
    color: rgba(255, 255, 255, .55);
    font-size: 32px;
    font-weight: 700;
}

/* =========================================================
   원장소개
========================================================= */

.doctor_section {
    padding: 170px 0px;
    overflow: hidden;

    background:
        url("/images/doctor_bg.png") center center / cover no-repeat;
    height: 1100px;
}


.doctor_content {
    width: 100%;
    min-height: 900px;
    float: none;
}

/* =========================================================
   상단 공통 타이틀
========================================================= */

.doctor_section .process_head {
    width: 100%;
    text-align: center;
}

.doctor_section .process_eng {
    margin-bottom: 12px;

    color: #111;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: -1px;
}

.doctor_section .process_title {
    margin-bottom: 0;

    color: #111;
    font-size: 54px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -4px;
}

.doctor_section .process_title strong {
    color: #25479d;
    font-weight: 700;
}

/* =========================================================
   의료진 비주얼
========================================================= */

.doctor_visual {
    width: 100%;
    min-height: 760px;
}

/* 의료진 통합 이미지 */
.doctor_group_image {
    position: absolute;
    left: 50%;
    bottom: -290px;
    width: 834px;
    max-width: none;
    transform: translateX(-50%);
    z-index: 2;
}

/* =========================================================
   원장 정보 공통
========================================================= */

.doctor_info {
    position: absolute;
    z-index: 3;
}

.doctor_info_left {
    top: 265px;
    left: 0;
}

.doctor_info_right {
    top: 475px;
    right: 0;
    text-align: right;
}

.doctor_department {
    margin-bottom: 4px;

    color: #111;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.doctor_name {
    display: flex;
    align-items: flex-end;
    gap: 8px;

    padding-bottom: 8px;
    border-bottom: 2px solid #18388b;

    color: #111;
    line-height: 1.2;
}

.doctor_info_right .doctor_name {
    justify-content: flex-end;
}

.doctor_name strong {
    color: #18388b;
    font-size: 31px;
    font-weight: 700;
}

.doctor_name span {
    color: #222;
    font-size: 25px;
    font-weight: 400;
}

/* =========================================================
   약력 버튼
========================================================= */

.doctor_more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    min-width: 172px;
    height: 48px;
    margin-top: 24px;
    padding: 0 24px;

    border-radius: 30px;
    background: #183899;

    color: #fff;
    font-size: 18px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform .3s ease,
        background-color .3s ease,
        box-shadow .3s ease;
}

.doctor_more span {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
}

.doctor_more:hover {
    transform: translateY(-4px);
    background: #0f2d82;
    box-shadow: 0 12px 28px rgba(20, 53, 143, .2);
}

/* =========================================================
   원장 약력 팝업 (모달)
========================================================= */

.doctor_modal {
    position: fixed;
    inset: 0;
    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease, visibility .3s ease;
}

.doctor_modal.is-open {
    visibility: visible;
    opacity: 1;
}

.doctor_modal_dim {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 55, .55);
}

.doctor_modal_box {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 520px;
    max-height: 85vh;
    overflow-y: auto;

    padding: 44px 40px 40px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(12, 31, 76, .3);

    transform: translateY(16px);
    transition: transform .3s ease;
}

.doctor_modal.is-open .doctor_modal_box {
    transform: translateY(0);
}

.doctor_modal_close {
    position: absolute;
    top: 16px;
    right: 18px;

    width: 40px;
    height: 40px;
    padding: 0;

    background: transparent;
    color: #8a90a0;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;
    transition: color .2s ease;
}

.doctor_modal_close:hover {
    color: #183899;
}

.doctor_modal_dept {
    margin-bottom: 6px;
    color: #183899;
    font-size: 16px;
    font-weight: 600;
}

.doctor_modal_name {
    margin-bottom: 26px;
    color: #111;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -1px;
}

.doctor_modal_name span {
    margin-left: 6px;
    color: #555;
    font-size: 17px;
    font-weight: 500;
}

.doctor_modal_group+.doctor_modal_group {
    margin-top: 26px;
}

.doctor_modal_group h4 {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eef1f7;
    color: #183899;
    font-size: 19px;
    font-weight: 700;
}

.doctor_modal_group ul {
    padding-left: 2px;
}

.doctor_modal_group li {
    position: relative;
    padding-left: 16px;
    color: #333;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: -.3px;
}

.doctor_modal_group li::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #183899;
}

/* =========================================================
   혈액투석센터
========================================================= */

.dialysis_section {
    width: 100%;
    overflow: hidden;
    background: #072672;
}

/* common_box 기본 1200px 너비 해제 */
.dialysis_section>.dialysis_inner {
    width: 100%;
    margin: 0;
}

/* common_box > div > div */
.dialysis_content {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 1100px;
    float: none;
}

/* =========================================================
   왼쪽 영역
========================================================= */

.dialysis_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    width: 50%;
    height: 100%;

    overflow: hidden;
    padding: 0px 50px 60px;

    background: #001c69;
    text-align: center;
}

/* 텍스트 전체 */
.dialysis_text_slider {
    width: 100%;
    z-index: 2;
}

.dialysis_text_item {
    width: 100%;
}

/* 영문 */
.dialysis_eng {
    margin-bottom: 40px;

    color: #f0f0f0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 3px;
}

/* 메인 제목 */
.dialysis_title {
    color: #fff;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -4px;
    word-break: keep-all;
}

.dialysis_title strong {
    color: #b6c9ff;
    font-weight: 700;
}

/* =========================================================
   슬라이드 컨트롤
========================================================= */

.dialysis_control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin-top: 66px;
}

.dialysis_control button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 38px;
    padding: 0;

    background: transparent;
    color: rgba(255, 255, 255, 0.5);

    font-family: Arial, sans-serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.dialysis_control button:hover {
    color: #fff;
    transform: scale(1.08);
}

.dialysis_number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    border-radius: 50%;
    background: #d5e0ff;
    color: #173b8c;

    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0;
}

/* 설명 */
.dialysis_description {
    margin-top: 26px;

    color: #fff;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.6;
}

/* =========================================================
   하단 로고
========================================================= */

.dialysis_logo {
    position: absolute;
    bottom: 112px;
    left: 50%;

    width: 165px;

    transform: translateX(-50%);
    z-index: 3;
}

.dialysis_logo img {
    display: block;
    width: 100%;
    height: auto;
}

/* =========================================================
   하단 웨이브 장식
========================================================= */

.dialysis_wave {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 250px;

    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.dialysis_wave img {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    max-width: none;
    height: 100%;

    object-fit: cover;
    object-position: center bottom;
}

/* =========================================================
   오른쪽 이미지
========================================================= */

.dialysis_right {
    flex: 1;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    background: #eee;
}

.dialysis_right img {
    display: block;
    height: 100%;
    max-width: none;

    object-fit: cover;
    object-position: center;
}

/* 혈액투석 슬라이드 전환 — 우측 이미지만 크로스페이드 (텍스트는 즉시 교체) */
.dialysis_right img {
    transition: opacity 0.35s ease;
    will-change: opacity;
}

.dialysis_section.is-changing .dialysis_right img {
    opacity: 0;
}

/* =========================================================
   예약 및 바로가기
========================================================= */

.reservation_section {
    padding: 125px 0;
    background: #f3f3f3;
}


.reservation_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    float: none;
}

/* =========================================================
   왼쪽 타이틀
========================================================= */

.reservation_head {
    flex-shrink: 0;
    width: 520px;
    padding-left: 25px;
}

.reservation_eng {
    margin-bottom: 40px;
    color: #111;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 3px;
}

.reservation_title {
    margin-bottom: 22px;
    color: #050505;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -2.5px;
    word-break: keep-all;
}

.reservation_title strong {
    color: #0b2b7c;
    font-weight: 700;
}

.reservation_subtitle {
    color: #222;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
}

/* =========================================================
   오른쪽 메뉴
========================================================= */

.reservation_menu {
    display: grid;
    grid-template-columns: repeat(2, 205px);
    gap: 22px;
    flex-shrink: 0;
    margin-right: 20px;
}

/* 메뉴 카드 */
.reservation_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 205px;
    height: 195px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 20px;
    background: #092675;

    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);

    color: #fff;
    cursor: pointer;

    transition:
        transform 0.35s cubic-bezier(.4, 0, .2, 1),
        box-shadow 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease;

    border: 1px solid rgb(255, 255, 255);
}

.reservation_item:hover {
    border-color: rgb(214, 240, 255);
}

.reservation_item.blue {
    background: #051a53;
}

.reservation_item:hover {
    transform: translateY(-7px);
    background: #11348d;
    box-shadow: 0 15px 30px rgba(9, 38, 117, 0.22);
}

/* 아이콘 영역 */
.reservation_icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.reservation_icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;

    transition: transform 0.35s ease;
}

.reservation_item:hover .reservation_icon img {
    transform: scale(1.08);
}

/* 메뉴명 */
.reservation_item p {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -1px;
    word-break: keep-all;
}

/* =========================================================
   오시는 길 & 진료시간
========================================================= */

.location_section {
    overflow: hidden;
    background:
        linear-gradient(to bottom,
            #ffffff 0,
            #ffffff 360px,
            #001c69 360px,
            #001c69 100%);
    padding: 0 0 130px 0;
}

/* common_box 기본 1300px 사용 */
.location_section>.location_inner {
    width: 1300px;
    margin: 0 auto;
}

.location_content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    min-height: 850px;
    padding-top: 105px;
    float: none;
}

/* =========================================================
   왼쪽 이미지
========================================================= */

.location_left {
    width: 710px;
}

.location_map {
    width: 100%;
    height: 550px;
    border-radius: 22px;
    overflow: hidden;
    background: #eee;
}

.location_map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.location_building {
    margin-top: 30px;
    /* 박스 간격 */
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
}

.location_building img {
    display: block;
    width: 100%;
    height: auto;
}

/* =========================================================
   오른쪽 영역
========================================================= */

.location_right {
    flex-shrink: 0;
    width: 470px;
}

/* 공통 타이틀 오버라이드 */
.location_section .process_head {
    width: 100%;
    margin-bottom: 56px;
    text-align: right;
}

.location_section .process_eng {
    margin-bottom: 30px;
    color: #163b92;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 3.5px;
}

.location_section .process_title {
    margin-bottom: 18px;
    color: #111;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -2.6px;
}

.location_section .process_title strong {
    color: #23469f;
    font-weight: 700;
}

.location_section .process_subtitle {
    color: #333;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
}

/* =========================================================
   상세 정보
========================================================= */

.location_info {
    width: 100%;
    padding: 43px 0 60px;
    color: #fff;
}

.location_info_item {
    width: 100%;
}

.location_info_item+.location_info_item {
    margin-top: 42px;
}

/* =========================================================
   제목 버튼
========================================================= */

.location_info_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 5px 16px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .75);
    background: transparent;
    color: #fff;
    text-align: left;
    cursor: pointer;
}

.location_info_head span {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

/* =========================================================
   화살표
========================================================= */

.location_info_head i {
    display: block;
    width: 12px;
    height: 12px;
    margin-right: 6px;

    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;

    transform: rotate(45deg);
    transition: transform .35s ease;
}

.location_info_item.active .location_info_head i {
    transform: rotate(-135deg);
}

/* =========================================================
   내용
========================================================= */

.location_info_body {
    max-height: 0;
    overflow: hidden;

    padding: 0 5px;

    opacity: 0;
    transform: translateY(-8px);

    transition:
        max-height .45s ease,
        padding .35s ease,
        opacity .35s ease,
        transform .35s ease;
}

.location_info_item.active .location_info_body {
    max-height: 500px;
    padding: 20px 5px 0;

    opacity: 1;
    transform: translateY(0);
}

.location_info_body p {
    position: relative;

    padding-left: 13px;

    color: rgba(255, 255, 255, .95);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.9;

    word-break: keep-all;
}

.location_info_body p::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 0;
}

.location_info_body strong {
    color: #ffb300;
    font-weight: 700;
}

.location_info_space {
    margin-top: 18px;
}

/* =========================================================
   Footer
========================================================= */

.footer_section {
    width: 100%;
    min-width: 1200px;
    background: #03102f;
}

.footer_section>.footer_inner {
    width: 1300px;
    margin: 0 auto;
}

.footer_content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 225px;

    padding: 55px 0;

    box-sizing: border-box;
}

/* =========================================================
   Logo
========================================================= */

.footer_logo {
    flex-shrink: 0;
}

.footer_logo a {
    display: block;
}

.footer_logo img {
    display: block;
    height: auto;
}

/* =========================================================
   Information
========================================================= */

.footer_info {
    text-align: right;
    color: #fff;
}

.footer_info p {
    margin: 0;

    color: rgba(255, 255, 255, .95);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;

    letter-spacing: -.5px;
}

.footer_info p+p {
    margin-top: 2px;
}

.footer_divider {
    display: inline-block;
    margin: 0 5px;
    color: rgba(255, 255, 255, .8);
}

.footer_copy {
    margin-top: 3px !important;
}

/* =========================================================
   Full Responsive Overrides
========================================================= */
.mobile_menu_button {
    display: none;
}

/* 첫 화면에서는 기존 투명 헤더 */
#header:not(.scroll_header) {
    position: absolute;
    top: 0;
    height: 130px;
    pointer-events: auto;
}

#header:not(.scroll_header) .header_inner {
    width: 1420px;
    height: 130px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

/* 두 번째 화면부터 플로팅 헤더 */
#header.scroll_header {
    position: fixed;
    top: 20px;
}

#header.scroll_header .header_inner {
    height: 78px;
}

/* =========================================================
   Quick Menu
========================================================= */

.quick_menu {
    position: fixed;
    top: 50%;
    right: 0px;

    transform: translateY(-50%);

    width: 115px;

    background: #fff;

    border: 1px solid #dce4f4;
    border-radius: 35px 0 0 35px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);

    overflow: hidden;

    z-index: 9999;
}

.quick_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 130px;

    text-decoration: none;

    transition: .25s;
}

.quick_item+.quick_item {
    border-top: 1px solid #e8edf7;
}

.quick_item img {
    width: 30px;
    height: 30px;
    object-fit: contain;

    margin-bottom: 10px;
}

.quick_item span {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.quick_item:hover {
    background: #f5f9ff;
}

.quick_item:hover img {
    transform: scale(1.08);
}

.quick_item img {
    transition: .25s;
}


@media screen and (max-width: 1500px) {

    #header:not(.scroll_header) .header_inner,
    #header.scroll_header .header_inner {
        width: calc(100% - 48px);
        max-width: 1420px;
    }

    .main_visual .main_visual_content,
    .process_body,
    .treatment_process_content,
    .reservation_content,
    .location_content {
        gap: 36px;
    }

    .main_visual_text {
        width: 44%;
    }

    .main_visual_image {
        width: 52%;
    }

    .process_main_image {
        width: 34%;
    }

    .process_info {
        width: 23%;
    }

    .environment_content {
        padding-left: 24px;
    }
}

@media screen and (max-width: 1199px) {

    /* Header */
    #header,
    #header:not(.scroll_header),
    #header.scroll_header {
        position: fixed;
        top: 14px;
        height: auto;
        min-width: 0;
        padding: 0 18px;
    }

    #header:not(.scroll_header) .header_inner,
    #header.scroll_header .header_inner,
    .header_inner {
        width: 100%;
        height: 68px;
        padding: 0 22px;
        border: 1px solid rgba(255, 255, 255, .75);
        border-radius: 999px;
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 8px 28px rgba(12, 31, 76, .15);
    }

    .header_logo,
    #header.scroll_header .header_logo {
        width: 190px;
    }

    .mobile_menu_button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #173b8e;
        z-index: 1002;
        /* 아이패드 사파리(데스크톱 사이트 모드)는 더블탭 확대를 기다리느라
           탭을 지연·무시하는 경우가 있다. 확대 제스처를 꺼서 즉시 반응시킨다. */
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile_menu_button span {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 2px;
        background: #fff;
        transition: transform .3s ease, opacity .3s ease;
    }

    .menu_open .mobile_menu_button span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu_open .mobile_menu_button span:nth-child(2) {
        opacity: 0;
    }

    .menu_open .mobile_menu_button span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header_nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(420px, 88vw);
        height: 100dvh;
        padding: 110px 32px 40px;
        background: #fff;
        box-shadow: -20px 0 50px rgba(0, 0, 0, .15);
        transform: translateX(105%);
        transition: transform .35s ease;
        overflow-y: auto;
        overscroll-behavior: contain;
        z-index: 1001;
    }

    .menu_open .header_nav {
        transform: translateX(0);
    }

    /* 스크롤 잠금은 CSS로 하지 않는다. JS가 touchmove/wheel을 막아 처리한다.
       body에 position:fixed나 overflow:hidden을 걸면 문서의 스크롤 높이가 0으로
       접히고, 브라우저가 "스크롤할 게 없는 페이지"로 판단해 숨겨둔 주소창을
       다시 꺼낸다. 그때 발생하는 리플로우가 화면 번쩍임과 탭 씹힘의 원인이다. */

    .menu_open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 15, 50, .45);
        z-index: 999;
    }

    .gnb {
        display: block;
        height: auto;
    }

    .gnb>li {
        height: auto;
        border-bottom: 1px solid #e8ebf2;
    }

    .gnb>li>a {
        height: auto;
        padding: 18px 4px;
        font-size: 18px;
        font-weight: 600;
    }

    .gnb>li>a::after {
        display: none;
    }

    /* Common section spacing */
    .process_section,
    .symptom_section,
    .treatment_process,
    .reservation_section {
        padding: 90px 30px;
    }

    .process_title,
    .symptom_section .process_title {
        font-size: 38px;
    }

    .process_subtitle,
    .symptom_section .process_subtitle {
        font-size: 18px;
    }

    /* Main */
    .main_visual {
        min-height: auto;
        padding: 180px 40px 110px;
    }

    .main_visual .main_visual_content {
        min-height: auto;
    }

    .main_visual_title {
        font-size: 44px;
    }

    .main_visual_image {
        height: 470px;
        border-radius: 140px 48px 48px 48px;
    }

    .main_visual_control {
        margin-top: 70px;
    }

    .main_visual_progress {
        width: calc(100% - 90px);
    }

    /* Process */
    .process_body {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .process_main_image {
        width: 48%;
        height: 380px;
    }

    .process_info {
        width: calc(52% - 42px);
        min-height: 380px;
    }

    .process_cards {
        width: 100%;
        flex-basis: 100%;
    }

    .process_card_image {
        height: 300px;
    }

    /* Symptoms */
    .symptom_box {
        height: 128px;
        padding: 0 24px;
    }

    .symptom_txt {
        font-size: 20px;
        padding: 0 18px;
    }

    .medical_banner {
        padding: 0px 40px;
    }

    /* Environment */
    .environment_content {
        min-height: auto;
        padding-left: 24px;
    }

    .environment_left {
        width: 40%;
        padding: 80px 45px 70px 0;
    }

    .environment_small_image {
        height: 430px;
    }

    .environment_large_image {
        height: 760px;
    }

    /* Treatment */
    .treatment_process_content {
        align-items: flex-start;
        flex-direction: column;
    }

    .treatment_process .process_head {
        width: 100%;
    }

    .treatment_process_list {
        width: 100%;
        justify-content: space-between;
    }

    .treatment_process_item {
        width: 150px;
    }

    .treatment_process_image {
        width: 150px;
        height: 150px;
    }

    .treatment_process_arrow {
        width: 34px;
        height: 155px;
    }

    /* Doctor */
    .doctor_section {
        height: 850px;
        padding: 80px 40px;
    }

    .doctor_content {
        min-height: 760px;
    }

    .doctor_section .process_title {
        font-size: 46px;
    }

    .doctor_group_image {
        width: 680px;
        bottom: -90px;
    }

    .doctor_info_left {
        top: 235px;
    }

    .doctor_info_right {
        top: 400px;
    }


    /* Dialysis */
    .dialysis_content {
        height: 780px;
    }

    .dialysis_title {
        font-size: 42px;
    }

    .dialysis_description {
        font-size: 25px;
    }

    .dialysis_eng {
        font-size: 13px;
    }

    /* Reservation */
    .reservation_head {
        width: 48%;
        padding-left: 0;
    }

    .reservation_menu {
        margin-right: 0;
    }

    .reservation_item {
        width: 180px;
        height: 180px;
    }

    .reservation_menu {
        grid-template-columns: repeat(2, 179px);
    }

    /* Location */
    .location_section>.location_inner {
        width: calc(100% - 100px);
    }

    .location_content {
        min-height: auto;
    }

    .location_left {
        width: 56%;
    }

    .location_right {
        width: 40%;
    }

    .location_map {
        height: 470px;
    }

    /* Footer */
    .footer_section {
        min-width: 0;
    }

    .footer_section>.footer_inner {
        width: calc(100% - 48px);
    }

    .pc-br {display: none;}

}

@media screen and (max-width: 767px) {

    #header,
    #header:not(.scroll_header),
    #header.scroll_header {
        top: 10px;
        padding: 0 12px;
    }

    #header:not(.scroll_header) .header_inner,
    #header.scroll_header .header_inner,
    .header_inner {
        height: 60px;
        padding: 0 16px;
    }

    .header_logo,
    #header.scroll_header .header_logo {
        width: 155px;
    }

    .mobile_menu_button {
        width: 40px;
        height: 40px;
    }

    .process_section,
    .symptom_section,
    .treatment_process,
    .reservation_section {
        padding: 90px 0px;
    }

    .process_eng,
    .symptom_section .process_eng,
    .reservation_eng {
        margin-bottom: 16px;
        font-size: 11px;
        letter-spacing: 2px;
    }

    .process_title,
    .symptom_section .process_title,
    .reservation_title,
    .location_section .process_title {
        font-size: 31px;
        letter-spacing: -1.5px;
    }

    .process_subtitle,
    .symptom_section .process_subtitle,
    .reservation_subtitle,
    .location_section .process_subtitle {
        font-size: 16px;
    }

    /* Main */
    .main_visual {
        padding: 115px 0px 60px 0px;
    }

    .main_visual .main_visual_content {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 34px;
    }

    .main_visual_text {
        width: 100%;
        padding-top: 0;
        order: 1;
    }

    .main_visual_category {
        margin-bottom: 12px;
        font-size: 20px;
    }

    .main_visual_title {
        font-size: 40px;
        line-height: 1.42;
        letter-spacing: -1.8px;
    }

    .main_visual_description {
        margin-top: 22px;
        font-size: 16px;
    }

    .main_visual_control {
        margin-top: 18px;
    }

    .main_visual_image {
        width: 100%;
        height: 340px;
        border-radius: 90px 28px 28px 28px;
        order: 2;
    }

    /* Process */
    .process_head.process01 {
        margin-bottom: 18px;
    }

    .process_body {
        display: block;
    }

    .process_main_image {
        width: 100%;
        height: 190px;
        margin-bottom: 28px;
    }

    .process_info {
        width: 100%;
        min-height: 0;
        margin-bottom: 34px;
        text-align: center;
    }

    .process_name {
        font-size: 30px;
    }

    .process_list li {
        font-size: 16px;
    }

    .process_arrow {
        margin-top: 24px;
        justify-content: center;
    }

    .process_cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .process_card:nth-child(n) {
        width: auto;
    }

    .process_card_image {
        height: 150px;
        border-radius: 14px;
    }

    .process_card p {
        font-size: 17px;
    }

    /* Symptoms */
    .symptom_section .process_head {
        margin-bottom: 40px;
    }

    .symptom_wrap {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .symptom_box {
        height: 102px;
        padding: 0 18px;
        border-radius: 20px;
    }

    .symptom_check,
    .symptom_check img {
        width: 38px;
    }

    .symptom_txt {
        font-size: 16px;
        padding: 0 12px;
    }

    .symptom_icon {
        width: 55px;
    }

    /* Banner */
    .medical_banner {
        height: auto;
        min-height: 300px;
        padding: 55px 0;
    }

    .medical_banner_subtitle {
        font-size: 17px;
    }

    .medical_banner_title {
        font-size: 29px;
    }

    .medical_banner_description {
        font-size: 16px;
    }

    /* Environment */
    .environment_content {
        display: flex;
        flex-direction: column;
        padding-left: 0;
    }

    .environment_left {
        width: calc(100% - 70px);
        margin: 0 auto;
        padding: 40px 0 35px;
    }

    .environment_small_image {
        height: 190px;
    }

    .environment_label {
        font-size: 24px;
    }

    .environment_title {
        font-size: 35px;
    }

    .environment_large_image {
        width: 100%;
        height: 420px;
    }

    /* Treatment */
    .treatment_process_list {
        display: grid;
        grid-template-columns: 1fr 32px 1fr;
        gap: 20px 4px;
        align-items: start;
    }

    .treatment_process_item {
        width: 100%;
    }

    .treatment_process_image {
        width: 125px;
        height: 125px;
        margin-bottom: 14px;
    }

    .treatment_process_name {
        font-size: 18px;
    }

    .treatment_process_arrow {
        width: 32px;
        height: 125px;
        font-size: 24px;
    }

    .treatment_process_arrow:nth-of-type(2) {
        display: none;
    }

    .treatment_process_item:nth-of-type(3) {
        grid-column: 1;
    }

    /* Doctor */
    .doctor_section {
        height: 665px;
        padding: 42px 0 0;
    }

    .doctor_content {
        min-height: 700px;
    }

    .doctor_section .process_eng {
        font-size: 16px;
    }

    .doctor_section .process_title {
        font-size: 31px;
        letter-spacing: -2px;
    }

    .doctor_group_image {
        width: 520px;
        bottom: -220px;
    }

    .doctor_info_left {
        top: 325px;
        left: 0;
    }

    .doctor_info_right {
        top: 325px;
        right: 0;
    }

    .doctor_department {
        font-size: 14px;
    }

    .doctor_name strong {
        font-size: 22px;
    }

    .doctor_name span {
        font-size: 16px;
    }

    .doctor_more {
        min-width: 125px;
        height: 40px;
        margin-top: 14px;
        padding: 0 16px;
        font-size: 14px;
    }

    /* Dialysis */
    .dialysis_content {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .dialysis_left {
        width: 100%;
        height: 450px;
        padding: 65px 20px 100px;
    }

    .dialysis_right {
        width: 100%;
        height: 420px;
    }

    .dialysis_right img {
        width: 100%;
    }

    .dialysis_eng {
        margin-bottom: 24px;
        font-size: 12px;
        letter-spacing: 2px;
    }

    .dialysis_title {
        font-size: 31px;
        letter-spacing: -2px;
    }

    .dialysis_control {
        margin-top: 20px;
    }

    .dialysis_description {
        font-size: 20px;
    }

    .dialysis_logo {
        bottom: 55px;
        width: 135px;
    }

    .dialysis_wave {
        height: 160px;
    }

    .doctor_visual {
        width: 100%;
        min-height: 430px;
    }

    .dialysis_number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }


    /* Reservation */
    .reservation_content {
        display: block;
    }

    .reservation_head {
        width: 100%;
        margin-bottom: 38px;
    }

    .reservation_menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
    }

    .reservation_item {
        width: 100%;
        height: 155px;
        border-radius: 16px;
    }

    .reservation_icon {
        width: 52px;
        height: 52px;
        margin-bottom: 12px;
    }

    .reservation_item p {
        font-size: 16px;
    }

    /* Location */
    .location_section {
        padding-bottom: 65px;
        background: linear-gradient(to bottom, #fff 0, #fff 520px, #001c69 520px, #001c69 100%);
    }

    .location_section>.location_inner {
        width: calc(100% - 75px);
    }

    .location_content {
        display: flex;
        flex-direction: column;
        padding-top: 65px;
        gap: 42px;
    }

    .location_left,
    .location_right {
        width: 100%;
    }

    .location_map {
        height: 360px;
        border-radius: 16px;
    }

    .location_building {
        margin-top: 16px;
        border-radius: 16px;
    }

    .location_section .process_head {
        text-align: left;
        margin-bottom: 28px;
    }

    .location_info {
        padding: 30px 0 0;
    }

    .location_info_item+.location_info_item {
        margin-top: 28px;
    }

    .location_info_head span {
        font-size: 17px;
    }

    .location_info_body p {
        font-size: 15px;
    }

    .location_section .process_eng {
        color: #fdfdfd;
        margin-bottom: 16px;
        font-size: 11px;
        letter-spacing: 2px;
    }

    .location_section .process_title {
        color: #fdfdfd;
    }

    .location_section .process_title strong {
        color: #d3f3ff;
    }

    .location_section .process_subtitle {
        color: #ffffff;
    }


    /* Footer */
    .footer_section>.footer_inner {
        width: calc(100% - 75px);
    }

    .footer_content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        min-height: 0;
        padding: 48px 0;
    }

    .footer_info {
        text-align: left;
    }

    .footer_info p {
        font-size: 13px;
        line-height: 1.8;
    }

    .footer_divider {
        margin: 0 3px;
    }

    /*안내배너*/
    .medical_banner .medical_banner_inner {
        margin-top: 18px;
    }

    .environment_small_slider {
        display: none !important;
    }

    .top_btn {
        bottom: 110px !important;
    }

    .pc-br {display: none;}

}


@media screen and (max-width: 420px) {
    .main_visual_title {
        font-size: 30px;
    }

    .main_visual_image {
        height: 300px;
    }

    /*.process_cards{grid-template-columns:1fr;}*/
    .process_card_image {
        height: 175px;
    }

    .treatment_process_list {
        grid-template-columns: 1fr;
    }

    .treatment_process_arrow {
        width: 100%;
        height: 24px;
        transform: rotate(90deg);
    }

    .doctor_group_image {
        width: 485px;
        bottom: -176px;
    }

    .doctor_info_left {
        top: 315px;
    }

    .doctor_info_right {
        top: 315px;
    }

    .doctor_section {
        height: 670px;
    }

    .environment_label {
        margin-bottom: 0px;
    }

    .environment_large_image {
        height: 350px;
    }

    .environment_control {
        margin-top: 15px;
    }

    .process_section,
    .symptom_section,
    .treatment_process,
    .reservation_section {
        padding: 60px 0px;
    }

    .process_info {
        margin-bottom: 0px;
    }

    .top_btn {
        bottom: 110px !important;
    }
    .pc-br {display: none;}
}

/* =========================================================
   Process - Mobile
========================================================= */


@media screen and (max-width:767px) {

    .process_cards {
        display: none !important;
    }

}


@media screen and (max-width:420px) {

    .process_cards {
        display: none !important;
    }

}

/* =========================================================
   진료 프로세스 - 420px 이하
========================================================= */

@media screen and (max-width:420px) {

    .treatment_process_list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 18px;

        width: 100%;
    }

    .treatment_process_item {
        width: 100%;
        text-align: center;
    }

    .treatment_process_image {
        width: 130px;
        height: 130px;
        margin: 0 auto 15px;
    }

    .treatment_process_name {
        font-size: 16px;
        line-height: 1.5;
    }

    /* 화살표 숨김 */
    .treatment_process_arrow {
        display: none;
    }

}

/* =========================================================
   Environment - Mobile
========================================================= */

@media screen and (max-width:420px) {

    .environment_small_slider {
        display: none !important;
    }

}

/* =========================================================
   Quick Menu Mobile
========================================================= */

@media screen and (max-width:767px) {

    .quick_menu {
        position: fixed;
        left: 15px;
        right: 15px;
        bottom: 15px;
        top: auto;

        transform: none;

        display: flex;

        width: auto;
        height: 80px;

        border-radius: 20px;

        overflow: hidden;

        z-index: 9999;
    }

    .quick_item {
        flex: 1;

        height: 80px;

        border-top: none;
        border-right: 1px solid #e8edf7;
    }

    .quick_item:last-child {
        border-right: none;
    }

    .quick_item img {
        width: 26px;
        height: 26px;

        margin-bottom: 6px;
    }

    .quick_item span {
        font-size: 13px;
        line-height: 1.4;
    }

}

/* =========================================================
   Top Button
========================================================= */

.top_btn {
    position: fixed;
    right: 20px;
    bottom: 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 60px;
    height: 60px;

    background: #1b3f91;
    color: #fff;
    text-decoration: none;

    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .18);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: .3s;

    z-index: 9999;
}

.top_btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top_btn span {
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
}

.top_btn em {
    margin-top: 3px;

    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1px;
}

.top_btn:hover {
    background: #2857be;
}