
/* imgmove */
.imgmove {
    position: relative;
    overflow: hidden;
}
.imgmove img {
    opacity: 0;
}
.imgmove.appear-animation-visible img {
    animation: img_opa both cubic-bezier(0.680, 0, 0.265, 1) 1.2s 0.2s;
}
.imgmove .move_left {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background:#092d4f;
}
.imgmove.appear-animation-visible .move_left {
    animation: move_left both cubic-bezier(0.680, 0, 0.265, 1) 1.2s 0.2s;
}

@keyframes move_left {
    0% {transform:translateX(-101%);}
    50% {transform:translateX(0);}
    100% {transform:translateX(101%);}
}
@keyframes img_opa {
    51% {opacity:0;}
    100% {opacity:1;}
}
/* tooth1 */
#tooth1 .sec1 .tbox h1 {
    line-height: 1.1em;
}
#tooth1 .sec1 .ibox {
    display: block;
    position: relative;
}
#tooth1 .sec1 .ibox:after {
    content: "";
    position: absolute;
    left: 20px;
    top: 20px;
    width: 100%;
    height: 100%;
    background: url(../img/tt_sha.png) left top;
    z-index: 0;
}
#tooth1 .sec1 .ibox .imgmove ,
#tooth1 .sec1 .ibox .imgmove .move_left {
    z-index: 1;
}
#tooth1 .sec1 .ibox .imgmove img {
    z-index: 3;
}
#tooth1 .sec2 {
    background: url(../img/tt_sec2.png) center center;
    background-color: #f2f2f2;
}
#tooth1 .sec2 h3 {
    line-height: 1.2em;
}
#tooth1 .sec2 h3 span {
    display: inline-block;
    margin-top: 5px;
    padding: 3px 0;
}
#tooth1 .sec2 h3 span.c_bl {
    border-color: #1340a5;
}
@media (min-width:768px){
    #tooth1 .sec2 h3 span {
        display: inline-block;
        border-bottom: 1px solid #111;
    }
}
@media (max-width:768px){
    #tooth1 .sec1 .ibox {
        margin-top: 20px;
    }
    #tooth1 .sec1 .ibox .imgmove img {
        box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
    }
    #tooth1 .sec2 h3 span {
        text-decoration: underline;
    }
}

/* clinicList */
.clinicList {
    border-top: 2px solid #333;
}
.clinicList > li {
    border: 1px solid #ddd;
    border-top: 0px;
    border-left: 0px;
}
.clinicList > li:nth-child(even) {
    border-right: 0px;
}
.clinicList > li .item {
    padding: 40px 30px;
}
.clinicList > li .item .imgWrp {
    display: block;
    text-decoration: none;
    position: relative;
}
.clinicList > li .item .imgWrp .more {
    position: absolute;
    right: 15px;
    bottom: -35px;
    width: 70px;
    line-height: 70px;
    background-color: #65afe6;
    border-radius: 50%;
    text-align: center;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.15);
}
.clinicList > li .item .imgWrp .img {
    overflow: hidden;
}
.clinicList > li .item .imgWrp .img img {
    -webkit-transition: all 1.4s ease-out;
    -moz-transition: all 1.4s ease-out;
    -o-transition: all 1.4s ease-out;
    transition: all 1.4s ease-out;
}
.clinicList > li .item .imgWrp:hover .img img {
    transform: scale(1.1);
}
.clinicList > li .item .imgWrp .img .float {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(68, 68, 68, 0.6);
    text-align: center;
    opacity: 0;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.clinicList > li .item .imgWrp:hover .img .float {
    opacity: 1;
}
.clinicList > li .item .imgWrp .img .float p {
    display: inline-block;
    border-bottom: 1px solid #fff;
}
.clinicList > li .item .txt {
    padding: 30px 15px 0;
}
.clinicList > li .item .txt .cname h5,
.clinicList > li .item .txt .cname span {
    display: inline-block;
    vertical-align: middle;
}
.clinicList > li .item .txt .cname span {
    font-size: 17px;
    line-height: 1em;
    padding: 7px 20px;
    border-radius: 100px;
    background-color: #f4f4f4;
    color: #999;
    font-weight: 500;
    margin-left: 5px;
    cursor: pointer;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.clinicList > li .item .txt .cname span:hover {
    background-color: #666;
    color: #fff;
}
@media (max-width:768px){
    .clinicList > li {
        border-right: 0px;
    }
    .clinicList > li .item {
        padding: 20px 15px;
    }
    .clinicList > li .item .imgWrp .more {
        width: 40px;
        line-height: 40px;
        bottom: -20px;
    }
    .clinicList > li .item .txt {
        padding: 15px 15px 0;
    }
    .clinicList > li .item .txt .cname {
        margin-bottom: 10px;
    }
    .clinicList > li .item .txt .cname span {
        font-size: 13px;
        padding: 4px 10px;
        margin-bottom: 2px;
    }
}
/* infoList */
.infoList li {
    margin-bottom: 5px;
}
.infoList li p {
    position: relative;
    padding-left: 90px;
    color: #666;
}
.infoList li p > strong {
    position: absolute;
    left: 0;
    top: 0;
    color: #222;
}
@media (max-width:768px){
    .infoList li p {
        padding-left: 70px;
    }
}

/* table_basic */
.table.table_basic {
    border-top: 2px solid #333;
}
.table.table_basic tr th,
.table.table_basic tr td {
    font-size: 17px;
    text-align: center;
    font-weight: 300;
    color: #333;
    border: 1px solid #ddd;
    padding: 15px;
    vertical-align: middle;
}
.table.table_basic tr th:first-child,
.table.table_basic tr td:first-child {
    border-left: 0px;
}
.table.table_basic tr th:last-child,
.table.table_basic tr td:last-child {
    border-right: 0px;
}
.table.table_basic tr th {
    font-weight: 500;
}
.table.table_basic thead tr th {
    background-color: #fff;
    border-bottom: 2px solid #333;
}
.table.table_basic tbody tr th {
    background-color: #f8f8f8;
}
@media (max-width:768px) {
    .table.table_basic tr th,
    .table.table_basic tr td {
        font-size: 13px;
        padding: 8px 5px;
    }
}


/*modal-shape*/
.modal-shape .modal-content {
    overflow: hidden;
    border-radius: 10px;
    border: 0px;
}
.modal-shape .modal-header {
    border: 0px;
    background-color: #fff;
    padding: 20px 15px;
    position: relative;
}
.modal-shape .modal-header .cls_btn {
    position: absolute;
    right: 20px;
    height: 20px;
    background: url(../img/cls_btn.png) center center no-repeat;
    width: 20px;
    top: 20px;
    cursor: pointer;
    border: 0px;
}
.modal-shape .modal-header h4 {
    font-weight: 700;  
    line-height: 1.2em; 
}
.modal-shape .modal-header p {
    color: #999;
    font-weight: 700;
    line-height: 1.2em;
    margin-top: 10px;
}
.modal-shape .modal-body {
    padding: 30px 50px 60px;
}
.modal-shape .modal-body > p {
    font-weight: 600;
    margin-bottom: 15px;
}
.modal-shape .modal-body > .bt_cmt {
    color: #999;
    font-weight: 400;
    margin-top: 10px;
    font-size: 14px;
}
.modal-shape .modal-body .row {
    margin: 0 -5px;
}
.modal-shape .modal-body .row > li {
    padding: 0 5px;
    margin: 5px 0;
}
.modal-shape .modal-body ul li a {
    text-decoration: none;
    display: block;
    text-align: center;
    border: 2px solid #ddd;
    padding: 15px;
    border-radius: 10px;
}
.modal-shape .modal-body ul li a h6 {
    color: #666;
    margin-top: 5px;
}
@media (max-width:768px){
    .modal-shape .modal-body {
        padding: 20px 10px 40px;
    }
    .modal-shape .modal-body > p {
        margin-bottom: 5px;
    }
    .modal-shape .modal-body ul li a h6 {
        font-size: 13px;
    }
    .modal-shape .modal-body > .bt_cmt {
        font-size: 12px;
    }
}
/*modal-shape*/
.modal-shape .table tbody tr th,
.modal-shape .table tbody tr td {
    border: 1px solid #aaa;
    padding: 15px;
    font-size: 15px;
    color: #444;
    border-right: 0px;
}
.modal-shape .table tbody tr th {
    width: 25%;
    font-weight: 500;
    background-color: #fcfcfc;
    border-left: 0px;
}
.modal-shape .bt_ {
    margin-top: 10px;
}
.modal-shape .bt_ a {
    display: inline-block;
    color: #37018d;
    font-weight: 600;
}
.modal-shape .infobox {
    margin: 20px 0;
    padding: 20px 15px;
    background-color: #f7f7f7;
    border-radius: 10px;
}
.modal-shape .infobox ul li {
    color: #333;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.2em;
}
.modal-shape .infobox ul li span {
    position: absolute;
    left: 0;
}
.modal-shape .wanningbox {
    margin: 20px 0;
    padding: 20px 15px;
    background-color: #ffe5e5;
    border-radius: 10px;
}
.modal-shape .wanningbox p {
    color: #d40707;
}
@media (max-width: 768px) {
    .modal-shape .table tbody tr th,
    .modal-shape .table tbody tr td {
        padding: 10px;
        font-size: 13px;
    }
    .modal-shape .table tbody tr th {
        word-break: keep-all;
    }
    .modal-shape .wanningbox,
    .modal-shape .infobox {
        margin: 15px 0;
    }
    .modal-shape .infobox ul li,
    .modal-shape .wanningbox p {
        font-size: 13px;
    }
}

/* sTopTit */
.sTopTit .lft .lined {
    display: inline-block;
    width: 50px;
    height: 1px;
    background-color: #333;
}
@media (min-width:768px){
    .sTopTit {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}
@media (max-width:768px){
    .sTopTit {
        text-align: center;
    }
    .sTopTit .rt {
        margin-top: 15px;
    }
}
/* linkClinicBox */
.linkClinicBox a {
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px 5px;
    text-align: center;
    width: 80px;
    text-decoration: none;
}
.linkClinicBox a h6 {
    margin-top: 5px;
}
@media (max-width:768px){
    .linkClinicBox a {
        padding: 10px 0px 14px;
        width: 65px;
    }
    .linkClinicBox a img {
        width: 18px;
    }
    .linkClinicBox a h6 {
        font-size: 12px;
        line-height: 1em;
    }
}
/* clinicMent */
.clinicMent h1 {
    color: #444;
    font-weight: 200;
    line-height: 1.1em;
}
.clinicMent h5 {
    font-weight: 300;
}
@media (min-width:1400px){
    .clinicMent {
        padding: 130px 60px;
        padding-right: 506px;
        background: url(../img/clinicMent1.jpg) right center no-repeat;
        background-color: #f7f7f7;
    }
    .clinicMent.clinicMent2 {
        background: url(../img/clinicMent2.jpg) right center no-repeat;
        background-color: #f7f7f7;
    }
}
@media (max-width:1400px) and (min-width:1200px){
    .clinicMent {
        padding: 60px;
        padding-right: 450px;
        background: url(../img/clinicMent1.jpg) right center no-repeat;
        background-color: #f7f7f7;
        background-size: 400px !important;
    }
    .clinicMent.clinicMent2 {
        background: url(../img/clinicMent2.jpg) right center no-repeat;
        background-color: #f7f7f7;
    }
}
@media (max-width:1400px) {
    .clinicMent .conbox {
        margin-top: 20px;
    }
}
@media (max-width:1200px){
    .clinicMent {
        background-color: #f7f7f7;
        padding: 60px;
    }
}
@media (max-width:768px){
    .clinicMent {
        padding: 45px 20px;
    }
}

/* doct_list */
.doct_list {
    text-align: center;
}
.doct_list .doct img {
    background-color: #f7f7f7;
}
.doct_list .doct h5 {
    margin-top: 10px;
    font-weight: 500;
}
@media (max-width:768px){
    .doct_list > li {
        margin-bottom: 20px;
    }
}
    
/* aboutClinic */
.aboutClinic {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 40px 0;
    align-items: center;
}
.aboutClinic .left {
    padding: 20px 60px;
}
.aboutClinic .left .telBox {
    padding: 15px 0;
    display: inline-block;
    text-align: left;
    text-decoration: none;
    padding-left: 80px;
    background: url(../img/telBoxBg.png) left center no-repeat;
    margin-bottom: 20px;
}
.aboutClinic .left .telBox h5,
.aboutClinic .left .telBox h2 {
    line-height: 1.1em;
}
.aboutClinic .left .telBox h2 {
    margin-top: 8px;
    font-weight: 600 !important;
    color: #3fa2eb;
}
.aboutClinic .right ul li {
    padding: 7px 0;
}
.aboutClinic .right ul li h5 {
    position: relative;
    padding-left: 200px;
}
.aboutClinic .right ul li h5 strong {
    position: absolute;
    left: 0;
    top: 0;
    width: 170px;
    font-weight: 500;
    color: #333;
}
.aboutClinic .right ul li h5 strong::before {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: #ddd;
}
@media (min-width:992px){
    .aboutClinic {
        display: flex;
        flex-wrap: nowrap;
    }
    .aboutClinic > div {
        width: 50%;
    }
}
@media (max-width:992px){
    .aboutClinic .left {
        text-align: center;
    }
    .aboutClinic .left ul {
        max-width: 200px;
        margin: 0 auto;
    }
}
@media (max-width:768px){
    .aboutClinic {
        padding: 30px 0;
    }
    .aboutClinic .left {
        padding: 0 20px 20px;
    }
    .aboutClinic .left .telBox {
        margin-bottom: 10px;
        padding: 5px 0;
        padding-left: 55px;
        background-size: 40px !important;
    }
    .aboutClinic .right ul li {
        padding: 4px 0;
    }
    .aboutClinic .right ul li h5 {
        padding-left: 120px;
    }
    .aboutClinic .right ul li h5 strong {
        width: 105px;
    }
}
/* addr */
.addr {
    background: url(../img/addr.png) left 5px no-repeat;
    padding-left: 25px;
    text-align: left;
}
@media (max-width:768px) {
    .addr {
        background: url(../img/addr.png) left 0 no-repeat;
    }
}
/*mapbox*/
.mapbox {
    border: 1px solid #ddd !important;
    overflow: hidden;
}
.mapbox,
.mapbox .root_daum_roughmap .wrap_map {
    height: 550px !important;
}
.mapbox .root_daum_roughmap_landing .border1, 
.mapbox .root_daum_roughmap_landing .border2, 
.mapbox .root_daum_roughmap_landing .border3, 
.mapbox .root_daum_roughmap_landing .border4 {
    display: none !important;
}
@media (max-width:768px) {
    .mapbox,
	.mapbox .root_daum_roughmap .wrap_map {
		height: 250px !important;
	}
}


/*company_05*/
.local_info > ul > li {
    font-size: 16px;
    line-height: 1.6em;
    color: #666;
    font-weight: 300;
	word-break: keep-all;
	position: relative;
}
.local_info ul li h4 {
    color: #111;
}
.local_info ul li h4 img {
    width: 40px;
}
@media (min-width:992px){
	.local_info {
		position: relative;
	}
	.local_info > ul {    
		display: flex;
		justify-content: space-between;
	}
	.local_info > h1 {
		position: absolute;
		left: 0;
		top: -5px;
		line-height: 1em;
	}
}
@media (max-width:992px){
	.local_info {
		padding: 40px 0;
		margin-top: 0px;
	}
	.local_info > ul > li:not(:first-child) {
		margin-top: 30px;
	}
	.local_info h4 {
		margin-bottom: 5px;
	}
}
@media (max-width:768px) {
	.local_info > ul > li > ul > li {
		font-size: 14px;
	}
    .local_info ul li h4 img {
        width: 30px;
        vertical-align: middle;
    }
}
/* stit */
.stit .bigTit {
    font-size: 60px;
    font-weight: 700;
    color: #ccc;
    margin-bottom: 25px;
}
.stit .bdSym {
    margin-bottom: 15px;
}
.stit .lined {
    display: inline-block;
    margin-bottom: 20px;
    width: 1px;
    height: 40px;
    background-color: #333;
}
.stit h1 {
    line-height: 1.1em;
}
.stit.stit_w h1, .stit.stit_w h4{
    color: #fff;
}
.stit.stit_w .lined{
    background-color: #fff;
}
@media (max-width:768px) {
    .stit .lined {
        margin-bottom: 10px;
        height: 20px;
    }
    .stit .bdSym {
        width: 50px;
    }
    .stit .bigTit {
        font-size: 30px;
        margin-bottom: 15px;
    }
}
/* spdvdbg */
.spdvdbg {
    background: url(../img/spdvdbg.png) left top;
    height: 10px;
    width: 100%;
}
/* special1 */
#special1 .sec1 {
    background: url(../img/spc_bg1.jpg) center center no-repeat;
}
#special1 .sec1 .tit h1 {
    color: #fff;
}
#special1 .sec1 .tit h1 span {
    color: #35a0ef;
}
#special1 .sec1 .tit h5 {
    letter-spacing: 10px;
    opacity: 0.6;
}
#special1 .sec1 .wBox {
    text-align: center;
    background-color: #fff;
}
@media (min-width:768px){
    #special1 .sec1 .tit h1 {
        font-size: 65px;
    }
}
/* special1 .sec2 */
#special1 .sec2 ul {
    background-color: #fcfcfc;
}
#special1 .sec2 li {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
#special1 .sec2 li > div {
    width: 50%;
}
#special1 .sec2 li .tbox {
    padding: 15px 60px;
}
#special1 .sec2 li .tbox h3,
#special1 .sec2 li .tbox p {
    color: #222;
}
#special1 .sec2 li .num {
    color: #d7e5ef;
    display: inline-block;
    font-weight: 700;
    font-size: 65px;
    font-style: italic;
}
@media (max-width:1400px){
    #special1 .sec2 li {
        flex-wrap: wrap;
    }
    #special1 .sec2 li > div {
        width: 100%;
    }
    #special1 .sec2 li .ibox {
        order: 2;
    }
    #special1 .sec2 li .ibox img {
        width: 100%;
    }
    #special1 .sec2 li .tbox {
        order: 1;
        padding: 45px 15px;
    }
}
@media (max-width:992px){
    #special1 .sec2 li .num {
        font-size: 25px;
    }
    #special1 .sec2 li .tbox {
        padding: 35px 15px;
    }
}

/* bg_grm */
.bg_grm{
    background-color: #f5f8fd;
}

/*name_sec*/
.name_sec  {
    background: url(../img/name_bg.jpg) center center no-repeat;
}
.name_sec .tit h1 {
    color: #fff;
}
.name_sec .tit h1 span {
    color: #35a0ef;
}
.name_sec .tit h5 {
    letter-spacing: 10px;
    opacity: 0.6;
}
.name_sec .tit .lined {
    display: block;
    margin: 30px auto;
    width: 1px;
    height: 40px;
    background-color: #fff;
}
@media (min-width:769px){
    .name_sec .tit h1 {
        font-size: 65px;
    }
}
@media (max-width:768px){
    .name_sec .tit .lined {
        margin: 20px auto;
        height: 25px;
    }
}

/*pro_wrp*/
.pro_wrp .pro_box .ibox{
    border: 1px solid #ddd;
}
.pro_wrp .pro_box .tbox h4{
    background-color: #101d36;
    padding: 10px 0;
}
.pro_wrp .pro_box .tbox h5{
    margin-top: 15px;
}

@media (max-width:768px){
    .pro_wrp .pro_box{
        margin: 10px 0;
    }
}

/*cess_wrp*/
.cess_wrp li .cess_box{
    margin: 15px 0;
}
.cess_wrp .cess_box .ibox{
    position: relative;
    border: 1px solid #ddd;
    border-bottom: 0px;
}
.cess_wrp .cess_box .ibox span{
    position: absolute;
    background-color: #1340a5;
    color: #fff;
    font-weight: 600;
    text-transform: none;
    font-size: 24px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    bottom: -25px;
    left: 50%;
    margin-left: -25px;
}
.cess_wrp .cess_box .tbox{
    border: 1px solid #ddd;
    padding: 50px 0;
    min-height: 180px;
    background-color: #f7f7f7;
}
@media (max-width:768px){
    .cess_wrp li .cess_box{
        margin: 5px 0;
    }
    .cess_wrp .cess_box .ibox span{
        font-size: 16px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        bottom: -15px;
        left: 50%;
        margin-left: -15px;
    }
    .cess_wrp .cess_box .tbox{
        padding: 30px 0 10px;
        min-height: 105px;
    }
}


/*all1*/
#all1 .sec3 .all1_s3box{
    border-radius: 20px;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #dee1e7;
}
#all1 .sec3 .all1_s3box .tbox h1 span{
    color: #d7e5ef;
    display: inline-block;
    font-weight: 700;
    font-size: 65px;
    font-style: italic;
    margin-right: 10px;
}
/* #all1 .sec4 {
    background-color: #f7f7f7;
} */
/* #all1 .sec5{
    background: url(../img/all1_s5_bg.jpg) center center no-repeat;
    background-size: cover;
} */
@media (min-width:769px){
    #all1 .sec3 .all1_s3box .tbox{
        padding-left: 5%;
    }
    #all1 .sec3 .all1_s3box .ibox img{
        border-radius: 20px;
    }
}
@media (max-width:768px){
    #all1 .sec3 .all1_s3box{
        padding: 20px;
        margin: 5px 0;
    }
    #all1 .sec3 .all1_s3box .tbox{
        margin-top: 20px;
    }
    #all1 .sec3 .all1_s3box .tbox h1 span{
        font-size: 35px;
        margin-right: 10px;
    }
}

/*all2*/
#all2 .sec1{
    /* background-color: #eef2f7; */
}
#all2 .sec1 ul li img {
    border: 1px solid #ddd;
}
#all2 .sec2 .c_wrp .stit {
    border: 1px solid #ddd;
}
@media (min-width:769px){
    #all2 .sec2{
        /* background: url(../img/all2_s2_bg.jpg) right center no-repeat;
        background-size: cover; */
    }
    #all2 .sec2 .c_wrp .stit {
        border-right: 0px;
    }
}
@media (max-width:768px){
    #all2 .sec2 .c_wrp .stit {
        padding: 40px 20px;
    }
}

/*all3*/
#all3 .sec1 {
    background-color: #f7f7f7;
}
#all3 .sec2 .all3_s2box{
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 40px;
    margin: 15px 0;
}
#all3 .sec2 .all3_s2box .tbox h1 span{
    color: #d7e5ef;
    display: inline-block;
    font-weight: 700;
    font-size: 65px;
    font-style: italic;
    margin-right: 10px;
}
#all3 .sec2 .txtbox{
    background-color: #101d36;
    padding: 30px;
    border-radius: 20px;
}
#all3 .sec2 .txtbox h1{
    color: #f9e000;
}
#all3 .sec3{
    /* background: url(../img/all3_s3_bg.jpg) right center no-repeat;
    background-size: cover; */
    background-color: #f7f7f7;
}
#all3 .sec3 .sd_box{
    /* background-color: rgba(255,255,255,0.85);
    border-radius: 50px;
    padding: 50px 100px; */
}
#all3 .sec3 ul li:not(:last-child) .jong_box{
    border-bottom: 1px dashed #aaa;
}
#all3 .sec3 ul li .jong_box{
    padding: 40px 0;
}
#all3 .sec3 ul li .jong_box .tbox h1{
    color: #4ec6f2;
}
#all3 .sec3 ul li .jong_box .tbox h4 {
    margin-top: 20px;
    line-height: 1.4em;
}
#all3 .sec3 ul li .jong_box .tbox h5 {
    line-height: 1.4em;
    color: #999;
    margin-top: 5px;
}

@media (min-width:769px){
    #all3 .sec2 .all3_s2box .tbox{
        padding-left: 5%;
    }
    #all3 .sec2 .all3_s2box .ibox img{
        border-radius: 20px;
    }
    #all3 .sec3 ul li:nth-child(odd) .jong_box .tbox{
        padding-left: 5%;
    }
    #all3 .sec3 ul li:nth-child(even) .jong_box .tbox{
        padding-right: 5%;
    }
    #all3 .sec4{
        /* background: url(../img/all3_s4_bg.jpg) right center no-repeat;
        background-size: cover; */
    }
}
@media (max-width:768px){
    #all3 .sec2 .all3_s2box{
        padding: 20px;
    }
    #all3 .sec2 .all3_s2box .tbox{
        margin-top: 20px;
    }
    #all3 .sec2 .all3_s2box .tbox h1 span{
        font-size: 35px;
        margin-right: 10px;
    }
    #all3 .sec2 .txtbox{
        padding: 20px;
        border-radius: 10px;
    }
    #all3 .sec3 .sd_box{
        border-radius: 20px;
        padding: 30px;
    }
    #all3 .sec3 ul li .jong_box{
        padding: 25px 0;
    }
    #all3 .sec3 ul li .jong_box .tbox{
        margin-top: 20px;
    }
    #all3 .sec3 ul li .jong_box .tbox h4{
        margin-top: 5px;
    }
    #all3 .sec4 .c_wrp .ibox{
        margin-top: 20px;
        border: 1px solid #5b5b5b;
    }
}
/* blBox */
.blBox {
    padding: 60px;
    background-color: #f7f7f7;
}
.blBox.blBox_w {
    background-color: #fff;
}
@media (max-width:768px){
    .blBox {
        padding: 20px;
    }
}
/*all4*/
#all4 .sec2 .impFixed {
    background: url(../img/all4_s2_bg.jpg) center center no-repeat;
}
#all4 .sec2 .know_box{
    max-width: 900px;
    margin: 60px auto 0;
}
@media (min-width:992px){
    #all4 .sec2 .impFixed {
        background-attachment: fixed;
    }    
}
@media (max-width:992px){
    #all4 .sec2 .impFixed {
        background-size: cover;
    }    
    #all4 .sec2 .know_box{
        margin: 30px auto 0;
    }
}

/* all5 .sec2 */
#all5 .sec2 .table thead tr th,
#all5 .sec2 .table thead tr td,
#all5 .sec2 .table tbody tr th,
#all5 .sec2 .table tbody tr td {
    vertical-align: middle;
    text-align: center;
}
#all5 .sec2 .table thead tr th,
#all5 .sec2 .table thead tr td {
    font-size: 35px;
    font-weight: 700;
    color: #999;
    border: 0px;
    padding: 20px 30px;
    background-color: transparent;
    border-color: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
#all5 .sec2 .table thead tr td {
    
}
#all5 .sec2 .table thead tr .old {
    color: #fff;
    background-color: #2c50d1;
    border-color: #2c50d1;
    border: 5px solid #2c50d1;
}
#all5 .sec2 .table thead tr .garo {
    color: #fff;
    background-color: #65afe6;
    border-color: #65afe6;
    border: 5px solid #65afe6;
}
#all5 .sec2 .table tbody tr th,
#all5 .sec2 .table tbody tr td {
    font-size: 20px;
    border: 0px;
    padding: 20px 30px;
    color: #333;
    font-weight: 400;
    line-height: 1.4em;
}
#all5 .sec2 .table tbody tr th {
    background-color: transparent;
    border-bottom: 1px solid #ddd;
    color: #999;
    font-size: 24px;
    font-weight: 600;
}
#all5 .sec2 .table tbody tr td {
    background-color: #fff;
    border-bottom: 1px dashed #ddd
}
#all5 .sec2 .table tbody tr .old {
    border-left: 5px solid #2c50d1;
    border-right: 5px solid #2c50d1;
}
#all5 .sec2 .table tbody tr .garo {
    border-left: 5px solid #65afe6;
    border-right: 5px solid #65afe6;
}
#all5 .sec2 .table tbody tr:last-child .old {
    border-bottom: 5px solid #2c50d1;
}
#all5 .sec2 .table tbody tr:last-child .garo {
    border-bottom: 5px solid #65afe6;
}
@media (max-width:992px){
    #all5 .sec2 .table {
        table-layout: fixed;
    }
    #all5 .sec2 .table thead tr th, #all5 .sec2 .table thead tr td {
        font-size: 17px;
        padding: 10px;
        border-width: 2px !important;
    }
    #all5 .sec2 .table thead th:nth-child(2) {
        display: none;
    }
    #all5 .sec2 .table tbody tr th {
        display: none;
    }
    #all5 .sec2 .table tbody tr td {
        font-size: 14px;
        padding: 15px;
        width: 100%;
        margin: 5px 0;
        vertical-align: top;
        border-width: 2px !important;
    }
    #all5 .sec2 .table tbody tr .old {
        border-top: 5px solid #2c50d1;
        border-bottom: 5px solid #2c50d1;
    }
    #all5 .sec2 .table tbody tr .garo {
        border-top: 5px solid #65afe6;
        border-bottom: 5px solid #65afe6;
    }
    #all5 .sec2 .table tbody tr td span {
        display: block;
        color: #65afe6;
        line-height: 1em;
        padding: 3px 15px;
        text-align: center;
        margin-bottom: 5px;
        font-weight: 600;
        font-size: 1.2em;
    }
    #all5 .sec2 .table tbody tr td.old span {
        color: #2c50d1;
    }
}
/*vs_wrp*/
.vs_wrp .c_wrp .lt, .vs_wrp .c_wrp .rt{
    width: 40%;
}
.vs_wrp .c_wrp .ct{
    background-color: #333;
}
.vs_wrp > li{
    border-bottom: 1px solid #d0d0d0;
}
.vs_wrp > li:nth-child(1){
    border-bottom: 0px solid #d0d0d0;
}
.vs_wrp > li:nth-child(1) > div{
    background-color: #fff;
}
.vs_wrp > li:nth-child(1) .ct{
    background-color: #fff;
    border-top: 1px solid #ddd;
}
.vs_wrp > li:nth-child(1) .rt{
    border: 5px solid #002f5d;
}
.vs_wrp > li:nth-child(2) .c_wrp .lt h4{
    background-color: #6d6d6d;;
    color:#fff;
    padding:15px;
}
.vs_wrp > li:nth-child(2) .c_wrp .rt h4{
    background-color: #002f5d;
    color:#fff;
    padding:15px;
}
.vs_wrp > li .c_wrp .lt h5{
    color: #aaa;
    padding:10px;
}
.vs_wrp > li .c_wrp .rt h5{
    color: #333;
    padding:10px;
}
@media (max-width:768px){
    .vs_wrp .c_wrp .ct{
        display: none;
    }
    .vs_wrp > li:nth-child(2) .c_wrp .lt h4, .vs_wrp > li:nth-child(2) .c_wrp .rt h4 {
        padding:10px;
    }
}

/*all5*/
#all5 .sec2 {
    background-color: #f7f7f7;
}
/*case_wrp*/
.case_wrp > li:not(:last-child) .case_box{
    margin-bottom: 20px;
}
.case_wrp > li .case_box .lt{
    background-color: #101d36;
    width: 200px;
    text-align: center;
    padding: 15px 0;
}
.case_wrp > li .case_box .lt h1 {
    line-height: 1.2em;
}
.case_wrp > li .case_box .lt h5{
    opacity: 0.5;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #a4e7ff !important;
    line-height: 1em;
    margin-top: 5px;
}
.case_wrp > li .case_box .rt{
    border: 3px solid #101d36;
    padding: 10px 30px;
    background-color: rgba(255, 255, 255 , 0.8);
}
@media (max-width:768px){
    .case_wrp > li:not(:last-child) .case_box{
        margin-bottom: 10px;
    }
    .case_wrp > li .case_box .lt{
        width: 100px;
        padding: 15px 0;
    }
    .case_wrp > li .case_box .rt{
        border: 2px solid #101d36;
        padding: 15px;
    }
}


/*all6*/
#all6 .sec2{
    /* background: url(../img/all6_s2_bg.jpg) center center no-repeat;
    background-size: cover; */
}


/* clinicTxt */
.clinicTxt {
    border: 1px solid #ddd;
    position: relative;
    padding: 40px 20px;
}
.clinicTxt .tTit {
    position: absolute;
    left: 0;
    top: -28px;
    line-height: 56px;
    width: 100%;
}
.clinicTxt .tTit span {
    display: inline-block;
    line-height: 40px;
    background-color: #fff;
    padding: 8px 20px;
}
@media (max-width:768px){
    .clinicTxt {
        padding: 20px 15px;
    }
}


/* Work */
.bfafTabs {
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-between;
}
.bfafTabs > .tab {
    text-decoration: none;
    display: block;
    width: 24.5%;
    font-size: 24px;
    text-align: center;
    line-height: 1em;
    padding: 20px 0;
    font-weight: 500;
    letter-spacing: -0.03em;
    background-color: #eee;
    color: #c5c5c5;
    cursor: pointer;

    transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.bfafTabs > .tab.act {
    color: #fff;
    background-color: #1340a5;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
}
@media (max-width:768px){
    .bfafTabs {
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        display: none;
    }
    .bfafTabs > .tab {
        padding: 10px 0;
        font-size: 15px;
        width: 50%;
    }
}
/* bfafTabsList */
.bfafTabsWrp {
    position: relative;
}
.bfafTabsWrp .currentTab {
    cursor: pointer;
    display: block;
    text-align: center;
    padding: 15px;
    border: 1px solid #ddd;
    line-height: 1em;
    position: relative;
}
.bfafTabsWrp .currentTab:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    height: 100%;
    background: url(../img/site_arr.png) center center no-repeat;
    right: 15px;
    width: 15px;
    background-size: 100%;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.bfafTabsWrp .currentTab.rot:after {
    transform: rotate(180deg);
}
.TabsList {
    width: 100%;
}
.TabsList li {
    min-width: 14%;
    display: inline-block;
    margin: 2px 0;
}
.TabsList li a {
    display: block;
    text-decoration: none;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 17px;
    line-height: 50px;
    font-weight: 400;
    color: #999;
    padding: 0 13px;
}
.TabsList li.act a {
    background-color: #111;
    border-color: #111;
    color: #fff;
}
@media (min-width:768px){
    .bfafTabsWrp .currentTab {
        display: none;
    }
}
@media (max-width:768px){
    .bfafTabsWrp .bfafTabsList {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        z-index: 5;
        background-color: #f7f7f7;
        display: none;
        height: 177px;
        overflow-y: scroll;
        box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    }
    .TabsList li {
        margin: 0;
        width: 100%;
        border: 1px solid #ddd;
        margin: -1px 0 0;
    }
    .TabsList li:not(:last-child) {
        border-bottom: 0px;
    }
    .TabsList li a {
        font-size: 13px;
        line-height: 32px;
        border-radius: 80px;
        border: 0px;
        border-radius: 0px;
    }
}

/* beforeLogin */
#beforeLogin {
    background-color: #f8fbfc;
}
#beforeLogin a {
    text-decoration: none;
    display: inline-block;
    width: 180px;
    border-radius: 4px;
    line-height: 48px;
    border: 1px solid #1340a5;
    background-color: #1340a5;
    color: #fff;
    font-size: 20px;
    text-align: center;
    font-weight: 500;
}
#beforeLogin a.log_join {
    background-color: transparent;
    color: #1340a5;
}

@media (max-width:768px){
    #beforeLogin {
        padding-left: 30px;
        padding-right: 30px;
    }
    #beforeLogin a {
        width: 120px;
        line-height: 35px;
        font-size: 14px;
    }
}
/* afterLogin */
#afterLogin .sliderBeforeAfter > .ex {
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid #ddd;
}
@media (max-width:768px){
    #afterLogin .sliderBeforeAfter > .ex {
        padding: 15px;
    }
}
/* pagination_wrp */
.pagination_wrp {
    margin: 10px 0;
}
.pagination_wrp .pagination {
    display: inline-block;
}
.pagination_wrp .pagination li a {
    border: 0px;
    color: #bbb;
    font-size: 15px;
    display: inline-block;
    line-height: 38px;
    padding: 0 15px;
    background-color: transparent;
}
.pagination_wrp .pagination li a.first,
.pagination_wrp .pagination li a.last,
.pagination_wrp .pagination li a.next,
.pagination_wrp .pagination li a.pre {
    height: 38px;
    width: 38px;
    border: 1px solid #c9ccd1;
    border-radius: 6px;
    padding: 0px;
    background: url(../img/arr_des.png) center center no-repeat;
}
.pagination_wrp .pagination li a.first,
.pagination_wrp .pagination li a.last {
    background: url(../img/arr_des_t.png) center center no-repeat;
}
.pagination_wrp .pagination.ligter li a.first,
.pagination_wrp .pagination.ligter li a.last,
.pagination_wrp .pagination.ligter li a.next,
.pagination_wrp .pagination.ligter li a.pre {
    background-color: #fafbfd;
    border-color: #dfe1e5;
}
.pagination_wrp .pagination li a.next {
    margin-left: 15px;
}
.pagination_wrp .pagination li a.pre {
    transform: rotate(180deg);
    margin-right: 15px;
}
.pagination_wrp .pagination li a.last {
    margin-left: 5px;
}
.pagination_wrp .pagination li a.first {
    transform: rotate(180deg);
    margin-right: 5px;
}
.pagination_wrp .pagination li.active a {
    color: #111;
    background-color: transparent !important;
}
@media (max-width: 768px) {
    .pagination_wrp {
        margin-top: 10px;
    }
    .pagination_wrp .pagination li a {
        font-size: 13px;
        line-height: 28px;
        padding: 0 10px;
    }
    .pagination_wrp .pagination li a.first,
    .pagination_wrp .pagination li a.last {
        height: 28px;
        width: 28px;
        background: url(../img/arr_des_t_big.png) center center no-repeat;
        background-size: 8px !important;
    }
    .pagination_wrp .pagination li a.next,
    .pagination_wrp .pagination li a.pre {
        height: 28px;
        width: 28px;
        background: url(../img/arr_des_big.png) center center no-repeat;
        background-size: 8px !important;
    }
}

/* clinic2 */
#clinic2 #loca .mapbox {
    border: 0px !important;
}
#clinic2 .aboutClinic {
    background-color: #fcfcfc;
    border: 0px;
}
#clinic2 .sTopTit {
    justify-content: center;
}

/* topSec */
.topSec .entit {
    letter-spacing: 5px;
    color: #5b7391;
    opacity: 0.3;
}


/* circleBox */
.circleBox {
    max-width: 1100px;
    margin: 0 auto;
}
.circleBox li > h5 {
    text-align: center;
    margin-top: 15px;
    line-height: 1.2em;
}
.circleBox .circle {
    text-align: center;
    border: 1px dashed #65afe6;
    background-color: #fff;
    position: relative;
}
.circleBox .circle::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    background-color: #f7fcff;
    border-radius: 100%;
    border: 1px solid #e6f6ff;
}
.circleBox .circle .txt .c_wrp {
    height: 100%;
}
.circleBox .circle .txt p {
    display: inline-block;
    line-height: 1em;
    padding: 4px 20px;
    background-color: #65afe6;
    border-radius: 100px;
    color: #fff;
}
.circleBox .circle .txt h3 {
    font-weight: 300;
    color: #666;
    line-height: 1.1em;
    margin-top: 10px;
}
.circleBox .circle .txt h2 {
    font-weight: 300;
    color: #666;
    line-height: 1.1em;
    margin-top: 15px;
}
@media (min-width:992px){
    .circleBox .circle {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        display: inline-block;
    }
    .circleBox li:not(:last-child) .circle:after {
        content: "";
        position: absolute;
        right: -45px;
        width: 31px;
        height: 100%;
        background: url(../img/circle_pls.png) center center no-repeat;
    }
    .circleBox .circle .txt {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }
}
@media (max-width:992px){
    .circleBox li {
        margin-top: 15px; 
        margin-bottom: 15px;
    }
    .circleBox .circle {
        display: block;
        padding: 15px;
    }
    .circleBox .circle .txt h2 {
        margin-top: 5px;
    }
	
	.circleBox .circle::before {
		    width: auto;
	  height: auto;
	}
}