@charset "utf-8";

#wrap {
	width: 100%;
    position: relative;
	overflow: hidden;
}

.inner {
	width: calc(100% - 4rem);
	max-width: 1436px;
    margin: 0 auto;
}

.wh{
    color: #fff !important;
}


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

/* 비주얼 영역 : 비주얼, 섹션01 */

.visual{
    width: 100%;
    height: auto;
    background: url('../img/landing/main_bg.jpg') no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding-bottom: 200px;
}

/* header */

.visual .hd{
    width: 100%;
    height: auto;
    padding: 29px 44px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.visual .hd .logo{
    width: 323px;
    height: 45px;
    background: url('../img/landing/logo.png') no-repeat;
}

.visual .call{
    width: 504px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    margin-left: 48.8%;
}

.visual .call p{
    font-size: 28px;
    font-weight: 200;
    position: relative;
}

.visual .call p:nth-of-type(1)::after{
    content: "";
    display: block;
    width: 28%;
    height: 1px;
    background: #fff;
    transform: rotate(90deg);

    position: absolute;
    top: 20px;
    left: 98px;
}

.visual .call span{
    font-size: 33px;
    font-weight: 500;
}

/* header */

/* visual */

.visual_desc{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    position: relative;
    padding: 15rem;
}

.visual_desc .intro_tit{
    font-family: 'Chopin', sans-serif;
    font-size: 103px;
    font-weight: 300;
    letter-spacing: -1%;
}

.visual_desc .intro_tit::after{
    content: '';
    display: block;
    width: 17.5%;
    height: 1px;
    background: #fff;

    position: absolute;
    top: 50%;
    left: 43.7%;
}

.visual_desc .intro_desc{
    margin-right: 96px;
}

.visual_desc .intro_desc h2{
    font-size: 43px;
    font-weight: 300;
}

.visual_desc .intro_desc p{
    font-size: 21px;
    letter-spacing: -6%;
    line-height: 1.5;
    font-weight: 300;
    opacity: 66%;
    margin-top: 10px;
}

.visual_desc .main_tag{
    font-size: 19px;
    font-weight: 200;
    letter-spacing: 9%;
    opacity: 0.7;
}

.visual_desc .main_tit{
    font-size: 60px;
    font-weight: 350;
    margin-bottom: 1vw;
    text-align: center;
}

.visual_desc .main_tit span{
    font-size: 60px;
    font-weight: 500;
}

.visual_desc .main_desc{
    font-size: 24px;
    font-weight: 300;
    letter-spacing:-6%;
    opacity: 0.7;
}

/* visual */

/* scroll */

.scroll_icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    animation: scrollDown forwards infinite 5s;
}

.scroll_icon p{
    font-family: 'Chopin', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4%;
}

@keyframes scrollDown {
    0%{
        transform: translateY(0em);
    }50%{
        transform: translateY(-1.5rem);
    }100%{
        transform: translateY(0em);
    }
}

/* scroll */

/* new_sec */

.new_sec{
    width: 100%;
    height: 103vh;
    overflow: hidden;
}

.new_sec .new_video{
    width: 100%;
    height: 100%;
}

.new_sec .new_video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .new_sec .new_bg_img{
    width: 100%;
    height: auto;
} */

/* new_sec */

/* sec01 */

.s_horizon {
    position: relative;
    z-index: 4;
    overflow: hidden;
    padding-top: 300px;

    width: 100%;
    height: auto;
    background: url('../img/landing/sec06_bg.jpg') no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding-bottom: 200px;
}

/* =========================
   layout
========================= */

.s_horizon .horizon_container {
    display: flex;
    align-items: center;
    padding: 0 10vw;
}

.s_horizon .horizon_track {
    display: flex;
    gap: 100px;
}

/* =========================
   slide item
========================= */

.s_horizon .cont {
    display: flex;
    gap: 160px;
    flex-shrink: 0;
    align-items: flex-start;

    opacity: 0;
    transform: translateY(80px);

    transition: opacity .4s, transform .4s;
}

.s_horizon .cont.on {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   text area
========================= */

.s_horizon .cont > .txtBx {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.s_horizon .cont > .txtBx .top div p {
    font-family: 'Chopin', sans-serif;
    font-size: 69px;
    font-weight: 300;
    color: #ffffff60;
    line-height: 1.1;
}

.s_horizon .cont > .txtBx .top div {
    overflow: hidden;
}

.s_horizon .cont > .txtBx .bottom {
    font-size: 38px;
    color: #fff;
    margin-top: 90px;
    line-height: 1.4;
}

.s_horizon .cont > .txtBx .bottom span{
    font-size: 27px;
    color: #CECECE;
    font-weight: 350;
}

.s_horizon .cont > .txtBx .add_bottom{
    font-size: 23px;
    color: #CECECE;
    font-weight: 300;
    margin-top: 20px;
}

/* =========================
   image box
========================= */

.s_horizon .cont ._imgBx {
    width: 450px;
    height: 630px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.s_horizon .cont ._imgBx img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1.5);
    filter: blur(10px);

    transition: transform 1.2s, filter 1.2s;
}

.s_horizon .cont.on ._imgBx img {
    transform: scale(1);
    filter: blur(0);
    transition-delay: 0.2s;
}

/* =========================
   image text overlay
========================= */

.s_horizon .cont ._imgBx .img_txt {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    z-index: 2;
}

/* =========================
   active text animation
========================= */

.s_horizon .cont > .txtBx .top p {
    transform: translateY(110%);
    transition: color .4s, transform .4s;
}

.s_horizon .cont.on > .txtBx .top div p {
    transform: translateY(0);
}

/* active color per slide */
.s_horizon .cont:nth-child(1).on > .txtBx .top div:nth-child(1) p {
    color: #fff;
}

.s_horizon .cont:nth-child(2).on > .txtBx .top div:nth-child(1) p {
    color: #fff;
}

.s_horizon .cont:nth-child(3).on > .txtBx .top div:nth-child(1) p {
    color: #fff;
}

/* sec01 */

/* 비주얼 영역 : 비주얼, 섹션01 */

/* sec02 영역 : 타이핑 텍스트 효과 */

/* sec02 */

.mo_ver{
        display: none;
    }

.pc_ver{
    display: block;
}

.intro_txt{
    text-align: center;
    font-weight: 500;
    letter-spacing: -2.2px;
    text-align: center;
    padding: 300px 0 200px 0;
    position: relative;
}

.intro_txt::before{
    content: "";
    display: block;
    width: 15%;
    height: 1px;
    background: #000000;
    opacity: 0.15;
    rotate: 90deg;

    position: absolute;
    top: 15.5%;
    left: 42%;
    transform: rotate(0deg);
    z-index: -1;
}

.intro_txt .text_fast_en span{
    font-size: clamp(18px, 2.5vw, 34px);
    color: #9D9D9D;
    display: inline-flex; 
    flex-wrap: wrap;
    white-space: pre;
    font-weight: 400;
    margin-bottom: 10px;
}

.intro_txt .text_fast_en > .num3, 
.intro_txt .text_fast_en > .num5,
.intro_txt .text_fast_en > .num9,
.intro_txt .text_fast_en > .num12 {
    margin-right: 5px;
}

.intro_txt .text_fast_ko{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.intro_txt .text_fast_ko .line{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.intro_txt .text_fast_ko .line span{
    font-size: clamp(22px, 3.2vw, 42px);
    color: #1D1D1D;
}


.intro_txt .text_fast_ko .line > .num16,
.intro_txt .text_fast_ko .line > .num17,
.intro_txt .text_fast_ko .line > .num18,
.intro_txt .text_fast_ko .line > .num25,
.intro_txt .text_fast_ko .line > .num26,
.intro_txt .text_fast_ko .line > .num27,
.intro_txt .text_fast_ko .line > .num28,
.intro_txt .text_fast_ko .line > .num29,
.intro_txt .text_fast_ko .line > .num37,
.intro_txt .text_fast_ko .line > .num38,
.intro_txt .text_fast_ko .line > .num39,
.intro_txt .text_fast_ko .line > .num40,
.intro_txt .text_fast_ko .line > .num41,
.intro_txt .text_fast_ko .line > .num42,
.intro_txt .text_fast_ko .line > .num43,
.intro_txt .text_fast_ko .line > .num44,
.intro_txt .text_fast_ko .line > .num47,
.intro_txt .text_fast_ko .line > .num48,
.intro_txt .text_fast_ko .line > .num49,
.intro_txt .text_fast_ko .line > .num50,
.intro_txt .text_fast_ko .line > .num51,
.intro_txt .text_fast_ko .line > .num52,
.intro_txt .text_fast_ko .line > .num53,
.intro_txt .text_fast_ko .line > .num55,
.intro_txt .text_fast_ko .line > .num56,
.intro_txt .text_fast_ko .line > .num57,
.intro_txt .text_fast_ko .line > .num58{
    font-weight: 600;
    color: #315381;
}

.intro_txt .text_fast_ko .line > .num18,
.intro_txt .text_fast_ko .line > .num24,
.intro_txt .text_fast_ko .line > .num27,
.intro_txt .text_fast_ko .line > .num29,
.intro_txt .text_fast_ko .line > .num32,
.intro_txt .text_fast_ko .line > .num36,
.intro_txt .text_fast_ko .line > .num38,
.intro_txt .text_fast_ko .line > .num42,
.intro_txt .text_fast_ko .line > .num44,
.intro_txt .text_fast_ko .line > .num50,
.intro_txt .text_fast_ko .line > .num53,
.intro_txt .text_fast_ko .line > .num54,
.intro_txt .text_fast_ko .line > .num58,
.intro_txt .text_fast_ko .line > .num60{
    margin-right: 5px;
}

.intro_txt .text_fast_en span,
.intro_txt .text_fast_ko span{
    display: inline-block;
    opacity: 0;
}

.intro_txt.on .text_fast_en span,
.intro_txt.on .text_fast_ko span {
    animation: fade_txt 1s ease-out both;
}

@keyframes fade_txt {
    0% { 
        opacity: 0;
    }
    100% { 
        opacity: 1;
    }
}


/* sec02 */

/* sec02 영역 : 타이핑 텍스트 효과 */

/* sec03 영역 : 장비소개 */

.sec03{
    width: 100%;
    height: auto;
    position: relative;
    padding: 13rem;
}

.sec03_bg_video{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.sec03_bg_video .bg_con{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.machin .machin_slide .machin_wrap{
    display: flex;
    align-items: flex-end;
    gap: 130px;
}

.machin .machin_slide .machin_img{
    width: 712px;
    height: 650px;
    overflow: hidden;
}

.machin .machin_slide .machin_img img{
    width: 100%;
}

.machin .machin_slide .machin_txt_con{
    margin-bottom: 100px;
}

.machin .machin_slide .machin_txt_con .ma_tag{
    font-size: 20px;
    font-weight: 350;
}

.machin .machin_slide .machin_txt_con .ma_tit{
    font-size: 27px;
    color: #999DB1;
    margin-top: 10px;
}

.machin .machin_slide .machin_txt_con .ma_tit b{
    font-size: 27px;
    font-weight: 350;
    color: #fff;
}

.machin .machin_slide .machin_txt_con .ma_tit span{
    font-size: 30px;
    font-weight: 500;
    color: #fff;
}

.machin .machin_slide .machin_txt_con .ma_name_en{
    font-family: 'Novecento sans wide', sans-serif;
    font-size: 57px;
    font-weight: 300;
    letter-spacing: -2%;
    opacity: 0.5;
    margin-top: 44px;
}

.machin .machin_slide .machin_txt_con .ma_name_ko{
    font-size: 43px;
}

.machin .machin_slide .machin_txt_con .ma_desc{
    font-family: 'Novecento sans wide', sans-serif;
    font-size: 22px;
    font-weight: 300;
    margin-top: 10px;
}

.machin .ma-swiper-pagination {
    position: absolute;
    top: 20% !important;
    left: 57.5% !important;
    display: flex;
    flex-direction: row; 
    gap: 12px;
    align-items: center;
    transform: translateY(-50%);
    z-index: 10;
}

/* [기본 상태] 비활성화된 작은 점 */
.machin .ma-swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(217, 217, 217, 0.5);
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    margin: 0 !important;
}

/* [기본 상태] 글자는 일단 안 보이게 */
.machin .ma-swiper-pagination .btn_txt {
    opacity: 0;
    font-size: 19px;
    color: #fff;
    font-style: normal;
    white-space: nowrap;
    transition: opacity 0.3s;
    padding: 0 20px;
}

/* [Active 상태] 캡슐 모양으로 변신 */
.machin .ma-swiper-pagination .swiper-pagination-bullet-active {
    width: auto; /* 글자 길이에 맞춰 늘어남 */
    height: 47px; /* 캡슐 높이 */
    background: rgba(212,219,227,0.1);
    border-radius: 360px; /* 둥근 캡슐 */
}

/* [Active 상태] 글자 나타나기 */
.machin .ma-swiper-pagination .swiper-pagination-bullet-active .btn_txt {
    opacity: 1;
    display: block;
}

/* sec03 영역 : 장비소개 */

/* sec04 영역 : new 장비소개 */

.new_04{
    padding: 200px 0;
}

.bg_f7{
    background: #F7F7F7;
}

.state{
    position: relative;
}

.state:nth-of-type(2){
    margin-top: 80px;
}

.state .state_tit{
    font-size: 37px;
    font-weight: 500;
    color: #000000;
    list-style: disc;
}

.state .state_tit span{
    font-size: 37px;
    color: #315381;
}

.state .state_tit::before{
    content: "•";
    display: inline-block;
    color: #315381;
    opacity: 0.5;
}

.state .line{
    width: 115%;
    height: 1px;
    background: #CDCDCD;
    position: relative;
    top: 0;
    left: -17%;
    margin: 20px 0;
}

.state .state_list{
    margin-top: 40px;
}

.state .state_list ul{
    display: flex;
    align-items: center;
    gap: 30px;
}

.state .state_list .state_img{
    width: 330px;
    height: 274px;
    border-radius: 20px;
    overflow: hidden;
}   

.state .state_list .state_img img{
    width: 100%;
}

.state .state_list .state_name,
.state .state_list02 .state_name{
    font-size: 20px;
    font-weight: 300;
    color: #9D9D9D;
    margin-top: 15px;
}

.state .state_list .state_name_en,
.state .state_list02 .state_name_en{
    font-size: 25px;
    color: #000;
}

.state .state_list02 ul{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.state .state_list02 .state_img02{
    width: 690px;
    border-radius: 20px;
    overflow: hidden;
}

.state .state_list .state_img02 img{
    width: 100%;
}

/* sec04 영역 : new 장비소개 */

/* sec05 영역 : 의료진소개 */

.sec04{
    width: 100%;
    height: auto;
    position: relative;
    background: linear-gradient(to bottom, #fff, #E5E5E5);
    padding: 200px;
}

.intro_doc{
    position: relative;
    min-height: 800px;
}

.intro_doc .intro_doc_wrap {
    position: absolute; /* 절대 위치로 겹침 */
    top: 150px; /* com_txt 아래 적절한 위치 */
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 49px;
    
    /* 전환 효과 */
    transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease-out;
    visibility: hidden;
    opacity: 0;
}

/* 활성화 상태 */
.intro_doc .intro_doc_wrap.active {
    visibility: visible;
    opacity: 1;
    z-index: 5;
}

.com_txt{
    text-align: center;
}

.com_txt .com_tag{
    font-size: 20px;
    color: #1A3061;
    font-weight: 350;
    margin-bottom: 5px;
}

.com_txt .com_tit{
    font-size: 39px;
    font-weight: 350;
    color: #1D1D1D;
}

.intro_doc .doc_name_sim{
    font-family: 'Chopin', sans-serif;
    font-size: 121px;
    color: #989898;
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -1%;
    opacity: 0.5;

    position: absolute;
    top: 24%;
    z-index: 10;
}

.intro_doc .intro_doc_wrap {
    display: flex;
    align-items: center;
    gap: 49px;
}

.intro_doc .intro_doc_wrap .intro_doc_desc{
    margin-top: 12%;
}

.intro_doc .intro_doc_wrap .intro_doc_desc .doc_name{
    font-size: 43px;
    font-weight: 500;
    color: #1D1D1D;
    margin-bottom: 26px;
}

.intro_doc .intro_doc_wrap .intro_doc_desc .doc_name span{
    font-size: 29px;
    color: #888;
    font-weight: 500;
}

.intro_doc .intro_doc_wrap .intro_doc_desc .doc_desc{
    font-size: 20px;
    color: #9C9C9C;
    margin-bottom: 10px;
}

.intro_doc .intro_doc_wrap .intro_doc_desc .doc_list p{
    font-size: 24px;
    color: #1D1D1D;
    font-weight: 400;
}

.intro_doc .intro_doc_img{
    width: 529px;
    height: 684px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.intro_doc .intro_doc_sun .intro_doc_sun_desc{
    position: relative;
}

.intro_doc .intro_doc_sun .intro_doc_sun_desc P{
    font-size: 26px;
    font-weight: 500;
    color: #444;
    letter-spacing: -3%;
    margin-bottom: 128px;
}

.intro_doc .intro_doc_sun .intro_doc_sun_desc P span{
    font-size: 26px;
    font-weight: 500;
    color: #315381;
}

.intro_doc .intro_doc_sun .intro_doc_sun_desc::after{
    content: "";
    display: block;
    width: 21%;
    height: 1px;
    background: rgba(0,0,0,0.2);
    transform: rotate(90deg);
    position: absolute;
    top: 180px;
    left: -39px;
}

.intro_doc .intro_doc_sun .intro_doc_sun_desc02 p{
    font-size: 26px;
    color: #444;
    font-weight: 350;
}

.intro_doc .intro_doc_wrap .intro_doc_list p{
    font-size: 22px;
    color: #1A3061;
    letter-spacing: -3%;
    margin-bottom: 14px;
}

.intro_doc .intro_doc_wrap .intro_doc_list ul{
    margin-bottom: 15px;
}

.intro_doc .intro_doc_wrap .intro_doc_list ul li{
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

/* sec05 영역 : 의료진소개 */

/* sec06 영역 : 진료과목 소개 */

.sec05{
    width: 100%;
    height: auto;
    position: relative;
    background: url('../img/landing/sec05_bg.jpg');
    padding: 200px;
}

.subject_list ul{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 74px;
}

.subject_list ul li{
    position: relative;
    width: 462px;
    height: 288px;
    overflow: hidden;
}

.subject_list ul li .subject_img{
    width: 100%;
    height: 100%;
}

.subject_list ul li .subject_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.subject_list ul li .subject_txt {
    width: 100%;
    position: absolute;
    bottom: 60px;
    left: 30px;
    z-index: 5;
    transition: all 0.5s;
}

.subject_list ul li p{
    font-size: 30px;
    font-weight: 500;
    position: absolute;
    transition: all 0.5s;
}

.subject_list ul li .hover_txt {
    width: 397px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: absolute;
    top: -8vw;
    left: 0;
}

.subject_list ul li .hover_txt .hover_icon{
    display: block;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.5s;
}

.subject_list ul li .hover_txt .hover_icon.icon01{
    width: 100px;
    height: 100px;
    background: url('../img/landing/sec05_img01_icon.png');
    background-size: contain;
}

.subject_list ul li .hover_txt .hover_icon.icon02{
    width: 100px;
    height: 100px;
    background: url('../img/landing/sec05_img02_icon.png');
    background-size: contain;
}

.subject_list ul li .hover_txt .hover_icon.icon03{
    width: 100px;
    height: 100px;
    background: url('../img/landing/sec05_img03_icon.png');
    background-size: contain;
}

.subject_list ul li .hover_txt .hover_icon.icon04{
    width: 100px;
    height: 100px;
    background: url('../img/landing/sec05_img04_icon.png');
    background-size: contain;
}

.subject_list ul li .hover_txt .hover_icon.icon05{
    width: 100px;
    height: 100px;
    background: url('../img/landing/sec05_img05_icon.png');
    background-size: contain;
}

.subject_list ul li .hover_txt .hover_icon.icon06{
    width: 100px;
    height: 100px;
    background: url('../img/landing/sec05_img06_icon.png');
    background-size: contain;
}

.subject_list ul li .hover_txt .hover_desc {
    display: block;
    font-size: 25px;
    color: #fff;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.5s;
}

.subject_list ul li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
    opacity: 0.6;
    transition: opacity 0.5s;
    z-index: 2;
}

/* ================= 호버 액션 ================= */

.subject_list ul li:hover .subject_txt p {
    opacity: 0;
}

.subject_list ul li:hover p {
    margin-bottom: 15px; /* 제목과 설명 사이 간격 발생 */
}

/* 3. 설명글 나타남 */
.subject_list ul li:hover .hover_txt .hover_icon,
.subject_list ul li:hover .hover_txt .hover_desc {
    opacity: 1;
    transform: translateY(0);
}

/* 4. 배경 어둡게 */
.subject_list ul li:hover::after {
    /* background: rgba(0, 0, 0, 1); */
    background: #2562b3;
    mix-blend-mode: multiply;
    opacity: 1;
}

/* sec06 영역 : 진료과목 소개 */

/* sec07 영역 : 둘러보기 */

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

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

.around_con .ar_slide .ar_img img{
    display: block;
}

.around_con .ar_slide .ar_desc{
    font-family: 'Chopin', sans-serif;
    font-size: 74px;
    letter-spacing: 5%;
    color: #fff;
    position: absolute;
    bottom: 11rem;
    left: 17rem;
    z-index: 10;
}

.around_con .ar_slide02{
    position: absolute;
    bottom: 10rem;
    right:  10rem;
    width: 65rem;
    z-index: 1;

}

.around_con .ar_slide02 .ar_img{
    width: 10.8rem;
    height: 10.8rem;
    cursor: pointer;
    filter: brightness(0.3);
    transition: all 0.3s;
}

.around_con .ar_slide02 .ar_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* .around_con .ar-swiper-button-prev,
.around_con .ar-swiper-button-next {
    display: block;
    position: absolute ;
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;  
    height: 4rem;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 3;
}

.around_con .ar-swiper-button-prev{
    left: 4rem;
    background: url("/img/main/aound_prev_icon.svg") no-repeat;
}

.around_con .ar-swiper-button-next{
    right: 4.5rem;
    background: url("/img/main/aound_next_icon.svg") no-repeat;
}

.around_con .ar-swiper-button-prev::after,
.around_con .ar-swiper-button-next::after {
    display: none;
} */

/* sec06 영역 : 둘러보기 */

/* 오시는 길 */
/* 지도 포지션 부분 */

.cs_map_box{
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.cs_box{
    width: 100%;
    color: #222;
    padding: 75px 0 80px 260px;
}

.cs_box .cs_map_btn_box{
    display: flex;
    gap: 6px;
    margin-bottom: 13px;
    cursor: pointer;
}

.cs_box .map_ttl_row .tag{
    font-size: 20px;
    color: #1A3061;
    font-weight: 350;
}


.cs_box .map_ttl_row .title{
    font-size: 39px;
    margin-bottom: 0;
    color: #1D1D1D;
}

.cs_box .map_ttl_row .dsec{
    font-size: 25px;
}

.cs_box .map_ttl_row span{
    font-size: 25px;
} 

.cs_box .map_ttl_row  .place {
    width: fit-content;
    padding: 5px 20px 7px;
    text-align: center;
    border-radius: 360px;
    background: #203C63;
    margin-top: 25px;
    line-height: 5px;
}

.cs_box .map_ttl_row  .place .dong{
    display: flex;
    align-items: center;
    gap: 5px;
}

.cs_box .map_ttl_row  .place .dong{
    font-size: 22px;
    color: #fff;
    font-weight: 500;
}

.cs_box .map_ttl_row  .place .dong::before{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('../img/landing/map_icon.png') no-repeat;
    background-size: contain;
    margin-top: 4px;
}

.cs_box .map_ttl_row  .place .dong span{
    display: inline-block;
    width: 3px;
    height: 20px;
    background: #fff;
    opacity: 0.5;
    margin: 4px 5px 0;
}

.cs_box .map_ttl_row .subway{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.cs_box .map_ttl_row .subway .subway_line{
    width: fit-content;
    padding: 2px 5px;
    border: 2px solid #EBA800;
    font-size: 17px;
    color: #EBA800;
    text-align: center;
    border-radius: 360px;
    font-weight: 500;
}

.cs_box .map_ttl_row .subway .subway_exit{
    font-size: 19px;
    font-weight: 600;
    color: #222222;
}

.cs_box ul li {
    width: 100%;
    display: flex;
    gap: 22px;
    height: 42px;
    align-items: center;
}

.cs_box .cs_hours li .cs_date,
.cs_box .cs_hours li .cs_time,
.cs_box .cs_call li .cs_call_tit{
    font-size: 20px;
    line-height: 35px;
    font-weight: 400;
}

.cs_box .cs_hours li .cs_time span{
    font-size: 20px;
    color: #8F8F8F;
}

.cs_box .cs_call li .cs_call_tit {
    margin-bottom: 0px;
}

.cs_box .cs_hours li .cs_date,
.cs_box .cs_call li .cs_call_tit{
    width: 25%;
}

.cs_box .cs_hours li .cs_date::after,
.cs_box .cs_call li .cs_call_tit::after{
    content: "";
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
    width: 24px;
    position: relative;
    top: -18px;
    left: 106px;
}

.mapo .cs_box .cs_hours li .cs_date::after,
.mapo .cs_box .cs_call li .cs_call_tit::after{
    left: 121px;
}

.cs_box .cs_hours .cs_tit{
    font-size: 20px;
    color: #1A3061;
    margin-top: 40px;
    margin-bottom: 10px;
    font-weight: 350;
}

.cs_box .cs_hours .cs_rest{
    font-size: 17px;
    color: #315381;
    /* margin-left: 146px; */
}

.cs_box .call_num{
    font-size: 50px;
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: baseline;
    margin-top: 34px;
}

.cs_box .call_num span{
    display: block;
    font-size: 33px;
    color: #989898;
    font-weight: 400;
}

.cs_map_box .map_box .map_con{
    width: 1064px;
    height: 80vh;
    max-width: 100%;
    overflow: hidden;
}

.cs_map_box .map_box .map_con .root_daum_roughmap,
.cs_map_box .map_box .map_con .root_daum_roughmap_landing,
.cs_map_box .map_box .map_con .root_daum_roughmap .wrap_map {
    width: 100% !important;
    height: 100% !important;
}

/* 오시는 길 */

/* 푸터 */

footer{
    width: 100%;
    height: auto;
    padding: 30px;
    margin: 0 auto;
    background: #2C2C2C;

    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .ft_logo{
    width: 226px;
    height: 31px;
    margin-bottom: 40px;
}

footer .ft_list ul{
    display: flex;
    gap: 15px;
    justify-content: center;
}

footer .ft_list ul li{ 
    font-size: 15px;
}

footer .copy{
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0%;
    margin-top: 10px;
}

/* 푸터 */

/* 탑버튼 */

.quick {
    position: fixed;
    right: 4rem;
    bottom: 5rem;
    z-index: 100;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.quick .quick_menu {
    position: relative;
    width: 77px;
    /* height: 77px; */
}

.quick ul{
    width: 77px;
    height: 315px;
    border-radius: 36rem;
    background: #939393;
    padding: 32px 0;

    display: flex;
    flex-direction: column;
    gap: 20px;

    position: absolute;
    bottom: 0;
    z-index: -1;

    /* opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s ease; */
}

.quick ul.active {
    /* opacity: 1;
    visibility: visible;
    transform: translateY(0); */
}

.quick ul li{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quick ul li::after{
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background: #fff;
    opacity: 0.3;
    margin-top: 23px;
}

.quick ul li:last-child::after{
    display: none;
}

.quick ul li .naver{
    width: 32px;
    height: 32px;
    background: url('../img/landing/quick_naver.png') no-repeat;
    background-size: cover;
    margin:0 auto;
}

.quick ul li .ch{
    width: 32px;
    height: 32px;
    background: url('../img/landing/quick_ch.png') no-repeat;
    background-size: cover;margin:0 auto;
}

.quick ul li .map{
    width: 32px;
    height: 32px;
    background: url('../img/landing/quick_map.png') no-repeat;
    background-size: cover;margin:0 auto;
}

.quick ul li p{
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #fff;
    margin-top: 4px;
}

.quick .quick_btn{
    width: 77px;
    height: 77px;
    border-radius: 77px;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.quick .quick_btn p{
    font-size: 18px;
    color: #000000;
    text-align: center;
    line-height: 77px;
}

.goTop {
    display: block; 
    width: auto;
    height: auto;
    cursor: pointer;
    border: none;
    background: none;
    margin-top: 0; /* 처음엔 여백 없음 */
    
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5) translateY(20px); /* 작아진 상태로 아래에 대기 */
    transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
}

.goTop.fix {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 2.6rem;
}

.goTop span {
    display: block;
    width: 77px;
    height: 77px;
    background: url('../img/landing/top_btn.png') no-repeat center;
    background-size: contain;
    margin: 0 10px;
}

/* 탑버튼 */

/* 비급여항목 팝업 */
    .non{
        font-size: 14px;
        margin-top: 10px;
    }
    .nonpay{
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10000;
        cursor: pointer;
        overflow-y: auto;
        display: none;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 20px;

    }

    .nonpay .close_btn {
        position: fixed;
        top: 20px;
        right: 55px;
        z-index: 10001;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 40px;
        font-weight: bold;
        line-height: 1;
        cursor: pointer;
        outline: none;
        transition: opacity 0.2s ease;
    }

    .nonpay .close_btn:hover {
        opacity: 0.7;
    }

    .nonpay .nonpay_img{
        width: 100%;
        max-width: 1200px;
        height: auto;
        cursor: default;
    }   

    .nonpay .nonpay_img img{
        width: 100%;
        display: block;
    }
    /* 비급여항목 팝업 */

/* popup */

.popup_layer {
	display: none;
    position: fixed;
    top: 15%;
    left: 2%;
    /* transform: translate(-50%, -50%); */
    z-index: 10000;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    /* [핵심] 반응형 너비 설정 */
    width: 90%;          /* 모바일에서 양옆 여백 5%씩 확보 */
    max-width: 450px;    /* PC에서 너무 커지지 않게 제한 (이미지 크기에 맞게 조절) */
}

/* 팝업 내부 이미지 */
.popup_content img {
    display: block;
    width: 100%;         /* 부모 너비에 맞게 자동 조절 */
    height: auto;        /* 비율 유지 */
}

/* 버튼 영역 모바일 최적화 */
.popup_btn_area {
    background: #222;
    padding: 12px 15px;  /* 터치하기 편하게 패딩 조절 */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup_btn_area button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;     /* 가독성 좋은 크기 */
    cursor: pointer;
    white-space: nowrap; /* 글자 줄바꿈 방지 */
}

/* popup */

/* ======================== 노트북 ========================= */

@media screen and (max-width: 1440px){

    /* header */

    .visual .hd{
        width: 100%;
        height: auto;
        padding: 29px 44px;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .visual .hd .logo{
        width: 433px;
        height: 125px;
        background: url('../img/landing/logo.png') no-repeat;
        background-size: contain;
    }

    .visual .call{
        width: 560px;
        height: 125px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 28px;
        margin-left: auto;
    }

    .visual .call p{
        font-size: 25px;
        font-weight: 200;
        position: relative;
    }

    .visual .call p:nth-of-type(1)::after{
        content: "";
        display: block;
        width: 28%;
        height: 1px;
        background: #fff;
        transform: rotate(90deg);

        position: absolute;
        top: 20px;
        left: 88px;
    }

    .visual .call span{
        font-size: 33px;
        font-weight: 500;
    }

    /* header */

    /* visual */

    /* .visual_desc{
        display: flex;
        align-items: center;
        justify-content: space-between;

        position: relative;
        padding: 13rem;
        margin-top: 30px;
    } */

    .visual_desc{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    position: relative;
    padding: 19rem;
    margin-top: 30px;
}

.visual_desc .intro_tit{
    font-family: 'Chopin', sans-serif;
    font-size: 103px;
    font-weight: 300;
    letter-spacing: -1%;
}

.visual_desc .intro_tit::after{
    content: '';
    display: block;
    width: 17.5%;
    height: 1px;
    background: #fff;

    position: absolute;
    top: 50%;
    left: 43.7%;
}

.visual_desc .intro_desc{
    margin-right: 96px;
}

.visual_desc .intro_desc h2{
    font-size: 43px;
    font-weight: 300;
}

.visual_desc .intro_desc p{
    font-size: 21px;
    letter-spacing: -6%;
    line-height: 1.5;
    font-weight: 300;
    opacity: 66%;
    margin-top: 10px;
}

.visual_desc .main_tag{
    font-size: 19px;
    font-weight: 200;
    letter-spacing: 9%;
}

.visual_desc .main_tit{
    font-size: 60px;
    font-weight: 350;
    margin-bottom: 1vw;
    text-align: center;
}

.visual_desc .main_tit span{
    font-size: 60px;
    font-weight: 500;
}

.visual_desc .main_desc{
    font-size: 24px;
    font-weight: 400;
    letter-spacing:-6%;
}

    /* visual */

    /* scroll */

    .scroll_icon{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: 90px;
        animation: scrollDown forwards infinite 5s;
    }   

    .scroll_icon p{
        font-family: 'Chopin', sans-serif;
        font-size: 18px;
        font-weight: 300;
        letter-spacing: 4%;
    }

    @keyframes scrollDown {
        0%{
            transform: translateY(0em);
        }50%{
            transform: translateY(-1.5rem);
        }100%{
            transform: translateY(0em);
        }
    }

    /* scroll */

    /* new_sec */
    .new_sec{
        width: 100%;
        height: 36vh;
        overflow: hidden;
    }
    /* new_sec */

    /* sec03 영역 : 장비소개 */

    .sec03{
        width: 100%;
        height: auto;
        position: relative;
        padding: 13rem;
    }

    .sec03_bg_video{
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
    }

    .sec03_bg_video .bg_con{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .machin .machin_slide .machin_wrap{
        display: flex;
        align-items:center;
        gap: 120px;
    }

    .machin .machin_slide .machin_img{
        width: 600px;
        height: 500px;
        overflow: hidden;
    }

    .machin .machin_slide .machin_img img{
        width: 100%;
    }

    .machin .machin_slide .machin_txt_con{
        margin-top: 100px;
        margin-bottom: 0px;
    }

    .machin .machin_slide .machin_txt_con .ma_tag{
        font-size: 18px;
        font-weight: 350;
    }

    .machin .machin_slide .machin_txt_con .ma_tit{
        font-size: 25px;
        color: #999DB1;
        margin-top: 10px;
    }

    .machin .machin_slide .machin_txt_con .ma_tit b{
        font-size: 25px;
        font-weight: 350;
        color: #fff;
    }

    .machin .machin_slide .machin_txt_con .ma_tit span{
        font-size: 26px;
        font-weight: 500;
        color: #fff;
    }

    .machin .machin_slide .machin_txt_con .ma_name_en{
        font-family: 'Novecento sans wide', sans-serif;
        font-size: 45px;
        font-weight: 300;
        letter-spacing: -2%;
        opacity: 0.5;
        margin-top: 44px;
    }

    .machin .machin_slide .machin_txt_con .ma_name_ko{
        font-size: 40px;
    }

    .machin .machin_slide .machin_txt_con .ma_desc{
        font-family: 'Novecento sans wide', sans-serif;
        font-size: 18px;
        font-weight: 300;
        margin-top: 10px;
    }

    .machin .ma-swiper-pagination {
        position: absolute;
        top: 20% !important;
        left: 59% !important;
        display: flex;
        flex-direction: row; 
        gap: 12px;
        align-items: center;
        transform: translateY(-50%);
        z-index: 10;
    }

    /* [기본 상태] 비활성화된 작은 점 */
    .machin .ma-swiper-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        background: rgba(217, 217, 217, 0.5);
        border-radius: 50%;
        cursor: pointer;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        margin: 0 !important;
    }

    /* [기본 상태] 글자는 일단 안 보이게 */
    .machin .ma-swiper-pagination .btn_txt {
        opacity: 0;
        font-size: 19px;
        color: #fff;
        font-style: normal;
        white-space: nowrap;
        transition: opacity 0.3s;
        padding: 0 20px;
    }

    /* [Active 상태] 캡슐 모양으로 변신 */
    .machin .ma-swiper-pagination .swiper-pagination-bullet-active {
        width: auto; /* 글자 길이에 맞춰 늘어남 */
        height: 47px; /* 캡슐 높이 */
        background: rgba(212,219,227,0.1);
        border-radius: 360px; /* 둥근 캡슐 */
    }

    /* [Active 상태] 글자 나타나기 */
    .machin .ma-swiper-pagination .swiper-pagination-bullet-active .btn_txt {
        opacity: 1;
        display: block;
    }

    /* sec03 영역 : 장비소개 */

    /* sec04 영역 : new 장비소개 */

    .new_04{
        padding: 200px 50px;
    }

    .bg_f7{
        background: #F7F7F7;
    }

    .state{
        position: relative;
    }

    .state:nth-of-type(2){
        margin-top: 80px;
    }

    .state .state_tit{
        font-size: 30px;
        font-weight: 500;
        color: #000000;
    }

    .state .state_tit span{
        font-size: 30px;
        color: #315381;
    }

    .state .state_tit::before{
        content: "•";
        display: inline-block;
        color: #315381;
        opacity: 0.5;
    }

    .state .line{
        width: 115%;
        height: 1px;
        background: #CDCDCD;
        position: relative;
        top: 0;
        left: -17%;
        margin: 20px 0;
    }

    .state .state_list{
        margin-top: 40px;
    }

    .state .state_list ul{
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .state .state_list .state_img{
        width: 300px;
        height: auto;
        border-radius: 20px;
        overflow: hidden;
    }    

    .state .state_list .state_img img{
        width: 100%;
    }

    .state .state_list .state_name,
    .state .state_list02 .state_name{
        font-size: 18px;
        font-weight: 300;
        color: #9D9D9D;
        margin-top: 15px;
    }

    .state .state_list .state_name_en,
    .state .state_list02 .state_name_en{
        font-size: 23px;
        color: #000;
    }

    .state .state_list02 ul{
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    .state .state_list02 .state_img02{
        width: 620px;
        border-radius: 20px;
        overflow: hidden;
    }

    .state .state_list .state_img02 img{
        width: 100%;
    }

/* sec04 영역 : new 장비소개 */

    /* sec04 영역 : 의료진소개 */

    .sec04{
        width: 100%;
        height: auto;
        position: relative;
        background: linear-gradient(to bottom, #fff, #E5E5E5);
        padding: 94px;
    }

    .intro_doc{
        position: relative;
        min-height: 720px;
    }

    .intro_doc .intro_doc_wrap {
        position: absolute; /* 절대 위치로 겹침 */
        top: 150px; /* com_txt 아래 적절한 위치 */
        left: 0;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 49px;
    
        /* 전환 효과 */
        transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease-out;
        visibility: hidden;
        opacity: 0;
    }

    /* 활성화 상태 */
    .intro_doc .intro_doc_wrap.active {
        visibility: visible;
        opacity: 1;
        z-index: 5;
    }

    .com_txt{
        text-align: center;
    }

    .com_txt .com_tag{
        font-size: 20px;
        color: #1A3061;
        font-weight: 350;
        margin-bottom: 5px;
    }

    .com_txt .com_tit{
        font-size: 39px;
        font-weight: 350;
        color: #1D1D1D;
    }

    .intro_doc .doc_name_sim{
        font-family: 'Chopin', sans-serif;
        font-size: 115px;
        color: #989898;
        font-weight: 300;
        line-height: 0.9;
        letter-spacing: -1%;
        opacity: 0.5;

        position: absolute;
        top: 24%;
        z-index: 10;
    }

    .intro_doc .intro_doc_wrap {
        display: flex;
        align-items: center;
        gap: 49px;
    }

    .intro_doc .intro_doc_wrap .intro_doc_desc{
        margin-top: 24%;
    }

    .intro_doc .intro_doc_wrap .intro_doc_desc .doc_name{
        font-size: 38px;
        font-weight: 500;
        color: #1D1D1D;
        margin-bottom: 26px;
    }   

    .intro_doc .intro_doc_wrap .intro_doc_desc .doc_name span{
        font-size: 25px;
        color: #888;
        font-weight: 500;
    }

    .intro_doc .intro_doc_wrap .intro_doc_desc .doc_desc{
        font-size: 18px;
        color: #9C9C9C;
        margin-bottom: 10px;
    }

    .intro_doc .intro_doc_wrap .intro_doc_desc .doc_list p{
        font-size: 20px;
        color: #1D1D1D;
        font-weight: 400;
    }

    .intro_doc .intro_doc_img{
        width: 380px;
        height: 490px;
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
    }

    .intro_doc .intro_doc_sun .intro_doc_sun_desc{
        position: relative;
    }

    .intro_doc .intro_doc_sun .intro_doc_sun_desc P{
        font-size: 22px;
        font-weight: 500;
        color: #444;
        letter-spacing: -3%;
        margin-bottom: 128px;
    }

    .intro_doc .intro_doc_sun .intro_doc_sun_desc P span{
        font-size: 22px;
        font-weight: 500;
        color: #315381;
    }

    .intro_doc .intro_doc_sun .intro_doc_sun_desc::after{
        content: "";
        display: block;
        width: 21%;
        height: 1px;
        background: rgba(0,0,0,0.2);
        transform: rotate(90deg);
        position: absolute;
        top: 164px;
        left: -30px;
    }

    .intro_doc .intro_doc_sun .intro_doc_sun_desc02 p{
        font-size: 20px;
        color: #444;
        font-weight: 350;
    }

    .intro_doc .intro_doc_wrap .intro_doc_list p{
        font-size: 22px;
        color: #1A3061;
        letter-spacing: -3%;
        margin-bottom: 14px;
    }

    .intro_doc .intro_doc_wrap .intro_doc_list ul{
        margin-bottom: 15px;
    }

    .intro_doc .intro_doc_wrap .intro_doc_list ul li{
        font-size: 17px;
        color: #555;
        line-height: 1.7;
    }

    /* sec04 영역 : 의료진소개 */

    /* sec05 영역 : 진료과목 소개 */

.sec05{
    width: 100%;
    height: auto;
    position: relative;
    background: url('../img/landing/sec05_bg.jpg');
    padding: 100px;
}

.subject_list ul{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 74px;
}

.subject_list ul li{
    position: relative;
    width: 390px;
    height: 240px;
    overflow: hidden;
}

.subject_list ul li .subject_img{
    width: 100%;
    height: 100%;
}

.subject_list ul li .subject_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.subject_list ul li .subject_txt {
    width: 100%;
    position: absolute;
    bottom: 60px;
    left: 30px;
    z-index: 5;
    transition: all 0.5s;
}

.subject_list ul li p{
    font-size: 26px;
    font-weight: 500;
    position: absolute;
    transition: all 0.5s;
}

.subject_list ul li .hover_txt {
    width: 327px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: absolute;
    top: -9.5vw;
    left: 0;
}

.subject_list ul li .hover_txt .hover_icon{
    display: block;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.5s;
}

.subject_list ul li .hover_txt .hover_icon.icon01{
    width: 100px;
    height: 100px;
    background: url('../img/landing/sec05_img01_icon.png');
    background-size: contain;
}

.subject_list ul li .hover_txt .hover_icon.icon02{
    width: 100px;
    height: 100px;
    background: url('../img/landing/sec05_img02_icon.png');
    background-size: contain;
}

.subject_list ul li .hover_txt .hover_icon.icon03{
    width: 100px;
    height: 100px;
    background: url('../img/landing/sec05_img03_icon.png');
    background-size: contain;
}

.subject_list ul li .hover_txt .hover_icon.icon04{
    width: 100px;
    height: 100px;
    background: url('../img/landing/sec05_img04_icon.png');
    background-size: contain;
}

.subject_list ul li .hover_txt .hover_icon.icon05{
    width: 100px;
    height: 100px;
    background: url('../img/landing/sec05_img05_icon.png');
    background-size: contain;
}

.subject_list ul li .hover_txt .hover_icon.icon06{
    width: 100px;
    height: 100px;
    background: url('../img/landing/sec05_img06_icon.png');
    background-size: contain;
}

.subject_list ul li .hover_txt .hover_desc {
    display: block;
    font-size: 22px;
    color: #fff;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.5s;
}

.subject_list ul li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
    opacity: 0.6;
    transition: opacity 0.5s;
    z-index: 2;
}

/* ================= 호버 액션 ================= */

.subject_list ul li:hover .subject_txt p {
    opacity: 0;
}

.subject_list ul li:hover p {
    margin-bottom: 15px; /* 제목과 설명 사이 간격 발생 */
}

/* 3. 설명글 나타남 */
.subject_list ul li:hover .hover_txt .hover_icon,
.subject_list ul li:hover .hover_txt .hover_desc {
    opacity: 1;
    transform: translateY(0);
}

/* 4. 배경 어둡게 */
.subject_list ul li:hover::after {
    /* background: rgba(0, 0, 0, 1); */
    background: #2562b3;
    mix-blend-mode: multiply;
    opacity: 1;
}

/* sec05 영역 : 진료과목 소개 */

/* sec01 */

.s_horizon {
    position: relative;
    z-index: 4;
    overflow: hidden;
    padding-top: 300px;

    width: 100%;
    height: auto;
    background: url('../img/landing/main_bg.jpg') no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding-bottom: 200px;
}

/* =========================
   layout
========================= */

.s_horizon .horizon_container {
    display: flex;
    align-items: center;
    padding: 0 10vw;
}

.s_horizon .horizon_track {
    display: flex;
    gap: 100px;
}

/* =========================
   slide item
========================= */

.s_horizon .cont {
    display: flex;
    gap: 160px;
    flex-shrink: 0;
    align-items: flex-start;

    opacity: 0;
    transform: translateY(80px);

    transition: opacity .4s, transform .4s;
}

.s_horizon .cont.on {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   text area
========================= */

.s_horizon .cont > .txtBx {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.s_horizon .cont > .txtBx .top div p {
    font-family: 'Chopin', sans-serif;
    font-size: 62px;
    font-weight: 300;
    color: #ffffff60;
    line-height: 1.1;
}

.s_horizon .cont > .txtBx .top div {
    overflow: hidden;
}

.s_horizon .cont > .txtBx .bottom {
    font-size: 30px;
    color: #fff;
    margin-top: 90px;
    line-height: 1.4;
}

.s_horizon .cont > .txtBx .bottom span{
    font-size: 27px;
    color: #CECECE;
    font-weight: 350;
}

/* =========================
   image box
========================= */

.s_horizon .cont ._imgBx {
    width: 410px;
    height: 550px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.s_horizon .cont ._imgBx img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1.5);
    filter: blur(10px);

    transition: transform 1.2s, filter 1.2s;
}

.s_horizon .cont.on ._imgBx img {
    transform: scale(1);
    filter: blur(0);
    transition-delay: 0.2s;
}

/* =========================
   image text overlay
========================= */

.s_horizon .cont ._imgBx .img_txt {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    z-index: 2;
}

/* =========================
   active text animation
========================= */

.s_horizon .cont > .txtBx .top p {
    transform: translateY(110%);
    transition: color .4s, transform .4s;
}

.s_horizon .cont.on > .txtBx .top div p {
    transform: translateY(0);
}

/* active color per slide */
.s_horizon .cont:nth-child(1).on > .txtBx .top div:nth-child(1) p {
    color: #fff;
}

.s_horizon .cont:nth-child(2).on > .txtBx .top div:nth-child(1) p {
    color: #fff;
}

.s_horizon .cont:nth-child(3).on > .txtBx .top div:nth-child(1) p {
    color: #fff;
}

/* sec01 */

/* 오시는 길 */
/* 지도 포지션 부분 */

.cs_map_box{
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cs_box{
    width: 100%;
    color: #222;
    padding: 85px 0 85px 150px;
}

.cs_box .cs_map_btn_box{
    display: flex;
    gap: 6px;
    margin-bottom: 13px;
    cursor: pointer;
}

.cs_box .map_ttl_row .tag{
    font-size: 20px;
    color: #1A3061;
    font-weight: 350;
}


.cs_box .map_ttl_row .title{
    font-size: 37px;
    margin-bottom: 15px;
    color: #1D1D1D;
}

.cs_box .map_ttl_row .dsec{
    font-size: 23px;
}

.cs_box .map_ttl_row span{
    font-size: 23px;
    font-weight: 500;
}

.cs_box .map_ttl_row  .place {
    width: fit-content;
    padding: 5px 20px;
    text-align: center;
    border-radius: 360px;
    background: #203C63;
    margin-top: 16px;
}

.cs_box .map_ttl_row  .place .dong{
    display: flex;
    align-items: center;
    gap: 5px;
}

.cs_box .map_ttl_row  .place .dong{
    font-size: 17px;
    color: #fff;
    font-weight: 500;
}

.cs_box .map_ttl_row  .place .dong::before{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('../img/landing/map_icon.png') no-repeat;
    background-size: contain;
}

.cs_box .map_ttl_row  .place .dong span{
    display: inline-block;
    width: 3px;
    height: 20px;
    background: #fff;
    opacity: 0.5;
    margin: 0 5px;
}

.cs_box .map_ttl_row .subway{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.cs_box .map_ttl_row .subway .subway_line{
    width: fit-content;
    padding: 2px 5px;
    border: 2px solid #EBA800;
    font-size: 17px;
    color: #EBA800;
    text-align: center;
    border-radius: 360px;
    font-weight: 500;
}

.cs_box .map_ttl_row .subway .subway_exit{
    font-size: 19px;
    font-weight: 500;
    color: #222222;
}

.cs_box ul li {
    width: 100%;
    display: flex;
    gap: 22px;
    height: 50px;
    align-items: center;
}

.cs_box .cs_hours li .cs_date,
.cs_box .cs_hours li .cs_time,
.cs_box .cs_call li .cs_call_tit{
    font-size: 20px;
    line-height: 35px;
    font-weight: 400;
}

.cs_box .cs_hours li .cs_time span{
    font-size: 20px;
    color: #8F8F8F;
}

.cs_box .cs_call li .cs_call_tit {
    margin-bottom: 0px;
}

.cs_box .cs_hours li .cs_date,
.cs_box .cs_call li .cs_call_tit{
    width: 25%;
}

.cs_box .cs_hours li .cs_date::after,
.cs_box .cs_call li .cs_call_tit::after{
    content: "";
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
    width: 24px;
    position: relative;
    top: -18px;
    left: 94px;
}

.mapo .cs_box .cs_hours li .cs_date::after,
.mapo .cs_box .cs_call li .cs_call_tit::after{
    left: 121px;
}

.cs_box .cs_hours .cs_tit{
    font-size: 20px;
    color: #1A3061;
    margin-top: 40px;
    margin-bottom: 10px;
    font-weight: 350;
}

.cs_box .cs_hours .cs_rest{
    font-size: 17px;
    color: #315381;
    margin-left: 127px;
}

.cs_box .call_num{
    font-size: 40px;
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 54px;
}

.cs_box .call_num span{
    display: block;
    font-size: 33px;
    color: #989898;
    font-weight: 400;
}

.cs_map_box .map_box .map_con{
    width: 770px;
    height: 655px;
    max-width: 100%;
    overflow: hidden;
}

.cs_map_box .map_box .map_con .root_daum_roughmap,
.cs_map_box .map_box .map_con .root_daum_roughmap_landing,
.cs_map_box .map_box .map_con .root_daum_roughmap .wrap_map {
    width: 100% !important;
    height: 100% !important;
}

/* 오시는 길 */
} 

@media screen and (max-width: 1280px){

    .visual{
        width: 100%;
        height: auto;
        background: url('../img/landing/main_bg.jpg') no-repeat;
        background-size: cover;
        background-attachment: fixed;
        position: relative;
        padding-bottom: 100px;
    }

    /* header */

    .visual .hd{
        width: 100%;
        height: auto;
        padding: 29px 20px;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .visual .hd .logo{
        width: 400px;
        height: 125px;
        background: url('../img/landing/logo.png') no-repeat;
        background-size: contain;
    }

    .visual .call{
        width: 420px;
        height: 125px;
        display: flex;
        align-items: center;
        gap: 28px;
        margin-left: 27%;
    }

    .visual .call p{
        font-size: 24px;
        font-weight: 200;
        position: relative;
    }

    .visual .call p:nth-of-type(1)::after{
        content: "";
        display: block;
        width: 28%;
        height: 1px;
        background: #fff;
        transform: rotate(90deg);

        position: absolute;
        top: 20px;
        left: 88px;
    }

    .visual .call span{
        font-size: 29px;
        font-weight: 500;
    }

    /* header */

    /* visual */

    .visual_desc{
        display: flex;
        align-items: center;
        justify-content: space-between;

        position: relative;
        padding: 13rem;
        margin-top: 30px;
    }

    .visual_desc .intro_tit{
        font-family: 'Chopin', sans-serif;
        font-size: 93px;
        font-weight: 300;
        letter-spacing: -1%;
    }

    .visual_desc .intro_tit::after{
        content: '';
        display: block;
        width: 10%;
        height: 1px;
        background: #fff;

        position: absolute;
        top: 50%;
        left: 51.5%;
    }

    .visual_desc .intro_desc{
        margin-right: 0px;
    }

    .visual_desc .intro_desc h2{
        font-size: 37px;
        font-weight: 300;
    }

    .visual_desc .intro_desc p{
        font-size: 19px;
        letter-spacing: -6%;
        line-height: 1.5;
        font-weight: 300;
        opacity: 66%;
        margin-top: 10px;
    }

    /* visual */

    /* scroll */

    .scroll_icon{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: 90px;
        animation: scrollDown forwards infinite 5s;
    }   

    .scroll_icon p{
        font-family: 'Chopin', sans-serif;
        font-size: 17px;
        font-weight: 300;
        letter-spacing: 4%;
    }

    @keyframes scrollDown {
        0%{
            transform: translateY(0em);
        }50%{
            transform: translateY(-1.5rem);
        }100%{
            transform: translateY(0em);
        }
    }

    /* scroll */

    /* sec03 영역 : 장비소개 */

    .sec03{
        width: 100%;
        height: auto;
        position: relative;
        padding: 13rem;
    }

    .sec03_bg_video{
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
    }

    .sec03_bg_video .bg_con{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .machin .machin_slide .machin_wrap{
        display: flex;
        align-items:center;
        gap: 120px;
    }

    .machin .machin_slide .machin_img{
        width: 480px;
        height: 410px;
        overflow: hidden;
    }

    .machin .machin_slide .machin_img img{
        width: 100%;
    }

    .machin .machin_slide .machin_txt_con{
        margin-top: 100px;
        margin-bottom: 0px;
    }

    .machin .machin_slide .machin_txt_con .ma_tag{
        font-size: 18px;
        font-weight: 350;
    }

    .machin .machin_slide .machin_txt_con .ma_tit{
        font-size: 21px;
        color: #999DB1;
        margin-top: 10px;
    }

    .machin .machin_slide .machin_txt_con .ma_tit b{
        font-size: 23px;
        font-weight: 350;
        color: #fff;
    }

    .machin .machin_slide .machin_txt_con .ma_tit span{
        font-size: 23px;
        font-weight: 500;
        color: #fff;
    }

    .machin .machin_slide .machin_txt_con .ma_name_en{
        font-family: 'Novecento sans wide', sans-serif;
        font-size: 40px;
        font-weight: 300;
        letter-spacing: -2%;
        opacity: 0.5;
        margin-top: 44px;
    }

    .machin .machin_slide .machin_txt_con .ma_name_ko{
        font-size: 37px;
    }

    .machin .machin_slide .machin_txt_con .ma_desc{
        font-family: 'Novecento sans wide', sans-serif;
        font-size: 18px;
        font-weight: 300;
        margin-top: 10px;
    }

    .machin .ma-swiper-pagination {
        position: absolute;
        top: 17% !important;
        left: 54.5% !important;
        display: flex;
        flex-direction: row; 
        gap: 12px;
        align-items: center;
        transform: translateY(-50%);
        z-index: 10;
    }

    /* [기본 상태] 비활성화된 작은 점 */
    .machin .ma-swiper-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        background: rgba(217, 217, 217, 0.5);
        border-radius: 50%;
        cursor: pointer;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        margin: 0 !important;
    }

    /* [기본 상태] 글자는 일단 안 보이게 */
    .machin .ma-swiper-pagination .btn_txt {
        opacity: 0;
        font-size: 15px;
        color: #fff;
        font-style: normal;
        white-space: nowrap;
        transition: opacity 0.3s;
        padding: 0 20px;
    }

    /* [Active 상태] 캡슐 모양으로 변신 */
    .machin .ma-swiper-pagination .swiper-pagination-bullet-active {
        width: auto; /* 글자 길이에 맞춰 늘어남 */
        height: 40px; /* 캡슐 높이 */
        background: rgba(212,219,227,0.1);
        border-radius: 360px; /* 둥근 캡슐 */
    }

    /* [Active 상태] 글자 나타나기 */
    .machin .ma-swiper-pagination .swiper-pagination-bullet-active .btn_txt {
        opacity: 1;
        display: block;
    }

    /* sec03 영역 : 장비소개 */

    /* sec04 영역 : new 장비소개 */

    .state .state_list ul{
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .state .state_list .state_img{
        width: 255px;
        height:auto;
        border-radius: 20px;
        overflow: hidden;
    }    

    .state .state_list .state_img img{
        width: 100%;    
    }

    .state .state_list .state_name,
    .state .state_list02 .state_name{
        font-size: 16px;
        font-weight: 300;
        color: #9D9D9D;
        margin-top: 15px;
    }

    .state .state_list .state_name_en,
    .state .state_list02 .state_name_en{
        font-size: 20px;
        color: #000;    
    }

    .state .state_list02 ul{
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    .state .state_list02 .state_img02{
        width: 540px;
        border-radius: 20px;
        overflow: hidden;
    }

    .state .state_list .state_img02 img{
        width: 100%;
    }

/* sec04 영역 : new 장비소개 */

    /* sec04 영역 : 의료진소개 */

    .sec04{
        width: 100%;
        height: auto;
        position: relative;
        background: linear-gradient(to bottom, #fff, #E5E5E5);
        padding: 80px;
    }

    .intro_doc{
        position: relative;
        min-height: 720px;
    }

    .intro_doc .intro_doc_wrap {
        position: absolute; /* 절대 위치로 겹침 */
        top: 150px; /* com_txt 아래 적절한 위치 */
        left: 0;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 49px;
    
        /* 전환 효과 */
        transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease-out;
        visibility: hidden;
        opacity: 0;
    }

    /* 활성화 상태 */
    .intro_doc .intro_doc_wrap.active {
        visibility: visible;
        opacity: 1;
        z-index: 5;
    }

    .com_txt{
        text-align: center;
    }

    .com_txt .com_tag{
        font-size: 20px;
        color: #1A3061;
        font-weight: 350;
        margin-bottom: 5px;
    }

    .com_txt .com_tit{
        font-size: 39px;
        font-weight: 350;
        color: #1D1D1D;
    }

    .intro_doc .doc_name_sim{
        font-family: 'Chopin', sans-serif;
        font-size: 93px;
        color: #989898;
        font-weight: 300;
        line-height: 0.9;
        letter-spacing: -1%;
        opacity: 0.5;

        position: absolute;
        top: 24%;
        z-index: 10;
    }

    .intro_doc .intro_doc_wrap {
        display: flex;
        align-items: center;
        gap: 49px;
    }

    .intro_doc .intro_doc_wrap .intro_doc_desc{
        margin-top: 24%;
    }

    .intro_doc .intro_doc_wrap .intro_doc_desc .doc_name{
        font-size: 36px;
        font-weight: 500;
        color: #1D1D1D;
        margin-bottom: 26px;
    }   

    .intro_doc .intro_doc_wrap .intro_doc_desc .doc_name span{
        font-size: 25px;
        color: #888;
        font-weight: 500;
    }

    .intro_doc .intro_doc_wrap .intro_doc_desc .doc_desc{
        font-size: 14px;
        color: #9C9C9C;
        margin-bottom: 10px;
    }

    .intro_doc .intro_doc_wrap .intro_doc_desc .doc_list p{
        font-size: 19px;
        color: #1D1D1D;
        font-weight: 400;
    }

    .intro_doc .intro_doc_img{
        width: 350px;
        height: 450px;
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
    }

    .intro_doc .intro_doc_sun .intro_doc_sun_desc{
        position: relative;
    }

    .intro_doc .intro_doc_sun .intro_doc_sun_desc P{
        font-size: 20px;
        font-weight: 500;
        color: #444;
        letter-spacing: -3%;
        margin-bottom: 128px;
    }

    .intro_doc .intro_doc_sun .intro_doc_sun_desc P span{
        font-size: 20px;
        font-weight: 500;
        color: #315381;
    }

    .intro_doc .intro_doc_sun .intro_doc_sun_desc::after{
        content: "";
        display: block;
        width: 21%;
        height: 1px;
        background: rgba(0,0,0,0.2);
        transform: rotate(90deg);
        position: absolute;
        top: 164px;
        left: -30px;
    }

    .intro_doc .intro_doc_sun .intro_doc_sun_desc02 p{
        font-size: 18px;
        color: #444;
        font-weight: 350;
    }

    .intro_doc .intro_doc_wrap .intro_doc_list p{
        font-size: 22px;
        color: #1A3061;
        letter-spacing: -3%;
        margin-bottom: 14px;
    }

    .intro_doc .intro_doc_wrap .intro_doc_list ul{
        margin-bottom: 15px;
    }

    .intro_doc .intro_doc_wrap .intro_doc_list ul li{
        font-size: 16px;
        color: #555;
        line-height: 1.7;
    }

    /* sec04 영역 : 의료진소개 */

    /* sec05 영역 : 진료과목 소개 */

.sec05{
    width: 100%;
    height: auto;
    position: relative;
    background: url('../img/landing/sec05_bg.jpg');
    padding: 100px;
}

.subject_list ul{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 74px;
}

.subject_list ul li{
    position: relative;
    width: 26vw;
    height: 16vw;
    overflow: hidden;
}

.subject_list ul li .subject_img{
    width: 100%;
    height: 100%;
}

.subject_list ul li .subject_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.subject_list ul li .subject_txt {
    width: 100%;
    position: absolute;
    bottom: 50px;
    left: 16px;
    z-index: 5;
    transition: all 0.5s;
}

.subject_list ul li p{
    font-size: 22px;
    font-weight: 500;
    position: absolute;
    transition: all 0.5s;
}

.subject_list ul li .hover_txt {
    width: 307px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: absolute;
    top: -8.5vw;
    left: 0;
}

.subject_list ul li .hover_txt .hover_icon{
    display: block;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.5s;
}

.subject_list ul li .hover_txt .hover_icon.icon01{
    width: 80px;
    height: 80px;
    background: url('../img/landing/sec05_img01_icon.png');
    background-size: contain;
}

.subject_list ul li .hover_txt .hover_icon.icon02{
    width: 80px;
    height: 80px;
    background: url('../img/landing/sec05_img02_icon.png');
    background-size: contain;
}

.subject_list ul li .hover_txt .hover_icon.icon03{
    width: 80px;
    height: 80px;
    background: url('../img/landing/sec05_img03_icon.png');
    background-size: contain;
}

.subject_list ul li .hover_txt .hover_icon.icon04{
    width: 80px;
    height: 80px;
    background: url('../img/landing/sec05_img04_icon.png');
    background-size: contain;
}

.subject_list ul li .hover_txt .hover_icon.icon05{
    width: 80px;
    height: 80px;
    background: url('../img/landing/sec05_img05_icon.png');
    background-size: contain;
}

.subject_list ul li .hover_txt .hover_icon.icon06{
    width: 80px;
    height: 80px;
    background: url('../img/landing/sec05_img06_icon.png');
    background-size: contain;
}

.subject_list ul li .hover_txt .hover_desc {
    display: block;
    font-size: 19px;
    color: #fff;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.5s;
}

.subject_list ul li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
    opacity: 0.6;
    transition: opacity 0.5s;
    z-index: 2;
}

/* ================= 호버 액션 ================= */

.subject_list ul li:hover .subject_txt p {
    opacity: 0;
}

.subject_list ul li:hover p {
    margin-bottom: 15px; /* 제목과 설명 사이 간격 발생 */
}

/* 3. 설명글 나타남 */
.subject_list ul li:hover .hover_txt .hover_icon,
.subject_list ul li:hover .hover_txt .hover_desc {
    opacity: 1;
    transform: translateY(0);
}

/* 4. 배경 어둡게 */
.subject_list ul li:hover::after {
    /* background: rgba(0, 0, 0, 1); */
    background: #2562b3;
    mix-blend-mode: multiply;
    opacity: 1;
}

/* sec05 영역 : 진료과목 소개 */

/* sec01 */

.s_horizon {
    position: relative;
    z-index: 4;
    overflow: hidden;
    padding-top: 300px;

    width: 100%;
    height: auto;
    background: url('../img/landing/m_sec06_bg.jpg') no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding-bottom: 200px;
}

/* =========================
   layout
========================= */

.s_horizon .horizon_container {
    display: flex;
    align-items: center;
    padding: 0 10vw;
}

.s_horizon .horizon_track {
    display: flex;
    gap: 100px;
}

/* =========================
   slide item
========================= */

.s_horizon .cont {
    display: flex;
    gap: 160px;
    flex-shrink: 0;
    align-items: flex-start;

    opacity: 0;
    transform: translateY(80px);

    transition: opacity .4s, transform .4s;
}

.s_horizon .cont.on {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   text area
========================= */

.s_horizon .cont > .txtBx {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.s_horizon .cont > .txtBx .top div p {
    font-family: 'Chopin', sans-serif;
    font-size: 62px;
    font-weight: 300;
    color: #ffffff60;
    line-height: 1.1;
}

.s_horizon .cont > .txtBx .top div {
    overflow: hidden;
}

.s_horizon .cont > .txtBx .bottom {
    font-size: 30px;
    color: #fff;
    margin-top: 90px;
    line-height: 1.4;
}

.s_horizon .cont > .txtBx .bottom span{
    font-size: 27px;
    color: #CECECE;
    font-weight: 350;
}



/* =========================
   image box
========================= */

.s_horizon .cont ._imgBx {
    width: 410px;
    height: 550px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.s_horizon .cont ._imgBx img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1.5);
    filter: blur(10px);

    transition: transform 1.2s, filter 1.2s;
}

.s_horizon .cont.on ._imgBx img {
    transform: scale(1);
    filter: blur(0);
    transition-delay: 0.2s;
}

/* =========================
   image text overlay
========================= */

.s_horizon .cont ._imgBx .img_txt {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    z-index: 2;
}

/* =========================
   active text animation
========================= */

.s_horizon .cont > .txtBx .top p {
    transform: translateY(110%);
    transition: color .4s, transform .4s;
}

.s_horizon .cont.on > .txtBx .top div p {
    transform: translateY(0);
}

/* active color per slide */
.s_horizon .cont:nth-child(1).on > .txtBx .top div:nth-child(1) p {
    color: #fff;
}

.s_horizon .cont:nth-child(2).on > .txtBx .top div:nth-child(1) p {
    color: #fff;
}

.s_horizon .cont:nth-child(3).on > .txtBx .top div:nth-child(1) p {
    color: #fff;
}

/* sec01 */

/* 오시는 길 */
/* 지도 포지션 부분 */

.cs_map_box{
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.cs_box{
    width: 100%;
    color: #222;
    padding: 85px 0 85px 90px;
}

.cs_box .cs_map_btn_box{
    display: flex;
    gap: 6px;
    margin-bottom: 13px;
    cursor: pointer;
}

.cs_box .map_ttl_row .tag{
    font-size: 20px;
    color: #1A3061;
    font-weight: 350;
}


.cs_box .map_ttl_row .title{
    font-size: 37px;
    margin-bottom: 15px;
    color: #1D1D1D;
}

.cs_box .map_ttl_row .dsec{
    font-size: 23px;
}

.cs_box .map_ttl_row span{
    font-size: 23px;
    font-weight: 500;
}

.cs_box .map_ttl_row  .place {
    width: fit-content;
    padding: 5px 20px;
    text-align: center;
    border-radius: 360px;
    background: #203C63;
    margin-top: 16px;
}

.cs_box .map_ttl_row  .place .dong{
    display: flex;
    align-items: center;
    gap: 5px;
}

.cs_box .map_ttl_row  .place .dong{
    font-size: 3rem;
    color: #fff;
    font-weight: 500;
}

.cs_box .map_ttl_row  .place .dong::before{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('../img/landing/map_icon.png') no-repeat;
    background-size: contain;
}

.cs_box .map_ttl_row  .place .dong span{
    display: inline-block;
    width: 3px;
    height: 20px;
    background: #fff;
    opacity: 0.5;
    margin: 0 5px;
}

.cs_box .map_ttl_row .subway{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.cs_box .map_ttl_row .subway .subway_line{
    width: fit-content;
    padding: 2px 5px;
    border: 2px solid #EBA800;
    font-size: 17px;
    color: #EBA800;
    text-align: center;
    border-radius: 360px;
    font-weight: 500;
}

.cs_box .map_ttl_row .subway .subway_exit{
    font-size: 19px;
    font-weight: 500;
    color: #222222;
}

.cs_box ul li {
    width: 100%;
    display: flex;
    gap: 22px;
    height: 50px;
    align-items: center;
}

.cs_box .cs_hours li .cs_date,
.cs_box .cs_hours li .cs_time,
.cs_box .cs_call li .cs_call_tit{
    font-size: 20px;
    line-height: 35px;
    font-weight: 400;
}

.cs_box .cs_hours li .cs_time span{
    font-size: 20px;
    color: #8F8F8F;
}

.cs_box .cs_call li .cs_call_tit {
    margin-bottom: 0px;
}

.cs_box .cs_hours li .cs_date,
.cs_box .cs_call li .cs_call_tit{
    width: 25%;
}

.cs_box .cs_hours li .cs_date::after,
.cs_box .cs_call li .cs_call_tit::after{
    content: "";
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
    width: 24px;
    position: relative;
    top: -18px;
    left: 94px;
}

.mapo .cs_box .cs_hours li .cs_date::after,
.mapo .cs_box .cs_call li .cs_call_tit::after{
    left: 121px;
}

.cs_box .cs_hours .cs_tit{
    font-size: 20px;
    color: #1A3061;
    margin-top: 40px;
    margin-bottom: 10px;
    font-weight: 350;
}

.cs_box .cs_hours .cs_rest{
    font-size: 17px;
    color: #315381;
    margin-left: 120px;
}

.cs_box .call_num{
    font-size: 40px;
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 54px;
}

.cs_box .call_num span{
    display: block;
    font-size: 33px;
    color: #989898;
    font-weight: 400;
}

.cs_map_box .map_box .map_con{
    width: 680px;
    height: 655px;
    max-width: 100%;
    overflow: hidden;
}

.cs_map_box .map_box .map_con .root_daum_roughmap,
.cs_map_box .map_box .map_con .root_daum_roughmap_landing,
.cs_map_box .map_box .map_con .root_daum_roughmap .wrap_map {
    width: 100% !important;
    height: 100% !important;
}

/* 오시는 길 */
} 


/* ======================== mobile ========================= */

@media screen and (max-width: 720px) {

    .visual{
        width: 100%;
        height: auto;
        background: url('../img/landing/m_main_bg.jpg') no-repeat;
        background-size: cover;
        background-attachment: none;
        position: relative;
        padding-bottom: 60px;
    }

    /* header */

    .visual .hd{
        width: 100%;
        height: auto;
        padding: 7vw 9vw 0 9vw;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .visual .hd .logo{
        width: 80rem;
        height: 13rem;
        background: url('../img/landing/logo.png') no-repeat;
        background-size: contain;
    }

    .visual .call{
        display: none; 
    }

    .visual .call_mo{
        display: block;
        width: 7vw;
        height: 7vw;
        background: url('../img/landing/call_icon.png') no-repeat;
        background-size: contain;
        filter: brightness(100);
    }

    /* header */

    /* visual */

    .visual_desc {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding: 0;
        margin-top: 18vw;
        gap: 3vw;
    }

    .visual_desc .intro_tit{
        font-family: 'Chopin', sans-serif;
        font-size: 103px;
        font-weight: 300;
        letter-spacing: -1%;
    }

    .visual_desc .intro_tit::after{
        content: '';
        display: block;
        width: 8%;
        height: 1px;
        background: #fff;

        position: absolute;
        top: 50%;
        left: 51.5%;
    }

    .visual_desc .intro_desc{
        margin-right: 0px;
    }

    .visual_desc .intro_desc h2{
        font-size: 43px;
        font-weight: 300;
    }

    .visual_desc .intro_desc p{
        font-size: 21px;
        letter-spacing: -6%;
        line-height: 1.5;
        font-weight: 300;
        opacity: 66%;
        margin-top: 10px;
    }

    .visual_desc .main_tag{
        font-size: 14px;
        font-weight: 200;
        letter-spacing: 9%;
    }

    .visual_desc .main_tit{
        font-size: 25px;
        font-weight: 350;
        margin-bottom: 1vw;
        text-align: center;
    }

    .visual_desc .main_tit span{
        font-size: 25px;
        font-weight: 500;
    }

    .visual_desc .main_desc{
        font-size: 13px;
        font-weight: 400;
        letter-spacing:-6%;
    }

    /* visual */

    /* scroll */

    .scroll_icon{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: 13vw;
        animation: scrollDown forwards infinite 5s;
    }

    .scroll_icon p{
        font-family: 'Chopin', sans-serif;
        font-size: 3.2vw;
        font-weight: 300;
        letter-spacing: 4%;
    }

    .scroll_icon img{
        width: 8%;
    }

    @keyframes scrollDown {
        0%{
            transform: translateY(0em);
        }50%{
            transform: translateY(-4rem);
        }100%{
            transform: translateY(0em);
        }
    }

    /* scroll */

    /* sec01 */

    .s_horizon {
        padding: 80px 0;
    }

    .s_horizon .horizon_track {
        flex-direction: column;
        gap: 5vw;
        width: 100%;
    }

    .s_horizon .cont > .txtBx {
        display: none;
    }

    .s_horizon .cont ._imgBx {
        width: 100%;
        height: 113vw;
    }

    .s_horizon .cont ._imgBx img {
        filter: blur(10px) brightness(0.8);
    }

    .s_horizon .cont.on ._imgBx img {
        filter: blur(0) brightness(0.5);
    }

    .s_horizon .cont ._imgBx .img_txt h3 {
        font-size: 4.4vw;
    }

    .s_horizon .cont ._imgBx .img_txt h3 span{
        font-size: 4vw;
    }

    .s_horizon .cont ._imgBx .img_txt .bottom {
        display: block;
        font-size: 14px;
        line-height: 1.3;
        margin-top: 10px;
    }

    /* sec01 */

    /* sec02 */

    .mo_ver{
        display: block;
    }

    .pc_ver{
        display: none;
    }

    .intro_txt{
        letter-spacing: -1px;
        padding: 43vw 0 25vw 0;
    }

    .intro_txt::before{
        content: "";
        display: block;
        width: 30%;
        height: 1px;
        background: #000000;
        opacity: 0.15;
        rotate: 90deg;

        position: absolute;
        top: 13%;
        left: 34%;
        transform: rotate(0deg);
    }

    .intro_txt .text_fast_ko{
        gap: 6px;
    }

    .intro_txt .text_fast_ko .line span{
        font-size: clamp(18px, 4vw, 28px);
    }

    .intro_txt .text_fast_en span{
        font-size: clamp(14px, 3vw, 20px);
    }
    /* sec02 */

    /* sec03 영역 : 장비소개 */

    .sec03{
        width: 100%;
        height: auto;
        position: relative;
        padding: 13rem 15rem;
    }

    .sec03_bg_video{
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
    }

    .sec03_bg_video .bg_con{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .machin .machin_slide .machin_wrap{
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 0;
    }

    .machin .machin_slide .machin_img{
        width: 71vw;
        height: 65vw;
        overflow: hidden;
    }

    .machin .machin_slide .machin_img img{
        width: 100%;
    }

    .machin .machin_slide .machin_txt_con .ma_tag{
        font-size: 4vw;
        font-weight: 350;
    }

    .machin .machin_slide .machin_txt_con .ma_tit{
        font-size: 5vw;
        color: #999DB1;
        margin-top: 2vw;
    }

    .machin .machin_slide .machin_txt_con .ma_tit b{
        font-size: 5vw;
        font-weight: 350;
        color: #fff;
    }

    .machin .machin_slide .machin_txt_con .ma_tit span{
        font-size: 6vw;
        font-weight: 500;
        color: #fff;
    }

    .machin .machin_slide .machin_txt_con .ma_name_en{
        font-family: 'Novecento sans wide', sans-serif;
        font-size: 7.5vw;
        font-weight: 300;
        letter-spacing: -2%;
        opacity: 0.5;
        margin-top: 22vw;
    }

    .machin .machin_slide .machin_txt_con .ma_name_ko{
        font-size: 6.5vw;
    }

    .machin .machin_slide .machin_txt_con .ma_desc{
        font-family: 'Novecento sans wide', sans-serif;
        font-size: 4vw;
        font-weight: 300;
        margin-top: 10px;
    }

    .machin .machin_slide .machin_txt_con{
        margin-bottom: 10vw;
    }

    .machin .ma-swiper-pagination {
        height: 10vw;
        position: absolute;
        top: 31% !important;
        left: 0 !important;
        display: flex;
        flex-direction: row; 
        gap: 12px;
        align-items: center;
        transform: translateY(-50%);
        z-index: 10;
    }

    /* [기본 상태] 비활성화된 작은 점 */
    .machin .ma-swiper-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        background: rgba(217, 217, 217, 0.5);
        border-radius: 50%;
        cursor: pointer;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        margin: 0 !important;
    }

    /* [기본 상태] 글자는 일단 안 보이게 */
    .machin .ma-swiper-pagination .btn_txt {
        opacity: 0;
        font-size: 3.6vw;
        color: #fff;
        font-style: normal;
        white-space: nowrap;
        transition: opacity 0.3s;
        padding: 0 3vw;
    }

    /* [Active 상태] 캡슐 모양으로 변신 */
    .machin .ma-swiper-pagination .swiper-pagination-bullet-active {
        width: auto; /* 글자 길이에 맞춰 늘어남 */
        height: 10vw; /* 캡슐 높이 */
        border-radius: 360px; /* 둥근 캡슐 */
        background: rgba(212,219,227,0.1);
    }

    /* [Active 상태] 글자 나타나기 */
    .machin .ma-swiper-pagination .swiper-pagination-bullet-active .btn_txt {
        opacity: 1;
        display: block;
    }

    /* sec03 영역 : 장비소개 */

    /* sec04 영역 : new 장비소개 */

    .new_04{
        padding: 20vw 0;
    }

    .new_04 .inner{
        width: calc(100% - 24rem);
	    max-width: 720px;
        margin: 0 auto;
    }

    .bg_f7{
        background: #F7F7F7;
    }

    .state{
        position: relative;

    }

    .state .state_tit{
        font-size: 6vw;
        font-weight: 500;
        color: #000000;
        list-style: disc;
    }

    .state .state_tit span{
        font-size: 6vw;
        color: #315381;
    }

    .state .state_tit::before{
        content: "•";
        display: inline-block;
        color: #315381;
        opacity: 0.5;
    }

    .state .line{
        width: 115%;
        height: 1px;
        background: #CDCDCD;
        position: relative;
        top: 0;
        left: -17%;
        margin: 20px 0;
    }

    .state .state_list{
        margin-top: 40px;
    }

    .state .state_list ul{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 3vw;
    }

    .state .state_list .state_img{
        width: 42vw;
        height: auto;
        border-radius: 5px;
        overflow: hidden;
    }    

    .state .state_list .state_img img{
        width: 100%;
    }

    .state .state_list .state_name,
    .state .state_list02 .state_name{
        font-size: 3vw;
        font-weight: 300;
        color: #9D9D9D;
        margin-top: 15px;
    }

    .state .state_list .state_name_en,
    .state .state_list02 .state_name_en{
        font-size: 3.5vw;
        color: #000;
    }

    .state .state_list02 ul{
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    .state .state_list02 .state_img02{
        width: 100%;
        border-radius: 5px;
        overflow: hidden;
    }

    .state .state_list .state_img02 img{
        width: 100%;
    }

/* sec04 영역 : new 장비소개 */

    /* sec04 영역 : 의료진소개 */

    .sec04{
        width: 100%;
        height: auto;
        position: relative;
        background: linear-gradient(to bottom, #fff, #E5E5E5);
        padding: 20vw 0;
    }

    .sec04.mo_ver .intro_doc_wrap {
        position: relative; 
        top: 0;
        visibility: visible !important; 
        opacity: 1 !important;
        display: flex !important;
        align-items: flex-start;

        padding: 6vw 10vw 0;
    }

    .intro_doc .intro_doc_wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        
        visibility: visible;
        opacity: 1;
    }

    .com_txt{
        text-align: center;
    }

    .com_txt .com_tag{
        font-size: 4vw;
        color: #1A3061;
        font-weight: 350;
        margin-bottom: 5px;
    }

    .com_txt .com_tit{
        font-size: 6vw;
        font-weight: 350;
        color: #1D1D1D;
    }

    .intro_doc .intro_doc_img{
        width: 80vw;
        height: 100vw;
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
    }

    .intro_doc .intro_doc_wrap .intro_doc_desc{
        margin-top: 8%;
    }

    .intro_doc .intro_doc_wrap .intro_doc_desc .doc_name{
        font-size: 7vw;
        font-weight: 500;
        color: #1D1D1D;
        margin-bottom: 2vw;
    }

    .intro_doc .intro_doc_wrap .intro_doc_desc .doc_name span{
        font-size: 5vw;
        color: #888;
        font-weight: 500;
    }

    .intro_doc .intro_doc_wrap .intro_doc_desc .doc_desc{
        font-size: 4vw;
        color: #9C9C9C;
        margin-bottom: 1.5vw;
    }

    .intro_doc .intro_doc_wrap .intro_doc_desc .doc_list p{
        font-size: 4.5vw;
        color: #1D1D1D;
        font-weight: 400;
    }
    
    .intro_doc .intro_doc_wrap .intro_doc_list p{
        font-size: 4.8vw;
        color: #1A3061;
        letter-spacing: -3%;
        margin-bottom: 3vw;
        margin-top: 5vw;
        font-weight: 500;
    }

    .intro_doc .intro_doc_wrap .intro_doc_list ul{
        margin-bottom: 2.2vw;
    }

    .intro_doc .intro_doc_wrap .intro_doc_list ul li{
        font-size: 3.4vw;
        color: #555;
        margin-bottom: 1vw;
    }

    /* sec04 영역 : 의료진소개 */

    /* sec05 영역 : 진료과목 소개 */

    .sec05{
        width: 100%;
        height: auto;
        position: relative;
        background: url('../img/landing/sec05_bg.jpg');
        padding: 20vw 0;
    }

    .subject_list ul{
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 10vw;
        cursor: pointer;

        padding: 0vw 6vw 0;
    }

    .subject_list ul li{
        position: relative;
        width: 86vw;
        height: 60vw;
        overflow: hidden;
    }

    .subject_list ul li .subject_img{
        width: 100%;
        height: 100%;
    }

    .subject_list ul li .subject_img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .subject_list ul li .subject_txt {
        position: absolute;
        bottom: 5vw;
        left: 5vw;
        z-index: 5;
        transition: all 0.5s;
    }

    .subject_list ul li p{
        font-size: 6vw;
        font-weight: 500;
        position: absolute;
        transition: all 0.5s;
        margin-top: -10vw;
    }

    .subject_list ul li .hover_desc {
        display: block;
        font-size: 4.5vw;
        color: rgba(255, 255, 255, 0.6);
        opacity: 1 !important;
        transform: translateY(0); /* 아래에 대기 */
        transition: all 0.5s;
    }

    .subject_list ul li::after {
        opacity: 0.8 !important;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 70%) !important;
    }

    /* ================= 호버 액션 ================= */

    .subject_list ul li:hover .subject_txt p{
        opacity: 1;
    }

    .subject_list ul li:hover .subject_txt p,
    .subject_list ul li:hover p,
    .subject_list ul li:hover .hover_desc,
    .subject_list ul li:hover::after {
        transform: none !important;
        margin-bottom: 1vw !important;
    }

    /* sec05 영역 : 진료과목 소개 */

    /* sec06 영역 : 둘러보기 */

    .sec06.mo_ver {
        position: relative;
        width: 100%;
        height: auto;
        padding-bottom: 20vw;
    }

    .around_con .ar_slide_mo .ar_img {
        width: 100%;
    }

    .around_con .ar_slide_mo .ar_img img{
        display: block;
    }

    .around_con .ar_slide_mo .ar_desc{
        font-family: 'Chopin', sans-serif;
        font-size: 8vw;
        letter-spacing: 5%;
        color: #fff;
        position: absolute;
        bottom: 11rem;
        left: 17rem;
        z-index: 10;
    }

    .around_con .ar_slide02_mo{
        position: absolute;
        bottom: -40rem;
        left:  10rem;
        width: 90vw;
        z-index: 1;
    }

    .around_con .ar_slide02_mo .ar_img{
        width: 16vw;
        height: 16vw;
        cursor: pointer;
        filter: brightness(0.3);
        transition: all 0.3s;
    }

    .around_con .ar_slide02_mo .ar_img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

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

    /* sec06 영역 : 둘러보기 */

    /* 오시는 길 */
    /* 지도 포지션 부분 */

    .cs_map_box{
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .cs_box{
        width: 100%;
        color: #222;
        padding: 20vw 6vw 18vw 6vw;
    }

    .cs_box .map_ttl_row .tag{
        font-size: 5vw;
        color: #1A3061;
        font-weight: 350;
    }

    
    .cs_box .map_ttl_row .title{
        font-size: 8vw;
        margin-bottom: 15px;
        color: #1D1D1D;
    }

    .cs_box .map_ttl_row .dsec{
        font-size: 5.5vw;
    }

    .cs_box .map_ttl_row span{
        font-size: 5.5vw;
        font-weight: 500;
    }

    .cs_box .map_ttl_row  .place {
        width: fit-content;
        padding: 5px 20px;
        text-align: center;
        border-radius: 360px;
        background: #203C63;
        margin-top: 16px;
    }

    .cs_box .map_ttl_row  .place .dong{
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .cs_box .map_ttl_row  .place .dong{
        font-size: 7rem;
        color: #fff;
        font-weight: 500;
    }

    .cs_box .map_ttl_row  .place .dong::before{
        content: "";
        display: inline-block;
        width: 15px;
        height: 15px;
        background: url('../img/landing/map_icon.png') no-repeat;
        background-size: contain;
        margin-top: 0px;
    }

    .cs_box .map_ttl_row  .place .dong span{
        display: inline-block;
        width: 2px;
        height: 15px;
        background: #fff;
        opacity: 0.5;
        margin: 0 5px;
    }

    .cs_box .map_ttl_row .subway{
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
    }

    .cs_box .map_ttl_row .subway .subway_line{
        width: fit-content;
        padding: 2px 5px;
        border: 2px solid #EBA800;
        font-size: 3.5vw;
        color: #EBA800;
        text-align: center;
        border-radius: 360px;
        font-weight: 500;
    }

    .cs_box .map_ttl_row .subway .subway_exit{
        font-size: 4vw;
        font-weight: 500;
        color: #222222;
    }

    .cs_box ul li {
        width: 107%;
        display: flex;
        gap: 6vw;
        height: 12vw;
        align-items: center;
    }

    .cs_box .cs_hours li .cs_date,
    .cs_box .cs_hours li .cs_time,
    .cs_box .cs_call li .cs_call_tit{
        font-size: 5vw;
        line-height: 35px;
        font-weight: 400;
    }

    .cs_box .cs_hours li .cs_time span{
        font-size: 4.5vw;
        color: #8F8F8F;
    }

    .cs_box .cs_call li .cs_call_tit {
        margin-bottom: 0px;
    }

    .cs_box .cs_hours li .cs_date,
    .cs_box .cs_call li .cs_call_tit{
        width: 26%;
    }

    .cs_box .cs_hours li .cs_date::after,
    .cs_box .cs_call li .cs_call_tit::after{
        content: "";
        display: block;
        border: 1px solid rgba(0, 0, 0, 0.1);
        transform: rotate(90deg);
        width: 5vw;
        position: relative;
        top: -4.5vw;
        left: 24vw;
    }

    .mapo .cs_box .cs_hours li .cs_date::after,
    .mapo .cs_box .cs_call li .cs_call_tit::after{
        left: 0;    
    }

    .cs_box .cs_hours .cs_tit{
        font-size: 5vw;
        color: #1A3061;
        margin-top: 5vw;
        margin-bottom: 0;
        font-weight: 350;
    }

    .cs_box .cs_hours .cs_rest{
        font-size: 4vw;
        color: #315381;
        margin-left: 27vw;
    }

    .cs_box .call_num{
        font-size: 10vw;
        font-weight: 500;
        display: flex;
        gap: 10px;
        align-items: center;
        margin-top: 5vw;
        color: #222;
    }

    .cs_box .call_num span{
        display: block;
        font-size: 8vw;
        color: #989898;
        font-weight: 400;
    }

    .cs_map_box .map_box {
        width: 100% !important;
    }

    .cs_map_box .map_box .map_con{
        width: 100% !important;
        height: 100vw !important;
        overflow: hidden;
    }

    .cs_map_box .map_box .map_con .root_daum_roughmap,  
    .cs_map_box .map_box .map_con .root_daum_roughmap_landing,
    .cs_map_box .map_box .map_con .root_daum_roughmap .wrap_map {
        width: 100% !important;
        height: 100% !important;
    }

    /* 오시는 길 */

    /* 푸터 */

    footer{
        width: 100%;
        height: auto;
        padding: 2vw 0 8vw 0;
        margin: 0 auto;
        background: #2C2C2C;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    footer .ft_logo{
        width: 39vw;
        height: 0;
        margin-top: 30px;
    }

    footer .ft_list ul{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2vw;
        justify-content: center;
    }

    footer .ft_list ul li{ 
        font-size: 3.5vw !important;
    }

    footer .copy{
        font-size: 3vw;
        font-weight: 300;
        letter-spacing: 0%;
        margin-top: 2vw;
    }

    /* 푸터 */

    

    /* 퀵메뉴 */
    .quick {
        position: fixed;
        right: 4rem;
        bottom: 9rem;
        z-index: 100;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4rem;
    }

    .quick .quick_menu {
        position: relative;
        width: 57px;
        /* height: 57px; */
    }

    .quick ul{
        width: 57px;
        height: 280px;
        border-radius: 36rem;
        background: #939393;
        padding: 23px 0;

        display: flex;
        flex-direction: column;
        gap: 20px;

        position: absolute;
        bottom: 0;
        z-index: -1;

        /* opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.4s ease; */
    }

    /* .quick ul.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    } */

    .quick ul li{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .quick ul li .naver{
        width: 25px;
        height: 25px;
        background: url('../img/landing/quick_naver.png') no-repeat;
        background-size: cover;
        margin:0 auto;
    }

    .quick ul li .ch{
        width: 25px;
        height: 25px;
        background: url('../img/landing/quick_ch.png') no-repeat;
        background-size: cover;margin:0 auto;
    }

    .quick ul li .map{
        width: 25px;
        height: 25px;
        background: url('../img/landing/quick_map.png') no-repeat;
        background-size: cover;margin:0 auto;
    }

    .quick ul li p{
        font-size: 10px;
        font-weight: 500;
        letter-spacing: -2%;
        color: #fff;
        margin-top: 4px;
    }         

    .quick .quick_btn{
        width: 57px;
        height: 57px;
        border-radius: 57px;
        background: #fff;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .quick .quick_btn p{
        font-size: 13px;
        color: #000000;
        text-align: center;
        line-height: 57px;
    }

    .goTop {
        display: block; 
        width: auto;
        height: auto;
        cursor: pointer;
        border: none;
        background: none;
        margin-top: 0; /* 처음엔 여백 없음 */
    
        opacity: 0;
        visibility: hidden;
        transform: scale(0.5) translateY(20px); /* 작아진 상태로 아래에 대기 */
        transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
    }

    .goTop.fix {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        margin-top: 2.6rem;
    }

    .goTop span {
        display: block;
        width: 57px;
        height: 57px;
        background: url('../img/landing/top_btn.png') no-repeat center;
        background-size: contain;
        margin: 0 10px;
    }

    /* 탑버튼 */

    /* 비급여항목 팝업 */
    .non{
        font-size: 14px;
        margin-top: 10px;
    }
    .nonpay{
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10000;
        cursor: pointer;
        overflow-y: auto;
        display: none;
        justify-content: center;
        align-items: flex-start;
        padding: 70px 20px;

    }

    .nonpay .close_btn {
        position: fixed;
        top: 30px;
        right: 18px;
        z-index: 10001;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 25px;
        font-weight: bold;
        line-height: 1;
        cursor: pointer;
        outline: none;
        transition: opacity 0.2s ease;
    }

    .nonpay .close_btn:hover {
        opacity: 0.7;
    }

    .nonpay .nonpay_img{
        width: 100%;
        max-width: 1200px;
        height: auto;
        cursor: default;
    }   

    .nonpay .nonpay_img img{
        width: 100%;
        display: block;
    }
    /* 비급여항목 팝업 */

    /* popup */

}



