/* 상세페이지header */
header{
    background: #fff!important;
}
header .login_icon, header .h_logo {
    filter: none;
}
header .gnb>li>a {
    color: #000;
}
.header_menu .gnb > li:hover > a {
    color: #003B75
}
.header_menu .gnb>li>a::before{
    background: #003B75;
}
/*  */
.sub_tab_wrap{
    background: #fff url('../img/sub_tab_logo_bg.png') no-repeat 100% 100% / 30%;
}
.sub_tab_wrap h2{
    font-family: 'Paperlogy';
    position: relative;
    font-size: 6rem;
    color: #000;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    line-height: 1.2;
    padding: 200px 0 70px;
}
.sub_tab_wrap h2 b{
    font-weight: 800;
}
.sub_tab_wrap h2 i{
    content: '';
    text-transform: uppercase;
    font-weight: 300;
    font-size: 20px;
    opacity: 0.6;
    color: #003B75;
}
.sub_tab{
    display: flex;
    font-size: 22px;
    font-weight: 400;
    gap: 5rem;
}
.sub_tab li a{
    display: inline-block;
    padding: .7rem 1rem;
}
.sub_tab li:hover,
.sub_tab li.on{
    font-weight:700 ;
    color: #003B75;
    border-bottom:4px solid #003B75;
}

.sub_banner{
    width: 100%; 
    height: 50rem;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
.sub_banner .sub_banner_inner{
    height: 100%; width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.55);
    /* background: rgba(92, 98, 104, 0.3); */
    /* background: rgba(28, 42, 85, 0.65); */
    /* background: rgba(101, 77, 26, 0.45); */
}
.sub_banner.sub1 .sub_bg{background:  url("../img/sub1.png") no-repeat center center / cover;}
.sub_banner.sub2 .sub_bg{background:  url("../img/sub2.png") no-repeat center center/ cover;}
.sub_banner.sub3 .sub_bg{background:  url("../img/sub3.png") no-repeat center center/ cover;}
.sub_banner.sub4 .sub_bg{background:  url("../img/sub4.png") no-repeat center center/ cover;}
.sub_banner .sub_bg{
    content: '';
    position: absolute;
    z-index: -1;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-size: cover;
    /* filter: blur(3px); */
    animation: animatedBackground 2s forwards cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
@keyframes animatedBackground {
    0%{transform: translateX(-30px)scale(1.1);}
    100%{transform: translateX(0px)scale(1.2);}
}

.sub_banner .sub_banner_name{
    font-family: 'Paperlogy';
    text-transform: uppercase;
    line-height: 0.7;
    position: absolute;
    bottom: 0;
    left: 0;
    /* transform: translateX(-50%); */
    color: #fff;
    white-space : nowrap; 
    font-size: 7.5vw;
    font-weight: 800;
}

/* m1_1 */
.m11_ul{
    display: flex;
    gap: 40px   ;
}
.m11_ul li{
    width: 100%;
}
.m11_ul .img_wrap{
    line-height: 0;
    border-radius: 30px;
    overflow: hidden;
}
.m11_tit{
    font-size: 25px;
    font-weight: 800;
    color: #003B75;
    margin: 30px 0 10px;
}
.m11_tit + p{
    font-weight: 300;
    color: #6D6D6D;
}
.m11_tit + p b{
    color: #434748;
    font-weight: 600;
}
/* m1_2 */
.doctor1{
    position: relative;
}
.doctor1::after{
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color:rgba(0, 59, 117, 5%) ;
}
.doctor1:nth-child(2n):after{
    background: rgba(67, 71, 72, 5%);
}
.doctor1 .content_inner{
    position: relative;
    z-index: 2;
    padding-top: 100px;
}
.doctor_wrap{
    display: flex;
    align-items: flex-end;
    gap: 40px;
}
.doctor_img{
    max-width: 480px;
    width: 100%;
    align-self: flex-end;
    line-height: 0;
    flex: 1;
}
.doctor_txt{
    flex: 2;
}
.doctor_name{
    line-height: 1;
    display: flex;
    gap: 10px;
    align-items: end;
    font-weight: 300;
    font-size: 25px;
    margin-bottom: 40px;
}
.doctor_name b{font-size: 1.2em;}
.doctor_list_wrap{
    display: flex;
    gap: 40px;
    padding-bottom: 70px;
}
.doctor_list{
    width: 100%;
    font-size: 18px;
}
.doctor_list li:not(:last-of-type){margin-bottom: 5px;}
.doctor_list .doctor_tit{
    font-weight: 700;
    font-size: 1.15em;
    margin-bottom: 10px;
    font-family: 'Paperlogy';
    color: #003B75;
}
/* m1_3 */
/* 보유장비 */
.sub13_ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10rem 3rem;
}
.sub13_ul li{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.sub13_ul .img_wrap{
    width: 100%;
    border: 1px solid #e4e4e4;
    margin-bottom: 2rem;
    overflow: hidden;
    aspect-ratio: 1/1;
    position: relative;
    padding-top: 4px; /* 보더 공간 확보 */
}
.sub13_ul .img_wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #003B75 0.0001%, #434748 100%);
}
.sub13_ul .img_wrap img{
    width: 100%;height: 100%;
    object-fit: cover;
}

.sub13_ul h6{
    font-size: 2.5rem;
    font-weight: 700;
    color: #003B75;
}
.sub13_ul p{
    font-size: 2rem;
}
/* m20 */
.m2_0{
    background: url('../img/m20_bg.png') no-repeat 50% 50% / cover;
    background-attachment: fixed;
}
.m2_0 .content_inner{
    position: relative;
}
.m2_tit{
    font-size: 50px;
    position: absolute;
    left: 0;
    top: 140px;
}
.m2_tit b{
    color: #003B75;
}
.m20_wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}
.m2_tab li:not(:last-child){
    margin-bottom: 30px;
}
.m2_tab li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 25px;
    width: 250px;
    background: #003B75;
    border: 2px solid #003B75;
    color: #fff;
    padding: 15px  30px;
    line-height: 1;
    border-radius: 40px;
    transition: .3s;
}
.m2_tab li:hover a{
    background: #fff;
    color: #003B75;
}
.m2_tab li:hover .more:before, 
.m2_tab li:hover .more:after{
    background-color: #003B75;
}
.m2_tab li:hover .more{
    transform: rotate(180deg)scale(1.1);
}
.more {
    width:  15px;
    height: 15px;
    opacity: 0.8;
    position: relative;
    transform-origin: center center;
    transition: transform .3s ease-in-out;
}
.more:before, .more:after {
    position: absolute;
    left: calc(50% - 1.5px);
    top: 0%;
    /* transform: translate(-50%, -50%); */
    content: ' ';
    height: 15px;
    width: 3px;
    border-radius: 2px;
    background-color: #fff;
}
.more:before {
    transform: rotate(0);
}
.more:after {
    transform: rotate(-90deg);
}
/*  */
.m20_body{
    position: relative;
    line-height: 0;
}
.pointer_wrap li{
    position: absolute;
    transition: all 1.5s ease-in 0s;
    cursor: pointer;
    width: 120px;
    z-index: 9;
    transform: translate(-50%, -50%);
    animation: spot 1.2s ease 0s infinite alternate both;
}
@keyframes spot {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    80% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}
.neck{
    top: 17%;
    left: 55%;
}
.waist{
    top: 44%;
    left: 40%;
}
.shoulder{
    top: 25%;
    left: 72%;
}
.elbow{
    top: 25%;
    left: 18%;
}
.wrist{
    top: 55%;
    left: 87%;
}
.knee{
    top: 65%;
    left: 57%;
}
.ankle{
    top: 75%;
    left: 27%;
}
.wrap.blur-effect {
    overflow: hidden;
    filter: blur(4px) ;
    transition: filter 1s ease-in-out;
}
/* m2_1 */
h3{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 80px;
}
h3 i{
    text-transform: uppercase;
    color: rgba(67, 71, 72, 0.6);
    font-size: 20px;
    font-weight: 300;
}
h3 i b{
    font-weight: 600;
}
h3 em{
    font-weight: 800;
    font-size: 50px;
    color: #003B75;
    
}
/*  */
.flex_wrap{
    display: flex;
    gap: 40px;
}
.flex_wrap .img_wrap,
.flex_wrap .txt_wrap{
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}
.flex_wrap .img_wrap{
    line-height: 0;
    max-width: 520px;
}
.flex_wrap .img_wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.flex_wrap .txt_wrap{
    border: 1px solid rgba(0, 59, 117, 0.5);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
h4{
    font-size: 38px;
    font-weight: 800;
    color:#003B75;
}
h4 i{font-weight: 400;}
.flex_wrap .txt_wrap hr{
    background:rgba(0, 59, 117, 0.5);
    height: 0.5px;
    margin: 20px 0;
    border:0;
}
.flex_wrap:not(:last-child){
    margin-bottom: 80px;
}
.flex_wrap:nth-child(2n+1){
    flex-direction: row-reverse;
}
.flex_wrap:nth-child(2n+1) .txt_wrap{
    border: 1px solid rgba(109, 109, 109, 0.5);
}
.flex_wrap:nth-child(2n+1) .txt_wrap hr{
    background: rgba(109, 109, 109, 0.5);
}
/* qna */
.qna{
    background: url('../img/qna_bg.png') no-repeat 50% 50% / cover;
    background-attachment: fixed;
}
.qna_wrap:not(:last-child){
    margin-bottom: 50px;
}
.qna_wrap > *{
    padding: 25px ;
}
.q{
    background: #003B75;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
}
.a{
    background: #fff;
    font-size: 25px;
    border: 1px solid #6D6D6D   ;
}
.a i{color: #003B75;font-weight: 700;}
/*  */
.chk_bg{
    background: url('../img/chk_bg.png') no-repeat 50% 50% / cover;
    background-attachment: fixed;
}
.check_ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px 2%;
}
.check_ul li{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 30px;
    gap: 10px;
    background: #fff;
    border-radius: 30px;
    border: 1px solid rgba(109, 109, 109, 0.8);
    padding: 30px 20px;
    width: 30%;
    text-align: center;
}
.check_tit{
    font-weight: 700;
    color: #003B75;
}
.check_ul li::before{
    content: '';
    flex-shrink: 0;
    background: url('../img/check.png') no-repeat 50% 50% / contain;
    width: 1.2em;
    aspect-ratio: 1/1;
}
.logo_bg_r{
    background: url('../img/logo_bg_r.png') no-repeat 100% 100% / 40%;
    background-attachment: fixed;
}

.circle_ul{
    display: flex;
    justify-content: center;
    gap: 4rem;
    text-align: center;
}

.circle_ul li{
    display: flex;
    flex-direction: column;
    gap: 3rem;
    flex: 1;
    width: 25%;
}
.circle_img{
    line-height: 0;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 0.5px solid rgba(0, 59, 117, 0.5) ;
    padding: 8px;
}
.circle_tit{
    font-size: 28px;
    font-weight: 700;
}
/*   */
.m4_wrap{
    display: flex;
    gap: 40px;
}
.m4_wrap .map_wrap{
    width: 100%;
    min-height: 300px;
    border-radius: 30px;
    overflow: hidden;
}
.m4_wrap .map_right{
    width: 100%;
    max-width: 500px;
}
.m4_wrap .map_right .map_box{
    padding: 40px 30px;
    font-size: 20px;
    border: 1px solid rgba(0, 59, 117, 0.5);
    border-radius: 30px;
}
.m4_wrap .map_right .map_box:first-child{
    background: #fff url('../img/time_bg.png') no-repeat 100% 100% / 50%;
    margin-bottom: 40px;
}
.m4_wrap .map_right .map_box:last-child{
    background: rgba(243, 248, 255, 0.5) url('../img/parkilng_bg.png') no-repeat 100% 100% / 50%;
}
.map_box h4{
    margin-bottom: 20px;
}
.map_box li{
    display: flex;
    gap: 30px;
    margin-bottom: 0.5em;
}
.map_box li em{
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    width: 75px;
}

















/*  */
.img_wrap .bg{
    width: 100%;
    position: absolute;
    right: 50%;
    top: 0;
    transform: translate(-50%, 0 )scale(2);
    /* opacity: 0.15; */
}
.img_wrap .bg img{opacity: 0.15;}
.img_wrap .bg::after{
    transform: translate(-50%, 0)scale(2);
    position: absolute;
    z-index: -1;
    top: 0;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(15, 93, 93, 1);
}
.right_img .img_wrap .bg{
    width: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(50%, 0)scale(2);
    /* opacity: 0.15; */
}
.right_img .img_wrap .bg img{opacity: 0.15;}
.right_img .img_wrap .bg::after{
    transform: translate(50%, 0)scale(2);
    position: absolute;
    z-index: -1;
    top: 0;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(15, 93, 93, 1);
}





/* time_table */
main .time_table{display: flex;background: #14201f;color: #fff;}
.time_table>*{width: 100%;}
.map_txt{
    padding: 10rem 5rem;
    font-size: 25px;
}
.map_tit.tel{color: #fff;}
.map_tit{
    color:rgba(255, 255, 255, 0.45);
    font-size: 40px;
    font-weight: 700;
    margin: 20px 0;
}
.map_tit .y_line{
    padding: 0 10px;
    font-size: 0.7em;
    display: inline-block;
    background: #fce16f;
    color: #14201f;
}
.map_txt li{
    display: flex;
    gap: 30px;
    margin-bottom: 0.5em;
}
.map_txt li em{
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    width: 110px;
}
.time_table .root_daum_roughmap .wrap_map{
    height: 100%;
    min-height: 350px;
}
.time_table .root_daum_roughmap .wrap_controllers{
    display: none;
}
.time_table .root_daum_roughmap .cont{display: none;}