@charset "utf-8";

/* Common */

.section {
    padding: 100px 0;
}

.common_section_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    /* margin-bottom: 130px; */
}

.common_section_header .eng_label {
    color: #01A9CE;
    font-family: "Sorts Mill Goudy";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 4.8px;
}

.common_section_header .section_title {
    color: #222;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.common_section_header .section_desc {
    text-align: center;
    color: #00224E;
    font-size: 20px;
    font-weight: 400;
    margin-top: 10px;
}

/* Section Visual */
.section_visual {
    padding: 0;
}

.section_visual .swiper_visual,
.section_visual .swiper-slide {
    height: 100vh;
}

.section_visual .swiper-slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_visual .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.section_visual .inner {
    position: relative;
    z-index: 1;
}

.section_visual .text_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.section_visual .sub_text {
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}

.section_visual .title_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section_visual .title {
    text-align: center;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
}

.section_visual .desc_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.section_visual .desc {
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}

@keyframes mvFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.section_visual .swiper-slide .title_wrap,
.section_visual .swiper-slide .desc_wrap,
.section_visual .swiper-slide .sub_text {
    opacity: 0;
}

.section_visual .swiper-slide-active .sub_text {
    animation: mvFadeUp 0.9s 0.1s ease-out both;
}

.section_visual .swiper-slide-active .title_wrap {
    animation: mvFadeUp 0.9s 0.25s ease-out both;
}

.section_visual .swiper-slide-active .desc_wrap {
    animation: mvFadeUp 0.9s 0.5s ease-out both;
}

@media screen and (max-width: 1024px) {
    /* .section_visual .swiper_visual,
    .section_visual .swiper-slide {
        height: auto;
        min-height: 500px;
    } */

    .section_visual .title {
        font-size: 32px;
    }

    .section_visual .sub_text {
        font-size: 16px;
    }

    .section_visual .desc {
        font-size: 15px;
        word-break: keep-all;
    }
}

@media screen and (max-width: 768px) {
    /* .section_visual .swiper_visual,
    .section_visual .swiper-slide {
        min-height: 400px;
    } */

    .section_visual .text_wrap {
        gap: 30px;
    }

    .section_visual .title {
        font-size: 26px;
    }

    .section_visual .sub_text {
        font-size: 14px;
    }

    .section_visual .desc {
        font-size: 14px;
    }
}

/* Section Service */
.section_service .card_list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 40px;
}

.section_service .card_row {
    display: flex;
    gap: 5px;
}

.section_service .card_item {
    flex: 1;
    min-width: 0;
    aspect-ratio: 3 / 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 0 60px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}

.section_service .card_inner {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 100%;
}

.section_service .title_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.section_service .title_wrap.stack {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.section_service .title {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
}

.section_service strong.title,
.section_service .title b {
    font-weight: 700;
}

.section_service .dot {
    width: 3px;
    height: 3px;
    background: #D9D9D9;
    border-radius: 50%;
    flex: 0 0 3px;
}

.section_service .desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.section_service .card_arrow {
    display: inline-flex;
    transition: transform 0.3s;
}

.section_service .card_item:hover .card_arrow {
    transform: translateX(8px);
}

/* Section Specialty */
.section_specialty {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* min-height: 100vh; */
}

.section_specialty .section_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section_specialty .section_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
}

.section_specialty .inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.section_specialty .common_section_header {
    margin-bottom: 0;
}

.section_specialty .common_section_header .section_title {
    color: #424242;
}

.section_specialty .swiper_specialty {
    width: 100%;
    overflow: hidden;
}

.section_specialty .swiper-wrapper {
    align-items: stretch;
}

.section_specialty .swiper-slide {
    height: auto;
}

.section_specialty .slide_content {
    display: flex;
    align-items: stretch;
    gap: 30px;
    height: 100%;
}

.section_specialty .text_area {
    flex: 0 0 530px;
    min-width: 0;
    background: #fff;
    border-radius: 30px;
    border: 1px solid #eee;
    padding: 49px 42px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 60px;
}

.section_specialty .text_top {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section_specialty .eng_sub {
    color: #01A9CE;
    font-family: "Playfair Display";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    font-variant: small-caps;
}

.section_specialty .title_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section_specialty .title {
    color: #424242;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.section_specialty .desc_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section_specialty .desc {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
}

.section_specialty .img_area {
    flex: 1;
    min-width: 0;
    border-radius: 30px;
    overflow: hidden;
}

.section_specialty .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section_specialty .swiper_nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section_specialty .btn_prev,
.section_specialty .btn_next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #01A9CE;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

/* .section_specialty .btn_prev:hover,
.section_specialty .btn_next:hover {
    border-color: #A68B5B;
}

.section_specialty .btn_prev:hover svg path,
.section_specialty .btn_next:hover svg path {
    stroke: #A68B5B;
} */

/* Section Doctor */
.section_doctor {
    display: flex;
    align-items: center;
    justify-content: center;
    /* min-height: 100vh; */
}

.section_doctor .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.section_doctor .common_section_header {
    margin-bottom: 0;
}

.section_doctor .common_section_header .section_title {
    color: #424242;
}

.section_doctor .swiper_doctor {
    width: 100%;
    overflow: hidden;
}

.section_doctor .slide_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.section_doctor .photo_area {
    flex: 0 1 706px;
    min-width: 0;
    position: relative;
}

.section_doctor .photo_text {
    position: absolute;
    top: 48px;
    left: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.section_doctor .photo_text span {
    color: #01A9CE;
    font-size: clamp(36px, 3.5vw, 50px);
    font-family: 'Sorts Mill Goudy', serif;
    font-weight: 400;
    line-height: 1.2;
}

.section_doctor .photo_text span:nth-child(1) {
    text-align: end;
}

/* .section_doctor .photo_text span:nth-child(3) {
    padding-left: 21px;
} */

.section_doctor .photo_img {
    width: 90%;
    margin-left: auto;
    /* border-radius: 20px 100px 20px 100px; */
    overflow: hidden;
}

.section_doctor .photo_img img {
    width: 100%;
    aspect-ratio: 632 / 511;
    object-fit: cover;
    display: block;
}

.section_doctor .photo_nav {
    position: absolute;
    bottom: 30px;
    left: 110px;
    display: flex;
    align-items: center;
    gap: 20px;
}


.section_doctor .btn_prev,
.section_doctor .btn_next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #01A9CE;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.section_doctor .btn_prev:hover,
.section_doctor .btn_next:hover {
    background: #01A9CE;
}

.section_doctor .btn_prev:hover svg path,
.section_doctor .btn_next:hover svg path {
    stroke: #fff;
    fill: #fff;
}

.section_doctor .info_area {
    flex: 0 1 580px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section_doctor .info_header {
    display: flex;
    align-items: center;
    gap: 17px;
}

.section_doctor .name {
    color: #424242;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

.section_doctor .badge {
    background: #01A9CE;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 4px 12px;
}

.section_doctor .info_area>.divider {
    width: 44px;
    height: 3px;
    background: #01A9CE;
}

.section_doctor .intro {
    color: #424242;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}

.section_doctor .career_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(6, auto);
    grid-auto-flow: column;
}

/* career_col(ul)을 display:contents로 만들어 li를 career_list grid의 직접 자식으로 승격.
   grid가 같은 행의 좌우 셀 높이를 자동 동기화하므로, 길어서 2줄이 되는 항목이 있어도 좌우 정렬이 맞춰진다. */
.section_doctor .career_col {
    display: contents;
}

.section_doctor .career_col li {
    color: #424242;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
    padding: 10px 0;
}

/* Section Before After */
.section_ba {
    overflow: hidden;
}

.section_ba .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.section_ba .common_section_header {
    margin-bottom: 0;
}

.section_ba .common_section_header .section_title {
    font-weight: 700;
}

.section_ba .tab_list {
    display: flex;
    padding: 10px 16px;
    background: #fff;
    border-radius: 66px;
    border: 1.5px solid #EEEEEE;
}

.section_ba .tab_item {
    min-width: 149px;
    padding: 13px 24px;
    background: transparent;
    border: 0;
    border-radius: 33px;
    color: #000;
    font-size: 22px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.section_ba .tab_item.active {
    background: #01A9CE;
    color: #fff;
}

.section_ba .swiper_ba {
    width: 100%;
    overflow: visible;
    margin-top: 80px;
}

.section_ba .swiper_ba .swiper-slide {
    width: 965px;
    max-width: 90vw;
    transition: opacity 0.3s;
}

.section_ba .ba_card {
    display: flex;
    flex-direction: column;
}

.section_ba .ba_pair {
    display: flex;
    gap: 5px;
}

.section_ba .ba_img {
    flex: 1;
    min-width: 0;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
}

.section_ba .ba_img.before {
    border-radius: 20px 0 0 0;
}

.section_ba .ba_img.after {
    border-radius: 0 20px 0 0;
}

.ba_card.ba_empty .ba_info {
border-radius: 20px;
    border: 2px solid #01A9CE;
}

.section_ba .ba_badge {
    position: absolute;
    top: 16px;
    padding: 5px 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
}

.section_ba .ba_img.before .ba_badge {
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
}

.section_ba .ba_img.after .ba_badge {
    left: 20px;
    background: #01A9CE;
    font-weight: 700;
}

.section_ba .ba_info {
    padding: 30px 30px 40px;
    background: #fff;
    border-radius: 0 0 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.section_ba .ba_text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section_ba .ba_title_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section_ba .ba_title {
    color: #333;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
}

.section_ba .ba_pet {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: #01A9CE;
    font-size: 22px;
    font-weight: 700;
}

.section_ba .ba_desc {
    color: #222;
    font-size: 22px;
    line-height: 1.6;
}

.section_ba .ba_more {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.section_ba .ba_more span:first-child {
    color: #01A9CE;
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 24px;
}

.section_ba .ba_more .arrow_circle {
    width: 24px;
    height: 24px;
    background: #01A9CE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_ba .swiper_ba .swiper-slide-active .ba_pair .ba_img.before {
    border-top: 2px solid #01A9CE;
    border-left: 2px solid #01A9CE;
}

.section_ba .swiper_ba .swiper-slide-active .ba_pair .ba_img.after {
    border-top: 2px solid #01A9CE;
    border-right: 2px solid #01A9CE;
}

.section_ba .swiper_ba .swiper-slide-active .ba_info {
    border-left: 2px solid #01A9CE;
    border-right: 2px solid #01A9CE;
    border-bottom: 2px solid #01A9CE;
}

.section_ba .swiper_ba .swiper-slide:not(.swiper-slide-active) .ba_img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(221, 221, 221, 0.60);
    pointer-events: none;
    z-index: 1;
}

.section_ba .ba_badge {
    z-index: 2;
}

.section_ba .swiper_nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.section_ba .ba_btn_prev,
.section_ba .ba_btn_next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #01A9CE;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.section_ba .ba_btn_prev:hover,
.section_ba .ba_btn_next:hover {
    background: #01A9CE;
}

.section_ba .ba_btn_prev:hover svg path,
.section_ba .ba_btn_next:hover svg path {
    fill: #fff;
}

/* Section Equipment */
.section_equipment {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.section_equipment:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20%;
    background-color: #00a9ce;
    z-index: 0;
}

.section_equipment .inner {
    position: relative;
    z-index: 1;
}

.section_equipment .equipment_content {
    position: relative;
    z-index: 1;
}

.section_equipment .common_section_header {
    margin-bottom: 0;
}

.section_equipment .common_section_header .section_title {
    color: #424242;
}

.section_equipment .equipment_content {
    width: 100%;
    display: flex;
    /* align-items: center; */
    padding-left: max(30px, calc((100% - 1440px) / 2));
    gap: 120px;
}

.section_equipment .text_area {
    flex: 0 0 560px;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.section_equipment .text_slide {
    display: flex;
    flex-direction: column;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.4s, visibility 0.4s;

    height: 440px;
    overflow-y: auto;
}

.section_equipment .text_slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.section_equipment .swiper_nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 70px;
}

.section_equipment .text_top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section_equipment .equip_header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section_equipment .equip_name {
    color: #424242;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.section_equipment .equip_badge {
    border: 2px solid #01A9CE;
    color: #01A9CE;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 10px;
    white-space: nowrap;
}

.section_equipment .equip_sub {
    color: #01A9CE;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.section_equipment .feature_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section_equipment .feature_list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    line-height: 1.5;
}

.section_equipment .feature_list .num {
    color: #01A9CE;
    font-size: 18px;
    font-weight: 700;
    flex: 0 0 auto;
}

.section_equipment .feature_list .txt {
    color: rgba(66, 66, 66, 0.7);
    font-size: 18px;
    font-weight: 400;
}

.section_equipment .feature_list .txt strong {
    color: #424242;
    font-weight: 700;
}

.section_equipment .btn_prev,
.section_equipment .btn_next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid #01A9CE;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

/* .section_equipment .btn_prev:hover,
.section_equipment .btn_next:hover {
    background: #01A9CE;
}

.section_equipment .btn_prev:hover svg path,
.section_equipment .btn_next:hover svg path {
    fill: #fff;
} */

.section_equipment .swiper_equipment {
    flex: 0 0 467px;
    min-width: 0;
    overflow: visible;
    clip-path: inset(0 -100vw 0 0);
}

.section_equipment .swiper-slide {
    width: 467px;
}

.section_equipment .img_card {
    width: 100%;
    aspect-ratio: 467 / 563;
    max-height: 563px;
    background: #f5f5f5;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
}

.section_equipment .img_card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.section_equipment .img_card .equip_card_logo {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 95px;
    height: 95px;
    object-fit: contain;
    z-index: 2;
}

/* Section Gallery */
.section_gallery {
    position: relative;
    /* min-height: 100vh; */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section_gallery .gallery_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section_gallery .gallery_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
}

.section_gallery .gallery_fade {
    position: absolute;
    left: 0;
    width: 100%;
    height: 320px;
    z-index: 3;
    pointer-events: none;
}

.section_gallery .gallery_fade.top {
    top: 0;
    background: linear-gradient(180deg, #fff 0%, transparent 100%);
}

.section_gallery .gallery_fade.bottom {
    bottom: 0;
    background: linear-gradient(0deg, #fff 0%, transparent 100%);
}

.section_gallery .gallery_content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section_gallery .swiper_gallery {
    width: 100%;
    overflow: visible;
}

.section_gallery .swiper_gallery .swiper-slide {
    width: 55vw;
    max-width: 900px;
    position: relative;
    transition: transform 0.8s, margin-top 0.8s;
    margin-top: 60px;
}

.section_gallery .swiper_gallery .swiper-slide.swiper-slide-active {
    margin-top: 0;
}

.section_gallery .swiper_gallery .swiper-slide img {
    width: 100%;
    aspect-ratio: 1318 / 656;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.section_gallery .swiper_gallery .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.8);
}

.section_gallery .swiper_gallery .swiper-slide:not(.swiper-slide-active)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    pointer-events: none;
}

.section_gallery .gallery_text {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    /* max-width: 753px; */
    width: 100%;
    padding: 0 30px;
}

.section_gallery .gallery_text .desc {
    text-align: center;
    color: #424242;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
}

.section_gallery .gallery_text .highlight {
    text-align: center;
    color: #01A9CE;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    background-color: unset;
}

/* Section Banner */
.section_banner {
    padding: 0;
    width: 100%;
    aspect-ratio: 1920 / 745;
}

.section_banner .swiper_banner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.section_banner .swiper-slide {
    width: 100%;
    height: 100%;
}

.section_banner .banner_btn_prev,
.section_banner .banner_btn_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.section_banner .banner_btn_prev {
    left: 60px;
}

.section_banner .banner_btn_next {
    right: 60px;
}

/* Section Contact */
/* .section_contact {
    padding: 52px 0 0;
} */

.section_contact .contact_title {
    text-align: center;
    color: #01A9CE;
    font-size: 40px;
    font-family: 'Sorts Mill Goudy', serif;
    font-weight: 400;
    text-transform: uppercase;
}

.section_contact .contact_content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1.5px solid #01A9CE;
}

.section_contact .info_area {
    flex: 0 0 470px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section_contact .info_area>* {
    width: 100%;
}

.section_contact .block_title {
    color: #01A9CE;
    font-size: 40px;
    font-family: 'Sorts Mill Goudy', serif;
    font-weight: 400;
    margin: 0;
}

.section_contact .info_block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section_contact .location_info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section_contact .address {
    color: #424242;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.section_contact .tag_list {
    display: flex;
    gap: 24px;
}

.section_contact .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 20px;
    font-weight: 400;
}

.section_contact .map_links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.section_contact .map_link {
    flex: 0 0 calc((100% - 10px * 2) / 3);
    min-width: 0;
    height: 56px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid #00A9CE;
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.section_contact .map_link:hover {
    background: rgba(1, 169, 206, 0.05);
}

.section_contact .map_link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.section_contact .map_link span {
    color: #424242;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
}

.section_contact .time_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0.8;
}

.section_contact .time_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.section_contact .time_row .label {
    flex: 0 0 180px;
    color: #424242;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
}

.section_contact .time_row .value {
    flex: 0 0 220px;
    color: #424242;
    font-size: 20px;
    font-weight: 400;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 5px;
}

.section_contact .time_row .value .ampm {
    min-width: 30px;
}

.section_contact .time_row .value .time {
    min-width: 46px;
}

.section_contact .time_row .value .sep {
    padding: 0 3px;
}

.section_contact .time_row .value b {
    font-weight: 700;
}

.section_contact .tel_block {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.section_contact .tel_block .block_title {
    line-height: 1;
    padding-top: 20px;
}

@keyframes telGlow {

    0%,
    100% {
        text-shadow: 0 0 0 rgba(1, 169, 206, 0);
    }

    50% {
        text-shadow: 0 0 18px rgba(1, 169, 206, 0.55);
    }
}

.section_contact .tel_num {
    color: #01A9CE;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
    animation: telGlow 2.4s ease-in-out infinite;
}

.section_contact .map_area {
    flex: 1;
    min-width: 0;
    aspect-ratio: 886 / 599;
    max-height: 599px;
}

@media screen and (max-width: 1200px) {
    .section_service .card_item {
        padding: 0 40px;
    }

    .section_service .title {
        font-size: 26px;
    }

    .section_service .desc {
        font-size: 15px;
    }

    .section_service .card_arrow svg {
        width: 56px;
        height: 14px;
    }
}

@media screen and (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }

    .section_visual {
        padding: 0;
    }

    .common_section_header {
        margin-bottom: 60px;
    }

    .section_specialty {
        min-height: auto;
    }

    .section_banner .banner_btn_prev {
        left: 24px;
    }

    .section_banner .banner_btn_next {
        right: 24px;
    }

    .section_banner .banner_btn_prev svg {
        width: 22px;
        height: 38px;
    }

    .section_banner .banner_btn_next svg {
        width: 44px;
        height: 44px;
    }

    .section_contact .contact_content {
        flex-direction: column;
        gap: 40px;
    }

    .section_contact .info_area {
        flex: 0 0 auto;
        width: 100%;
    }

    .section_contact .map_area {
        width: 100%;
        max-height: none;
    }

    .section_contact .block_title {
        font-size: 32px;
    }

    .section_contact .tel_num {
        font-size: 44px;
    }

    .section_ba .inner {
        gap: 40px;
    }

    .section_ba .tab_list {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 33px;
    }

    .section_ba .tab_item {
        min-width: 0;
        font-size: 18px;
        padding: 10px 20px;
    }

    .section_ba .ba_title {
        font-size: 24px;
    }

    .section_ba .ba_pet,
    .section_ba .ba_desc {
        font-size: 18px;
    }

    .section_ba .ba_more span:first-child {
        font-size: 20px;
    }

    .section_gallery {
        min-height: auto;
        padding: 100px 0;
    }

    .section_gallery .swiper_gallery {
        overflow: hidden;
    }

    .section_gallery .swiper_gallery .swiper-slide {
        width: 80vw;
        margin-top: 0;
    }

    .section_gallery .swiper_gallery .swiper-slide.swiper-slide-active {
        margin-top: 0;
    }

    .section_gallery .swiper_gallery .swiper-slide:not(.swiper-slide-active) {
        transform: scale(0.9);
    }

    .section_gallery .gallery_fade {
        height: 150px;
    }

    .section_gallery .gallery_text .desc {
        font-size: 18px;
    }

    .section_gallery .gallery_text .highlight {
        font-size: 24px;
    }

    .section_equipment {
        min-height: auto;
        gap: 50px;
    }

    .section_equipment .equipment_content {
        flex-direction: column;
        padding-left: 30px;
        padding-right: 30px;
        gap: 40px;
    }

    .section_equipment .text_area {
        flex: 0 0 auto;
    }

    .section_equipment .swiper_equipment {
        overflow: hidden;
        width: 100%;
    }

    .section_equipment .swiper-slide {
        width: 70%;
        max-width: 350px;
    }

    .section_equipment .equip_name {
        font-size: 32px;
    }

    .section_equipment .equip_sub {
        font-size: 20px;
    }

    .section_equipment .btn_prev,
    .section_equipment .btn_next {
        width: 50px;
        height: 50px;
    }

    .section_specialty .inner {
        gap: 50px;
    }

    .common_section_header .section_title {
        font-size: 32px;
    }

    .common_section_header .section_desc {
        font-size: 16px;
        word-break: keep-all;
    }

    .section_service .card_item {
        padding: 0 30px;
    }

    .section_service .card_inner {
        gap: 16px;
    }

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

    .section_service .desc {
        font-size: 14px;
    }

    .section_specialty .inner {
        gap: 50px;
    }

    .section_specialty .text_area {
        flex: 0 0 auto;
    }

    .section_specialty .slide_content {
        flex-direction: column;
    }

    .section_specialty .img_area {
        aspect-ratio: 16 / 9;
    }

    .section_specialty .title {
        font-size: 28px;
    }

    .section_specialty .desc {
        font-size: 16px;
    }

    .section_doctor {
        min-height: auto;
    }

    .section_doctor .inner {
        gap: 50px;
    }

    .section_doctor .slide_content {
        flex-direction: column;
        gap: 40px;
    }

    .section_doctor .photo_area {
        flex: 0 0 auto;
        width: 100%;
    }

    .section_doctor .photo_img {
        width: 85%;
        margin-left: auto;
    }

    .section_doctor .photo_text span {
        font-size: 36px;
    }



    .section_doctor .photo_nav {
        right: calc(15% + 20px);
    }

    .section_doctor .info_area {
        flex: 0 0 auto;
    }

    .section_doctor .career_col li {
        font-size: 16px;
    }

    .section_equipment .text_slide {
        height: auto;
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section_visual {
        padding: 0;
    }

    .common_section_header {
        margin-bottom: 40px;
    }

    .section_banner .banner_btn_prev {
        left: 12px;
    }

    .section_banner .banner_btn_next {
        right: 12px;
    }

    .section_banner .banner_btn_prev svg {
        width: 14px;
        height: 24px;
    }

    .section_banner .banner_btn_next svg {
        width: 28px;
        height: 28px;
    }

    .common_section_header .eng_label {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .common_section_header .section_title {
        font-size: 26px;
    }

    .common_section_header .section_desc {
        font-size: 15px;
    }

    .section_specialty .inner {
        gap: 40px;
    }

    .section_specialty .text_area {
        padding: 30px 24px;
        gap: 30px;
    }

    .section_specialty .eng_sub {
        font-size: 22px;
    }

    .section_specialty .title {
        font-size: 26px;
    }

    .section_specialty .desc {
        font-size: 15px;
    }

    .section_specialty .img_area {
        aspect-ratio: 4 / 3;
    }

    .section_service .card_row {
        flex-direction: column;
    }

    .section_service .card_row.top .card_item,
    .section_service .card_row.bottom .card_item {
        flex: none;
        width: 100%;
        aspect-ratio: 3 / 2;
    }

    .section_service .card_item {
        padding: 0 24px;
    }

    .section_service .title {
        font-size: 22px;
    }

    .section_service .desc {
        font-size: 14px;
    }

    .section_service .card_arrow svg {
        width: 48px;
        height: 12px;
    }

    .section_contact .contact_title {
        font-size: 30px;
    }

    .section_contact .block_title {
        font-size: 26px;
    }

    .section_contact .address {
        font-size: 16px;
    }

    .section_contact .tag {
        font-size: 16px;
    }

    .section_contact .time_row .label,
    .section_contact .time_row .value {
        font-size: 16px;
    }

    .section_contact .time_row .label {
        flex: 0 0 130px;
        letter-spacing: 2px;
    }

    .section_contact .time_row .value {
        flex: 0 1 auto;
        text-align: right;
    }

    .section_contact .map_link {
        width: auto;
        flex: 1;
        height: 48px;
        padding: 0 6px;
    }

    .section_contact .map_link span {
        font-size: 13px;
    }

    .section_contact .map_area {
        max-height: none;
    }

    .section_contact .tel_block {
        flex-wrap: wrap;
        gap: 12px;
    }

    .section_contact .map_links {
        gap: 6px;
    }

    .section_contact .tel_num {
        font-size: 36px;
    }

    .section_doctor .inner {
        gap: 40px;
    }

    .section_doctor .slide_content {
        gap: 30px;
    }

    .section_doctor .photo_text span {
        font-size: 28px;
    }



    .section_doctor .photo_text {
        top: 30px;
    }

    .section_doctor .photo_img {
        border-radius: 15px 60px 15px 60px;
    }

    .section_doctor .name {
        font-size: 28px;
    }

    .section_doctor .badge {
        font-size: 15px;
    }

    .section_doctor .intro {
        font-size: 16px;
    }

    .section_doctor .career_list {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-auto-flow: row;
        gap: 0;
    }

    .section_doctor .career_col li {
        font-size: 15px;
        padding: 8px 0;
    }

    .section_ba .inner {
        gap: 30px;
    }

    .section_ba .tab_item {
        font-size: 16px;
        padding: 8px 14px;
    }

    .section_ba .ba_btn_prev,
    .section_ba .ba_btn_next {
        width: 40px;
        height: 40px;
    }

    .section_ba .ba_badge {
        font-size: 12px;
        padding: 4px 8px;
        top: 10px;
    }

    .section_ba .ba_img.before .ba_badge {
        right: 10px;
    }

    .section_ba .ba_img.after .ba_badge {
        left: 10px;
    }

    .section_ba .ba_img.before {
        border-radius: 60px 4px 4px 4px;
    }

    .section_ba .ba_img.after {
        border-radius: 4px 60px 4px 4px;
    }

    .section_ba .ba_info {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px 30px;
        gap: 20px;
    }

    .section_ba .ba_text {
        gap: 16px;
    }

    .section_ba .ba_title {
        font-size: 20px;
    }

    .section_ba .ba_pet,
    .section_ba .ba_desc {
        font-size: 15px;
    }

    .section_ba .ba_more span:first-child {
        font-size: 18px;
    }

    .section_equipment .equipment_content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section_equipment .equip_name {
        font-size: 26px;
    }

    .section_equipment .equip_header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .section_equipment .equip_sub {
        font-size: 18px;
    }

    .section_equipment .feature_list .txt,
    .section_equipment .feature_list .num {
        font-size: 15px;
    }

    .section_equipment .feature_list {
        gap: 16px;
    }

    .section_equipment .swiper_nav {
        margin-top: 40px;
    }

    .section_equipment .btn_prev,
    .section_equipment .btn_next {
        width: 44px;
        height: 44px;
    }

    .section_equipment .swiper-slide {
        width: 80%;
        max-width: 300px;
    }

    .section_gallery .swiper_gallery .swiper-slide {
        width: 90vw;
    }

    .section_gallery .gallery_fade {
        height: 100px;
    }

    .section_gallery .gallery_text .desc {
        font-size: 15px;
    }

    .section_gallery .gallery_text .highlight {
        font-size: 20px;
    }

    .section_gallery .gallery_text {
        gap: 20px;
        padding: 0 20px;
    }

    .section_equipment {
        padding-bottom: 0;
    }


}


/* section_parking */
.section_parking {
    padding: 100px 240px 240px;
}

.section_parking .inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.section_parking .parking_title {
    text-align: center;
    color: #A68B5B;
    font-size: 40px;
    font-family: 'Sorts Mill Goudy', serif;
    font-weight: 400;
    text-transform: uppercase;
}

.section_parking .parking_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 40px;
    border-top: 1px solid #A68B5B;
    gap: 40px;
}

.section_parking .parking_info {
    max-width: 423px;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.section_parking .parking_heading .heading_text {
    color: #222;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
}

.section_parking .parking_heading .heading_accent {
    color: #A68B5B;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
}

.section_parking .parking_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section_parking .parking_list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section_parking .parking_list .dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    background: #A68B5B;
    border-radius: 50%;
}

.section_parking .parking_list .text {
    color: #222;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
}

.section_parking .parking_img {
    width: 700px;
    min-width: 700px;
    height: 700px;
}

.section_parking .parking_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1200px) {
    .section_parking {
        padding: 100px 60px;
    }

    .section_parking .parking_img {
        width: 50%;
        min-width: 0;
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

@media screen and (max-width: 1024px) {
    .section_parking {
        padding: 100px 30px;
    }

    .section_parking .parking_content {
        flex-direction: column;
    }

    .section_parking .parking_info {
        max-width: none;
        padding-top: 30px;
        gap: 30px;
    }

    .section_parking .parking_img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

@media screen and (max-width: 768px) {
    .section_parking {
        padding: 80px 20px;
    }

    .section_parking .parking_title {
        font-size: 30px;
    }

    .section_parking .parking_heading .heading_text,
    .section_parking .parking_heading .heading_accent {
        font-size: 24px;
    }

    .section_parking .parking_list .text {
        font-size: 17px;
        line-height: 24px;
    }

    .section_parking .inner {
        gap: 30px;
    }

    .section_parking .parking_info {
        gap: 24px;
    }
}

.root_daum_roughmap {
    width: 100% !important;
}

.root_daum_roughmap .wrap_map {
    height: 100% !important;
}

.root_daum_roughmap {
    height: 599px;
}

.root_daum_roughmap .cont .section.lst,
.root_daum_roughmap .wrap_controllers {
    display: none;
}

@media all and (max-width:768px) {

    .section_contact .map_area,
    .root_daum_roughmap .wrap_map,
    .root_daum_roughmap {
        height: 400px !important;
    }
}

/* section_equip_list */
.section_equip_list {
    padding: 160px 240px;
}

.section_equip_list .equip_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 30px;
}

.section_equip_list .equip_card {
    border-radius: 24px;
    border: 1.5px solid #DDD;
    padding: 30px;
    cursor: pointer;
}

.section_equip_list .equip_card:hover {
    border: 1.5px solid #01A9CE;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
}

.section_equip_list .equip_thumb {
    width: 100%;
    aspect-ratio: 460 / 500;
    overflow: hidden;
    position: relative;
}

.section_equip_list .equip_card_logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 95px;
    height: 95px;
    object-fit: contain;
    z-index: 2;
}

.section_equip_list .equip_thumb img:not(.equip_card_logo) {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section_equip_list .equip_info {
    padding-top: 42px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section_equip_list .equip_name {
    color: #424242;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
}

.section_equip_list .equip_desc {
    color: #000;
    font-size: 22px;
    font-weight: 400;
    line-height: 24px;
}

@media screen and (max-width: 1200px) {
    .section_equip_list {
        padding: 120px 60px;
    }

    .section_equip_list .equip_grid {
        gap: 40px 24px;
    }

    .section_equip_list .equip_name {
        font-size: 24px;
        line-height: 30px;
    }

    .section_equip_list .equip_desc {
        font-size: 18px;
    }
}

@media screen and (max-width: 1024px) {
    .section_equip_list {
        padding: 100px 30px;
    }

    .section_equip_list .equip_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }



    .section_equip_list .equip_info {
        padding-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .section_equip_list {
        padding: 80px 20px;
    }

    .section_equip_list .equip_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section_equip_list .equip_name {
        font-size: 22px;
        line-height: 28px;
    }

    .section_equip_list .equip_desc {
        font-size: 17px;
    }

    .section_equip_list .equip_info {
        padding-top: 24px;
        gap: 12px;
    }
}


.mv_info {
    position: absolute;
    width: 100%;
    background: #01A9CE;
    bottom: 0;
    z-index: 3;
    padding: 18px 0;
}

.mv_info .inner {
    padding: unset !important;
}

.mv_info_wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.mv_info_wrapper .tit {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;

    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.mv_info_wrapper .content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mv_info_wrapper .content .time {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mv_info_wrapper .content .time .txt {
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.mv_info_wrapper .divide {
    color: rgba(255, 255, 255, 0.60);
    text-align: center;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


@media all and (max-width: 768px) {
    .mv_info_wrapper {
        gap: 20px;
    }

    .mv_info_wrapper .content {
        gap: 10px;
        justify-content: center;
    }

    .mv_info_wrapper .divide {
        display: none;
    }
}

.section_title b {
    font-weight: 700;
}