@charset "utf-8";

/* 헤더 */
header{
    background-color: #fff;
    position: fixed; z-index: 99; width: 100%;
    top: 0; left: 0;
    border-bottom: 2px solid var(--color-b);
    height: var(--header-height);
    box-sizing: border-box;
    transition: 0.3s;
    overflow: hidden;
}
header > div{}
header > .header_top{}
header > .header_top > ul{
    display: flex; justify-content: flex-end;
    margin: 10px 0;
}
header > .header_top > ul > li{margin-right: 10px;}
header > .header_top > ul > li:last-child{margin-right: 0;}
header > .header_top > ul > li > a{
    font-weight: 300;
    font-size: 0.875rem;
}

header > .header_middle{padding: 20px 0;}
header > .header_middle > .wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
header > .header_middle > .wrap > div{}
header > .header_middle > .wrap > div h2{
    position: relative; z-index: 1;
    padding-left: 60px;
}
header > .header_middle > .wrap > div h2::before{
    content: ""; display: inline-block; position: absolute; z-index: -1;
    width: 50px; height: 48.5px;
    top: 50%; left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);    
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
header > .header_middle > .wrap > div h2 > span{
    display: block;
    font-weight: 300;
    margin-bottom: 5px;
}
header > .header_middle > .wrap > div h2 > p{
    font-weight: 700;
    font-size: 1.25em;
}
header > .header_middle > .wrap > .left{}
header > .header_middle > .wrap > .left h2{}
header > .header_middle > .wrap > .left h2::before{
    background-image: url(../img/icon_header_left.png);
}
header > .header_middle > .wrap > .left h2 > span{}
header > .header_middle > .wrap > .left h2 > p{color: var(--color-d);}
header > .header_middle > .wrap > .center{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
header > .header_middle > .wrap > .center h1{}
header > .header_middle > .wrap > .center h1 > a{}
header > .header_middle > .wrap > .center h1 > a img{max-height: 40px;}
header > .header_middle > .wrap > .right{}
header > .header_middle > .wrap > .right h2{}
header > .header_middle > .wrap > .right h2::before{
    background-image: url(../img/icon_header_right.png);
}
header > .header_middle > .wrap > .right h2 > span{}
header > .header_middle > .wrap > .right h2 > p{color: var(--color-f);}

/* pc gnb 설정 */
header > .header_bottom{}
header > .header_bottom > .pc_gnb{}
header > .header_bottom > .pc_gnb > ul{display: flex;}
header > .header_bottom > .pc_gnb > ul > li{
    width: 100%;
    position: relative;
}
header > .header_bottom > .pc_gnb > ul > li > a{
    display: block; width: 100%; padding: 20px 0;
    text-align: center; font-weight: 700;
    font-size: 1.125rem;
}
header > .header_bottom > .pc_gnb > ul > li > a::after{
    content: ""; position: absolute; display: block;
    width: 100%; height: 2px; bottom: 0; left: 0;
    background-color: var(--color-b);
    transition: 0.3s;
    opacity: 0;
}
/* pc lnb 설정 */
header .header_bottom .pc_lnb{
    position: absolute; width: 100%; text-align: center;
    /* lnb 최대 갯수에 따라 곱하는 숫자 달라짐 */
    height: -webkit-calc(var(--lnb-height) * 9);
    height: -moz-calc(var(--lnb-height) * 9);
    height: -o-calc(var(--lnb-height) * 9);
    height: calc(var(--lnb-height) * 9);
    opacity: 0;
    transition: 0.3s;
}
header .header_bottom .pc_lnb > li{}
header .header_bottom .pc_lnb > li a{
    font-size: 0.875rem;
    transition: 0.3s;
    height: var(--lnb-height);
    line-height: var(--lnb-height);
    display: block;
}

/* 헤더 호버,액티브 */
header.active{    
    /* gnb + lnb X 최대 갯수 */
    height: -webkit-calc(var(--header-height) + var(--lnb-height) * 9);
    height: -moz-calc(var(--header-height) + var(--lnb-height) * 9);
    height: -o-calc(var(--header-height) + var(--lnb-height) * 9);
    height: calc(var(--header-height) + var(--lnb-height) * 9);
}
header.active::after{background-color: var(--border-b);}
header.active > .header_bottom > .pc_gnb > ul > li > a{}
header.active .header_bottom .pc_lnb{opacity: 1;}

header > .header_bottom > .pc_gnb > ul > li > a:hover,
header > .header_bottom > .pc_gnb > ul > li > a.on,
header .header_bottom .pc_lnb > li a:hover{
    color: var(--color-b);
}

header > .header_bottom > .pc_gnb > ul > li > a:hover::after,
header > .header_bottom > .pc_gnb > ul > li > a.on::after{opacity: 1;}

header .header_bottom .pc_lnb.on{
    background-color: var(--gray-d);
}
/*// 헤더 호버,액티브 */
/* 헤더 스크롤 */
header.scroll{        
    top: -112px;
}
header.scroll > .header_bottom > .pc_gnb > ul > li > a{}
header.scroll > .header_bottom > .pc_gnb > ul > li > a:hover,
header.scroll > .header_bottom > .pc_gnb > ul > li > a.on,
header.scroll .header_bottom .pc_lnb > li a:hover{color: var(--color-b);}
/*// 헤더 스크롤 */

/* 모바일 */
.mobile_header_wrap{
    display: none;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: var(--header-height);
}
.mobile_header_wrap .left{max-width: 335px;}
.mobile_header_wrap .left .header_slide{margin-bottom: 0;}
.mobile_header_wrap .left .header_slide .slick-slide{padding: 10px 0;}
.mobile_header_wrap .left .header_slide .slick-slide h2{
    position: relative;
    z-index: 1;
    padding-left: 60px;
}
.mobile_header_wrap .left .header_slide .slick-slide h2::before{
    content: "";
    display: inline-block;
    position: absolute;
    z-index: -1;
    width: 50px;
    height: 48.5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.mobile_header_wrap .left .header_slide .slick-slide h2 > span{font-weight: 300;}
.mobile_header_wrap .left .header_slide .slick-slide h2 > p{
    font-weight: 700;
    font-size: 1.25em;
}
.mobile_header_wrap .left .header_slide .slide_a h2::before {
    background-image: url(../img/icon_header_left.png);
}
.mobile_header_wrap .left .header_slide .slide_a h2 > p{color: var(--color-d);}
.mobile_header_wrap .left .header_slide .slide_b h2::before {
    background-image: url(../img/icon_header_right.png);
}
.mobile_header_wrap .left .header_slide .slide_b h2 > p{color: var(--color-f);}

.mobile_header_wrap .center{
    position: absolute;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.mobile_header_wrap .left .header_slide .slick-dots{
    right: 0; bottom: auto;
    width: auto; height: auto;    
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.mobile_header_wrap .left .header_slide .slick-dots li{
    width: 10px; height: 10px; 
    background-color: #fff;
    border: 1px solid var(--color-d);
    display: block;
    margin: 5px 0;
    border-radius: 100%;
    box-sizing: border-box;
}
.mobile_header_wrap .left .header_slide .slick-dots li.slick-active{
    background-color: var(--color-d);
}
.mobile_header_wrap .left .header_slide .slick-dots li button:before{display: none;}
.mobile_header_wrap .center .logo img{width: 220px;}
.mobile_header_wrap .right{}
.mobile_header_wrap .right button{}
.mobile_header_menu{
    top: 0; left: 0;
    position: fixed;
    z-index: 999;
    width: 100%; height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
}
.mobile_header_menu .mobile_gnb{
    background-color: #fff;
    box-sizing: border-box;
    max-width: 450px;
    width: 80%; height: 100%;
    position: absolute;
    right: -1000px;    
    transition: right 0.5s ease-in-out;
}
.mobile_header_menu .mobile_gnb.active{
    right: 0;
}
.mobile_header_menu .mobile_gnb .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 0 4%;
    box-sizing: border-box;
    border-bottom: 1px solid var(--gray-c);
}
.mobile_header_menu .mobile_gnb .top .login{
    display: flex;
}
.mobile_header_menu .mobile_gnb .top .login li{
    position: relative;
    margin-right: 10px;
    padding-right: 10px;
}
.mobile_header_menu .mobile_gnb .top .login li::after{
    content: ""; position: absolute;
    right: 0; top: 50%;
    width: 0.5px; height: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: var(--gray-b);
}
.mobile_header_menu .mobile_gnb .top .login li:last-child{}
.mobile_header_menu .mobile_gnb .top .login li:last-child::after{display: none;}
.mobile_header_menu .mobile_gnb .top .login li a{font-weight: 300;}
.m_menu_btn{
    display: block;
    width: 55px;
    height: auto;
}
.mobile_header_menu .mobile_gnb .middle{}
.mobile_header_menu .mobile_gnb .middle .wrap{
    overflow-y: scroll;
    box-sizing: border-box;
    height: -webkit-calc(100vh - var(--header-height));
    height: -moz-calc(100vh - var(--header-height));
    height: -o-calc(100vh - var(--header-height));
    height: calc(100vh - var(--header-height));
    padding-bottom: 100px;
}
.mobile_header_menu .mobile_gnb .middle .wrap .gnb{
    position: relative;
    border-bottom: 1px solid var(--gray-c);
    box-sizing: border-box;
}
.mobile_header_menu .mobile_gnb .middle .wrap .gnb > a{
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 20px 5%;
}
.mobile_header_menu .mobile_gnb .middle .wrap .gnb > a.on{color: var(--color-b);}
.mobile_header_menu .mobile_gnb .middle .wrap .gnb .m_lnb_btn{
    display: block;
    position: absolute;
    top: 0; right: 0;
    border-left: 1px solid var(--gray-c);
    width: var(--mobile-nav-height);
    height: var(--mobile-nav-height);
}
.mobile_header_menu .mobile_gnb .middle .wrap .gnb .m_lnb_btn::after{
    content: "+"; position: absolute;
    font-size: 1.5625rem;
    color: var(--color-a);
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.mobile_header_menu .mobile_gnb .middle .wrap .gnb .lnb{
    display: none;
    border-top: 1px solid var(--gray-c);
    background-color: var(--gray-d);
}
.mobile_header_menu .mobile_gnb .middle .wrap .gnb .lnb li{}
.mobile_header_menu .mobile_gnb .middle .wrap .gnb .lnb li a{
    display: block;
    padding: 15px 5%;
    font-size: 0.9375rem;
}
.mobile_header_menu .mobile_gnb .bottom{
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;    
}
.mobile_header_menu .mobile_gnb .bottom .mobile_link_wrap{
    display: flex;    
    border-top: var(--gray-c);
    background-color: var(--color-d);
}
.mobile_header_menu .mobile_gnb .bottom .mobile_link_wrap li{
    width: 100%;
}
.mobile_header_menu .mobile_gnb .bottom .mobile_link_wrap li a{
    display: block; position: relative;
    height: 70px;
}
.mobile_header_menu .mobile_gnb .bottom .mobile_link_wrap li a img{
    width: 40px; height: auto;
    position: absolute;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
/*// 모바일 */

/*// 헤더 */

/* 푸터 */
footer{background-color: var(--gray-a); font-weight: 300; font-size: 0.875rem;}
footer > div{}
footer > .footer_top{}
footer > .footer_top .wrap{border-bottom: 0.5px solid rgba(255, 255, 255, 0.25);}
footer > .footer_top .wrap > ul{display: flex; }
footer > .footer_top .wrap > ul > li{margin-right: 30px;}
footer > .footer_top .wrap > ul > li:last-child{margin-right: 0;}
footer > .footer_top .wrap > ul > li > a{
    color: var(--gray-b);
    display: block;
    padding: 15px 0;
}

footer > .footer_bottom{
    padding: 40px 0 60px;
}
footer > .footer_bottom > div{}
footer > .footer_bottom > .left{
    display: flex;
    align-items: center;
}
footer > .footer_bottom > .left > img{
    margin-right: 40px;
    max-width: 150px;
}
footer > .footer_bottom > .left > .txt{}
footer > .footer_bottom > .left > .txt > ul{display: flex; margin-bottom: 10px;}
footer > .footer_bottom > .left > .txt > ul:last-child{margin-bottom: 0;}
footer > .footer_bottom > .left > .txt > ul > li{
    color: var(--gray-b); position: relative; margin-right: 25px;
}
footer > .footer_bottom > .left > .txt > ul > li::after{
    content: ""; position: absolute; width: 0.5px; height: 10px;
    background-color: rgba(255, 255, 255, 0.25);
    top: 50%; right: -13px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);    
}
footer > .footer_bottom > .left > .txt > ul > li:last-child:after{display: none;}
footer > .footer_bottom > .right{}
footer > .footer_bottom > .right > p{
    color: var(--gray-b);
    text-align: right;
    margin-top: 40px;
}
/*// 푸터 */

/* 퀵메뉴 */
.quick_menu{
    position: fixed; bottom: 2%; right: 1%; z-index: 95;
    text-align: -webkit-right;
}
.quick_menu > li{
    background-color: var(--color-d);
    border: 1px solid var(--color-d);
    width: 65px; height: 65px; border-radius: 100px;
    isolation: isolate; overflow: hidden; box-sizing: border-box;
    margin-bottom: 10px; position: relative;
    transition: 0.5s;
}
.quick_menu > li > a{
    
}
.quick_menu > li > a > img{width: 35px; height: auto;}
.quick_menu > li > a > span{display: inline-block;}

.quick_menu > li.link_btn{}
.quick_menu > li.link_btn > a{
    position: relative; width: 100%; height: 100%; display: block;
}
.quick_menu > li.link_btn > a > img,
.quick_menu > li.link_btn > a > span{
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transition: 0.5s;
}
.quick_menu > li.link_btn > a > img{z-index: 1;}
.quick_menu > li.link_btn > a > span{
    font-size: 0.875rem; color: #fff; opacity: 0;
    min-width: 120px; text-align: left;
}

.quick_menu > li.scroll_top{
    margin-bottom: 0; margin-top: 40px;
    background-color: #fff;
}
.quick_menu > li.scroll_top button{width: 100%; height: 100%; position: relative;}
.quick_menu > li.scroll_top button::after{
    content: ""; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-image: url(../img/icon_scroll_top.svg);    
    width: 19px; height: 22px;
    background-size: cover;
    background-position: center center;
}
/* hover */
@media (hover: hover){
    .quick_menu > li.link_btn:hover{
        width: 200px; border-radius: 50px;
    }
    .quick_menu > li.link_btn:hover > a > span{opacity: 1;}
    .quick_menu > li.link_btn:hover > a > img,
    .quick_menu > li.link_btn:hover > a > span{
        transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
    }
    .quick_menu > li.link_btn:hover > a > img{left: 30px;}
    .quick_menu > li.link_btn:hover > a > span{left: 80px;}
}
/*// hover */
/*// 퀵메뉴 */

/* 비주얼 배너 */
.main_visual{
    margin-top: var(--header-height);
    text-align: center;
    overflow: hidden;
}
.main_visual .swiper{position: relative;}
.main_visual .swiper .swiper-wrapper{}
.main_visual .swiper .swiper-wrapper .swiper-slide{
    text-align: center;
    max-width: 1920px;
    width: 100%;
}
.main_visual .swiper .swiper-wrapper .swiper-slide .pc_visual{}
.main_visual .swiper .swiper-wrapper .swiper-slide .mobile_visual{display: none;}
.main_visual .swiper .visual_swiper_prev,
.main_visual .swiper .visual_swiper_next{
    position: absolute; top: 50%; z-index: 1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 70px; height: 70px;
    background-color: rgba(255, 255, 255, 0.5);
}
.main_visual .swiper .visual_swiper_prev::after,
.main_visual .swiper .visual_swiper_next::after{
    content: ""; position: absolute;
    width: 12px; height: 25px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.main_visual .swiper .visual_swiper_prev{
    left: 0;
    border-radius: 0 50px 50px 0;
}
.main_visual .swiper .visual_swiper_prev::after{
    left: 20px;
    background-image: url(../img/visual_prev.svg);
}
.main_visual .swiper .visual_swiper_next{
    right: 0;
    border-radius: 50px 0 0 50px;
}
.main_visual .swiper .visual_swiper_next::after{
    right: 20px;
    background-image: url(../img/visual_next.svg);
}
.main_visual .swiper .visual_swiper_pagination{
    position: absolute; z-index: 1; bottom: 20px;
}
.main_visual .swiper .visual_swiper_pagination .swiper-pagination-bullet{
    width: 13px; height: 13px;
    background: transparent;
    border: 1px solid #fff;
    box-sizing: border-box;
    opacity: 1;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.main_visual .swiper .visual_swiper_pagination .swiper-pagination-bullet-active{
    width: 45px;
    border-radius: 30px;
    background-color: #fff;
}
/* 슬라이드 내용 스타일 설정 */
.main_visual .swiper-slide .txt{
    position: absolute;
    width: 85%;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.7s ease-in-out;
}
.main_visual .swiper-slide-active .txt{
    top: 50%;
    opacity: 1;
}

.main_visual .slide_b .txt{
    position: absolute;
    width: 85%;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.7s ease-in-out;
}
.main_visual .swiper-slide-active.slide_b .txt{
    top: 30%;
    opacity: 1;
}

.main_visual .swiper-slide .txt > i{    
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 5px;
    color: #fff;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    padding: 6px 0 7px;
    font-weight: 300;
    font-size: 0.875rem;
}
.main_visual .swiper-slide .txt > span{
    display: block;
    font-family: 'Nanum Myeongjo', serif;
    font-size: 2.8125rem;    
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
}
.main_visual .swiper-slide .txt > p{
    font-size: 1.25rem;
    color: #fff;
    margin-top: 30px;
}
/* slide_a */
.main_visual .slide_a{}
.main_visual .slide_a .txt{
    text-align: left;
}
/*// slide_a */

/* slide_b */
.main_visual .slide_b{}
/*// slide_b */

/* slide_c */
.main_visual .slide_c{}
.main_visual .slide_c .txt{}
/*// slide_c */

/* slide_d */
.main_visual .slide_d{}
/*// slide_d */

/* slide_e */
.main_visual .slide_e{}
/*// slide_e */

/*// 슬라이드 내용 스타일 설정 */

/*// 비주얼 배너 */

/* 컨텐츠 타이틀 */
.con_title{text-align: center; margin-bottom: 40px;}
.con_title > h3{
    font-family: 'Nanum Myeongjo', serif;
    font-size: 2.1875rem;
    font-weight: 700;
    display: block;
    position: relative; z-index: 1;
}
.con_title > h3 br{display: none;}
.con_title > h3::after{
    content: ""; position: absolute; z-index: -1;
    top: -10px; right: auto;
    width: 15px; height: 15px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/icon_title_deco.svg);
}
.con_title > h3 > strong{
    color: var(--color-d);
}
.con_title > p{margin-top: 10px;}
/*// 컨텐츠 타이틀 */

/* 메인화면 */

/* main_sec01 */
.main_sec01{}
.main_sec01 .wrap{
    display: flex;
    align-items: flex-start;
    position: relative;
}
.main_sec01 .wrap > div{
    width: 50%;
    margin-bottom: 50px;
}
.main_sec01 .wrap > .left{
    overflow: hidden;
    border-radius: 25px;
    position: relative;
    /* width: 50%; */
}
.main_sec01 .wrap > .left::after{
    content: ""; position: absolute;
    width: 100%; height: 100%; top: 0; left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
/* 슬라이드 */
.mainSecSwiper{position: relative;}
.mainSecSwiper .swiper-wrapper{}
.mainSecSwiper .swiper-wrapper .swiper-slide{}
.mainSecSwiper .swiper-wrapper .swiper-slide img{width: 100%;}

.mainSecSwiper .slide_btn_wrap{
    position: absolute; z-index: 2;
    bottom: 15px; left: 20px;
    display: flex; align-items: center;
}
.mainSecSwiper .slide_btn_wrap button{
    width: 10px; height: 10px;
    background-size: cover;
    background-repeat: no-repeat;
}
.mainSecSwiper .slide_btn_wrap .mainSecSwiper_prev,
.mainSecSwiper .slide_btn_wrap .mainSecSwiper_next{
    width: 14px; height: 13.5px;
}
.mainSecSwiper .slide_btn_wrap .mainSecSwiper_prev{
    background-image: url(../img/icon_slide_prev.svg);
}
.mainSecSwiper .slide_btn_wrap .mainSecSwiper_next{
    background-image: url(../img/icon_slide_next.svg);
}

/* 슬라이드 일시정지, 재생 버튼 */
.mainSecSwiper .slide_btn_wrap .btn_wrap{
    position: relative;
    width: 10px; height: 10px;
    margin: 0 8px;
}
.mainSecSwiper .slide_btn_wrap .btn_wrap .mainSecSwiper_pause,
.mainSecSwiper .slide_btn_wrap .btn_wrap .mainSecSwiper_play{
    position: absolute; top: 0; left: 0; display: none;
}
.mainSecSwiper .slide_btn_wrap .btn_wrap .mainSecSwiper_pause{
    background-image: url(../img/icon_slide_pause.svg);
}
.mainSecSwiper .slide_btn_wrap .btn_wrap .on{display: block;}
.mainSecSwiper .slide_btn_wrap .btn_wrap .mainSecSwiper_play{
    background-image: url(../img/icon_slide_play.svg);
}
/*// 슬라이드 일시정지, 재생 버튼 */

.mainSecSwiper .slide_btn_wrap .mainSecSwiper_pagination{margin-right: 15px;}
.mainSecSwiper .slide_btn_wrap .mainSecSwiper_pagination .swiper-pagination-bullet{
    width: 10px; height: 10px;
    background: transparent;
    border: 1px solid #fff;
    box-sizing: border-box;
    opacity: 1;
    margin-right: 6px;
}
.mainSecSwiper .slide_btn_wrap .mainSecSwiper_pagination .swiper-pagination-bullet:last-child{margin-right: 0;}
.mainSecSwiper .slide_btn_wrap .mainSecSwiper_pagination .swiper-pagination-bullet-active{
    width: 35px;
    border-radius: 30px;
    background-color: #fff;
}
/*// 슬라이드 */
.main_sec01 .wrap > .right{
    position: absolute; z-index: 1;
    background: #fff;
    box-sizing: border-box;
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 6px 4px 15px rgba(0, 0, 0, 0.05);
    width: 57%;
    bottom: -50px;
    right: 0;
}
.main_sec01 .wrap > .right .mainSecSwiperSub{overflow: hidden;}
.main_sec01 .wrap > .right .swiper-slide{background-color: #fff;}
.main_sec01 .wrap > .right .swiper-slide > div{
    
}
.main_sec01 .wrap > .right .swiper-slide > .txt_top{}
.main_sec01 .wrap > .right .swiper-slide > .txt_top > h4{}
.main_sec01 .wrap > .right .swiper-slide > .txt_top > h4::after{
    content: ""; display: block;
    width: 20px; height: 1px;
    background-color: var(--color-d);
    margin: 20px 0 25px;
}
.main_sec01 .wrap > .right .swiper-slide > .txt_top > h4 > span{}
.main_sec01 .wrap > .right .swiper-slide > .txt_top > h4 > p{
    font-size: 1.875em;
    font-weight: 700;
    margin-top: 3px;
}
.main_sec01 .wrap > .right .swiper-slide > .txt_top > h4 > p > strong{
    color: var(--color-d);
}
.main_sec01 .wrap > .right .swiper-slide > .txt_bottom{}
.main_sec01 .wrap > .right .swiper-slide > .txt_bottom > p{
    margin-left: 30px;
    min-height: 4.5rem;
}
.main_sec01 .wrap > .right .swiper-slide > .txt_bottom > a{margin-top: 30px; float: right;}
/*// main_sec01 */

/* main_sec02 */
.main_sec02{
    background-color: var(--gray-d);
    padding: 40px 0;
    position: relative;
    z-index: 1;
}
.main_sec02::after{
    content: ""; position: absolute; z-index: -1;
    background-image: url(../img/main_sec02_bgi.png);
    bottom: 0; left: 0;
    width: 979px;
    height: 100%;
    background-position: center left;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.45;
}
.main_sec02 .wrap{
    display: flex;
    align-items: center;
}
.main_sec02 .wrap > div{}
.main_sec02 .wrap > .left{}
.main_sec02 .wrap > .left > ul{
    display: flex; flex-wrap: wrap;
    margin-left: -10px;
}
.main_sec02 .wrap > .left > ul > li{
    width: -webkit-calc(100% / 2 - 20px);
    width: -moz-calc(100% / 2 - 20px);
    width: -o-calc(100% / 2 - 20px);
    width: calc(100% / 2 - 20px);
    background-color: rgba(255, 255, 255, 0.7);
    margin: 10px;
    padding: 50px 10px;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.main_sec02 .wrap > .left > ul > li:nth-child(1){border-radius: 20px 0 0 0;}
.main_sec02 .wrap > .left > ul > li:nth-child(2){border-radius: 0 20px 0 0;}
.main_sec02 .wrap > .left > ul > li:nth-child(3){border-radius: 0 0 0 20px;}
.main_sec02 .wrap > .left > ul > li:nth-child(4){border-radius: 0 0 20px 0;}
.main_sec02 .wrap > .left > ul > li > p{
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
}
.main_sec02 .wrap > .left > ul > li > p > strong{
    color: var(--color-d);
}
.main_sec02 .wrap > .right{text-align: right;}
.main_sec02 .wrap > .right > div{}
.main_sec02 .wrap > .right > .txt_top{}
.main_sec02 .wrap > .right > .txt_top > h4{}
.main_sec02 .wrap > .right > .txt_top > h4 > span{
    font-size: 1.125rem;
    font-family: 'Nanum Myeongjo', serif;
    color: var(--color-d);
    font-weight: 900;
}
.main_sec02 .wrap > .right > .txt_top > h4 > img{
    display: inline-block;
    margin-top: 5px;
    max-width: 530px;
}
.main_sec02 .wrap > .right > .txt_top > h4 > .pc_img{}	
.main_sec02 .wrap > .right > .txt_top > h4 > .mobile_img{display: none;}
.main_sec02 .wrap > .right > .txt_top > p{}
.main_sec02 .wrap > .right > .txt_bottom{
    margin-top: 30px;
}
.main_sec02 .wrap > .right > .txt_bottom > p{}
.main_sec02 .wrap > .right > .txt_bottom > a{
    margin-top: 30px;
}
/*// main_sec02 */

/* main_sec03 */
.main_sec03{}
.main_sec03 .wrap{}
.main_sec03 .wrap > ul{display: flex; justify-content: center;}
.main_sec03 .wrap > ul > li{
    width: -webkit-calc(100% / 4 - 10px);
    width: -moz-calc(100% / 4 - 10px);
    width: -o-calc(100% / 4 - 10px);
    width: calc(100% / 4 - 10px);
    margin-right: 20px;
}
.main_sec03 .wrap > ul > li.empty_li{text-align: center; font-weight: 300;}
.main_sec03 .wrap > ul > li:last-child{margin-right: 0;}
.main_sec03 .wrap > ul > li > a{
    display: block;
    background-color: #fff;
    border: 1px solid var(--gray-c);
    padding: 30px;
    box-sizing: border-box;
    transition: 0.3s ease-in-out;
}
.main_sec03 .wrap > ul > li > a:hover{
    transform: translateY(-15px);    
    -webkit-transform: translateY(-15px);    
    -ms-transform: translateY(-15px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.main_sec03 .wrap > ul > li > a > p {font-size: 15px; line-height: 1.4; text-align: center; margin-top: 10px;}
.main_sec03 .wrap > ul > li > a > div{}
.main_sec03 .wrap > ul > li > a > .txt_title{}
.main_sec03 .wrap > ul > li > a > .txt_title .title{
    font-size: 1.125rem;
    word-break: break-word;
    font-weight: 500;
    margin-bottom: 30px;
    min-height: 3.4375rem;
}
.main_sec03 .wrap > ul > li > a > .txt_con{}
.main_sec03 .wrap > ul > li > a > .txt_con .con{
    word-break: break-word;
    min-height: 4.5625rem;
}
.main_sec03 .wrap > ul > li > a > .txt_con .date{
    font-size: 0.875rem;
    margin-top: 40px;
    text-align: right;
}
/*// main_sec03 */

/* main_sec04 */
.main_sec04{
    background-color: var(--color-g);
    padding: 80px 0;
    position: relative; z-index: 1;
}
.main_sec04::after{
    content: ""; position: absolute; z-index: -1;
    bottom: 0; right: 0;
    width: 925px;
    height: 100%;
    background-image: url(../img/main_sec04_bgi.png);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}
.main_sec04 .wrap{}
.main_sec04 .wrap .con_title{text-align: left;}
.main_sec04 .wrap .con_title > h3{}
.main_sec04 .wrap .con_title > p{}
.main_sec04 .wrap > a{margin: 0;}
/*// main_sec04 */

/* main_sec05 */
.main_sec05{}
.main_sec05 .wrap{
    display: flex;
    align-items: flex-end;
}
.main_sec05 .wrap > div{}
.main_sec05 .wrap > .left{
    width: 55%;
    margin-right: 80px;
    border: 1px solid var(--gray-c);
    box-sizing: border-box;
}
.main_sec05 .wrap > .left iframe{vertical-align: top;}
.main_sec05 .wrap > .right{width: 45%;}
.main_sec05 .wrap > .right > div{}
.main_sec05 .wrap > .right > .txt_top{}
.main_sec05 .wrap > .right > .txt_top > a{
    font-size: 2.5rem;
    font-weight: 700;
    display: inline-block;
}
.main_sec05 .wrap > .right > .txt_top > a:hover{color: var(--color-d);}
.main_sec05 .wrap > .right > .txt_top > a::before{
    content: ""; display: inline-block;
    width: 28px; height: 28px;
    margin-bottom: 1px;
    margin-right: 10px;
    background-image: url(../img/icon_tel.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.main_sec05 .wrap > .right > .txt_middle{
    margin: 20px 0;
}
.main_sec05 .wrap > .right > .txt_middle > p{}
.main_sec05 .wrap > .right > .txt_middle > p:last-child{margin-bottom: 0;}
.main_sec05 .wrap > .right > .txt_middle .address{margin-bottom: 15px;}
.main_sec05 .wrap > .right > .txt_middle .parking{
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-d);
    margin-bottom: 5px;
}
.main_sec05 .wrap > .right > .txt_bottom{}
.main_sec05 .wrap > .right > .txt_bottom table{
    width: 100%;
}
.main_sec05 .wrap > .right > .txt_bottom table tbody{
    border-top: 1.5px solid var(--gray-c);
    border-bottom: 1.5px solid var(--gray-c);
}
.main_sec05 .wrap > .right > .txt_bottom table tr{
    border-bottom: 0.5px dashed var(--gray-c);
}
.main_sec05 .wrap > .right > .txt_bottom table tr th,
.main_sec05 .wrap > .right > .txt_bottom table tr td{
    padding: 15px 10px;
    text-align: center;
    font-weight: 300;
}
.main_sec05 .wrap > .right > .txt_bottom table tr th{width: 40%;}
.main_sec05 .wrap > .right > .txt_bottom table tr td{width: 60%;}
/*// main_sec05 */

/*// 메인화면 */

/* 서브화면 */

/* 서브페이지 타이틀 */
.sub_title{
    position: relative;
    margin-top: var(--header-height);
    height: 230px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.sub_title > h2{
    width: 100%; text-align: center;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 2.1875rem;
    font-weight: 700;
    color: #fff;
}
/* 타이틀 배경 이미지 */
#intro{
    background-image: url(../img/subtitle/intro_title_bgi.jpg);
}
/*// 타이틀 배경 이미지 */
/*// 서브페이지 타이틀 */

/* 서브페이지 네비게이션 */
.sub_nav{
    border-top: 1px solid var(--gray-c);
    border-bottom: 1px solid var(--gray-c);
    background-color: #fff;
}
.sub_nav .wrap{display: flex; align-items: center;}
.sub_nav .wrap a{display: block; padding: 0 15px; font-size: 0.875rem;}
.sub_nav .wrap .home{
    padding: 0 15px; 
    border-left: 1px solid var(--gray-c);
    border-right: 1px solid var(--gray-c);
}
.sub_nav .wrap .home img{
    vertical-align: middle;
    margin-bottom: 3px; height: auto;
    width: 14px;
}
.sub_nav .wrap .home,
.sub_nav .wrap .select_btn{
    height: 40px;
    line-height: 39px;
}
.sub_nav .wrap .home,
.sub_nav .wrap .depth{
    position: relative;
}
.sub_nav .wrap .depth:last-child::after{display: none;}
.sub_nav .wrap .depth{min-width: 250px;}
.sub_nav .wrap .depth_select_wrap{
    border-right: 1px solid var(--gray-c);
}
.sub_nav .wrap .depth_select_wrap .select_btn{
    display: flex; align-items: center; justify-content: space-between;
}
.sub_nav .wrap .depth_select_wrap .select_btn .icon{
    margin-right: 0; width: 10px; height: 6px;
    background-image: url(../img/icon_nav_select.svg);
}
.sub_nav .wrap .depth_select_wrap.on .select_btn{color: var(--color-b);}
.sub_nav .wrap .depth_select_wrap.on .select_btn .icon{
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
}
.sub_nav .wrap .depth_select_wrap .select_drop_box{
    position: absolute; z-index: 50;
    border: 1px solid var(--gray-c);
    background-color: #fff;
    box-sizing: border-box;
    display: none;
    min-width: 250.5px;
    margin-left: -0.5px;
    margin-top: 0.5px;
}
.sub_nav .wrap .depth_select_wrap .select_drop_box ul > li a{
    padding: 10px 15px;
}
.sub_nav .wrap .depth_select_wrap .select_btn:hover,
.sub_nav .wrap .depth_select_wrap .select_drop_box ul > li:hover{color: var(--color-b);}
/*// 서브페이지 네비게이션 */

/* 서브페이지 부작용 안내 배너 */
.clinic_notice_wrap{
    background-image: url(../img/clinic_notice_bgi.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.clinic_notice{}
.clinic_notice > p{
    text-align: center;
    font-size: 1.25rem;
}
.clinic_notice > p:first-child{margin-bottom: 20px;}
.clinic_notice > p > strong{
    font-weight: 700;
    color: var(--color-d);
}
.clinic_notice > img{
    width: 200px;
    margin: 40px auto 0;
    display: block;
}
/*// 서브페이지 부작용 안내 배너 */

/* 서브페이지 배너 이미지 */
.digital_03_a .sub_con_wrap::after{
    background-image: url(../img/digital/digital_img_04.jpg);
}
.implant_02_a .sub_con_wrap::after{
    background-image: url(../img/implant/implant_img_08.jpg);
}
.implant_02_c .sub_con_wrap::after{
    background-image: url(../img/implant/implant_img_09.jpg);
}
.implant_06_a .sub_con_wrap::after{
    background-image: url(../img/implant/implant_img_25.jpg);
}
.implant_06_c .sub_con_wrap::after{
    background-image: url(../img/implant/implant_img_26.jpg);
}
.prosthesis_01_c .sub_con_wrap::after{
    background-image: url(../img/prosthesis/prosthesis_img_06.jpg);
    z-index: -2;
    border-radius: 20px;
    width: 50%;
}
.normal_01_d .sub_con_wrap::after{
    background-image: url(../img/normal/normal_img_02.jpg);
}
.normal_06_c .sub_con_wrap::after{
    background-image: url(../img/normal/normal_img_24.jpg);
}
.normal_07_b .sub_con_wrap:nth-of-type(1)::after{
    background-image: url(../img/normal/normal_img_28.jpg);
}
.normal_07_b .sub_con_wrap:nth-of-type(2)::after{
    background-image: url(../img/normal/normal_img_29.jpg);
    right: auto;
    left: 0;
}
.normal_07_b .sub_con_wrap:nth-of-type(3)::after{
    background-image: url(../img/normal/normal_img_30.jpg);
}
/*// 서브페이지 배너 이미지 */


/* 수성웰치과 */

/* 수성웰치과의 특별함 */
.intro_01_a{}
.intro_01_a .wrap{}
.intro_01_a .wrap .intro_title{text-align: center;}
.intro_01_a .wrap .intro_title > p{
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 5px;
    color: var(--color-d);
    border-bottom: 1px solid var(--color-d);
    border-top: 1px solid var(--color-d);
    padding: 6px 0 7px;
    font-weight: 300;
}
.intro_01_a .wrap .intro_title > h3{}
.intro_01_a .wrap > ul{
    text-align: center;
    margin-top: 60px;
}
.intro_01_a .wrap > ul > li{margin-bottom: 40px;}
.intro_01_a .wrap > ul > li:last-child{margin-bottom: 0;}
.intro_01_a .wrap > ul > li:nth-child(1){}
.intro_01_a .wrap > ul > li:nth-child(1) > p{
    font-size: 1.5625rem;
    font-weight: 700;
    line-height: 1.2;
}
.intro_01_a .wrap > ul > li:nth-child(2){}
.intro_01_a .wrap > ul > li:nth-child(2) > ol{
    display: flex;
    justify-content: center;
}
.intro_01_a .wrap > ul > li:nth-child(2) > ol > li{
    border: 5px solid #000;
    box-sizing: border-box;
    border-radius: 100%;
    width: 200px; height: 200px;
    margin: 0 20px;
    position: relative;
}
.intro_01_a .wrap > ul > li:nth-child(2) > ol > li > .box{
    position: absolute;
    width: 100%;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.intro_01_a .wrap > ul > li:nth-child(2) > ol > li > .box > i{
    display: block; margin: 0 auto 10px;
    width: 55px;
    height: 55px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.intro_01_a .wrap > ul > li:nth-child(2) > ol > li > .box > .txt{}
.intro_01_a .wrap > ul > li:nth-child(2) > ol > li > .box > .txt span,
.intro_01_a .wrap > ul > li:nth-child(2) > ol > li > .box > .txt i{display: block;}
.intro_01_a .wrap > ul > li:nth-child(2) > ol > li > .box > .txt span{
    font-size: 1.125rem; font-weight: 700; margin-bottom: 5px;
}
.intro_01_a .wrap > ul > li:nth-child(2) > ol > li > .box > .txt i{font-size: 0.875rem;}
.intro_01_a .wrap > ul > li:nth-child(3){}
.intro_01_a .wrap > ul > li:nth-child(3) > p{margin-bottom: 20px;}
.intro_01_a .wrap > ul > li:nth-child(3) > p strong{
    font-size: 1.25em; font-weight: 700; color: var(--color-d);
}
.intro_01_a .wrap > ul > li:nth-child(3) > p:last-child{margin-bottom: 0;}
/* 라운드, 글자 색상 설정 */
.intro_01_a .wrap > ul > li:nth-child(2) > ol > li:nth-child(1){
    border-color: var(--color-b);
    color: var(--color-b);
}
.intro_01_a .wrap > ul > li:nth-child(2) > ol > li:nth-child(2){
    border-color: var(--color-c);
    color: var(--color-c);
}
.intro_01_a .wrap > ul > li:nth-child(2) > ol > li:nth-child(3){
    border-color: var(--color-d);
    color: var(--color-d);
}
.intro_01_a .wrap > ul > li:nth-child(2) > ol > li:nth-child(4){
    border-color: var(--color-e);
    color: var(--color-e);
}
.intro_01_a .wrap > ul > li:nth-child(2) > ol > li:nth-child(1) > .box > i{
    background-image: url(../img/intro/intro_01_a_img_1.svg);
}
.intro_01_a .wrap > ul > li:nth-child(2) > ol > li:nth-child(2) > .box > i{
    background-image: url(../img/intro/intro_01_a_img_2.svg);
}
.intro_01_a .wrap > ul > li:nth-child(2) > ol > li:nth-child(3) > .box > i{
    background-image: url(../img/intro/intro_01_a_img_3.svg);
}
.intro_01_a .wrap > ul > li:nth-child(2) > ol > li:nth-child(4) > .box > i{
    background-image: url(../img/intro/intro_01_a_img_4.svg);
}
/* 통증 케어 시스템 */
.intro_01_b{}
.intro_01_b .wrap{}
.intro_01_b .wrap > ul{}
.intro_01_b .wrap > ul > li{
    background-color: #fff;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
}
.intro_01_b .wrap > ul > li:last-child{margin-bottom: 0;}
.intro_01_b .wrap > ul > li > div{}
.intro_01_b .wrap > ul > li > .img{width: 45%;}
.intro_01_b .wrap > ul > li > .img img{}
.intro_01_b .wrap > ul > li > .txt{width: 55%; margin-left: 60px;}
.intro_01_b .wrap > ul > li > .txt > span{
    font-weight: 700;
    background-color: var(--color-d);
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
}
.intro_01_b .wrap > ul > li > .txt > h4{
    font-size: 1.5625rem;
    font-weight: 700;
    margin: 20px 0 25px;
}
.intro_01_b .wrap > ul > li > .txt > p{}
/* 공정거래위원회 임플란트 표준약관 채택 */
.intro_01_c{
    background-color: var(--gray-d);
    border-radius: 20px;
}
.intro_01_c .wrap{position: relative; z-index: 1;}
.intro_01_c .wrap::after{
    content: ""; position: absolute; z-index: -2;
    width: 441px; height: 287px;
    background-size: cover;
    background-position: center center;
    background-image: url(../img/intro/intro_01_a_bgi_2.png);
    bottom: 0; left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.intro_01_c .wrap > div{}
.intro_01_c .wrap > .left{width: 50%; padding: 80px;}
.intro_01_c .wrap > .left > div{}
.intro_01_c .wrap > .left > .txt_top{}
.intro_01_c .wrap > .left > .txt_top img{display: block;}
.intro_01_c .wrap > .left > .txt_top img:nth-child(1){
    margin-bottom: 10px;
    max-width: 150px;
}
.intro_01_c .wrap > .left > .txt_top img:nth-child(2){max-width: 380px;}
.intro_01_c .wrap > .left > .txt_top .pc_img{}
.intro_01_c .wrap > .left > .txt_top .m_img{display: none;}
.intro_01_c .wrap > .left > .txt_top::after{
    content: ""; display: block;
    width: 20px; height: 1px;
    background-color: var(--color-d);
    margin: 20px 0 25px;
}
.intro_01_c .wrap > .left > .txt_bottom{}
.intro_01_c .wrap > .left > .txt_bottom > p{margin-bottom: 20px;}
.intro_01_c .wrap > .left > .txt_bottom > p:last-child{margin-bottom: 0;}
.intro_01_c .wrap > .right{
    position: absolute;
    z-index: -1;
    bottom: 0; right: 40px;
}
/* 특징 */
.intro_01_d{}
.intro_01_d .wrap{}
.intro_01_d .wrap > ul{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.intro_01_d .wrap > ul:last-child{margin-bottom: 0;}
.intro_01_d .wrap > ul > li{width: 50%;}
.intro_01_d .wrap > ul > li:nth-child(1){}
.intro_01_d .wrap > ul > li:nth-child(2){}
.intro_01_d .wrap > ul > li img{border-radius: 20px;}
.intro_01_d .wrap > ul > li .txt{}
.intro_01_d .wrap > ul > li .txt span{
    color: var(--color-d);
    font-size: 2.8125rem;
    font-family: 'Nanum Myeongjo', serif;
    font-weight: 700;
    letter-spacing: -1px;
    opacity: 0.35;
}
.intro_01_d .wrap > ul > li .txt h4{
    font-size: 1.5625rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-d);
    min-height: 3.75rem;
    margin: 5px 0 25px;
}
.intro_01_d .wrap > ul > li .txt p{}

.intro_01_d .wrap > ul:nth-child(odd){
}
.intro_01_d .wrap > ul:nth-child(odd) > li:nth-child(2){margin-left: 60px;}
.intro_01_d .wrap > ul:nth-child(even){
    flex-direction: row-reverse;
}
.intro_01_d .wrap > ul:nth-child(even) > li:nth-child(2){margin-right: 60px;}
.intro_01_d .wrap > ul:nth-child(even) > li:nth-child(2) .txt{text-align: right;}
/* 배너 */
.intro_01_e{
    background-image: url(../img/intro/intro_01_a_bgi.jpg);
    background-size: cover;
    background-position: center center;
}
.intro_01_e .wrap{text-align: center;}
.intro_01_e .wrap > img{
    margin-bottom: 30px;
    max-width: 180px;
}
.intro_01_e .wrap > p{
    font-family: 'Nanum Myeongjo', serif;
    font-size: 1.875rem;
    font-weight: 700;
    display: block;
    position: relative;
    z-index: 1;
    line-height: 1.5;
    color: #fff;
}
/*// 수성웰치과의 특별함 */

/* 의료진소개 */
.intro_02_a{}
.intro_02_a .wrap{}
.intro_02_a .wrap > ul{}
.intro_02_a .wrap > ul > li{
    display: flex;    
    align-items: flex-start;
}
.intro_02_a .wrap > ul > li > div{}
.intro_02_a .wrap > ul > li > .left{
    width: 35%;
    margin-right: 100px;
    background-color: var(--gray-d);
    position: relative; z-index: 1;
}
.intro_02_a .wrap > ul > li > .left::after{
    content: "";
    position: absolute;
    z-index: -1;
    width: 260px;
    height: 166px;
    top: 115px;
    left: 20px;
    background-image: url(../img/intro/intro_02_a_bgi_1.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.05;
}
.intro_02_a .wrap > ul > li > .left > img{
    float: right;
    margin-right: -30px;
}
.intro_02_a .wrap > ul > li > .right{width: 65%;}
.intro_02_a .wrap > ul > li > .right > ol{}
.intro_02_a .wrap > ul > li > .right > ol > li{}
.intro_02_a .wrap > ul > li > .right > .name_wrap{}
.intro_02_a .wrap > ul > li > .right > .name_wrap::after{
    content: "";
    display: block;
    width: 20px;
    height: 0.5px;
    background-color: var(--color-d);
    margin: 20px 0 25px;
}
.intro_02_a .wrap > ul > li > .right > .name_wrap > li.name_title{margin-bottom: 5px;}
.intro_02_a .wrap > ul > li > .right > .name_wrap > li.name_title > span{
    position: relative;
    margin-right: 20px;
    font-weight: 500;
}
.intro_02_a .wrap > ul > li > .right > .name_wrap > li.name_title > span:last-child{
    margin-right: 0;
}
.intro_02_a .wrap > ul > li > .right > .name_wrap > li.name_title > span::after{
    content: "";
    position: absolute;
    width: 0.5px;
    height: 10px;
    background-color: var(--gray-a);
    top: 50%;
    right: -9px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.intro_02_a .wrap > ul > li > .right > .name_wrap > li.name_title > span:last-child:after{display: none;}
.intro_02_a .wrap > ul > li > .right > .name_wrap > li.name{
    margin-top: 10px;
    font-size: 1.25rem;
}
.intro_02_a .wrap > ul > li > .right > .name_wrap > li.name > span{
    font-family: 'Nanum Myeongjo', serif;
    font-weight: 900;
    font-size: 1.5em;
    margin-right: 5px;
}
.intro_02_a .wrap > ul > li > .right > .txt_top{margin-bottom: 30px;}
.intro_02_a .wrap > ul > li > .right > .txt_top > li{
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: var(--color-d);
    font-weight: 700;
}
.intro_02_a .wrap > ul > li > .right > .txt_top > li:last-child{margin-bottom: 0;}
.intro_02_a .wrap > ul > li > .right > .txt_bottom{}
.intro_02_a .wrap > ul > li > .right > .txt_bottom > li{display: flex;}
.intro_02_a .wrap > ul > li > .right > .txt_bottom > li > .wrap{width: 50%;}
.intro_02_a .wrap > ul > li > .right > .txt_bottom > li > .wrap p{margin-bottom: 5px;}
.intro_02_a .wrap > ul > li > .right > .txt_bottom > li > .wrap p:last-of-type{margin-bottom: 0;}
.intro_02_a .wrap > ul > li > .right > .txt_bottom > li > .wrap > div{margin-top: 20px;}
.intro_02_a .wrap > ul > li.border{
    width: 100%; height: 1px;
    background-color: var(--gray-c);
    margin: 60px 0;
}
/*// 의료진소개 */
/* 감염관리시스템 */
.intro_04_a{}
.intro_04_a .wrap{}
.intro_04_a .wrap .box{
    border-radius: 20px;
    background-color: var(--gray-d);
    padding: 80px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.intro_04_a .wrap .box::after{
    content: ""; position: absolute; z-index: -1;
    background-image: url(../img/intro/intro_04_a_bgi_1.png);
    bottom: 0;
    right: 0;
    width: 562px;
    height: 100%;
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;

}
.intro_04_a .wrap .box > h4{
    font-size: 1.875rem;
    line-height: 1.2;
    font-family: 'Nanum Myeongjo', serif;
    font-weight: 700;
    word-break: keep-all;
}
.intro_04_a .wrap .box > h4 > strong{color: var(--color-d);}
.intro_04_a .wrap .box > p{font-size: 1.125rem;}
.intro_04_a .wrap .box .border{
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background-color: var(--color-d);
    margin: 20px 0 25px;
}

.intro_04_b{}
.intro_04_b .wrap > ul{position: relative; z-index: 1;}
.intro_04_b .wrap > ul::after{
    content: "";
    z-index: -1;
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: var(--gray-c);
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.intro_04_b .wrap > ul > li{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid var(--gray-c);
    background-color: #fff;
}
.intro_04_b .wrap > ul > li:last-child{margin-bottom: 0;}
.intro_04_b .wrap > ul > li > div{
    box-sizing: border-box;
    padding: 0 30px;
}
.intro_04_b .wrap > ul > li > .left{
    width: 30%;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    min-height: 4.375rem;
    line-height: 4.375rem;
    position: relative;
    z-index: 1;
}
.intro_04_b .wrap > ul > li > .left::after{
    content: ""; position: absolute; z-index: -1;
    background-image: url(../img/intro/intro_04_a_bgi_2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0; right: 15px;
    width: 110px; height: 100%;
    opacity: 0.08;
}

.intro_04_b .wrap > ul > li > .right{
    width: 70%;
    font-weight: 300;
}
/* 소독과정 색상 */
.intro_04_b .wrap > ul > li:nth-child(1) > .left{background-color: #17ACEE;}
.intro_04_b .wrap > ul > li:nth-child(2) > .left{background-color: #2198E3;}
.intro_04_b .wrap > ul > li:nth-child(3) > .left{background-color: #2A84D8;}
.intro_04_b .wrap > ul > li:nth-child(4) > .left{background-color: #3470CD;}
.intro_04_b .wrap > ul > li:nth-child(5) > .left{background-color: #3D5CC2;}
.intro_04_b .wrap > ul > li:nth-child(6) > .left{background-color: #4748B7;}
.intro_04_b .wrap > ul > li:nth-child(7) > .left{background-color: #5034AC;}
.intro_04_b .wrap > ul > li:nth-child(8) > .left{background-color: #5A20A1;}
/*// 소독과정 색상 */
.intro_04_c .wrap .box{text-align: right;}
.intro_04_c .wrap .box::after{
    background-image: url(../img/intro/intro_04_a_bgi_3.png);
    background-position: center left;
    right: inherit;
    left: 0;
    width: 620px;
}
.intro_04_c .wrap .box .border{float: right;}
.intro_04_c .wrap .box  > p{clear: both;}
/*// 감염관리시스템 */
/* 장비소개 */
.intro_05_a{}
.intro_05_a .wrap{}
.intro_05_a .wrap > ul{
    display: flex;
    flex-wrap: wrap;
    margin-left: -60px;
}
.intro_05_a .wrap > ul > li{
    width: -webkit-calc(100% / 3 - 60px);
    width: -moz-calc(100% / 3 - 60px);
    width: -o-calc(100% / 3 - 60px);
    width: calc(100% / 3 - 60px);
    margin-left: 60px;
    margin-bottom: 80px;
    border-top: 2px solid var(--color-a);
    border-bottom: 2px solid var(--color-d);
    padding-bottom: 40px;
}
.intro_05_a .wrap > ul > li > div{}
.intro_05_a .wrap > ul > li > .img{border-bottom: 1px solid var(--gray-c);}
.intro_05_a .wrap > ul > li > .img img{width: 100%;}
.intro_05_a .wrap > ul > li > .txt{}
.intro_05_a .wrap > ul > li > .txt > span{
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin: 20px 0;
    line-height: 1.3;
    word-break: keep-all;
}
.intro_05_a .wrap > ul > li > .txt > p{}
/*// 장비소개 */
/* 진료시간안내 */
.intro_06_a{}
.intro_06_a .wrap{}
.intro_06_a .wrap .box{position: relative;}
.intro_06_a .wrap .box .txt_wrap{
    position: absolute;
    top: 0; left: 0;
    max-width: 500px;
    width: 100%; height: 100%;
    box-sizing: border-box;
    padding: 42px 40px;
    background-color: rgba(15, 100, 185, 0.9);
    color: #fff;
    z-index: 2;
}
.intro_06_a .wrap .box .txt_wrap > div{margin-bottom: 20px;}
.intro_06_a .wrap .box .txt_wrap > div:last-child{margin-bottom: 0;}
.intro_06_a .wrap .box .txt_wrap > .txt_top{}
.intro_06_a .wrap .box .txt_wrap > .txt_top > h4{
    font-size: 1.875rem; font-weight: 700; margin-bottom: 15px;
}
.intro_06_a .wrap .box .txt_wrap > .txt_top > p{}

.intro_06_a .wrap .box .txt_wrap > .txt_middle{}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > div{}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > div > span{
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > div > span::before{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: sub;
    margin-right: 5px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > .tel_wrap{margin-bottom: 15px;}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > .tel_wrap > span{}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > .tel_wrap > span::before{
    background-image: url(../img/intro/icon_intro_tel.svg);
}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > .tel_wrap > a{
    font-size: 2.1875rem;
    font-weight: 700;
    position: relative;
}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > .tel_wrap > a::after{
    content: ""; position: absolute; display: none;
    width: 100%; height: 2px;
    bottom: 2px; left: 0;
    background-color: #fff;    
}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > .tel_wrap > a:hover::after{
    display: block;
}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > .link_wrap{}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > .link_wrap > span::before{
    background-image: url(../img/intro/icon_intro_counsel.svg);
}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > .link_wrap > div{display: flex;}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > .link_wrap > div > a{
    display: block;
    width: 100%;
    border: 1px solid #fff;
    background-color: #fff;
    box-sizing: border-box;
    color: var(--color-d);
    text-align: center;
    padding: 12px 10px;
    margin-right: 10px;
}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > .link_wrap > div > a:last-child{margin-right: 0;}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > .link_wrap > div > a::before{
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    vertical-align: text-top;
    margin-right: 5px;
}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > .link_wrap > div > a:hover{
    background-color: transparent;
    color: #fff;
}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > .link_wrap > div > a:nth-child(1)::before{
    background-image: url(../img/intro/icon_intro_talk_01.svg);
}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > .link_wrap > div > a:hover:nth-child(1)::before{
    background-image: url(../img/intro/icon_intro_talk_02.svg);
}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > .link_wrap > div > a:nth-child(2)::before{
    background-image: url(../img/intro/icon_intro_reserve_01.svg);
}
.intro_06_a .wrap .box .txt_wrap > .txt_middle > .link_wrap > div > a:hover:nth-child(2)::before{
    background-image: url(../img/intro/icon_intro_reserve_02.svg);
}

.intro_06_a .wrap .box .txt_wrap > .txt_bottom{}
.intro_06_a .wrap .box .txt_wrap > .txt_bottom table{width: 100%;}
.intro_06_a .wrap .box .txt_wrap > .txt_bottom table tbody{    
    border-top: 0.5px solid #fff;
    border-bottom: 0.5px solid #fff;
}
.intro_06_a .wrap .box .txt_wrap > .txt_bottom table tr{
    border-bottom: 0.5px dashed rgba(255, 255, 255, 0.5);
}
.intro_06_a .wrap .box .txt_wrap > .txt_bottom table tr:last-child{border: 0;}
.intro_06_a .wrap .box .txt_wrap > .txt_bottom table tr th,
.intro_06_a .wrap .box .txt_wrap > .txt_bottom table tr td{padding: 10px 5px;}
.intro_06_a .wrap .box .txt_wrap > .txt_bottom table tr th{width: 40%;}
.intro_06_a .wrap .box .txt_wrap > .txt_bottom table tr td{width: 60%;}

.intro_06_a .wrap .intro_slide{
    overflow: hidden;
    position: relative;
}
.intro_06_a .wrap .intro_slide .intro_slide_pagination{
    position: absolute;
    bottom: 15px;
    right: 20px;
    z-index: 1;
    text-align: right;
    width: auto;
}
.intro_06_a .wrap .intro_slide .intro_slide_pagination .swiper-pagination-bullet{
    width: 13px;
    height: 13px;
    background: transparent;
    border: 1px solid #fff;
    box-sizing: border-box;
    opacity: 1;
    box-shadow: 0 0 5px rgb(0, 0, 0, 0.2);
}
.intro_06_a .wrap .intro_slide .intro_slide_pagination .swiper-pagination-bullet-active{
    width: 45px;
    border-radius: 30px;
    background-color: #fff;
}
/*// 진료시간안내 */
/* 오시는길 */
.intro_07_a{}
.intro_07_a .wrap{}
.intro_07_a .wrap .box{}
.intro_07_a .wrap .box > div{margin-bottom: 40px;}
.intro_07_a .wrap .box > .map{    
    display: flex;
}
.intro_07_a .wrap .box > .map > div{
    width: -webkit-calc(100% - 520px);
    width: -moz-calc(100% - 520px);
    width: calc(100% - 520px);
}
.intro_07_a .wrap .box > .map > img{margin-left: 20px;}
.intro_07_a .wrap .box > .map iframe{vertical-align: top;}
.intro_07_a .wrap .box > .address{}
.intro_07_a .wrap .box > .address table{width: 100%;}
.intro_07_a .wrap .box > .address table tr:first-child th,
.intro_07_a .wrap .box > .address table tr:first-child td{
    border-top: 2px solid var(--color-d);
}
.intro_07_a .wrap .box > .address table tr{
    border-bottom: 0.5px solid var(--gray-c);
}
.intro_07_a .wrap .box > .address table tr th,
.intro_07_a .wrap .box > .address table tr td{
    vertical-align: middle;
    word-break: keep-all;
}
.intro_07_a .wrap .box > .address table tr th{
    font-weight: 700;
    width: 25%;
    border-right: 0.5px solid var(--gray-c);
    background-color: var(--gray-d);
    padding: 20px 10px;
}
.intro_07_a .wrap .box > .address table tr td{
    width: 75%;
    padding: 20px 30px;
}
.intro_07_a .wrap .box > .address table tr td > p{margin-bottom: 10px; font-weight: 500;}
.intro_07_a .wrap .box > .address table tr td > p:last-child{margin-bottom: 0;}
/*// 오시는길 */

/*// 수성웰치과 */

/* 진료과목 스타일 */
.sub_info_txt{text-align: center;}
.sub_info_txt > li{margin-bottom: 40px;}
.sub_info_txt > li.title::after{
    content: "";
    display: block;
    width: 20px; height: 1px;
    background-color: var(--color-d);
    margin: 30px auto 0;

}
.sub_info_txt > li p{
    font-size: 1.25rem;
    font-weight: 500;
}
.sub_info_txt > li.title > p{
    font-size: 1.5625rem;
    font-weight: 700;
    line-height: 1.2;
}
.sub_info_txt > li.title > p > strong{color: var(--color-d);}

.sub_info_img{
    display: flex; flex-wrap: wrap;
    margin-left: -80px; margin-bottom: -60px;
}
.sub_info_img > li{
    width: -webkit-calc(100% / 2 - 80px);
    width: -moz-calc(100% / 2 - 80px);
    width: -o-calc(100% / 2 - 80px);
    width: calc(100% / 2 - 80px);
    margin-left: 80px;
    margin-bottom: 60px;
}
.sub_info_img > li > div{}
.sub_info_img > li > .img{position: relative;}
.sub_info_img > li > .img .num{
    position: absolute;    
    background-color: #fff;
}
.sub_info_img > li:nth-child(1) > .img .num{
    top: -1px; left: -1px;
    border-radius: 20px 0;
}
.sub_info_img > li:nth-child(2) > .img .num{
    top: -1px; right: -1px;
    border-radius: 0 20px;
}
.sub_info_img > li:nth-child(3) > .img .num{
    bottom: -1px; left: -1px;
    border-radius: 0 20px;
}
.sub_info_img > li:nth-child(4) > .img .num{
    bottom: -1px; right: -1px;
    border-radius: 20px 0;
}

.sub_info_img > li > .img .num > span{
    font-family: 'Nanum Myeongjo', serif;
    font-size: 2.1875rem;
    font-weight: 700;
    display: inline-block;
    width: 95px; height: 80px;
    line-height: 80px;
    text-align: center;
    color: var(--color-d);
}
.sub_info_img > li > .img > img{
    border-radius: 20px;
    width: 100%;
}
.sub_info_img > li > .txt{
    text-align: center;
    margin-top: 40px;
}
.sub_info_img > li > .txt > span{
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.sub_info_img > li > .txt > p{}

.sub_list_wrap{
    display: flex;
    justify-content: center;
    margin-left: -40px;
}
.sub_list_wrap > li{
    width: 100%;
    margin-left: 40px;
    background-color: var(--color-b);
    text-align: center;
    padding: 70px 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}
.sub_list_wrap > li:nth-child(even){
    background-color: var(--color-c);
}
.sub_list_wrap > li .num{
    background-color: #fff;
    border-radius: 100%;
    margin: 0 auto 20px;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
}
.sub_list_wrap > li .num > span{
    display: inline-block;
    font-size: 1.5625rem;
    font-weight: 700;
    line-height: 48px;
    color: var(--color-b);
}
.sub_list_wrap > li:nth-child(even) .num > span{color: var(--color-c);}
.sub_list_wrap > li .title{
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}
.sub_list_wrap > li > p{color: #fff; font-size: 1.125rem;}
.sub_list_wrap > li > p > strong{font-weight: 700;}

.sub_list02_wrap{}
.sub_list02_wrap > li{
    background-color: #fff;
    border: 2px solid var(--color-b);
    padding: 60px 20px;
}
.sub_list02_wrap > li:nth-child(even){
    background-color: #fff;
    border: 2px solid var(--color-c);
}
.sub_list02_wrap > li .num{
    background-color: var(--color-b);
}
.sub_list02_wrap > li:nth-child(even) .num{background-color: var(--color-c);}
.sub_list02_wrap > li .num > span{color: #fff;}
.sub_list02_wrap > li:nth-child(even) .num > span{color: #fff;}
.sub_list02_wrap > li .title{
    color: var(--color-a);
}
.sub_list02_wrap > li > p{
    color: var(--color-a);
    font-size: 1rem;
}

.sub_list03_wrap{}
.sub_list03_wrap > li{padding: 50px 20px;}
.sub_list03_wrap > li:nth-child(even){}
.sub_list03_wrap > li .num{
    max-width: 120px;
    width: 100%;
    border-radius: 30px;
    height: auto;
    padding: 10px 0;
}
.sub_list03_wrap > li:nth-child(even) .num{}
.sub_list03_wrap > li .num > span{
    font-size: 1.125rem;
    line-height: 1;
}
.sub_list03_wrap > li:nth-child(even) .num > span{}
.sub_list03_wrap > li .title{}
.sub_list03_wrap > li > p{}
.sub_list03_wrap > li .img{display: block; margin-bottom: 20px;}
.sub_list03_wrap > li .img img{
    width: 80px; height: auto;
}

.sub_list03_wrap > li:nth-child(1){border-color: var(--color-b);}
.sub_list03_wrap > li:nth-child(1) .num{background-color: var(--color-b);}
.sub_list03_wrap > li:nth-child(2){border-color: var(--color-c);}
.sub_list03_wrap > li:nth-child(2) .num{background-color: var(--color-c);}
.sub_list03_wrap > li:nth-child(3){border-color: var(--color-d);}
.sub_list03_wrap > li:nth-child(3) .num{background-color: var(--color-d);}

.sub_product_wrap{
    display: flex;
    justify-content: center;
}
.sub_product_wrap > li{
    margin: 0 40px;
    text-align: center;
}
.sub_product_wrap > li > div{}
.sub_product_wrap > li > .img{}
.sub_product_wrap > li > .img > img{}
.sub_product_wrap > li > .txt{margin-top: 20px;}
.sub_product_wrap > li > .txt > span{
    display: block;
    font-size: 1.5625rem;
    font-weight: 700;
    color: #fff;
    background-color: var(--color-d);
    padding: 10px 0 14px;
    border-radius: 20px;
}
.sub_product_wrap > li > .txt > p{margin-top: 20px;}

.sub_imgtxt_wrap{}
.sub_imgtxt_wrap > li{
    background-color: var(--gray-d);
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
}
.sub_imgtxt_wrap > li:last-child{margin-bottom: 0;}
.sub_imgtxt_wrap > li > div{}
.sub_imgtxt_wrap > li > .img{width: 45%;}
.sub_imgtxt_wrap > li > .img img{}
.sub_imgtxt_wrap > li > .txt{
    width: 55%;
    margin-left: 60px;
}
.sub_imgtxt_wrap > li > .txt > div{}
.sub_imgtxt_wrap > li > .txt > .top{margin-bottom: 40px;}
.sub_imgtxt_wrap > li > .txt > .top > ol{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.sub_imgtxt_wrap > li > .txt > .top > ol:last-child{margin-bottom: 0;}
.sub_imgtxt_wrap > li > .txt > .top > ol > li{}
.sub_imgtxt_wrap > li > .txt > .top > ol > li:first-child{margin-right: 10px;}
.sub_imgtxt_wrap > li > .txt > .top > ol > li > span{
    font-weight: 700;
    background-color: var(--color-d);
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    min-width: 50px;
    text-align: center;
}
.sub_imgtxt_wrap > li > .txt > .top > ol > li > p{}
.sub_imgtxt_wrap > li > .txt > .bottom{}
.sub_imgtxt_wrap > li > .txt > .bottom > p{}
.sub_imgtxt_wrap > li > .txt > .bottom > p > strong{font-weight: 700;}

.sub_con_wrap{
    border-radius: 20px;
    background-color: var(--gray-d);
    padding: 80px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.sub_con_wrap::after{
    content: ""; position: absolute; z-index: -1;
    bottom: 0;
    right: 0;
    width: 562px;
    height: 100%;
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
}
.sub_con_wrap h4{
    font-size: 1.875rem;
    line-height: 1.2;
    font-family: 'Nanum Myeongjo', serif;
    font-weight: 700;
    word-break: keep-all;
}
.sub_con_wrap h4 > strong{color: var(--color-d);}
.sub_con_wrap h5{
    font-weight: 700;
    font-size: 1.25rem;
    word-break: keep-all;
    color: var(--color-d);
    margin-bottom: 20px;
}
.sub_con_wrap .border{
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background-color: var(--color-d);
    margin: 20px 0 25px;
}
.sub_con_wrap02{overflow: inherit;}
.sub_con_wrap02 .right{
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 5%;
}

.sub_round_wrap{
    display: flex;
    justify-content: center;
    margin-left: -40px;
}
.sub_round_wrap > li{
    width: -webkit-calc(100% / 4 - 40px);
    width: -moz-calc(100% / 4 - 40px);
    width: -o-calc(100% / 4 - 40px);
    width: calc(100% / 4 - 40px);
    margin-left: 40px;
    text-align: center;
}
.sub_round_wrap > li > div{}
.sub_round_wrap > li > .img{}
.sub_round_wrap > li > .img img{}
.sub_round_wrap > li > .txt{margin-top: 20px;}
.sub_round_wrap > li > .txt > p{
    font-size: 1.25rem;
    font-weight: 700;
}
.sub_round02_wrap > li{width: 100%;}
.sub_round02_wrap > li > .txt > span{
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-d);
    display: block; margin-bottom: 10px;
}
.sub_round02_wrap > li > .txt > p{
    font-size: 1rem; font-weight: 300;
    width: 80%; margin: 0 auto;
}

.sub_process_wrap{
    display: flex;
    margin-left: -40px;
}
.sub_process_wrap > li{margin-left: 40px;}
.sub_process_wrap > li > div{}
.sub_process_wrap > li > .img{}
.sub_process_wrap > li > .img img{}
.sub_process_wrap > li > .txt{
    background-color: var(--color-d);
    position: relative;
    color: #fff;
    font-size: 1.125rem;
}
.sub_process_wrap > li > .txt > span{
    background-color: var(--color-d);
    font-weight: 700;
    position: absolute;    
    height: 45px;
    line-height: 45px;
    top: -44px;
    width: 120px;
    text-align: center;
    border-radius: 0 20px 0 0;
}
.sub_process_wrap > li > .txt .txt_box{
    position: relative;
    height: 80px;
}
.sub_process_wrap > li > .txt .txt_box > p{
    position: absolute; text-align: center;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.sub_process_wrap > li > table{
    width: 100%;
    border-bottom: 2px solid var(--color-d);
}
.sub_process_wrap > li > table tr{
    border-bottom: 0.5px solid var(--gray-c);
}
.sub_process_wrap > li > table tr:last-child{border-bottom: 0;}
.sub_process_wrap > li > table tr th,
.sub_process_wrap > li > table tr td{
    padding: 15px 5px;
    vertical-align: middle;
    line-height: 1.5;
}
.sub_process_wrap > li > table tr th{
    width: 25%; text-align: center;
    border-right: 0.5px solid var(--gray-c);
}
.sub_process_wrap > li > table tr td{
    width: 75%;
    padding-left: 20px;
}
.sub_process_wrap > li > .info_txt{
    background-color: #fff;
    border-bottom: 2px solid var(--color-d);
    padding: 20px 10px;
    box-sizing: border-box;
    min-height: 120px;
}


.sub_process02_wrap{flex-wrap: wrap; margin-bottom: -40px;}
.sub_process02_wrap > li{
    width: -webkit-calc(100% / 2 - 40px);
    width: -moz-calc(100% / 2 - 40px);
    width: -o-calc(100% / 2 - 40px);
    width: calc(100% / 2 - 40px);
    margin-bottom: 40px;
}
.sub_process02_wrap > li > .txt .txt_box{height: 60px;}
.sub_process02_wrap > li > .txt .txt_box > p{font-weight: 700;}

.sub_process03_wrap{}
.sub_process03_wrap > li{
    width: -webkit-calc(100% / 4 - 40px);
    width: -moz-calc(100% / 4 - 40px);
    width: -o-calc(100% / 4 - 40px);
    width: calc(100% / 4 - 40px);
}
.sub_process03_wrap > li > .txt .txt_box{height: 60px;}
.sub_process03_wrap > li > .txt .txt_box > p{font-weight: 700;}

.sub_qna_wrap{
    background-color: #fff;
    border-top: 2px solid var(--color-a);
    border-bottom: 2px solid var(--color-a);
}
.sub_qna_wrap > ul{}
.sub_qna_wrap > ul > li{
    padding: 20px;
    border-bottom: 0.5px solid var(--gray-c);
}
.sub_qna_wrap > ul > li > p{
    display: flex;
    align-items: center;
    line-height: 1.5;
}
.sub_qna_wrap > ul > li > p > i{
    font-size: 1.5625rem;
    font-weight: 700;
    display: inline-block;
    margin-right: 5px;
}
.sub_qna_wrap > ul > li.q{}
.sub_qna_wrap > ul > li.q > p{font-weight: 700;}
.sub_qna_wrap > ul > li.q > p > i{color: var(--color-c);}
.sub_qna_wrap > ul > li.a{background-color: var(--gray-d);}
.sub_qna_wrap > ul > li.a > p{}
.sub_qna_wrap > ul > li.a > p > i{color: var(--color-e);}

.sub_compare_wrap{
    width: 100%;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    isolation: isolate;
}
.sub_compare_wrap tr{}
.sub_compare_wrap tr:last-child{border-bottom: 2px solid var(--color-a);}
.sub_compare_wrap tr:first-child td,
.sub_compare_wrap tr:last-child td{border-bottom: 0;}
.sub_compare_wrap tr td{
    text-align: center; font-size: 1.125rem; vertical-align: middle;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
    word-break: keep-all;
    line-height: 1.5;
    padding: 20px 5px;
}
.sub_compare_wrap tr td > img{width: 100%;}
.sub_compare_wrap tr td.td_a{width: 40%;}
.sub_compare_wrap tr .tb_img{padding: 0;}

.sub_compare_wrap tr td.compare_a{background-color: var(--gray-b); color: #fff;}
.sub_compare_wrap tr td.compare_b{background-color: var(--color-d); color: #fff;}

.sub_compare_wrap tr td.td_b{
    width: 20%;
    background-color: var(--gray-d);
    font-weight: 700;
    border-left: 0.5px solid var(--gray-c);
    border-right: 0.5px solid var(--gray-c);
}

.sub_compare_wrap tr.tr_a td{font-weight: 700;}

.sub_chk_wrap{
    display: flex; flex-wrap: wrap;
    margin-left: -20px;
    margin-bottom: -20px;
}
.sub_chk_wrap > li{
    padding: 20px 40px;
    background-color: var(--gray-d);    
    border-radius: 50px;
    box-sizing: border-box;
    margin-left: 20px;
    margin-bottom: 20px;
    width: -webkit-calc(100% / 2 - 20px);
    width: -moz-calc(100% / 2 - 20px);
    width: -o-calc(100% / 2 - 20px);
    width: calc(100% / 2 - 20px);
}
.sub_chk_wrap > li > p{
    font-size: 1.125rem;
    font-weight: 500;
}
.sub_chk_wrap > li > p > i{
    display: inline-block;
    vertical-align: middle;
    width: 30px; height: 30px;
    margin-right: 10px;
    background-image: url(../img/icon_sub_chk_1.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.sub_chk02_wrap{}
.sub_chk02_wrap > li{
    background-color: var(--gray-d);
    border-radius: 50px;
    padding: 10px 50px;
    margin: 0 auto 20px;
    box-sizing: border-box;
}
.sub_chk02_wrap > li:last-child{margin-bottom: 0;}
.sub_chk02_wrap > li > div{
    font-size: 1.125rem;
    display: flex; align-items: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.sub_chk02_wrap > li > div > .num{
    display: inline-block;
    font-weight: 700;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 100%;
    margin-right: 20px;
    color: #fff;
}
.sub_chk02_wrap > li > div > p{font-weight: 500;}
.sub_chk02_wrap > li > div > p > strong{font-weight: 700;}
.sub_chk02_wrap > li:nth-child(odd) > div > .num{background-color: var(--color-b);}
.sub_chk02_wrap > li:nth-child(even) > div > .num{background-color: var(--color-c);}

.sub_roundbox_wrap{
    display: flex;
    justify-content: center;
}
.sub_roundbox_wrap > li{
    border: 5px solid #000;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 100%;
    margin: 0 20px;
    position: relative;
    width: 220px; height: 220px;
}
.sub_roundbox_wrap > li .round{
    position: absolute;
    text-align: center;
    width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);    
}
.sub_roundbox_wrap > li .round > span,
.sub_roundbox_wrap > li .round > p{font-weight: 700;}
.sub_roundbox_wrap > li .round > span{
    display: inline-block;
    width: 110px;
    height: 40px;
    line-height: 40px;
    border-radius: 30px;
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 10px;
    background-color: #000;
}
.sub_roundbox_wrap > li .round > p{
    font-size: 1.25rem;
}
.sub_roundbox_wrap > li .round > p > i{
    display: block; font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.2;
    width: 85%;
    margin: 10px auto 0;
}
/* 라운드박스 색상설정 */
.sub_roundbox_wrap > li:nth-child(1){border-color: var(--color-b);}
.sub_roundbox_wrap > li:nth-child(1) .round > span{background-color: var(--color-b);}
.sub_roundbox_wrap > li:nth-child(1) .round > p{color: var(--color-b);}
.sub_roundbox_wrap > li:nth-child(2){border-color: var(--color-c);}
.sub_roundbox_wrap > li:nth-child(2) .round > span{background-color: var(--color-c);}
.sub_roundbox_wrap > li:nth-child(2) .round > p{color: var(--color-c);}
.sub_roundbox_wrap > li:nth-child(3){border-color: var(--color-d);}
.sub_roundbox_wrap > li:nth-child(3) .round > span{background-color: var(--color-d);}
.sub_roundbox_wrap > li:nth-child(3) .round > p{color: var(--color-d);}
/*// 라운드박스 색상설정 */

.notice_con_box{
    margin-top: 40px;
    background-color: #fff;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid var(--gray-c);
    box-sizing: border-box;        
    border-radius: 10px;
}
.notice_con_box > p{
    font-size: 1.125rem;
    font-weight: 500;
}
.notice_con_box > p > strong{color: var(--color-d);}

/*// 진료과목 스타일 */

/* 컴퓨터분석임플란트 */

/* 체계적인 임플란트 시스템 */
.implant_01_a{}
.implant_01_a .wrap{}
.implant_01_a .wrap .sub_info_txt{margin-top: 60px;}
/*// 체계적인 임플란트 시스템 */
/* 임플란트 방법&종류 */
.implant_02_a .sub_process_wrap{margin-bottom: 40px;}
.implant_02_b .sub_round_wrap > li > .img{
    position: relative;
    width: 200px; height: 200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 100%;
}
.implant_02_b .sub_round_wrap > li > .img img{
    max-width: 100px;
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.implant_02_d{}
.implant_02_d .wrap{}
.implant_02_d .wrap .sub_product_wrap{}
.implant_02_d .wrap .sub_product_wrap > li{
    margin: 0 20px;
    width: 100%;
    max-width: 500px;
}
.implant_02_d .wrap .sub_product_wrap > li > .txt{margin-top: 0;}
.implant_02_d .wrap .sub_product_wrap > li > .txt > span{
    border-radius: 0;
    padding: 15px 0 18px;
}
.implant_02_d .wrap .sub_product_wrap > li > .txt > ol{
    border: 1px solid var(--gray-c);
}
.implant_02_d .wrap .sub_product_wrap > li > .txt > ol > li{
    font-size: 1.125rem;
    padding: 15px 0;
}
.implant_02_d .wrap .sub_product_wrap > li:nth-child(1) > .txt > span{
    background-color: var(--gray-b);
}
/*// 임플란트 방법&종류 */
/* 즉시기능 임플란트 */
.implant_04_a .sub_list02_wrap{margin-left: -25px;}
.implant_04_a .sub_list02_wrap > li{margin-left: 25px;}

.implant_04_b .wrap{}
.implant_04_b .wrap .compare{
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
}
.implant_04_b .wrap .compare > div{}
.implant_04_b .wrap .compare > .left{
    width: 200px;
    text-align: center;
    padding: 45px 0;
}
.implant_04_b .wrap .compare > .left span{
    font-size: 1.5625rem; line-height: 1.2; color: #fff;
}
.implant_04_b .wrap .compare > .left span > strong{font-weight: 700;}
.implant_04_b .wrap .compare > .right{
    width: -webkit-calc(100% - 200px);
    width: -moz-calc(100% - 200px);
    width: -o-calc(100% - 200px);
    width: calc(100% - 200px);
}
.implant_04_b .wrap .compare > .right > ol{
    display: flex;
}
.implant_04_b .wrap .compare > .right > ol > li{
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
}
.implant_04_b .wrap .compare > .right > ol > li > span{
    display: inline-block;
    font-weight: 700;
    width: 100px;
    height: 40px;
    line-height: 38px;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 5px;
}
.implant_04_b .wrap .compare > .right > ol > li > p{font-weight: 500;}

.implant_04_b .wrap .box_a{margin-bottom: 20px;}
.implant_04_b .wrap .box_a > .left{background-color: var(--gray-b);}
.implant_04_b .wrap .box_a > .right > ol > li{position: relative;}
.implant_04_b .wrap .box_a > .right > ol > li::after{
    content: ""; position: absolute;
    top: 50%; right: -10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px; height: 20px; z-index: -1;
    background-image: url(../img/icon_compare_next_1.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.implant_04_b .wrap .box_a > .right > ol > li:last-child::after{display: none;}
/* 일반 임플란트 단계 색상설정 */
.implant_04_b .wrap .box_a > .right > ol > li:nth-child(1) > span{
    background-color: #aaaaaa;
}
.implant_04_b .wrap .box_a > .right > ol > li:nth-child(2) > span{
    background-color: #888888;
}
.implant_04_b .wrap .box_a > .right > ol > li:nth-child(3) > span{
    background-color: #656565;
}
.implant_04_b .wrap .box_a > .right > ol > li:nth-child(4) > span{
    background-color: #424242;
}
.implant_04_b .wrap .box_a > .right > ol > li:nth-child(5) > span{
    background-color: var(--color-a);
}
.implant_04_b .wrap .box_b > .left{background-color: var(--color-d);}
.implant_04_b .wrap .box_b > .right > ol > li > p{line-height: 1.2;}
.implant_04_b .wrap .box_b > .right > ol > li > p > strong{
    display: block; font-weight: 700;
    color: var(--color-d);
}
/*// 일반 임플란트 단계 색상설정 */
/*// 즉시기능 임플란트 */
/* 임플란트 틀니 추천 대상 */
.implant_05_c .sub_chk_wrap{margin-bottom: 40px;}
/*// 임플란트 틀니 추천 대상 */
/* 고난도 임플란트 */
.implant_06_a{}
.implant_06_a .wrap{}
.implant_06_a .wrap > img{display: block; margin: 0 auto;}
/*// 고난도 임플란트 */
/* 임플란트 사후관리 */
.implant_07_b{}
.implant_07_b .sub_con_wrap{background-color: #fff;}
/*// 임플란트 사후관리 */
/* 임플란트 건강보험 */
.implant_08_a .sub_round_wrap > li{
    width: -webkit-calc(100% / 5 - 40px);
    width: -moz-calc(100% / 5 - 40px);
    width: -o-calc(100% / 5 - 40px);
    width: calc(100% / 5 - 40px);
}
.implant_08_a .sub_round_wrap > li > .img{
    background-color: var(--gray-d);
}
.implant_08_a .sub_round_wrap > li > .txt > p{font-size: 1.125rem;}

.implant_08_b{}
.implant_08_b table{
    width: 100%; font-size: 1.125rem;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    isolation: isolate;
    background-color: #fff;
}
.implant_08_b table tbody tr{border-bottom: 0.5px solid var(--gray-c);}
.implant_08_b table tbody tr:last-child{border-bottom: 2px solid var(--color-a);}
.implant_08_b table tr th,
.implant_08_b table tr td{
    vertical-align: middle;
    word-break: keep-all;
}
.implant_08_b table tr th{
    font-weight: 700;
    padding: 20px 30px;
    background-color: var(--color-d);
    color: #fff;
    font-size: 1.11111em;
}
.implant_08_b table tr td{padding: 30px;}
.implant_08_b table tr .td_a{
    text-align: center; width: 25%;
    font-weight: 700;
    background-color: var(--gray-d);
    border-right: 0.5px solid var(--gray-c);
    color: var(--color-d);
}
.implant_08_b table tr .td_b{width: 75%;}
.implant_08_b table tr td > p{
    margin-bottom: 10px; font-weight: 500; line-height: 1.2;
}
.implant_08_b table tr td > p:last-child{margin-bottom: 0;}
.implant_08_b table tr td > div{margin-bottom: 10px; margin-left: 15px;}
.implant_08_b table tr td > div > ul > li,
.implant_08_b table tr td > div > p{
    font-size: 0.888888em; margin-bottom: 10px; line-height: 1.2;
}
.implant_08_b table tr td > div > ul > li:last-child,
.implant_08_b table tr td > div > p:last-child{margin-bottom: 0;}
.implant_08_b table tr td > div > ul{margin-left: 15px;}
.implant_08_b table tr td > div > ul > li{font-weight: 300;}
/*// 임플란트 건강보험 */
/*// 컴퓨터분석임플란트 */

/* 3D디지털치과 */

/* 디지털 장비 소개 */
.digital_01_a{}
.digital_01_a .wrap{}
.digital_01_a .wrap > img{
    display: block;
    margin: 0 auto 40px;
}
.digital_01_a .wrap .sub_con_wrap{
    margin-bottom: 40px;
    text-align: center;
    padding: 60px 40px;
    border-radius: 0;
}
.digital_01_a .wrap .sub_con_wrap .border{margin: 20px auto 25px;}
.digital_01_a .wrap .sub_list03_wrap{}
.digital_01_a .wrap .sub_list03_wrap > li{box-shadow: none; position: relative; z-index: 1;}
.digital_01_a .wrap .sub_list03_wrap > li > p{font-weight: 500;}
/* 디지털장비소개 단계별 색상 설정 */
.digital_01_a .wrap .sub_list03_wrap > li:nth-child(1){border-color: var(--color-b);}
.digital_01_a .wrap .sub_list03_wrap > li:nth-child(1) .num{
    background-color: var(--color-b);
}
.digital_01_a .wrap .sub_list03_wrap > li:nth-child(2){border-color: #2889DB;}
.digital_01_a .wrap .sub_list03_wrap > li:nth-child(2) .num{
    background-color: #2889DB;
}
.digital_01_a .wrap .sub_list03_wrap > li:nth-child(3){border-color: #3966C8;}
.digital_01_a .wrap .sub_list03_wrap > li:nth-child(3) .num{
    background-color: #3966C8;
}
.digital_01_a .wrap .sub_list03_wrap > li:nth-child(4){border-color: #4943B4;}
.digital_01_a .wrap .sub_list03_wrap > li:nth-child(4) .num{
    background-color: #4943B4;
}
.digital_01_a .wrap .sub_list03_wrap > li:nth-child(5){border-color: var(--color-e);}
.digital_01_a .wrap .sub_list03_wrap > li:nth-child(5) .num{
    background-color: var(--color-e);
}
/*// 디지털장비소개 단계별 색상 설정 */

.digital_01_b{}
.digital_01_b .wrap .sub_info_txt{
    display: block;
    margin-left: 0;
}
.digital_01_b .wrap .sub_info_txt > li{
    width: 100%;
    margin: 0;
    border: 0;
}
/*// 디지털 장비 소개 */
/* 데이터분석 임플란트 */
.digital_02_b{}
.digital_02_b .sub_list_wrap{
    margin: 0 auto;
    width: 75%;
}
.digital_02_b .sub_list_wrap > li:first-child{margin-left: 0;}

.digital_02_d{}
.digital_02_d .wrap .compare{background-color: var(--gray-d);}
.digital_02_d .wrap .compare > .left{width: 175px;}
.digital_02_d .wrap .compare > .right{
    width: -webkit-calc(100% - 175px);
    width: -moz-calc(100% - 175px);
    width: -o-calc(100% - 175px);
    width: calc(100% - 175px);
}
.digital_02_d .wrap .box_b > .right > ol{width: 55%;}
.digital_02_d .wrap .box_b > .right > ol > li{position: relative;}
.digital_02_d .wrap .box_b > .right > ol > li::after{
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: -1;
    top: 50%;
    right: -10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../img/icon_compare_next_2.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.digital_02_d .wrap .box_b > .right > ol > li:last-child::after{display: none;}
/* 박스 색상 설정 */
.implant_04_b .wrap .box_a > .right > ol > li:nth-child(1) > span{
    background-color: #aaaaaa;
}
.implant_04_b .wrap .box_a > .right > ol > li:nth-child(2) > span{
    background-color: #969696;
}
.implant_04_b .wrap .box_a > .right > ol > li:nth-child(3) > span{
    background-color: #838383;
}
.implant_04_b .wrap .box_a > .right > ol > li:nth-child(4) > span{
    background-color: #6f6f6f;
}
.implant_04_b .wrap .box_a > .right > ol > li:nth-child(5) > span{
    background-color: #5b5b5b;
}
.implant_04_b .wrap .box_a > .right > ol > li:nth-child(6) > span{
    background-color: #474747;
}
.implant_04_b .wrap .box_a > .right > ol > li:nth-child(7) > span{
    background-color: #343434;
}
.implant_04_b .wrap .box_a > .right > ol > li:nth-child(8) > span{
    background-color: var(--color-a);
}

.digital_02_d .wrap .box_b > .right > ol > li:nth-child(1) > span{
    background-color: var(--color-b);
}
.digital_02_d .wrap .box_b > .right > ol > li:nth-child(2) > span{
    background-color: var(--color-c);
}
.digital_02_d .wrap .box_b > .right > ol > li:nth-child(3) > span{
    background-color: var(--color-d);
}
/*// 박스 색상 설정 */
/*// 데이터분석 임플란트 */

/* 구강스캐너를 이용한 디지털 진료 */
.digital_03_a .sub_con_wrap{
    overflow: inherit;
    padding: 0;
}
.digital_03_a .sub_con_wrap::after{border-radius: 0 20px 20px 0;}
.digital_03_a .sub_con_wrap .left{
    width: 55%;
    max-width: 600px;
    padding: 80px;
    box-sizing: border-box;
}
.digital_03_a .sub_con_wrap .right{
    position: absolute;
    bottom: -5px;
    right: -7%;
}
.digital_03_a .sub_con_wrap .right img{
    max-width: 800px;
    width: 100%;
}
/*// 구강스캐너를 이용한 디지털 진료 */

/*// 3D디지털치과 */

/* 보철치료 */
/* 심미보철 */
.prosthesis_01_a .wrap > img{margin-bottom: 40px;}
.prosthesis_01_b .wrap .sub_info_img > li > .img .num{
    background-color: var(--gray-d);
}
.prosthesis_01_b .wrap .sub_info_img > li > .txt{margin-top: 30px;}
.prosthesis_01_b .wrap .sub_info_img > li > .txt > span{
    margin-bottom: 0;
    line-height: 1.2;
    color: var(--color-d);
}

.normal_02_b .sub_list_wrap{
    max-width: 950px;
    margin: 0 auto;
}
.normal_02_b .sub_list_wrap > li{margin-bottom: 0;}
.normal_02_b .sub_list_wrap > li:first-child{margin-left: 0;}
.normal_04_c .sub_info_txt{margin-top: 40px;}
.normal_05_b .sub_chk02_wrap > li{background-color: #fff;}
.normal_05_c .sub_list02_wrap{
    flex-wrap: wrap;
    margin-bottom: -40px;
}
.normal_05_c .sub_list02_wrap > li{
    box-sizing: border-box;
    width: -webkit-calc(100% / 3 - 40px);
    width: -moz-calc(100% / 3 - 40px);
    width: -o-calc(100% / 3 - 40px);
    width: calc(100% / 3 - 40px);
    margin-bottom: 40px;
}
.normal_06_d .wrap .sub_product_wrap > li{
    margin: 0;
}
.normal_07_b .con_box{}
.normal_07_b .con_box .sub_con_wrap{
    margin-bottom: 40px;
}
.normal_07_b .con_box .sub_con_wrap:last-child{margin-bottom: 0;}
.normal_07_b .con_box .sub_con_wrap:nth-child(even){
    text-align: right;
}
.normal_07_b .con_box .sub_con_wrap:nth-child(even) .border{float: right;}
.normal_07_b .con_box .sub_con_wrap:nth-child(even) > h5{clear: both;}

.prosthesis_02_b .sub_list_wrap{margin-left: -25px;}
.prosthesis_02_b .sub_list_wrap > li{margin-left: 25px;}
.prosthesis_02_d .sub_process_wrap{
    flex-wrap: wrap;
    margin-bottom: -40px;
}
.prosthesis_02_d .sub_process_wrap > li{
    width: -webkit-calc(100% / 2 - 40px);
    width: -moz-calc(100% / 2 - 40px);
    width: -o-calc(100% / 2 - 40px);
    width: calc(100% / 2 - 40px);
    margin-bottom: 40px;
}
.prosthesis_02_d .sub_process_wrap > li > .img img{width: 100%;}
/*// 서브화면 */

/* 개인정보처리방침 */
.privacy_box > span{font-size: 1.25em; font-weight: 700;}
.privacy_box > ul{margin-bottom: 2.5em; margin-top: 1.25em;}
.privacy_box > ul:last-of-type{margin-bottom: 0;}
.privacy_box > ul > li{}
.privacy_box > ul > li > p{font-size: 1.125em; font-weight: 500; margin-bottom: 0.9375em;}
.privacy_box > ul > li > ol{margin-bottom: 2.5em;}
.privacy_box > ul > li > ol li{margin-bottom: 0.3125em;}
.privacy_box > ul > li > ol li:last-child{margin-bottom: 0;}
.privacy_box > ul > li > ol li p{line-height: 1.5; }
/*// 개인정보처리방침 */

@media screen and (max-width: 1430px){
    header.scroll{top: 0;}
    .header_top, .header_middle, .header_bottom{display: none;}
    .mobile_header_wrap{display: flex;}
    .quick{display: none;}

    .main_visual .swiper-slide .txt{top: 50%;}
    .main_visual .swiper-slide-active .txt{top: 47%;}

    .sub_info_img{margin-left: -40px;}
    .sub_info_img > li{
        width: -webkit-calc(100% / 2 - 40px);
        width: -moz-calc(100% / 2 - 40px);
        width: -o-calc(100% / 2 - 40px);
        width: calc(100% / 2 - 40px);
        margin-left: 40px;
    }

    .intro_05_a .wrap > ul{margin-left: -40px;}
    .intro_05_a .wrap > ul > li{
        width: -webkit-calc(100% / 3 - 40px);
        width: -moz-calc(100% / 3 - 40px);
        width: -o-calc(100% / 3 - 40px);
        width: calc(100% / 3 - 40px);
        margin-left: 40px;
    }

    .intro_06_a .wrap .box .txt_wrap{
        position: static;
        max-width: none;
        display: flex; flex-wrap: wrap;
    }
    .intro_06_a .wrap .box .txt_wrap > .txt_top{width: 100%;}
    .intro_06_a .wrap .box .txt_wrap > .txt_middle,
    .intro_06_a .wrap .box .txt_wrap > .txt_bottom{
        width: -webkit-calc(100% / 2 - 20px);
        width: -moz-calc(100% / 2 - 20px);
        width: -o-calc(100% / 2 - 20px);
        width: calc(100% / 2 - 20px);
    }
    .intro_06_a .wrap .box .txt_wrap > .txt_middle{
        margin-right: 40px;
        margin-bottom: 0;
    }
    .digital_02_b .sub_list_wrap{width: 100%;}
    .implant_04_b .wrap .compare{flex-wrap: wrap;}
    .implant_04_b .wrap .compare > .left{
        width: 100%;
        padding: 20px 0;
    }
    .implant_04_b .wrap .compare > .left span br{display: none;}
    .implant_04_b .wrap .compare > .right{
        width: 100%;
        padding: 30px 0;
    }
    .implant_04_b .wrap .compare > .right > ol{width: 100%;}
}
@media screen and (max-width: 1200px){
    .main_visual .swiper-slide .txt > span{font-size: 1.875rem;}
    .main_visual .swiper-slide .txt > i{margin-bottom: 10px;}
    .main_visual .swiper-slide .txt > p{font-size: 1rem; margin-top: 15px;}
    .main_visual .swiper .visual_swiper_pagination .swiper-pagination-bullet{
        width: 10px; height: 10px;
    }
    .main_visual .swiper .visual_swiper_pagination .swiper-pagination-bullet{
        margin: 0 3px;
    }
    .main_visual .swiper .visual_swiper_pagination .swiper-pagination-bullet-active{
        width: 35px;
    }
    .main_visual .swiper .visual_swiper_prev, .main_visual .swiper .visual_swiper_next{
        width: 55px; height: 60px;
    }
    .main_visual .swiper .visual_swiper_prev::after, .main_visual .swiper .visual_swiper_next::after{
        width: 10px;
        height: 23px;
    }
    .main_visual .swiper .visual_swiper_prev::after{left: 15px;}
    .main_visual .swiper .visual_swiper_next::after{right: 15px;}

    .main_sec01 .wrap{display: block;}
    .main_sec01 .wrap::after{content: ""; clear: both; display: block;}
    .main_sec01 .wrap > div{margin-bottom: 0;}
    .main_sec01 .wrap > .left{
        width: 80%;
        max-width: 700px;
    }
    .main_sec01 .wrap > .right{
        position: relative;
        float: right;
        bottom: auto;
        margin-top: -100px;
        width: 65%;
    }
    .main_sec02::after{width: 100%; background-position: center right;}
    .main_sec02 .wrap{flex-wrap: wrap;}
    .main_sec02 .wrap > div{width: 100%;}
    .main_sec02 .wrap > .left{
        max-width: 750px;
        margin: 0 auto;
    }
    .main_sec02 .wrap > .left > ul{margin-left: 0;}
    .main_sec02 .wrap > .right{margin-top: 40px;}
    .main_sec02 .wrap > .right > .txt_top{text-align: center;}
    .main_sec02 .wrap > .right > .txt_top > h4 > span{display: block;}
    .main_sec02 .wrap > .right > .txt_bottom{text-align: center;}
    .main_sec02 .wrap > .right > .txt_top > h4 > .pc_img{display: none;}	
    .main_sec02 .wrap > .right > .txt_top > h4 > .mobile_img{	
        display: inline;	
        width: 80%;	
    }
    .main_sec03 .wrap > ul{flex-wrap: wrap; margin-left: -20px; margin-bottom: -20px;}
    .main_sec03 .wrap > ul > li{
        width: -webkit-calc(100% / 2 - 20px);
        width: -moz-calc(100% / 2 - 20px);
        width: -o-calc(100% / 2 - 20px);
        width: calc(100% / 2 - 20px);
        margin-right: 0;
        margin-left: 20px;
        margin-bottom: 20px;
    }
    .main_sec04::after{
        width: 70%;
        background-position: center left;
    }
    .main_sec05 .wrap > .left{margin-right: 40px;}

    .sub_list_wrap{flex-wrap: wrap; margin-bottom: -40px;}
    .sub_list_wrap > li{
        width: -webkit-calc(100% / 2 - 40px);
        width: -moz-calc(100% / 2 - 40px);
        width: -o-calc(100% / 2 - 40px);
        width: calc(100% / 2 - 40px);
        margin-bottom: 40px;
    }
    .sub_list03_wrap{flex-wrap: wrap; margin-bottom: -40px;}
    .sub_list03_wrap > li{
        width: -webkit-calc(100% / 3 - 40px);
        width: -moz-calc(100% / 3 - 40px);
        width: -o-calc(100% / 3 - 40px);
        width: calc(100% / 3 - 40px);
        margin-bottom: 40px;
    }
    .sub_imgtxt_wrap > li{
        flex-wrap: wrap;
    }
    .sub_imgtxt_wrap > li > .img{width: 100%;}
    .sub_imgtxt_wrap > li > .txt{
        width: 100%;
        margin-left: 0;
        padding: 40px 40px 50px;
    }
    .sub_imgtxt_wrap > li > .txt > .top{margin-bottom: 20px;}
    .sub_process_wrap{margin-left: -20px;}
    .sub_process_wrap > li{margin-left: 20px;}
    .sub_process_wrap > li > table tr td br{display: none;}
    .sub_process02_wrap{margin-left: -20px;}
    .sub_process02_wrap > li{
        width: -webkit-calc(100% / 2 - 20px);
        width: -moz-calc(100% / 2 - 20px);
        width: -o-calc(100% / 2 - 20px);
        width: calc(100% / 2 - 20px);
    }
    .sub_process03_wrap{
        flex-wrap: wrap;
        margin-left: -40px;
        margin-bottom: -40px;
    }
    .sub_process03_wrap > li{
        width: -webkit-calc(100% / 2 - 40px);
        width: -moz-calc(100% / 2 - 40px);
        width: -o-calc(100% / 2 - 40px);
        width: calc(100% / 2 - 40px);
        margin-left: 40px;
        margin-bottom: 40px;
    }
    .sub_process03_wrap > li > .img img{width: 100%;}
    .sub_process03_wrap > li > .info_txt{min-height: 90px;}
    .sub_chk_wrap{margin-left: 0;}
    .sub_chk_wrap > li{
        width: 100%;
        margin-left: 0;
        border-radius: 20px;
        padding: 20px;
    }
    .sub_chk_wrap > li > p{text-align: center;}
    .sub_chk_wrap > li > p > i{
        margin: 0 auto 10px;
        display: block;
    }
    .sub_con_wrap02 .right{right: 0;}
    .sub_con_wrap02 .right img{height: 380px;}

    .intro_01_a .wrap > ul > li:nth-child(2) > ol{
        flex-wrap: wrap;
        max-width: 600px;
        margin: 0 auto;
        margin-bottom: -20px;
    }
    .intro_01_a .wrap > ul > li:nth-child(2) > ol > li{margin-bottom: 20px;}
    .intro_01_b .wrap > ul > li > .txt{
        margin-left: 40px;
        padding-right: 20px; box-sizing: border-box;
    }
    .intro_01_c .wrap > .left{padding: 60px;}
    .intro_01_c .wrap > .right{text-align: right;}
    .intro_01_c .wrap > .right img{width: 80%;}

    .intro_01_d .wrap > ul:nth-child(odd) > li:nth-child(2){margin-left: 20px;}
    .intro_01_d .wrap > ul:nth-child(even) > li:nth-child(2){margin-right: 20px;}
    .intro_01_d .wrap > ul > li .txt span{font-size: 2rem;}

    .intro_02_a .wrap > ul > li{
        flex-wrap: wrap;
        justify-content: center;
    }
    .intro_02_a .wrap > ul > li > .left{margin-right: 0; width: 55%; margin-bottom: 40px;}
    .intro_02_a .wrap > ul > li > .right{width: 100%;}

    .intro_04_a .wrap .box,
    .sub_con_wrap{padding: 60px 30px;}
    .intro_04_b .wrap > ul > li{flex-wrap: wrap;}
    .intro_04_b .wrap > ul > li > .left{
        width: 100%;
        min-height: auto; line-height: 1;
        padding: 20px 0; text-align: center;
    }
    .intro_04_b .wrap > ul > li > .right{
        width: 100%;
        padding: 30px 20px;
        text-align: center;
        word-break: keep-all;
    }

    .intro_06_a .wrap .intro_slide .intro_slide_pagination{bottom: 10px; right: 10px;}
    .intro_06_a .wrap .intro_slide .intro_slide_pagination .swiper-pagination-bullet{
        width: 10px; height: 10px;
        margin: 0 3px;
    }
    .intro_06_a .wrap .intro_slide .intro_slide_pagination .swiper-pagination-bullet-active{
        width: 25px;
    }
    .implant_04_a .sub_list02_wrap > li{
        width: -webkit-calc(100% / 2 - 25px);
        width: -moz-calc(100% / 2 - 25px);
        width: -o-calc(100% / 2 - 25px);
        width: calc(100% / 2 - 25px);
    }
    .implant_04_b .wrap .compare > .right > ol{
        width: 95%; margin: 0 auto;
        justify-content: center;
    }
    .implant_08_a .sub_round_wrap{flex-wrap: wrap; margin-bottom: -40px;}	
    .implant_08_a .sub_round_wrap > li{	
        width: -webkit-calc(100% / 3 - 40px);	
        width: -moz-calc(100% / 3 - 40px);	
        width: -o-calc(100% / 3 - 40px);	
        width: calc(100% / 3 - 40px);	
        margin-bottom: 40px;	
    }
    .digital_02_d .wrap .box_a > .right > ol{
        flex-wrap: wrap;
        margin-bottom: -40px;
    }    
    .digital_02_d .wrap .box_a > .right > ol > li{
        width: -webkit-calc(100% / 4);
        width: -moz-calc(100% / 4);
        width: -o-calc(100% / 4);
        width: calc(100% / 4);
        margin-bottom: 40px;
    }
    .implant_01_d .sub_imgtxt_wrap{max-width: 570px; margin: 0 auto;}
    .prosthesis_02_b .sub_list_wrap{margin-bottom: -25px;}
    .prosthesis_02_b .sub_list_wrap > li{
        width: -webkit-calc(100% / 3 - 25px);
        width: -moz-calc(100% / 3 - 25px);
        width: -o-calc(100% / 3 - 25px);
        width: calc(100% / 3 - 25px);
        margin-bottom: 25px;
    }
    .prosthesis_01_c .sub_con_wrap::after{
        width: 80%;
    }
    .prosthesis_02_d .sub_process_wrap > li{
        width: -webkit-calc(100% / 2 - 20px);
        width: -moz-calc(100% / 2 - 20px);
        width: -o-calc(100% / 2 - 20px);
        width: calc(100% / 2 - 20px);
        margin-bottom: 20px;
    }
    .normal_02_b .sub_list_wrap{
        margin-left: -40px;
        max-width: none;
    }
    .normal_02_b .sub_list_wrap > li:first-child{margin-left: auto;}
    .normal_02_b .sub_list_wrap > li{
        width: -webkit-calc(100% / 3 - 40px);
        width: -moz-calc(100% / 3 - 40px);
        width: -o-calc(100% / 3 - 40px);
        width: calc(100% / 3 - 40px);
        margin-left: 40px;
    }

    .implant_01_c .sub_product_wrap > li {
        margin: 0 20px;
    }

    .intro_07_a .wrap .box > .map{
        flex-wrap: wrap;
        justify-content: center;
    }
    .intro_07_a .wrap .box > .map > div{width: 100%;}
    .intro_07_a .wrap .box > .map > img{margin-left: 0; margin-top: 10px;}

    .digital_03_a .sub_con_wrap .left{padding: 60px;}
    .digital_03_a .sub_con_wrap .right{bottom: 0; right: -5%;}
    .digital_03_a .sub_con_wrap .right img{max-width: 600px;}

}
@media screen and (max-width: 950px){
    .mobile_header_wrap .left{max-width: 280px;}
    .mobile_header_wrap .left .header_slide{margin-top: -6px;}
    .mobile_header_wrap .left .header_slide .slick-slide{padding: 6px 0;}
    .mobile_header_wrap .left .header_slide .slick-slide h2::before{
        width: 40px; height: 38.8px;
    }
    .mobile_header_wrap .left .header_slide .slick-slide h2{padding-left: 50px;}
    .mobile_header_wrap .left .header_slide .slick-slide h2 > span{
        font-size: 0.866666rem;
        display: block;
        margin-bottom: 2px;
    }
    .mobile_header_wrap .left .header_slide .slide_a h2 > p{font-size: 1.125rem;}
    .mobile_header_wrap .left .header_slide .slick-dots li{width: 8px; height: 8px;}
    .mobile_header_wrap .center .logo img{width: 170px;}
    .m_menu_btn{width: 40px;}

    .main_visual .swiper .swiper-wrapper .swiper-slide .pc_visual{
        display: none;
    }
    .main_visual .swiper .swiper-wrapper .swiper-slide .mobile_visual{
        display: block;
    }

    .con_title{margin-bottom: 20px;}

    .main_sec01 .wrap{
        box-shadow: 6px 4px 15px rgba(0, 0, 0, 0.05);
        border-radius: 20px; overflow: hidden;
        isolation: isolate;
    }
    .main_sec01 .wrap > .left{
        margin: 0 auto; max-width: none; width: 100%;
        border-radius: 0;
    }
    .main_sec01 .wrap > .right{
        width: 100%; margin-top: 0;
        box-shadow: none;
        border-radius: 0;
        padding: 50px 40px;
    }

    .main_sec05 .wrap{flex-wrap: wrap;}
    .main_sec05 .wrap > .left,
    .main_sec05 .wrap > .right{width: 100%;}
    .main_sec05 .wrap > .left{margin-right: 0;}
    .main_sec05 .wrap > .right{margin-top: 20px; text-align: center;}

    .sub_title{height: 180px;}
    .sub_info_img > li > .txt{margin-top: 30px;}
    .sub_info_img > li > .txt > span{margin-bottom: 21px;}
    .sub_info_img > li > .img .num > span{
        font-size: 1.8rem;
        width: 70px;
        height: 60px; line-height: 60px;
    }
    .sub_round_wrap{flex-wrap: wrap; margin-bottom: -40px;}
    .sub_round_wrap > li{
        width: -webkit-calc(100% / 2 - 40px);
        width: -moz-calc(100% / 2 - 40px);
        width: -o-calc(100% / 2 - 40px);
        width: calc(100% / 2 - 40px);
        margin-bottom: 40px;
    }
    .sub_chk02_wrap > li{
        padding: 20px;
        border-radius: 20px;
    }
    .sub_chk02_wrap > li > div{flex-wrap: wrap;}
    .sub_chk02_wrap > li > div > .num{margin: 0 auto 10px;}
    .sub_chk02_wrap > li > div > p{width: 100%; text-align: center;}
    .sub_roundbox_wrap{flex-wrap: wrap;}
    .sub_roundbox_wrap > li{
        margin: 0 10px;
        width: 180px; height: 180px;
    }

    .intro_01_b .wrap > ul{display: flex;}
    .intro_01_b .wrap > ul > li{
        flex-wrap: wrap; margin-bottom: 0;
        margin-right: 20px;
        display: block;
    }
    .intro_01_b .wrap > ul > li:last-child{margin-right: 0;}
    .intro_01_b .wrap > ul > li > .img{width: 100%;}
    .intro_01_b .wrap > ul > li > .txt{
        width: 100%; text-align: center;
        margin-left: 0;
        padding-right: 0;
        padding: 30px 20px 40px;
    }

    .intro_06_a .wrap .box .txt_wrap{padding: 40px;}
    .intro_06_a .wrap .box .txt_wrap > .txt_middle{
        margin-right: 0;
        margin-bottom: 20px;
    }
    .intro_06_a .wrap .box .txt_wrap > .txt_middle,
    .intro_06_a .wrap .box .txt_wrap > .txt_bottom{width: 100%;}
    .implant_07_a .sub_round_wrap{flex-wrap: inherit;}
    .implant_07_a .sub_round_wrap > li{width: 100%;}    
    .implant_08_a .sub_round_wrap > li > .txt > p br{display: none;}
}
@media screen and (max-width: 800px){
    .mobile_header_wrap{justify-content: flex-end;}
    .mobile_header_wrap .left{margin-right: 20px;}
    .mobile_header_wrap .center{
        left: 0;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

    footer > .footer_top .wrap > ul{
        display: block; font-size: 0; text-align: center;
    }
    footer > .footer_top .wrap > ul > li{display: inline-block;}
    footer > .footer_top .wrap > ul > li > a{font-size: 0.875rem;}
    footer > .footer_bottom > .left{
        flex-wrap: wrap; justify-content: center;
    }
    footer > .footer_bottom > .left > img{margin-right: 0; margin-bottom: 20px;}
    footer > .footer_bottom > .left > .txt{width: 100%;}
    footer > .footer_bottom > .left > .txt > ul{justify-content: center;}
    footer > .footer_bottom > .left > .txt > ul > li:last-child{margin-right: 0;}
    footer > .footer_bottom > .right > p{text-align: center;}

    .main_sec02 .wrap > .right > .txt_top > h4 > img{width: 100%;}
    
    .con_title > h3 br{display: block;}
    .sub_nav .wrap .depth{
        min-width: auto;
        width: -webkit-calc(100% / 2 - 23px);
        width: -moz-calc(100% / 2 - 23px);
        width: -o-calc(100% / 2 - 23px);
        width: calc(100% / 2 - 23px);
    }
    .sub_nav .wrap .depth_select_wrap .select_drop_box{
        min-width: auto;
        width: 100%;
    }
    .sub_con_wrap::after{
        width: 100%;
        background-position: center center;
        opacity: 0.3;
    }
    .sub_list_wrap{margin-left: -20px; margin-bottom: -20px;}
    .sub_list_wrap > li{
        width: -webkit-calc(100% / 2 - 20px);
        width: -moz-calc(100% / 2 - 20px);
        width: -o-calc(100% / 2 - 20px);
        width: calc(100% / 2 - 20px);
        margin-left: 20px;
        margin-bottom: 20px;
    }
    .sub_list03_wrap{margin-left: -20px;}
    .sub_list03_wrap > li{
        width: -webkit-calc(100% / 3 - 20px);
        width: -moz-calc(100% / 3 - 20px);
        width: -o-calc(100% / 3 - 20px);
        width: calc(100% / 3 - 20px);
        margin-left: 20px;
        margin-bottom: 20px;
    }
    .sub_info_img{margin-left: -20px; margin-bottom: -20px;}
    .sub_info_img > li{
        width: -webkit-calc(100% / 2 - 20px);
        width: -moz-calc(100% / 2 - 20px);
        width: -o-calc(100% / 2 - 20px);
        width: calc(100% / 2 - 20px);
        margin-left: 20px;
        margin-bottom: 40px;
    }
    .sub_process_wrap{
        flex-wrap: wrap;
        margin-left: 0;
        justify-content: center;
    }
    .sub_process_wrap > li{
        margin-left: 0; margin-bottom: 40px;
    }
    .sub_process_wrap > li:last-child{margin-bottom: 0;}
    .sub_process02_wrap{
        max-width: 630px;
        margin: 0 auto;
    }
    .sub_process02_wrap > li{width: 100%;}
    .sub_process03_wrap{
        margin-left: -20px;
        margin-bottom: -20px;
    }
    .sub_process03_wrap > li{
        width: -webkit-calc(100% / 2 - 20px);
        width: -moz-calc(100% / 2 - 20px);
        width: -o-calc(100% / 2 - 20px);
        width: calc(100% / 2 - 20px);
        margin-left: 20px;
        margin-bottom: 20px;
    }
    .sub_qna_wrap > ul > li{padding: 15px 10px;}
    .sub_compare_wrap tr td{
        font-size: 1rem;
        padding: 15px 5px;
    }    
    .sub_con_wrap{text-align: center;}
    .sub_con_wrap .border{margin: 20px auto 25px;}
    .sub_con_wrap02{text-align: left;}
    .sub_con_wrap02 .border{margin: 20px 0 25px;}
    .sub_con_wrap02 .right{
        position: static;
        text-align: right;
        margin-top: 20px;
    }
    .sub_con_wrap02 .right img{height: 300px;}    
    .sub_product_wrap{margin-left: -10px;}
    .sub_product_wrap > li{
        margin: 0; margin-left: 10px;
        width: -webkit-calc(100% / 2 - 10px);
        width: -moz-calc(100% / 2 - 10px);
        width: -o-calc(100% / 2 - 10px);
        width: calc(100% / 2 - 10px);
    }

    .intro_01_c{overflow: hidden;}
    .intro_01_c .wrap::after{
        width: 100%; height: 55%;
        background-position: center top;
        left: 0;
        transform: none;
    }
    .intro_01_c .wrap > .left{
        width: 100%;
        box-sizing: border-box;
        padding: 60px 40px 30px;
    }
    .intro_01_c .wrap > .right{position: static;}
    .intro_01_d .wrap > ul{display: block;}
    .intro_01_d .wrap > ul > li{width: 100%;}
    .intro_01_d .wrap > ul > li:nth-child(1) img{
        max-width: 450px;
        width: 100%;
    }
    .intro_01_d .wrap > ul > li:nth-child(2){
        margin-top: 20px;        
    }
    .intro_01_d .wrap > ul:nth-child(odd) > li:nth-child(2){
        margin-left: 0;
        text-align: right;
    }
    .intro_01_d .wrap > ul:nth-child(even) > li:nth-child(1){
        text-align: right;
    } 
    .intro_01_d .wrap > ul:nth-child(even) > li:nth-child(2) .txt{
        text-align: left;
    }
    .intro_04_a .wrap .box{text-align: center;}
    .intro_04_a .wrap .box .border{margin: 20px auto 25px;}
    .intro_04_a .wrap .box::after{opacity: 0.3;}
    .intro_04_c .wrap .box .border{float: none;}

    .intro_05_a .wrap > ul > li {
        width: -webkit-calc(100% / 2 - 40px);
        width: -moz-calc(100% / 2 - 40px);
        width: -o-calc(100% / 2 - 40px);
        width: calc(100% / 2 - 40px);
        margin-bottom: 60px;
    }
    .intro_07_a .wrap .box > .map iframe{height: 400px;}

    .implant_04_a .sub_list02_wrap{margin-left: -20px;}
    .implant_04_a .sub_list02_wrap > li{
        width: -webkit-calc(100% / 2 - 20px);
        width: -moz-calc(100% / 2 - 20px);
        width: -o-calc(100% / 2 - 20px);
        width: calc(100% / 2 - 20px);
        margin-left: 20px;
    }
    .implant_02_d .wrap .sub_product_wrap{margin-left: -20px;}
    .implant_02_d .wrap .sub_product_wrap > li{
        margin: 0; margin-left: 20px;
    }
    .implant_04_b .wrap .compare > .right > ol{flex-wrap: wrap;}
    .implant_04_b .wrap .compare > .right > ol > li{font-size: 1rem;}
    .implant_04_b .wrap .compare > .right > ol > li > span{
        height: auto; line-height: 1;
        padding: 9px 0 10px;
        width: 65%;
    }
    .digital_02_d .wrap .box_b > .right > ol > li{
        width: -webkit-calc(100% / 3);
        width: -moz-calc(100% / 3);
        width: -o-calc(100% / 3);
        width: calc(100% / 3);
    }
    .implant_04_b .wrap .box_a > .right > ol{
        margin-bottom: -20px;
    }
    .implant_04_b .wrap .box_a > .right > ol > li{
        width: -webkit-calc(100% / 3);
        width: -moz-calc(100% / 3);
        width: -o-calc(100% / 3);
        width: calc(100% / 3);
        margin-bottom: 20px;
    }
    .implant_08_a .sub_round_wrap{	
        margin-bottom: -20px;	
        margin-left: -20px;	
    }	
    .implant_08_a .sub_round_wrap > li {	
        width: -webkit-calc(100% / 3 - 20px);	
        width: -moz-calc(100% / 3 - 20px);	
        width: -o-calc(100% / 3 - 20px);	
        width: calc(100% / 3 - 20px);	
        margin-bottom: 20px;	
        margin-left: 20px;	
    }	
    .implant_08_a .sub_round_wrap > li > .img{	
        width: 160px;	
        height: 160px;	
    }	
    .implant_08_a .sub_round_wrap > li > .img img{max-width: 80px;}
    .digital_02_b .sub_list_wrap{
        flex-wrap: wrap;
    }
    .digital_02_b .sub_list_wrap > li{
        margin-left: 0;
        margin-bottom: 40px;
    }
    .digital_02_b .sub_list_wrap > li:last-child{margin-bottom: 0;}
    .digital_03_a .con_title > h3::after{right: 20%;}
    .implant_06_d .con_title > h3::after{right: 22%;}
    .implant_08_b table tr td{padding: 25px 10px;}
    .implant_09_a .sub_list03_wrap{margin-left: 0;}
    .implant_09_a .sub_list03_wrap > li{
        width: 100%;
        margin-left: 0;
    }
    .prosthesis_01_c .sub_con_wrap::after{
        width: 100%;
        height: 60%;
    }
    .prosthesis_02_b .sub_list_wrap{
        margin-left: -20px;
        margin-bottom: -20px;
    }
    .prosthesis_02_b .sub_list_wrap > li{
        width: -webkit-calc(100% / 2 - 20px);
        width: -moz-calc(100% / 2 - 20px);
        width: -o-calc(100% / 2 - 20px);
        width: calc(100% / 2 - 20px);
        margin-left: 20px;
        margin-bottom: 20px;
    }
    .prosthesis_02_d .sub_process_wrap > li{width: 100%;}
    .normal_02_b .sub_list_wrap{
        margin-left: 0;
        margin-bottom: -20px;
    }
    .normal_02_b .sub_list_wrap > li{
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }
    .normal_05_c .sub_list02_wrap{margin-bottom: -20px;}
    .normal_05_c .sub_list02_wrap > li{
        width: -webkit-calc(100% / 2 - 20px);
        width: -moz-calc(100% / 2 - 20px);
        width: -o-calc(100% / 2 - 20px);
        width: calc(100% / 2 - 20px);
        margin-left: 20px;
        margin-bottom: 20px;
    }
    .normal_07_b .con_box .sub_con_wrap:nth-child(even){
        text-align: center;
    }
    .normal_07_b .con_box .sub_con_wrap:nth-child(even) .border{
        float: none;
    }
    .implant_01_c .sub_product_wrap > li {
        margin: 0;
        margin-left: 10px;
    }
    .implant_01_c .sub_product_wrap > li > .txt > span{
        font-size: 1.3rem;
        padding: 10px 0 12px;
    }
    .digital_01_a .wrap > img{margin: 0 auto 20px;}
    .digital_01_a .wrap .sub_con_wrap{
        margin-bottom: 20px;
        padding: 40px 20px 45px;
    }
    .digital_03_a .sub_con_wrap .left{
        width: 100%; max-width: none;
        padding: 50px 20px 50px;
    }
    .digital_03_a .sub_con_wrap .right{position: static;}
    .digital_03_a .sub_con_wrap .right img{
        max-width: 600px;
        padding: 0 15px 30px 15px;
        box-sizing: border-box;
    }
}
@media screen and (max-width: 550px){
    .mobile_header_wrap .left{display: none;}   
    .mobile_header_wrap .center .logo img{width: 150px;}
    .mobile_header_menu .mobile_gnb .bottom{display: none;}
    .sub_nav .wrap{width: 100%;}
    .quick{display: block;}
    .quick_menu{
        bottom: 0;
        right: auto;
        left: 0;
        text-align: center;
        display: flex;
        width: 100%;
    }
    .quick_menu > li{
        width: 100%;
        border-radius: 15px 15px 0 0;
        margin-bottom: 0;
        height: auto;
    }
    .quick_menu > li.scroll_top{display: none;}
    .quick_menu > li.link_btn > a{padding: 10px 0; box-sizing: border-box;}
    .quick_menu > li.link_btn > a > img,
    .quick_menu > li.link_btn > a > span{
        position: static;
        transform: none;
        display: block;
        text-align: center;
        margin: 0 auto;
        font-size: 10px;
    }
    .quick_menu > li.link_btn > a > img{width: 30px;}
    .quick_menu > li.link_btn > a > span{
        opacity: 1;
        min-width: auto;
        margin-top: 5px;
    }
    footer{padding-bottom: 50px;}    

    .con_title > h3{font-size: 1.8rem;}
    .con_title > h3::after{
        top: -8px;
        width: 10px;
        height: 10px;
    }
    .main_visual .swiper .visual_swiper_prev,
    .main_visual .swiper .visual_swiper_next{
        display: none;
    }
    .main_visual .swiper-slide .txt > i{
        margin-bottom: 5px;
        letter-spacing: 4px;
        padding: 5px 0 5px;
        font-size: 0.78rem;
    }
    .main_visual .swiper-slide .txt > span{
        font-size: 1.5rem;
        word-break: keep-all;
    }
    .main_visual .swiper .visual_swiper_pagination{bottom: 10px;}
    .main_visual .swiper .visual_swiper_pagination .swiper-pagination-bullet{width: 8px; height: 8px; margin: 0 2px;}
    .main_visual .swiper .visual_swiper_pagination .swiper-pagination-bullet-active{width: 25px;}

    .main_sec01 .wrap > .right{
        padding: 30px 20px;
        text-align: center;
    }
    .main_sec01 .wrap > .right .swiper-slide > .txt_top > h4::after {
        margin: 20px auto 25px;
    }
    .main_sec01 .wrap > .right .swiper-slide > .txt_top > h4 > p{
        min-height: 3.925rem;
    }
    .main_sec01 .wrap > .right .swiper-slide > .txt_bottom > p{margin-left: 0;;}
    .main_sec01 .wrap > .right .swiper-slide > .txt_bottom > a{float: none;}
    .main_sec02 .wrap > .left > ul > li{
        padding: 40px 10px;
        width: -webkit-calc(100% / 2 - 10px);
        width: -moz-calc(100% / 2 - 10px);
        width: -o-calc(100% / 2 - 10px);
        width: calc(100% / 2 - 10px);
        margin: 5px;
    }
    .main_sec02 .wrap > .left > ul > li > p br{display: none;}
    .main_sec03 .wrap > ul{margin-left: -10px; margin-bottom: -10px;}
    .main_sec03 .wrap > ul > li{
        width: -webkit-calc(100% / 2 - 10px);
        width: -moz-calc(100% / 2 - 10px);
        width: -o-calc(100% / 2 - 10px);
        width: calc(100% / 2 - 10px);
        margin-left: 10px;
        margin-bottom: 10px;
    }
    .main_sec03 .wrap > ul > li > a{padding: 30px 20px;}
    .main_sec03 .wrap > ul > li > a > .txt_title .title{margin-bottom: 15px;}
    .main_sec03 .wrap > ul > li > a > .txt_con .date{margin-top: 30px;}
    .main_sec04{padding: 60px 0;}
    .main_sec04 .wrap .con_title > p{width: 70%;}
    .main_sec05 .wrap > .left iframe{height: 350px;}
    .main_sec05 .wrap > .right > .txt_top > a{font-size: 2rem;}
    .main_sec05 .wrap > .right > .txt_top > a::before{margin-bottom: -3px;}

    .sub_nav .wrap{flex-wrap: wrap;}
    .sub_nav .wrap a{padding: 0 10px;}
    .sub_nav .wrap .home{display: none;}    
    .sub_nav .wrap .depth{
        min-width: auto;
        width: 100%;
    }
    .sub_nav .wrap .depth:first-of-type .depth_select_wrap{border-top: 0;}
    .sub_nav .wrap .depth_select_wrap{
        border-right: 0;
        border-top: 1px solid var(--gray-c);
    }
    .sub_nav .wrap .depth_select_wrap .select_drop_box{
        border-left: 0;
        border-right: 0;
    }
    .sub_nav .wrap .depth_select_wrap .select_drop_box ul > li a{padding: 10px;}
    .sub_title{height: 150px;}

    .sub_info_txt > li{margin-bottom: 20px;}
    .sub_info_txt > li.title::after{margin: 20px auto 0;}
    .sub_info_txt > li.title > p{font-size: 1.3rem;}

    .sub_list_wrap{flex-wrap: wrap;}
    .sub_list_wrap > li{
        padding: 40px 20px;
        width: 100%;
    }
    .sub_list_wrap > li .num{width: 45px; height: 45px;}
    .sub_list_wrap > li .num > span{
        font-size: 1.125rem;
        line-height: 45px;
    }
    .sub_list03_wrap > li{
        width: -webkit-calc(100% / 2 - 20px);
        width: -moz-calc(100% / 2 - 20px);
        width: -o-calc(100% / 2 - 20px);
        width: calc(100% / 2 - 20px);
    }
    .sub_list03_wrap > li .num{width: 100%; height: auto;}
    .sub_list03_wrap > li .num > span{line-height: 1;}
    .sub_product_wrap > li > .txt > span{font-size: 1.3rem;}
    .sub_info_img{flex-wrap: wrap;}
    .sub_info_img > li{width: 100%;}
    .sub_imgtxt_wrap > li > .txt{padding: 40px 20px 50px;}
    .sub_imgtxt_wrap > li > .txt > .bottom > p{text-align: center;}
    .sub_round_wrap{
        margin-bottom: -20px;
        margin-left: -20px;
    }
    .sub_round_wrap > li{
        width: -webkit-calc(100% / 2 - 20px);
        width: -moz-calc(100% / 2 - 20px);
        width: -o-calc(100% / 2 - 20px);
        width: calc(100% / 2 - 20px);
        margin-left: 20px;
        margin-bottom: 20px;
    }
    .sub_round_wrap > li > .txt{margin-top: 10px;}
    .sub_round_wrap > li > .txt > p{font-size: 1.125rem;}
    .sub_round02_wrap > li > .txt > p{width: 100%;}
    .sub_process_wrap > li{margin-bottom: 10px;}
    .sub_process03_wrap{
        margin-left: 0;
        margin-bottom: -20px;
    }
    .sub_process03_wrap > li{
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }
    .sub_compare_wrap tr td:last-child{
        border-left: 0.5px solid rgba(0, 0, 0, 0.1);
    }
    .sub_compare_wrap tr td.td_b{display: none;}
    .sub_roundbox_wrap > li{
        width: 150px; height: 150px;        
    }
    .sub_roundbox_wrap > li .round > span{
        width: 80px;
        height: 32px;
        line-height: 32px;
        font-size: 1rem;
    }
    .sub_con_wrap{padding: 40px 20px;}
    .sub_con_wrap h4{font-size: 1.5rem;}
    .sub_con_wrap{font-size: 1rem;}
    .sub_con_wrap02 .right img {
        height: 230px;
    }

    .intro_01_a .wrap .intro_title > h3 img{width: 80%;}
    .intro_01_a .wrap > ul{margin-top: 30px;}
    .intro_01_a .wrap > ul > li:nth-child(2) > ol{margin-bottom: -15px;}
    .intro_01_a .wrap > ul > li:nth-child(2) > ol > li{
        width: 155px;
        height: 155px;
        margin: 0 10px;
        margin-bottom: 15px;
    }
    .intro_01_a .wrap > ul > li:nth-child(2) > ol > li > .box{
        top: 47%;
    }
    .intro_01_a .wrap > ul > li:nth-child(2) > ol > li > .box > i{
        width: 45px; height: 45px;
    }
    .intro_01_b .wrap > ul{flex-wrap: wrap;}
    .intro_01_b .wrap > ul > li{margin-right: 0; margin-bottom: 20px;}
    .intro_01_b .wrap > ul > li:last-child{margin-bottom: 0;}
    .intro_01_c .wrap > .left{
        padding: 60px 20px 30px;
        text-align: center;
    }
    .intro_01_c .wrap > .left > .txt_top::after{
        margin: 20px auto 25px;
    }
    .intro_01_c .wrap > .left > .txt_top img{margin: 0 auto;}
    .intro_01_c .wrap > .left > .txt_top img:nth-child(2){width: 100%;}
    .intro_01_c .wrap > .left > .txt_top .pc_img{display: none;}
    .intro_01_c .wrap > .left > .txt_top .m_img{display: block;}
    .intro_01_c .wrap > .right{text-align: center;}
    .intro_01_d .wrap > ul > li:nth-child(1) img{
        max-width: none;
    }
    .intro_01_d .wrap > ul > li:nth-child(2) .txt{text-align: center!important;}
    .intro_01_e .wrap > img{
        max-width: 130px;
        margin-bottom: 20px;
    }
    .intro_01_e .wrap > p{
        font-size: 1.5rem;
    }
    
    .intro_02_a .wrap > ul > li > .left{width: 70%;}
    .intro_02_a .wrap > ul > li > .left::after{
        width: 80%; height: 33%;
        background-size: contain;
    }
    .intro_02_a .wrap > ul > li > .right{text-align: center;}
    .intro_02_a .wrap > ul > li > .right > .name_wrap::after{margin: 20px auto 25px;}
    .intro_02_a .wrap > ul > li > .right > .txt_bottom > li{flex-wrap: wrap;}
    .intro_02_a .wrap > ul > li > .right > .txt_bottom > li > .wrap{width: 100%;}
    .intro_02_a .wrap > ul > li > .right > .txt_bottom > li > .wrap p{margin-bottom: 10px;}
    .intro_02_a .wrap > ul > li > .right > .txt_bottom > li > .wrap p:last-of-type{margin-bottom: 10px;}
    
    .intro_04_a .wrap .box{padding: 40px 20px;}
    .intro_04_a .wrap .box > h4{font-size: 1.5rem;}
    .intro_04_a .wrap .box > p{font-size: 1rem;}

    .intro_05_a .wrap > ul{margin-left: 0;}
    .intro_05_a .wrap > ul > li {
        width: 100%;
        margin-left: 0;
    }    
    .intro_06_a .wrap .box .txt_wrap{padding: 40px 20px;}
    .intro_06_a .wrap .intro_slide .intro_slide_pagination .swiper-pagination-bullet{
        width: 8px; height: 8px;
        margin: 0 2px;
    }
    .intro_06_a .wrap .box .txt_wrap > .txt_middle > .link_wrap > div{
        flex-wrap: wrap;
    }
    .intro_06_a .wrap .box .txt_wrap > .txt_middle > .link_wrap > div > a{
        margin-right: 0;
        width: 100%;
        margin-bottom: 5px;
    }
    .intro_06_a .wrap .box .txt_wrap > .txt_middle > .link_wrap > div > a:last-child{
        margin-bottom: 0;
    }

    .intro_07_a .wrap .box > .address table tr th{padding: 20px 5px;}
    .intro_07_a .wrap .box > .address table tr td{padding: 20px 15px;}

    .digital_02_b .sub_list_wrap > li{
        margin-bottom: 20px;
    }
    .digital_02_d .wrap .box_b > .right > ol{width: 100%;}
    .digital_03_a .con_title > h3::after{right: 15%;}
    .implant_06_d .con_title > h3::after{right: 19%;}

    .implant_02_b .sub_round_wrap > li > .img{
        width: 160px;
        height: 160px;
    }
    .implant_02_b .sub_round_wrap > li > .img img{max-width: 80px;}
    .implant_02_d .wrap .sub_product_wrap{
        margin-left: 0;
        flex-wrap: wrap;
    }
    .implant_02_d .wrap .sub_product_wrap > li{
        margin-left: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    .implant_02_d .wrap .sub_product_wrap > li:last-child{margin-bottom: 0;}
    .implant_02_d .wrap .sub_product_wrap > li > .img > img{width: 100%;}
    .implant_02_d .wrap .sub_product_wrap > li > .txt > span{padding: 12px 0 14px;}
    .implant_02_d .wrap .sub_product_wrap > li > .txt > ol > li{font-size: 1rem;}
    .digital_02_d .wrap .box_a > .right > ol{margin-bottom: -20px;}
    .digital_02_d .wrap .box_a > .right > ol > li{
        width: -webkit-calc(100% / 2);
        width: -moz-calc(100% / 2);
        width: -o-calc(100% / 2);
        width: calc(100% / 2);
        margin-bottom: 20px;
    }
    .clinic_notice > p{font-size: 1.125rem;}
    .clinic_notice > img{width: 140px;}
    .implant_07_a .sub_round_wrap{margin-left: -10px;}
    .implant_07_a .sub_round_wrap > li{margin-left: 10px;}
    .implant_08_a .sub_round_wrap > li{
        width: -webkit-calc(100% / 2 - 20px);
        width: -moz-calc(100% / 2 - 20px);
        width: -o-calc(100% / 2 - 20px);
        width: calc(100% / 2 - 20px);
    }
    .implant_04_a .sub_list02_wrap{margin-left: 0;}
    .implant_04_a .sub_list02_wrap > li{
        width: 100%; margin-left: 0;
    }
    .implant_08_b table tr td > div{margin-left: 10px;}
    .implant_08_b table tr td > div > ul{margin-left: 10px;}
    .prosthesis_02_b .sub_list_wrap{margin-left: 0;}
    .prosthesis_02_b .sub_list_wrap > li{
        width: 100%;
        margin-left: 0;
    }
    .normal_05_c .sub_list02_wrap{
        margin-bottom: -20px;
        margin-left: 0;
    }
    .normal_05_c .sub_list02_wrap > li{
        width: 100%;
        margin-left: 0;
    }
    /* 줄바꿈 설정 */
    .digital_01_a .sub_con_wrap h4 > strong{display: block;}
    .implant_01_c .sub_product_wrap > li > .txt > p br{display: none;}
    .normal_08_a .sub_info_txt > li p br{display: none;}
    /*// 줄바꿈 설정 */

    .implant_01_c .sub_product_wrap {
        flex-wrap: wrap;
        margin-bottom: -20px;
    }
    .implant_01_c .sub_product_wrap > li{margin-bottom: 20px;}
}
@media screen and (max-width: 400px){
    .main_sec04::after{width: 100%;}
    .main_sec05 .wrap > .left iframe{height: 280px;}

    .intro_02_a .wrap > ul > li > .left{width: 100%;}
    .intro_02_a .wrap > ul > li > .left > img{margin-right: 0;}
    .implant_08_a .sub_round_wrap > li{
        width: -webkit-calc(100% / 2 - 20px);
        width: -moz-calc(100% / 2 - 20px);
        width: -o-calc(100% / 2 - 20px);
        width: calc(100% / 2 - 20px);
    }
}