@charset "utf-8";

/* body overflow:hidden 제거 - animation 재실행 방지 */

.not_scroll {
    overflow: hidden;
    height: 100%;
}

.sitemap_not_scroll{
    overflow: hidden !important;
    /* position: fixed 제거 - body에 fixed 적용시 reflow로 animation 재시작됨 */
    touch-action: none;
}

.gray_bg{
    background: #F7F7F7;
}

.blue_gr{
    background: linear-gradient(to bottom, rgba(0,113,173,0.05), rgba(255,255,255,0));
}

.bg_f2{
    background: #F2F8FB;
}

.marquee {
	color: #F7F7F7;
    opacity: 1;
}


/* ---------------------------------------------------------------------------- */

/* sub_visual */

.sub_visual{
    width: 100%;
    height: 850px;
    overflow: hidden;
}

.sub_visual .sub_visual_bg {
    width: 100%;
    height: 850px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    animation: zoom 2s linear forwards;
}

.sub_visual .sub_top_w {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
}

.sub_visual .title_box {
    text-align: center;
    margin-top: 240px;
    margin-bottom: 220px;
    position: relative;
    animation: tit_ani 1.2s linear forwards;
}

.sub_visual .title_box h2 {
    font-family: "Quicksand", sans-serif;
    color: #fff;
    text-align: center;
    font-size: 18px;
    opacity: 0.3;
}

.sub_visual .title_box h3 {
    color: #fff;
    text-align: center;
    font-size: 70px;
    font-weight: 600;
    margin-bottom: 22px;
}

.sub_visual .title_box p {
    color: #fff;
    text-align: center;
    font-size: 24px;
}

.sub_visual .title_box span{
    display: block;
    width: 12%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
    position: absolute;
    top: 154%;
    left: 44%;
}

.sub_visual .sub_top_menu {
    margin: auto;
    width: fit-content;
    display: flex;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
}

.sub_visual .sub_top_menu li{
    width: 236px;
    height: 70px;
    text-align: center;
}

.sub_visual .sub_top_menu li a {
    display: block;
    font-size: 20px;
    line-height: 70px;
    color: #fff;
    opacity: 0.7;
    
}

.sub_visual .sub_top_menu li.on a {
    opacity: 1;
}

.sub_visual .sub_top_menu li.on a::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

@keyframes tit_ani {
    0% {
        opacity: 0;
        transform: translate3d(0, 50%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes zoom {

    0% {
        transform:scale(1.1);
    }

    100% {
        transform:scale(1);
    }
}

/* sub_visual */

/* sub_breadcrumb */

.breadcrumb {
    padding-top: 30px;
    padding-bottom: 130px;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb ul li {
    font-size: 20px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb ul li:not(:last-child):after {
    content: "";
    display: block;
    width: 6px;
    height: 12px;
    background: url("../img/sub/breadcrumb_arrow.svg") no-repeat center center /
    cover;
}

/* sub_breadcrumb */

/* ---------------------------------------------------------------------------- */

/* 서브 공통 타이틀 */

.sub_txt_box{
    text-align: center;
}

.sub_txt_box .sub_tag{
    font-size: 28px;
    color: #444;
    margin-bottom: 10px;
}

.sub_txt_box .sub_tit{
    font-size: 55px;
    font-weight: 600;
    color: #222;
}

.sub_txt_box .sub_tit span{
    font-size: 55px;
    color: #0071AD;
}

.sub_txt_box .dot{
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #0071AD;
    opacity: 0.2;
    margin: 30px auto;
}

.sub_txt_box .dot::before,
.sub_txt_box .dot::after{
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #0071AD;
}

.sub_txt_box .dot::before{
    margin-left: -20px;
}

.sub_txt_box .dot::after{
    margin-top: -10px;
    margin-left: 20px;
}

.sub_txt_box .sub_desc{
    font-size: 24px;
    color: #222;
    line-height: 1.5;
    margin-bottom: 60px;
}

.sub_txt_box .sub_desc span{
    font-size: 24px;
    color: #0071ad;
    font-weight: 500;
}

/* 서브 공통 타이틀 */

/* 서브 하단 공통 영역 */

.diff_con ul {
    display: flex;
    gap: 2rem;
    cursor: pointer;
    margin-top: 80px;
}

.diff_con ul li {
    width: calc(25% - 15px);
    height: 50rem;
    display: flex;
    align-items: flex-end;
    padding: 0 0 3rem 3rem;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s linear;
    background: no-repeat;
    position: relative;
    z-index: 1;
}

.diff_con ul li::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.diff_con ul li .txtbox {
    width: 100%;
    color: #fff;
    overflow: hidden;
    z-index: 2;
}

.diff_con ul li .diff_ttl {
    font-size: 2.5rem;
    font-weight: 600;
    overflow: hidden;
}

.diff_con ul li .diff_desc {
    font-size: 1.8rem;
    font-weight: 300;
    margin-top: 2rem;
    height: 1.5;
    overflow: hidden;
    display: none;
    opacity: 0;
    transition: opacity 0.5s 0.5s linear;
}

.diff_con ul li.act {
    width: 61rem;
    flex: 0 0 auto;
}

.diff_con ul li.act::before{
    background-color: rgba(0, 0, 0, 0);
}

.diff_con ul li.act .txtbox {
    padding: 0 0 0.8rem 2rem;
}

.diff_con ul li.act .diff_ttl {
    font-size: 43px;
    font-weight: 600;
    line-height: 1.2;
}

.diff_con ul li.act .diff_desc {
    font-size: 24px;
    display: block;
    opacity: 1;
}

.diff_con ul li.diff_list01 {
    background-image: url('../img/sub/sub_bot_img01.jpg');
}

.diff_con ul li.diff_list02 {
    background-image: url('../img/sub/sub_bot_img02.jpg');
}

.diff_con ul li.diff_list03 {
    background-image: url('../img/sub/sub_bot_img03.jpg');
}

.diff_con ul li.diff_list04 {
    background-image: url('../img/sub/sub_bot_img04.jpg');
}

/* 서브 하단 공통 영역 */


/* ---------------------------------------------------------------------------- */

/* ★---sub_contents---★ */

/* sec01 : intro */

.sec01{
    width: 100%;
    height: auto;
    position: relative;
}

.intro_con{
    text-align: center;
}

.intro_con .intro_sub_hd{
    font-size: 28px;
    color: #444;
    margin-bottom: 15px;
}

.intro_con .intro_sub_hd.tag{
    font-size: 25px;
    color: #cdcdcd;
    letter-spacing: 10%;
}

.intro_con .intro_tit{
    font-size: 60px;
    font-weight: 600;
    color: #222;
}

.intro_con .intro_tit span{
    font-size: 60px;
    color: #0071AD;
}

.intro_con .intro_tit b{
    font-weight: 300;
}

.intro_con .intro_icon{
    width: 25px;
    height: 20px;
    background: url('/img/sub/quotes_icon.png') no-repeat;
    background-size: cover;
    margin: 34px auto 15px;
}

.intro_con .intro_tit_add{
    font-size: 26px;
    color: #444444;
}

.intro_con .intro_tit_add span{
    font-size: 26px;
    color: #222;
    font-weight: 600;
}

.intro_con .intro_line{
    display: inline-block;
    width: 5%;
    height: 1px;
    background: #BBBBBB;
    transform: rotate(90deg);
    margin: 80px auto;
}

.intro_con .intro_desc{
    font-size: 24px;
    line-height: 1.5;
}

.intro_con .intro_desc span{
    font-size: 24px;
    font-weight: 500;
    color: #0071AD;
}

.intro_con .intro_box{
    width: 980px;
    height: auto;
    padding: 18px 30px;
    border-radius: 20px;
    background: #F7F7F7;

    font-size: 22px;
    text-align: center;
    color: #444;

    margin: 20px auto 0; 
}

.intro_con .intro_box span{
    font-size: 22px;
    font-weight: 500;
    color: #222;
}

.intro_con .intro_bn{
    width: 100%;
    height: 200px;
    background-size: cover;
    margin-top: 125px;
}

.intro_con .intro_bn p{
    font-family: "Quicksand", sans-serif;
    font-size: 18px;
    color: #fff;
    letter-spacing: 50%;
    line-height: 200px;
}

.intro_con .intro_bn.bn_21{
    background: url('../img/sub/m21_sec01_bg.jpg') no-repeat;
}

.intro_con .intro_bn.bn_22{
    background: url('../img/sub/m22_sec01_bg.jpg') no-repeat;
}

.intro_con .intro_bn.bn_31{
    background: url('../img/sub/m31_sec01_bg.jpg') no-repeat;
}

.intro_con .intro_bn.bn_32{
    background: url('../img/sub/m32_sec01_bg.jpg') no-repeat;
}

.intro_con .intro_bn.bn_33{
    background: url('../img/sub/m33_sec01_bg.jpg') no-repeat;
}

.intro_con .intro_bn.bn_34{
    background: url('../img/sub/m34_sec01_bg.jpg') no-repeat;
}

.intro_con .intro_bn.bn_35{
    background: url('../img/sub/m35_sec01_bg.jpg') no-repeat;
}

.intro_con .intro_bn.bn_41{
    background: url('../img/sub/m41_sec01_bg.jpg') no-repeat;
}

.intro_con .intro_bn.bn_42{
    background: url('../img/sub/m42_sec01_bg.jpg') no-repeat;
}

.intro_con .intro_bn.bn_43{
    background: url('../img/sub/m43_sec01_bg.jpg') no-repeat;
}

.intro_con .intro_bn.bn_51{
    background: url('../img/sub/m51_sec01_bg.jpg') no-repeat;
}

.intro_con .intro_bn.bn_52{
    background: url('../img/sub/m52_sec01_bg.jpg') no-repeat;
}

.intro_con .intro_bn.bn_53{
    background: url('../img/sub/m53_sec01_bg.jpg') no-repeat;
}

.intro_con .intro_bn.bn_61{
    background: url('../img/sub/m61_sec01_bg.jpg') no-repeat;
}

.intro_con .intro_bn.bn_62{
    background: url('../img/sub/m62_sec01_bg.jpg') no-repeat;
}

.intro_con .intro_bn.bn_63{
    background: url('../img/sub/m63_sec01_bg.jpg') no-repeat;
}

.intro_con .intro_bn.bn_71{
    background: url('../img/sub/m71_sec01_bg.jpg') no-repeat;
}

.intro_con .intro_bn.bn_72{
    background: url('../img/sub/m72_sec01_bg.jpg') no-repeat;
}

/* sec01 : intro */

/* ---m11 : 분당안과 소개--- */

.con0101 .sec02 {
    position: relative;
    width: 100%;
    height: 300vh;
}

.sec02 [data-aos] {
    opacity: 0 !important;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.sec02 [data-aos="fade-up"] {
    transform: translate3d(0, 70px, 0) !important;
}
.sec02 [data-aos="fade-left"] {
    transform: translate3d(70px, 0, 0) !important;
}
.sec02 [data-aos="fade-right"] {
    transform: translate3d(-70px, 0, 0) !important;
}

/* [2. 모션 실행 상태]
   오직 '.active-motion' 클래스가 부여된 활성화 슬라이드 내부의 요소들만 제자리로 날아옵니다. */
.swiper-slide.active-motion [data-aos] {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
}

/* 순차적인 시간차 레이아웃 딜레이 */
.swiper-slide.active-motion .img02[data-aos] {
    transition-delay: 0.15s !important;
}
.swiper-slide.active-motion .vis_sub_tit [data-aos] {
    transition-delay: 0.3s !important;
}

.vis_swiper {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* 화면에 꽉 차게 고정 */
    overflow: hidden;
}

.vis_sec {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.vis_sec .vis_wrap{
    display: flex;
    justify-content: center;
    gap: 50px;
}

.vis_sec .vis_wrap .vis_tit{
    width: 27%;
    font-size: 35px;
    color: #555555;
    margin-top: 60px;
}

.vis_sec .vis_wrap .vis_tit span{
    font-size: 40px;
    color: #222222;
    font-weight: 500;
}

.vis_sec .vis_wrap .vis_tit span b{
    font-weight: 500;
    color: #0071AD;
}

.vis_sec .vis_wrap .vis_img{
    position: relative;
}

.vis_sec .vis_wrap .vis_img .img01{
    width: 500px;
    height: 668px;
}

.vis_sec .vis_wrap .vis_img .img01 img{
    width: 100%;
}

.vis_sec .vis_wrap .vis_img .img02{
    width: 345px;
    height: 345px;

    position: absolute;
    bottom: 0;
    left: -33%;
}

.vis_sec .vis_wrap .vis_img .img02 img{
    width: 100%;
}

.vis_sec .vis_wrap .vis_sub_tit{
    margin-top: 340px;
}

.vis_sec .vis_wrap .vis_sub_tit .vis_type{
    font-size: 50px;
    color: rgba(0,113,173,0.3);
    letter-spacing: 5%;
}

.vis_sec .vis_wrap .vis_sub_tit .vis_sub_desc{
    font-size: 24px;
    color: #444444;
    font-weight: 300;
    margin-top: 25px;
}

.vis_sec .vis_wrap .vis_sub_tit .vis_sub_desc span{
    font-weight: 500;
}

.vis_sec .vis_wrap .vis_sub_tit > .vis_sub_desc{
    margin-top: 5px;
}



/* .con0101{
    height: 145vh;
    overflow: hidden;
}

.cont {
    margin: 42rem auto 0;
    position: relative;
    width: 70rem;
    transform: translateY(20%);
    z-index: 3;
}

.cont .cir_wrap {
    padding-top: 100%;
    transition: transform 0.6s linear;
    position: relative;
}

.cont .cir_wrap .cir_line {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.cont .cir_wrap .cir_line img {
    width: 100%;
}

.cont .cir_bg {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 85%;
    height: 85%;
    transform: translate(-50%,-50%) ;
    background: url('../img/sub/m11_circle_bg.png') no-repeat;
    background-size: cover;
    border-radius: 50%;
}

.cont.num1 .cir_wrap {
    transform: rotate(-80deg);
}

.cont.num2 .cir_wrap {
    transform: rotate(-40deg);
}

.cont.num3 .cir_wrap {
    transform: rotate(-5deg);
}

.cont.num4 .cir_wrap {
    transform: rotate(50deg);
}

.cont.num5 .cir_wrap {
    transform: rotate(90deg);
}

.cont.num6 .cir_wrap {
    transform: rotate(130deg);
}

.cont .txt_wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.cont .txt_wrap .txt_cont {
    position: absolute;
}

.cont .txt_wrap .txt_cont .num_txt {
    color: rgba(0,0,0,0.2);
    font-weight: 700;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease-in-out;
}

.cont .txt_wrap .txt_cont .num_txt .num {
    font-size: 20px;
    width: 2.5em;
    height: 2.5em;
    line-height: 1;
    background-color: #EEEEEE;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.3s ease-in-out , background-color 0.3s ease-in-out;
}

.cont .spe_box {
    position: absolute;
    bottom: -20%;
    width: 349px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease-in-out;
}

.cont .spe_box .img {
    position: relative;
    width: 349px;
    height: 174px;
    padding-top: 56%;
    border-radius: 2rem 2rem 0 0;
    overflow: hidden;
}

.cont .spe_box .img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cont .spe_box .txt_box {
    width: 100%;
    position: relative;
    padding: 2rem 3rem 4rem;
    background-color: #F7F7F7;
    border-radius: 0 0 2rem 2rem;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}


.cont .spe_box .txt_box .tit_box .tit {
    font-size: 24px;
    font-weight: 500;
    color: #589dc0;
    text-align: center;
    letter-spacing: 10%;
}

.cont .spe_box .txt_box .txt {
    margin-top: 1rem;
    font-size: 22px;
    color: #555;
    text-align: center;
}

.cont .txt_wrap .txt_cont.left .spe_box {
    left: 0;
    transform: translate(-100%,0%);
}

.cont .txt_wrap .txt_cont.right .spe_box {
    right: 0;
    transform: translate(100%,0%);
}


.cont .txt_wrap .txt_cont.left .spe_box::before {
    right: 1.2em;
}

.cont .txt_wrap .txt_cont.right .spe_box::before {
    left: 1.2em;
}

.cont .spe_box_wrap {
    display: none;
}

.cont .txt_wrap .txt_cont.active {
    z-index: 5;
}

.cont .txt_wrap .txt_cont.active .spe_box {
    opacity: 1;
    pointer-events: visible;
}

.cont .txt_wrap .txt_cont.active.left .spe_box {
    left: -4rem;
}

.cont .txt_wrap .txt_cont.active.right .spe_box {
    right: -4rem;
}

.cont .txt_wrap .txt_cont.active .num_txt {
    color: #000;
}

.cont .txt_wrap .txt_cont.active .num_txt .num {
    color: #fff;
    background-color: #0071AD;
    cursor: pointer;
}

.cont .txt_wrap .txt_cont.num1 {
    left: -15% ;
    bottom: 35%;
}

.cont .txt_wrap .txt_cont.num2 {
    left: -11% ;
    top: 17%;
}

.cont .txt_wrap .txt_cont.num3 {
    left: 15% ;
    top: -9%;
}

.cont .txt_wrap .txt_cont.num6 {
    right: -15% ;
    bottom: 35%;
}

.cont .txt_wrap .txt_cont.num5 {
    right: -11% ;
    top: 17%;
}

.cont .txt_wrap .txt_cont.num4 {
    right: 15% ;
    top: -9%;
} */
/* ---m11 : 분당안과 소개--- */

/* ---m12 : 의료진 소개--- */

.tab_btn02{
    margin: 80px 0 100px 0;
}

.tab_btn02 ul{
    display: flex;
    justify-content: center;
    gap: 30px;
}

.tab_btn02 ul li{
    width: 250px;
    height: 50px;
    border-radius: 360px;
    background: #F5F5F5;
    font-size: 24px;
    color: #222;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}

.tab_btn02 ul li.active{
    background: #0071AD;
    color: #fff;
    font-weight: 600;
}

.doctor_con{
    padding-bottom: 100px;
}

.doctor_con .inner{
    display: flex;
    gap: 90px;
    align-items: center;
}

.doctor_con .doctor_img{
    width: 500px;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
}

.doctor_con .doctor_img .img{
    width: 100%;
}

.doctor_con .dotcor_txt_box{
    width: 50%;
}

.doctor_con .doctor_name{
    display: flex;
    align-items: last baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.doctor_con .doctor_name h2{
    font-size: 50px;
    color: #222;
    font-weight: 600;
}

.doctor_con .doctor_name h6{
    font-size: 24px;
    color: #888;
}

.doctor_con .intro_desc .subject_list{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.doctor_con .intro_desc .subject_list .subject{
    font-size: 22px;
    color: #00669C;
    font-weight: 600;
    margin-left: 28px;
}

.doctor_con .intro_desc .subject_list .subject::before{
    content: "";
    display: block;
    width: 26%;
    height: 5px;
    transform: rotate(90deg) translateY(-50%);
    background: #D9D9D9;
    position: absolute;
    top: 41%;
    left: -35px;
}

.doctor_con .intro_desc .subject_list p{
    font-size: 22px;
    color: #222222;
    position: relative;
}

.doctor_con .intro_desc .subject_list p::after{
    content: "|";
    display: block;
    color: #222222;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.doctor_con .intro_desc .subject_list p:first-child::after,
.doctor_con .intro_desc .subject_list p:last-child::after{
    display: none;
}

.doctor_con .intro_line::before{
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #00669c;
    position: absolute;
    top: -4px;
    left: 0;
}

.doctor_con .intro_line{
    position: relative;
    left: -120px;
    height: 1px;
    width: 120%;
    background: linear-gradient(to right, #00669C, rgba(0,102,156,0));
}

.doctor_con .doctor_list{
    width: 100%;
    margin-top: 40px;
    display: flex;
}


.doctor_con .doctor_list ul{
    width: 50%;
}

.doctor_con .doctor_list ul li{
    font-size: 20px;
    color: #222;
    line-height: 1.8;
}

.doctor02, .doctor03, .doctor04{
    display: none;
}

/* .doctor02 .doctor_list ul:nth-of-type(1) li:nth-of-type(4),
.doctor03 .doctor_list ul:nth-of-type(1) li:nth-of-type(5){
    margin-bottom: 20px;
} */

/* ---m12 : 의료진 소개--- */

/* ---m13 : 장비소개--- */

/* m13 : tan_btn */

.tab_btn{
    margin: 80px 0 70px 0;
}

.tab_btn ul{
    width: 565px;
    height: 80px;
    border-radius: 360px;
    background: rgba(0,113,173,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.tab_btn ul li{
    width: 250px;
    height: 50px;
    background: transparent;
    border-radius: 360px;
    font-size: 24px;
    color: #222;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.tab_btn ul li.active{
    background: #0071AD;
    color: #fff;
    font-weight: 600;
}

/* m13 : tan_btn */

/* m13_sec01 : 치료 및 수술 장비, 검사장비 */

.machine_con {
    position: relative;
}

.surgical, .inspection {
    display: none;
    opacity: 0;
}

.surgical.on, .inspection.on {
    display: block;
    opacity: 1;
    transition: opacity 0.5s;
}

.inspection_list{
    position: relative;
}

.surgical_list ul,
.inspection_list ul{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.surgical_list ul li,
.inspection_list ul li {
    cursor: pointer;
}

.surgical_list ul li .img,
.inspection_list ul li .img{
    width: 440px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    transform: scale(1);
}

.surgical_list ul li:hover img,
.inspection_list ul li:hover img{
    transform: scale(1.1);
}

.surgical_list ul li .img img,
.inspection_list ul li .img img{
    width: 100%;
    transition: all 0.8s ease-in-out;
}

.surgical_list ul li .type,
.inspection_list ul li .type{
    font-size: 22px;
    color: #005988;
    margin-top: 30px;
}

.inspection_list ul li .type span{
    font-size: 22px;
    color: #888;
}

.surgical_list ul li .name,
.inspection_list ul li .name{
    font-size: 25px;
    font-weight: 600;
    color: #222;
    margin-top: 10px;
}

.inspection_list .inspection_type{
    font-size: 26px;
    color: #555555;
    font-weight: 500;
    padding-top: 80px;
    padding-bottom: 20px;
    margin-left: 25px;
}

.inspection_list .inspection_type::before{
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #BBBBBB;
    position: relative;
    top: 24px;
    left: -25px;
}

.inspection_list .inspection_type:nth-of-type(1){
    padding-top: 0px;
}

.inspection_list .inspection_type::marker{
    color: #BBBBBB;
}

/* 치료 및 수술 장비, 검사장비 : modal */

.surgical_list_modal,
.inspection_list_modal{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    background-attachment: fixed;
    z-index: 10000;
    display: none;
}

.surgical_list_modal ul li,
.inspection_list_modal ul li{
    width: 700px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 10px, 10px, 10px, rgba(0,0,0,0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    display: none;
}

.surgical_list_modal ul li .img,
.inspection_list_modal ul li .img{
    width: 700px;
    height: 320px;
}

.surgical_list_modal ul li .img img,
.inspection_list_modal ul li .img img{
    width: 100%;
}

.surgical_list_modal ul li .modal_txt,
.inspection_list_modal ul li .modal_txt{
    padding: 50px;
}

.surgical_list_modal ul li .modal_txt .type,
.inspection_list_modal ul li .modal_txt .type{
    font-size: 22px;
    color: #005988;
    margin-bottom: 10px;
}

.inspection_list_modal ul li .modal_txt .type span{
    font-size: 22px;
    color: #888;
}

.surgical_list_modal ul li .modal_txt .name,
.inspection_list_modal ul li .modal_txt .name{
    font-size: 25px;
    letter-spacing: -1%;
    color: #222;
    font-weight: 600;
    margin-bottom: 30px;
}

.surgical_list_modal ul li .modal_txt .txt,
.inspection_list_modal ul li .modal_txt .txt{
    font-size: 22px;
    color: #222;
    width: 90%;
    word-break: keep-all;
}

.surgical_list_modal ul li .modal_close,
.inspection_list_modal ul li .modal_close{
    width: 54px;
    height: 54px;
    border-radius: 36px;
    background: #222;
    position: absolute;
    bottom: 35px;
    right: 35px;
    cursor: pointer;
}

.surgical_list_modal ul li .modal_close span,
.inspection_list_modal ul li .modal_close span{
    color: #fff;
    padding: 1.5rem;
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
}

.surgical_list_modal ul li .modal_close:hover span,
.inspection_list_modal ul li .modal_close:hover span{
    transform: rotate(90deg);
}

/* 치료 및 수술 장비, 검사장비 : modal */

/* m13_sec01 : 치료 및 수술 장비, 검사장비 */

/* ---m13 : 장비소개--- */

/* ---m14 : 둘러보기 페이지--- */

.around_con{
    margin-top: 70px;
    padding-bottom: 180px;
}

.around_con .inner{
    display: flex;
    justify-content: space-between; /* 메인과 썸네일 사이 간격 */
    align-items: flex-start;
}

.around_con .ar_slide {
    width: 1150px;
    height: 650px;
    margin: 0; /* 기본 마진 제거 */
}


.around_con .ar_slide .ar_img{
    width: 1150px;
    height: 650px;
    border-radius: 20px;
    overflow: hidden;
}

.around_con .ar_slide .ar_img img{
    width: 100%;
}

.around_con .ar_slide02 {
    width: 230px;
    height: 650px; /* 메인 슬라이드와 동일한 높이를 줘야 4개가 세로로 배치됨 */
    overflow: hidden;
    margin-left: 26px; /* 메인 슬라이드와의 간격 */
}

.around_con .ar_slide02 .swiper-slide {
    width: 100% !important; /* 가로폭 꽉 차게 */
    height: 143px !important; /* 개별 슬라이드 높이 */
}

.around_con .ar_slide02 .ar_img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    filter: brightness(1); /* 기본은 어둡게 */
    transition: all 0.3s;
    cursor: pointer;
}

.around_con .ar_slide02 .ar_img img{
    width: 100%;
    height: 100%;
}


.around_con .ar_slide02 .swiper-slide-thumb-active .ar_img{
    filter: brightness(0.5);
}

.around_con .ar-swiper-button-prev,
.around_con .ar-swiper-button-next{
    width: 73px;
    height: 73px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.around_con .ar-swiper-button-prev{
    left: 26px;
    background: url("../img/sub/sub_around_prev.png") no-repeat;
}

.around_con .ar-swiper-button-next{
    right: 26px;
    background: url("../img/sub/sub_around_next.png") no-repeat;
}

/* ---m14 : 둘러보기 페이지--- */

/* ---m15 : 오시는길 페이지--- */

.direc{
    display: flex;
    align-items: center;
    padding-left: 250px;
    margin-top: 70px;
}

.direc .map{
    width: 710px;
    height: 650px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.direc_txt{
    width: 959px;
    height: 590px;
    background: #f7f7f7;
    overflow: hidden;
    padding: 70px 80px;
}

.direc_txt .direc_tit{
    font-size: 35px;
    letter-spacing: -2%;
    font-weight: 600;
    color: #000;
    margin-bottom: 35px;
}

.direc_txt .direc_tit span{
    font-size: 35px;
    letter-spacing: -2%;
    font-weight: 600;
    color: #00669C;
}

.direc_txt .direc_line::before{
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #00669c;
    position: absolute;
    top: -4px;
    left: 0;
}

.direc_txt .direc_line{
    position: relative;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, #00669C, rgba(0,102,156,0));
}

.direc_hour_box{
    margin-top: 35px;
}

.direc_hour_box .call{
    display: flex;
    align-items: center;
    gap: 45px;
    margin-bottom: 40px;
}

.direc_hour_box .direc_hours{
    display: flex;
    gap: 45px;
}

.direc_hour_box .hours{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.direc_hour_box .call .call_tit,
.direc_hour_box .hours_tit{
    font-size: 24px;
    letter-spacing: -2%;
    color: #005887;
    font-weight: 500;
}

.direc_hour_box .call ul li{
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -2%;
    color: #000;
}

.direc_hour_box .hours ul{
    display: flex;
    gap: 20px;
}


.direc_hour_box .hours ul li{
    font-size: 22px;
    letter-spacing: -2%;
    color: #000;
}

.direc_hour_box .hours ul li:nth-of-type(1){
    width: 10%;
}

.direc_hour_box .hours ul:nth-of-type(3){
    margin-bottom: 18px;
}

.direc_hours p{
    font-size: 22px;
    color: #555;
    letter-spacing: -2%;
    line-height: 1;
}

/* ---m15 : 오시는길 페이지--- */

/* ---m21 --- */

/* m21_sec02 : 시야 비교 */

/* 각 세션 시야비교_ 이미지 */
.con0201 .diff_box .img_drag_box .img_box .img.a{
    background-image:url('../img/sub/m21_sec02_img02.jpg');
}

.con0602 .diff_box .img_drag_box .img_box .img.a{
    background-image:url('../img/sub/m62_sec02_img02.jpg');
}
/* 각 세션 시야비교_ 이미지 */

.diff_box .img_drag_box .info_box .drag_box::after{
    background:#EEEEEE;
}

.diff_box .img_drag_box .txt_box{
    display:flex;
    justify-content: space-between;
    margin-top: 40px;
}

.diff_box .img_drag_box .txt_box > div b{
    width: 240px;
    text-align:center;
    font-size: 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #222;
}

.diff_box .img_drag_box .txt_box > .l_txt b{
    font-weight: 400;
}

.diff_box .img_drag_box .txt_box > .r_txt b{
    font-weight: 600;
}

.diff_box .img_drag_box .img_box{
    position:relative;
    border-radius: 20px;
    overflow: hidden;
    width: 1420px;
    height: 450px;
}

.diff_box .img_drag_box .img_box .img{
    width:100%;
    height:100%;
    background-repeat:no-repeat;
    background-size:cover;
    background-position: left;
}

.diff_box .img_drag_box .img_box .img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.diff_box .img_drag_box .img_box .img.a{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    transition: opacity 0.1s linear;
    pointer-events:none;
    transition: none !important;
    will-change: opacity;
}

.diff_box .img_drag_box .info_box .drag_box{
    position:absolute;
    width: 100%;
    max-width:850px;
    height:60px;
    margin:0 auto;
    padding:0;
    left:50%;
    bottom:0;
    transform:translate(-50%, 0);
}

.diff_box .img_drag_box .info_box{
    position:relative;
}

.diff_box .img_drag_box .info_box .drag_box::after{
    content:'';
    position:absolute;
    top:50%;
    left:0;
    width:100%;
    height: 3px;
    transform: translate(0px, -50%);
}

.diff_box .img_drag_box .info_box .drag_box .bar_btn{
    position:absolute;
    top:50%;
    left:50%;
    transform: translateX(-50%);
    margin-top: -35px;
    width: 70px;
    height: 70px;
    background:url('../img/sub/m21_sec02_btn.png') no-repeat center / contain;
    cursor:grab;
    z-index:10;
    transition: none !important;
    will-change: left;
    user-select: none;
    -webkit-touch-callout: none;
}

/* m21_sec02 : 시야 비교 */

/* m21_sec05 : 종류_슬라이드 */

.type_con{
    width: 100%;
    height: auto;
    background: url('../img/sub/m21_sec05_bg.jpg') no-repeat;
    background-size: cover;
}

.type_con .type_list .tpye_slide{
    padding-top: 110px;
}

.type_con .type_list .swiper-slide-active .type_img{
    border: 3px solid #0071AD;
}

.type_con .type_list .type_flex{
    width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.type_con .type_list .type_img{
    width: 320px;
    height: 236px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #cdcdcd ;
}

.type_con .type_list .type_img img{
    width: 100%;
}

.type_con .type_list .type_txt .type_subject{
    font-size: 22px;
    letter-spacing: -3%;
    color: #bbb;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.type_con .type_list .type_txt .type_name{
    font-size: 25px;
    letter-spacing: -3%;
    color: #222;
    text-align: center;
    font-weight: 500;
}

.type_con .type_list .ty-swiper-pagination{
    position: absolute;
    top: 10%;
    left: 45%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    width: auto;
}


/* m21_sec05 : 종류_슬라이드 */

/* ---m21--- */

/* ---m35--- */

/* m35_sec03 : 질환 종류 */

.con0305 .re_types_box .re_types_img{
    width: 710px;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
}

/* m35_sec03 : 질환 종류 */

/* ---m35--- */

/* ---m43--- */

/* m43_sec03 : 치료 방법 */

.con0403 .sec03{
    position: relative;
    background: #f7f7f7;
}

.way_types_slide{
    margin-top: 80px;
}

.way_types_box{
    display: flex;
    gap: 100px;
}

.way_types_box .way_types_img{
    width: 710px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
}

.way_types_box .way_types_img img{
    width: 100%;
}

.way_types_box .way_types_ex{
    margin-top: 36px;
}

.way_types_box .way_types_ex .ex_type{
    width: 121px;
    height: 34px;
    border-radius: 360px;
    background: #0071ad;
    font-size: 20px;
    color: #fff;
    line-height: 34px;
    margin-bottom: 20px;
    text-align: center;
}

.way_types_box .way_types_ex .ex_tit{
    font-size: 30px;
    color: #222;
    font-weight: 600;
    margin-bottom: 15px;
}

.way_types_box .way_types_ex .ex_tit span{
    font-size: 25px;
    color: #888;
    font-weight: 400;
}

.way_types_box .way_types_ex .ex_desc{
    font-size: 22px;
    color: #555;
}

.vi_control_box {
    position: absolute;
    left: 57.5%;
    bottom: 30px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

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

.vi_pagi_box span {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: #222;
}

.vi_pagi_box .total{
    color: #555;
    opacity: 0.5;
}

.vi_pagi_box span:nth-of-type(2){
    color: #555;
    opacity: 0.5;
}

/* m43_sec03 : 치료 방법 */

/* ---m43--- */

/* ---m51--- */

/* m51_sec05 */

.proce{
    position: relative;
}

.proce ul{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 100px;
}

.proce ul li{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    cursor: pointer;
}

.proce ul li .proce_num{
    font-size: 24px;
    color: #222222;
    opacity: 0.5;
    font-weight: 500;
    margin-bottom: 60px;
    transition: all 0.5s ease;
}

.proce ul li .proce_subject{
    font-size: 22px;
    color: #222222;
    font-weight: 500;
    transition: all 0.5s ease;
}

.proce ul li .proce_desc{
    font-size: 22px;
    color: #888888;
}

.proce ul li .proce_dot{
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background: #D9D9D9;
    
    position: absolute;
    top: 25%;

    display: block;
    z-index: 1;

    transition: all 0.5s ease;
}

.proce_line_wrap{
    width: 100%;
    position: absolute;
    top: 28%;
    left: 0;
}

.proce_line_wrap .proce_line{
    display: block;
    width: 100%;
    height: 1px;
    background: #BBBBBB;
}


.proce li:hover .proce_num{
    opacity: 1;
}

.proce li:hover .proce_subject{
    color: #0071AD;
}

.proce li:hover .proce_dot{
    background: #0071AD;
}




/* m51_sec05 */

/* m51_sec06 : 질환 종류 */

.con0501 .re_types_box .re_types_img{
    width: 550px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

/* m53_sec06 : 질환 종류 */

/* ---m51--- */

/* ---m53--- */

/* m53_sec03 : 질환 종류 */

.con0503 .re_types_box .re_types_img{
    width: 710px;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
}

.con0503 .re_types_box .re_types_ex .ex_check_box{
    width: 149px;
}

/* m53_sec03 : 질환 종류 */

/* ---m53--- */


/* ---m61--- */

/* m61_sec02 : 질환 종류 */

.re_types_box{
    display: flex;
    gap: 80px;
    margin-top: 160px;
}

.re_types_box .re_types_img{
    width: 650px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.re_types_box .re_types_img img{
    width: 100%;
}

.re_types_box .re_types_ex{
    width: 45%;
}

.re_types_box .re_types_ex .ex_tit{
    font-size: 30px;
    font-weight: 600;
    color: #0071AD;
    margin-bottom: 15px;
}

.re_types_box .re_types_ex .ex_tit span{
    font-size: 25px;
    color: #888;
    font-weight: 400;
}

.re_types_box .re_types_ex  .ex_desc{
    font-size: 24px;
    color: #222;
    line-height: 1.5;
    margin-bottom: 50px;
}

.re_types_box .re_types_ex .ex_check_box{
    width: 110px;
    height: 34px;
    border-radius: 360px;
    font-size: 20px;
    color: #222;
    text-align: center;
    line-height: 34px;
    margin-bottom: 20px;
    background: #EEEEEE;
}

.re_types_box .re_types_ex ul li{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.re_types_box .re_types_ex ul li:nth-of-type(3){
    margin-bottom: 0px;
}

.re_types_box .re_types_ex ul li span{
    width: 25px;
    height: 25px;
    border: 1px solid #BBBBBB;
    border-radius: 25px;
    font-size: 22px;
    color: #0071AD;
    font-weight: 800;
}

.re_types_box .re_types_ex ul li p{
    font-size: 22px;
    color: #444;
}

/* 전체 컨테이너 여백 : 질환 여백 */
.re_types_slide,.re_types_slide02,.re_types_slide03,
.re_types_slide04, .re_types_slide05 {
    padding-top: 120px;
}
/* 전체 컨테이너 여백 : 질환 여백 */

.re-types-swiper-pagination {
    width: 100%;
    max-width: 810px;
    margin: 0 auto;
    position: absolute;
    top: 100px !important;
    left: 50% !important;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between; 
    overflow: visible; 
}

.re-types-swiper-pagination::before {
    width: 240%;
    content: "";
    position: absolute;
    top: 6px; 
    left: -70%;
    right: 0;
    border-bottom: 1px solid #ccc;
    z-index: 1;
}

.re-types-swiper-pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    background: transparent;
    opacity: 1;
    display: flex;
    flex-direction: column; 
    align-items: center;
    position: relative;
    z-index: 2;
    margin: 0 !important; 
    flex: 1;
}

.re-types-swiper-pagination .swiper-pagination-bullet::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin-bottom: 20px; /* 점과 아래 텍스트 사이 간격 */
    transition: 0.3s;
}

.re-types-swiper-pagination .swiper-pagination-bullet-active::before {
    background-color: #0071AD;
}

.re-types-swiper-pagination span {
    font-size: 24px;
    color: #bbb;
    white-space: nowrap;
}

.re-types-swiper-pagination .swiper-pagination-bullet-active span {
    color: #000;
}

.re-swiper-button-prev{
    display: block;
    width: 60px;
    height: 60px;
    background: url('/img/sub/prev_icon.png') no-repeat;
    background-size: cover;

    position: absolute;
    bottom: 20px;
    right: 18%;
    z-index: 10;

    cursor: pointer;
}

.re-swiper-button-next{
    display: block;
    width: 60px;
    height: 60px;
    background: url('/img/sub/next_icon.png') no-repeat;
    background-size: cover;

    position: absolute;
    bottom: 20px;
    right: 13%;
    z-index: 10;

    cursor: pointer;
}

/* m61_sec02 : 질환 종류 */

/* m61_sec03 : 치료 대상 */

.tm_target_list{
    margin-top: 80px;
}

.tm_target_list ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.tm_target_list ul li{
    width: 700px;
    height: 86px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-self: center;
}

.tm_target_list ul li.active{
    background: rgba(0,113,173,0.05);
}

.tm_target_list ul li .type_box{
    width: 90px;
    height: 34px;
    border-radius: 360px;
    background: #0071AD;
    color: #fff;
    font-size: 20px;
    text-align: center;
    margin-left: 30px;
    line-height: 34px;
}

.tm_target_list ul li:nth-of-type(4n-2) .type_box,
.tm_target_list ul li:nth-of-type(4n-1) .type_box {
    background: #004E78;
}

.tm_target_list ul li p{
    font-size: 22px;
    color: #222;
}

/* m61_sec03 : 치료 대상 */

/* m61_sec04 : 검사 시스템 */

.system_con {
    margin-top: 100px;
}

.system_con ul{
    display: flex;
    cursor: pointer;
}

.system_con ul li{
    width: 380px;
    height: 380px;
    border-radius: 360px;
    border: 1px solid #0071AD;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-right: -20px;
    position: relative;
    transition: all 0.5s ease;
}

.system_con ul li .system_img{
    width: 80px;
    height: 80px;
}

.system_con ul li .system_img.field{
    background: url('../img/sub/m61_sec04_icon01.png') no-repeat;
}

.system_con ul li .system_img.angle{
    background: url('../img/sub/m61_sec04_icon02.png') no-repeat;
}

.system_con ul li .system_img.analyze{
    background: url('../img/sub/m61_sec04_icon03.png') no-repeat;
}

.system_con ul li .system_img.plan{
    background: url('../img/sub/m61_sec04_icon04.png') no-repeat;
}

.system_con ul li p{
    font-size: 24px;
    line-height: 1.5;
    color: #222;
    text-align: center;
}

.system_con ul li:nth-of-type(1)::before{
    content: "";
    display: block;
    height: 1px;
    background: #0071AD;
    width: 70%;
    position: absolute;
    top: 50%;
    left: -70%;
}

.system_con ul li:nth-of-type(4)::before{
    content: "";
    display: block;
    height: 1px;
    background: #0071AD;
    width: 70%;
    position: absolute;
    top: 50%;
    right: -70%;
}

/* 호버 영역 */

.system_con ul li:hover{
    background: #0071AD;
}

.system_con ul li:hover p{
    color: #fff;
}

.system_con ul li:hover .system_img.field{
    background: url('../img/sub/m61_sec04_icon01_1.png') no-repeat;
}

.system_con ul li:hover .system_img.angle{
    background: url('../img/sub/m61_sec04_icon02_1.png') no-repeat;
}

.system_con ul li:hover .system_img.analyze{
    background: url('../img/sub/m61_sec04_icon03_1.png') no-repeat;
}

.system_con ul li:hover .system_img.plan{
    background: url('../img/sub/m61_sec04_icon04_1.png') no-repeat;
}

/* 호버 영역 */

/* m61_sec04 : 검사 시스템 */

/* ---m61--- */

/* ★---sub_contents---★ */