/* 
font-family: 'Nanum Myeongjo', serif;
font-family: 'Noto Sans KR', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Condensed', sans-serif;

*/


@import url('https://fonts.googleapis.com/css2?family=Nanum+Brush+Script&family=Nanum+Pen+Script&display=swap');



section.common {
    width: 100%;
}

.grey {
    background-color: #f5f5f5;
}

.flex_c {
    display: flex;
    justify-content: center;
}

section.common .c_in {
    max-width: 1400px;
    margin: 60px auto;
    overflow: hidden;

}

section.common .c_full {
    position: relative;
}



section.common .c_in.innerp {
    padding: 40px 0;
}

section.common .c_in img {
    display: block;
    /* width: 90%; */
    width: 100%;
    margin: 0 auto;
    border-radius: 15px;
}

section.common .c_in .txtarea {
    padding: 10px 80px 10px 0px;
}

section.common .c_in .txtarea h2 {
    font-size: 2.7rem;
    margin: 15px 0 5px 0;
}

section.common .c_in .txtarea h3 {
    font-size: 2.4rem;
    margin: 0px 0 30px 0;
}

section.common .c_in .arrowbtn {
    display: block;
    text-align: left;
    width: 300px;
    padding: 25px 30px 25px 48px;
    border-radius: 50px;
    background-color: #2b6bb5;
    color: #fff;
    margin-top: 30px;
    position: relative;
    transition: 0.3s ease;

}

section.common .c_in .arrowbtn .arrow {
    display: block;
    position: absolute;
    right: 45px;
    top: 50%;
    width: 40px;
    height: 15px;
    transition: 0.3s ease;
}

section.common .c_in .arrowbtn .arrow::before {
    content: '';
    display: block;
    position: absolute;
    left: 0px;
    top: 0;
    width: 42px;
    height: 15px;
    border-bottom: 4px solid #fff;
    transform: translate(0, -50%);
}

section.common .c_in .arrowbtn .arrow::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 15px;
    /* border-bottom: 3px solid #fff; */
    border-right: 5px solid #fff;
    transform: translate(0, -50%) skew(45deg, 0deg);
}


.desc b {
    color:#205b9f;
    font-size:1.5rem;
}

.title_top {
    font-size: 1.5rem;
    position: relative;
    padding-left: 65px;
}

.title_top::before {
    content: '';
    display: block;
    position: absolute;
    width: 55px;
    height: 2px;
    left: 0;
    top: 50%;
    background-color: #000;
}

.c_subtitle {
    text-align: center;
    font-size: 1.4rem;
}

.c_title {
    font-size: 2.4rem;
    margin: 0px 0 30px 0;
    text-align: center;
}

.c_p {
    text-align: center;
}

section.common .c_in .treats {
    margin-top: 60px;
}

section.common .c_in .treatbox img {
    /* width: 45%; */
    width: 70%;
    margin: 0 auto;
    transition: 1s ease;
}

section.common .c_in .treatbox .tbox {
    padding: 15px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.common .c_in .treatbox h4 {
    display: inline-block;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

section.common .c_in .treatbox h4::before {
    content: '';
    display: block;
    width: 0%;
    height: 15px;
    background-color: #64bdd3;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.3s ease;
    z-index: -1;
}

section.common .c_in .treatbox p {
    text-align: center;
    word-break:keep-all;
    font-size:0.9em;
}





/* TopBox */


.topBox {
    width: 100%;
    display: flex;
    /* gap: 15px; */
    /* justify-content: space-between;
    flex-wrap: wrap; */
    overflow: hidden;
    margin-bottom: 30px;
}

.topBox a {
    display: block;
    width: 20%;
    height: 480px;
    box-sizing: border-box;
    background: #332f2c;
    background-position: right 20px center;
    background-size: 25%;
    color: white;
    font-size: 18px;
    overflow: hidden;
    position: relative;
    transition: 0.3s all ease;
}

.topBox a .topBox_img {
    width: 100%;
}

.topBox a .topBox_img img {
    display: block;
    width: 100%;
    border-radius: 0px;
}

.topBox a .topBox_txt {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 240px;
    transition: 0.3s all ease;
}

.topBox a .topBox_txt .tr {
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
}

.topBox a .topBox_txt .tr .tc {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
}

.topBox a .topBox_txt span {
    display: block;
    font-style: normal;
    letter-spacing: 0.2em;
    font-size: 0.9em;
}

.topBox a .topBox_txt h2 {
    font-size: 2em;
}

.topBox a .topBox_txt .topBoxDesc {
    display: none;
    margin: 15px 0 10px 0;
}

.topBox a .topBox_txt .topBoxBtn {
    display: none;
    font-size: 1.4em;
}

.topBox a.on {
    width: 40%;
}

.topBox a.on .topBox_txt {
    height: 100%;
}

.topBox a.on .topBox_txt .topBoxDesc {
    display: block;
}

.topBox a.on .topBox_txt .topBoxBtn {
    display: block;
}

.topBox a.on .topBox_txt h2 {
    font-size: 2.8em;
}


.topBox a:nth-child(2) {
    background: #014563;
    /* background: #9cb7d4;	 */
}

.topBox a:nth-child(3) {
    background: #02797f;
    /* background: #014563;	 */
}

.topBox a:nth-child(4) {
    /* background: #02797f;	 */
    background: #9cb7d4;
}


/* 클리닉 슬라이드 */

.slide_clinic {
    overflow: hidden;
}

.slide_clinic .swiper-slide {
    position: relative;
    height: 550px;
    display: flex;
}

.slide_clinic .swiper-slide .img_left {
    /* position: absolute;
    left: 0;
    top: 0; */
    width: 50%;
    height: auto;
    z-index: 2;
}

.slide_clinic .swiper-slide .img_left img {
    width: 100%;
    border-radius: 0px;
    height: 100%;
    object-fit: cover;
}

.slide_clinic .swiper-slide .txt_right {
    /* position: absolute;
    right: 0;
    top: 50px; */
    width: 50%;
    /* height: 550px; */
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #ccc;
    /* padding: 65px 110px; */
    padding: 65px 80px;
}

.slide_clinic .swiper-slide h3 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 45px;
}

.slide_clinic .swiper-slide h3 span {
    font-weight: 700;
}

.slide_clinic .swiper-slide p {}

.slide_clinic .swiper-slide span.clinic {
    color: #24a6c6;
}

.slide_clinic .swiper-slide a {
    display: inline-block;
    background-color: #4784cb;
    margin-top: 55px;
    padding: 15px 40px;
    color: #fff;
    border-radius: 10px;
    transition: 0.3s ease;
}

.slide_clinic .clinic_next {
    color: black;
    bottom: 0;
    top: unset;
    box-sizing: border-box;
    border: 1px solid #ccc;
    width: 50px;
    height: 50px;
    background-color: #fff;
    right: 0;
}

.slide_clinic .clinic_next::after {
    font-size: 16px;
}

.slide_clinic .clinic_prev {
    color: black;
    bottom: 0;
    top: unset;
    box-sizing: border-box;
    border: 1px solid #ccc;
    width: 50px;
    height: 50px;
    background-color: #fff;
    left: unset;
    right: 49px;
}

.slide_clinic .clinic_prev::after {
    font-size: 16px;
}

.slide_clinic .clinic_pagin {
    width: 80px;
    height: 50px;
    top: unset;
    left: unset;
    right: 98px;
    background-color: #fff;
    border: 1px solid #ccc;
    bottom: 0px;
    line-height: 50px;
    box-sizing: border-box;
}



.timearea,
.contactarea {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.timebox {
    width: 60%;
    background-color: #f5f5f5;
    border-radius: 25px;
    box-sizing: border-box;
    padding: 30px 45px;
}

.timearea i.bi {
    color: #24a6c6;
}

.contactarea i.bi {
    color: #2b6bb5;
}

.timebox p {
    margin: 10px auto;
}

.info_title {
    text-align: center;
    font-size: 1.6rem;
    margin-top: 10px;
    margin-bottom: 20px;
}

.info_head {
    display: inline-block;
    width: 90px;
    padding: 5px 0px;
    background-color: #ccc;
    text-align: center;
    border-radius: 10px;
    margin-right: 10px;
}

.timearea .info_head {
    background-color: #24a6c6;
    color: #fff;
}

.contactarea .info_head {
    background-color: #2b6bb5;
    color: #fff;
}

.map_info {
    padding: 15px 5px;
    background: linear-gradient(137deg, #24a6c6 0%, #2b6bb5 100%);
    color: #fff;
    position: absolute;
    z-index: 999;
    left: 0;
    bottom: 30px;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}

.map_info img {
    display: block;
    width: 50%;
    margin: 0 auto;
}

.map_info li {
    text-align: center;
}



/* footer */
.footer_flex {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    padding: 30px 0;
}

.footer_left,
.footer_right {
    width: calc(50% - 30px);
}

.footercall {
    display: flex;
}

.footercall .call {
    width: 50%;
    text-align: left;
    display: block;
}

.footercall .call span {
    font-size: 1rem;
    font-weight: 700;
}

.footercall .call p {
    font-size: 2.3rem;
    line-height: 2rem !important;
}

/* 
.footer_info {
    margin-top: 60px;
} */

.footer_info .footer_img {
    width: 40%;
}

.footer_info .footer_img img {
    display: block;
    width: 100%;
}

.footer_info .footer_text {
    text-align: left;
    line-height: 1.4rem;
}

.footer_info .footer_text span {
    font-size: 1rem;
}

.footer_info .footer_text span.copyright {
    font-weight: 800;
}

.footer_right {
    display: flex;
    max-height: 250px;
    justify-content: space-between;
}

.footer_right .footer_r_el {
    width: calc(25% - 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px 10px;
    background-color: #fff;
}

.footer_right .footer_r_el i {
    font-size: 1.8rem;
}

.footer_right .footer_r_el p {}

.footer_right .footer_r_el span {
    padding: 2px 9px;
    background-color: #2b6bb5;
    color: #fff;
    border-radius: 10px;
}





/* content page */
.cpage {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
    overflow: hidden;
}

.cfull {
    width: 100%;
    margin: 0 auto;
}

.cfull.gray {
    background-color: #f8f8f8;
}

.gray {
    background: #f8f8f8;
}

.cpage.row.reverse {
    flex-direction: row-reverse;
}

.cpage h2 {
    font-size: 2.4rem;
    position: relative;
    margin-bottom: 70px;
    text-align: center;
}

/* .cpage h2::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 25px;
    left: 50%;
    bottom: -5px;
    transform: translate(-50%, 100%);
    background-color: #000;
} */

.cpage img {
    display: block;
    width: 80%;
}

.cpage .sign {
    margin-top: 95px;
    text-align: right;

}

.cpage .txt {
    padding: 0px 30px;
}

.cpage .intro_text span {
    font-size:1.8rem;
    font-weight:600;
}

.cpage .sign span {
    font-family: 'Nanum Brush Script', cursive;
    font-size: 3rem;
    margin-left: 30px;
}

.doc_name {
    font-size: 3rem;
}

.doc_name span {
    font-size: 1.8rem;
    font-weight: 400;
    color: #838383;
}

.doc_engname {
    font-size: 2rem;
    color: #2b6bb5;
}

.doc_text {
    margin: 30px auto;
}

.doc_word {
    font-size: 2.5rem;
    word-break: keep-all;
    font-family: 'Nanum Pen Script', cursive;
    font-style: italic;
    color: #00437d;
}

.col-md-7.doc_box {
    padding-right: 60px;
}

@media screen and (max-width:1399px) {
    .cpage {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width:767px) {

    .cpage.row.reverse {
        flex-direction: row;
    }

    .cpage img {
        width: 100%;
        margin-bottom: 20px;
    }

    .cpage .txt {
        padding: 0px 12px;
    }

    .col-md-7.doc_box {
        padding-right: 0px;
    }

}

@media screen and (max-width:576px) {
    .cpage {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .cpage .intro_text {
        word-break: keep-all;
    }

    .cpage .sign {
        margin-top: 30px;
    }

    .cpage .sign span {
        font-size: 2.5rem;
    }

    .doc_name {
        font-size: 2rem;
    }

    .doc_engname {
        font-size: 1.6rem;
    }

    .doc_word {
        font-size: 1.7rem;
    }
}


/* map */
.mappos {
    position: relative;
}

.locdiv {
    padding-left: 60px;
}

.locdiv p {
    margin: 5px auto;
    display: flex;
}

.locdiv p span.first {
    display: inline-block;
    width: 25%;
    color: #515151;
}

.locdiv p span.last {
    display: inline-block;
    width: 75%;
}

@media screen and (max-width:767px) {
    .mappos {
        margin-bottom: 20px;
    }

    .locdiv {
        padding-left: 0px;
    }
}



/* medtime */
.medtime h5 {
    font-size: 2.2rem;
    margin-top: -5px;
    margin-left: 20px;
    font-weight: 400;
    color: #222;
}

.medtime h5 strong {
    font-size: 3rem;
    display: inline-block;
    margin-top: 5px;
    color: #30609e;
    letter-spacing: 2px;
}

.medtime .medleft {
    position: relative;
}

.medtime .medquote {
    position: absolute;
    left: 24px;
    top: -23px;
    color: #eee;
    font-size: 3em;
    margin-left: 0px;
    z-index: -1;
}

.medtime p {
    font-size: 1rem;
    margin-top: 15px;
    line-height: 1.0em;
    margin-left: 20px;
    color: #555;
}

.medtime p i {
    color: #30609e;
}

.medtime ul li {
    font-size: 1.3rem;
    margin: 20px 0 10px 0;
}

.medtime ul li b {
    display: inline-block;
    background: #2b6bb5;
    font-weight: 400;
    color: #fff;
    padding: 5px 0;
    width: 150px;
    text-align: center;
    border-radius: 50px;
    margin-right: 10px;
}


@media screen and (max-width:767px) {
    .medtime .medleft {
        margin-bottom: 20px;
    }

}

@media screen and (max-width:576px) {
    .medtime h5 {
        font-size: 2rem;
    }

    .medtime h5 strong {
        font-size: 2.2rem;
    }

    .medtime ul li {
        font-size: 1.1rem;
    }
}


/* ins */

.ins h4 {
    font-size: 2.2rem;
    line-height: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #070358;
    /* font-family: 'Pretendard-Regular'; */
    position: relative;
}

.ins .step_01 {
    margin-bottom: 25px;
}

.ins .txt_box strong {
    font-size: 23px;
    /* display: inline-block; */
    color: #fff;
    margin-right: 15px;
    background: #30609e;
    padding: 4px 20px;
    border-radius: 15px;
    font-weight: 400;
    float: left;
}

.ins .txt_box p {
    font-size: 21px;
    margin-top: 15px;
    line-height: 1.6em;
    margin-left: 20px;
    color: #555;
}

.ins .txt_box .step_02 strong {
    background: #9cc939;
    color: #fff;
}

.ins .txt_box p i {
    color: #30609e;
    font-size: 1.0em;
    margin-left: 0px;
}

.ins .txt_box .step_02 i {
    color: #9cc939;
}

.ins .information {
    width: 100%;
    margin-top: 45px;
}

.ins .information>div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.ins .information table {
    width: 100%;
    border-collapse: collapse;
    font-size: 18px;
    color: #333;
}

.ins .information table th {
    background-color: #cce2ff;
    font-weight: 400;
    padding: 5px 0;
    text-align: center;
    border: 1px solid #bbb;
    box-sizing: border-box;
}

.ins .information table td {
    text-align: center;
    width: 14.28%;
    padding: 10px 0;
    border: 1px solid #bbb;
    box-sizing: border-box;
}

.ins .information .information_01 tr td:nth-child(3) {
    text-align: left;
    padding: 15px 10px;
}

.ins .information table td:first-child {
    background: #eee;
}

.ins .information .information_02 td span {
    font-size: 15px;
    color: #666;
    display: block;
    margin-top: 60px;
    text-align: left;
    padding: 0 10px;
}


@media screen and (max-width:576px) {

    .ins h4 {
        font-size: 1.6rem;
    }

    .ins .txt_box strong {
        font-size: 16px;
    }

    .ins .txt_box p {
        font-size: 16px;
    }

    .ins .information table {
        font-size: 12px;
    }

    .ins .information .information_02 td span {
        font-size: 11px;
    }
}



/* nonins */


.cpage .nonins {
    width: 100%
}

.cpage .nonins>div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px
}

.cpage .nonins table {
    width: 100%;
    border-collapse: collapse;
    font-size: 18px;
    color: #333;
    text-align: center;
}

.cpage .nonins table th {
    background-color: #2b6bb5;
    font-weight: 400;
    padding: 8px 0;
    color: #fff;
    border: 1px solid #bbb;
}

.cpage .nonins table td {
    text-align: center;
    padding: 10px 0;
    border: 1px solid #bbb;
}

.cpage .nonins table .back-color {
    background: #f2f2f2
}


@media screen and (max-width:1200px) {

    .cpage .nonins table {
        font-size: 15px;
    }
}

@media screen and (max-width:992px) {
    .cpage .nonins .nonins_02 td span {
        font-size: 12px;
    }
}

@media screen and (max-width:576px) {

    .cpage .nonins {}

    .cpage .nonins>div {
        display: block;
        width: 95%;
        margin: 0 auto;
        overflow-x: scroll;
    }

    .cpage .nonins table {
        width: 600px;
    }

    .cpage .nonins table {
        font-size: 13px;
    }

    .cpage .txt_box strong {
        padding: 10px 18px;
    }


}



/* treat 공통 */
.cpage .treat_top {
    width: 50%;
    margin: 0 auto;
}

.cpage .treat_top img {
    display: block;
    width: 100%;
}

.cpage .treat_top p {
    word-break: keep-all;
}


.treat_mid  {
    margin: 60px auto;
}

.treat_mid .sub_title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
}

.treat_mid .sub_title b {
    color: #2b6bb5;
}

.treat_mid .row>div .col_w {
    width: 90%;
    margin: 0 auto;
    padding: 15px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #efefef;
    box-sizing: border-box;
    box-shadow: -1px -1px 8px 1px #333;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.treat_mid .row img {
    width: 50%;
    margin: 0 auto;

}

.treat_mid.teraphy .row img {
    width: 85%;
    margin: 0 auto;

}

.treat_mid .row p {
    /* width: 50%; */
    width: 95%;
    margin: 0 auto;
    word-break: keep-all;
    text-align: center;
}

.treat_mid .row p b {
    color:#2b6bb5;
}


.treat_mid .content_box {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.treat_mid .content_box .content {
    width: 100%;
}

.treat_mid .content_box .img1 {
    width: 100%;
    margin-bottom: 20px
}

.treat_mid .img_box {
    display: flex;
    gap: 20px;
}

.treat_mid .img_box_02 li {
    width: 32%;
}

.treat_mid .img_box_02 li img {
    width: 100%;
}

.small_content li {
    padding-top: 10px;
}

.small_content li {
    font-size: 16px;
    color: #555;
    margin-bottom: 3px;
}

.small_content li i {
    color: #00a7e1;
    font-weight: 600;
}

.treat_mid .method_box {
    margin-bottom: 30px;
}

.treat_mid .method_box li {
    display: flex;
    justify-content: space-between;
    font-size: 1.4em;
    width: 100%;
    border: 2px solid #5b8dc6;
    border-radius: 10px;
    overflow: hidden;
}

.treat_mid .method_box li div {
    width: 25%;
    height: auto;
    background: #5b8dc6;
    color: #fff;
    font-size: 22px;
    text-align: center;
    position: relative;
    font-weight: 600
}

.treat_mid .method_01 li div {
    padding: 70px 0;
}

.treat_mid .method_02 li div {
    padding: 45px 0;
}

.treat_mid .method_03 li div {
    padding: 57px 0;
}

.treat_mid .method_04 li div {
    padding: 35px 0;
}

.treat_mid .method_05 li div {
    padding: 35px 0;
}

.treat_mid .method_06 li div {
    padding: 35px 0;
}

.treat_mid .method_box li div span {
    position: absolute;
    color: #fff;
    top: 5px;
    left: 10px;
    font-size: 40px;
}

.treat_mid .method_box li p {
    width: 73%;
    padding: 30px 10px 0 10px;
    color: #444;
    line-height: 1.5em;
    font-weight: 300;
    font-size: 17px
}

@media screen and (max-width:767px) {
    .cpage .treat_top {
        width: 75%;
    }

    .treat_mid .sub_title {
        margin-bottom: 20px;
    }

    .treat_mid .row .col-6 {
        margin-bottom: 20px;
    }
}

@media screen and (max-width:576px) {
    .cpage .treat_top {
        width: 100%;
    }

    .treat_mid .sub_title {
        font-size: 1.8rem;
    }

    .treat_mid .row>div .col_w {
        width: 100%;
        padding: 10px;
    }

    .treat_mid .row img {
        width: 70%;
    }

    .treat_mid.teraphy .row img {
        width: 100%;
    }

    .treat_mid .row p {
        width: 70%;
    }

    .treat_mid .method_box li div {
        font-size: 1.1rem;
    }

    .treat_mid .method_box li p {
        line-height: 1.2em;
        font-size: 1rem;
        padding: 30px 10px 20px 10px;
    }

    .treat_mid .method_box li div span {
        font-size: 20px;
    }
}



@media screen and (hover:hover) {
    section.common .c_in .arrowbtn:hover {
        background: #4784cb;
        box-shadow: 0px 3px 8px 0px #917070;
    }

    section.common .c_in .arrowbtn:hover .arrow {
        transform: translateX(10px);

    }
}

@media screen and (hover:none) {

    section.common .c_in .arrowbtn {
        box-shadow: 0px 3px 8px 0px #917070;
    }

    section.common .c_in .arrowbtn .arrow {
        animation-name: arrowanim;
        animation-duration: 2s;
        animation-iteration-count: infinite;

    }
}

@keyframes arrowanim {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0px);
    }
}


@media screen and (max-width:1024px) {
    section.common .c_in {
        padding-left: 20px;
        padding-right: 20px;
    }

    section.common .c_in.innerp {
        padding: 40px 20px;
    }

}

@media screen and (max-width:767px) {
    section.common .c_in.innerp {
        padding: 40px 20px;
    }

    section.common .c_in .txtarea {
        padding: 16px;
        /* padding: 10px 80px 10px 0px; */
    }

    section.common .c_in img {
        width: 100%;
    }
}

@media screen and (max-width:575px) {
    .col-xs-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    section.common .c_in .txtarea h2 {
        font-size: 1.7rem;
        margin: 15px 0 5px 0;
    }

    section.common .c_in .txtarea h3 {
        font-size: 1.6rem;
        margin: 0px 0 30px 0;
    }

    p {
        font-size: 1rem;
    }
}


@media screen and (hover:hover) {
    section.common .c_in .treatbox:hover img {
        transform: scale(1.1);
    }

    section.common .c_in .treatbox:hover h4::before {
        width: 110%;
    }

}



@media screen and (max-width:1200px) {
    .topBox a .topBox_txt {
        height: 100%;
    }


    .topBox a .topBox_img {
        visibility: hidden;
    }

    .topBox a.on .topBox_img {
        visibility: visible;
    }

    .topBox a .topBox_img img {
        width: auto;
    }

    /* .topBox a:nth-child(1) .topBox_txt {
		background: #332f2c;
	}
	.topBox a:nth-child(2) .topBox_txt {
		background: #9cb7d4;	
	}

	.topBox a:nth-child(3) .topBox_txt {
		background: #014563;	
	}

	.topBox a:nth-child(4) .topBox_txt {
		background: #02797f;	
	}

	.topBox a.on .topBox_txt {
		background:rgba(255,255,255,0);
	} */


}


@media screen and (max-width:992px) {
    .mb1 .box {
        width: 100%;
    }

    /* .mb1 .box2 {text-align:center; padding-top:0px; padding-bottom:50px;} */
    .mb1 .box2 {
        text-align: center;
        padding-top: 0px;
        margin-bottom: 30px;
        padding-left: 0px;
    }

    .wid {
        padding: 0 15px 0 15px;
    }

    .topBox {
        flex-wrap: wrap;
    }

    .topBox a .topBox_img img {
        width: 100%;
    }

    .topBox a {
        width: 50%;
        height: 0;
        padding-bottom: 50%;
    }

    .topBox a.on {
        width: 50%;
    }

    .footer_flex {
        flex-wrap: wrap;
        gap: 40px;
        padding: 45px 0;
    }

    .footer_left,
    .footer_right {
        width: 100%;
    }

    .footer_left {
        order: 2;
    }
}

@media screen and (max-width:550px) {

    /* .mb1 {
		padding-top: 30px;
	} */
    .mb1 .box2 h2 {
        font-size: 1.4em;
    }

    /* .mb1 .box2 p {font-size:0.6em;} */
    .mb1 .box2 p {
        font-size: 3vw;
    }

    .mb1 .box2 a {
        font-size: 0.5em;
    }

    .mb1 .box1_1 {
        width: 49%;
        margin-right: 1%;
        height: 350px;
    }

    .mb1 .box1_2 {
        width: 49%;
        margin-left: 1%;
        height: 170px;
    }

    .mb1 .box1_3 {
        width: 25%;
        margin-left: 1%;
        margin-top: 2%;
        height: 90px;
    }

    .bigbox {
        background: url('/theme/IDEN02/img/main_bg1_mo.jpg');
        background-repeat: no-repeat;
        background-position: center center;
    }

    .topBox a.on .topBox_txt h2 {
        font-size: 2.4em;
    }

    .topBox a {
        font-size: 3vw;
    }

    .bigbox h2 {
        font-size: 2.2em;
    }

    .bigbox p {
        font-size: 3vw;
    }
}


@media screen and (hover:hover) {
    .slide_clinic .swiper-slide a:hover {
        background-color: #639cdd;
        box-shadow: 0px 3px 8px 0px #917070;
    }
}

@media screen and (max-width:767px) {
    .slide_clinic .swiper-slide {
        height: auto;
        flex-wrap: wrap;
    }

    .slide_clinic .swiper-slide .img_left {
        width: 100%;
    }


    .slide_clinic .swiper-slide .txt_right {
        width: 100%;
        padding: 22px 28px;
    }

    .slide_clinic .swiper-slide h3 {
        font-size: 2.5rem;
    }
}

.m_gap {
    margin: 45px auto;
}

@media screen and (max-width:576px) {

    .c_p {
        font-size: 1rem;
        word-break: keep-all;
    }

    section.common .c_in .treatbox p {
        word-break: keep-all;
        font-size: 1rem;
    }

    section.common .c_in .treatbox .tbox {
        padding: 15px 3px;
    }

    section.common .c_in .treatbox h4::before {
        width: 110%;
    }

    section.common .c_in .treatbox h4 {
        font-size: 1.2rem;
    }

    .timebox {
        width: 100%;
        padding: 11px 23px;
    }

    .footer_right {
        flex-wrap: wrap;
        max-height: unset;
        gap: 20px;
    }

    .footer_right .footer_r_el {
        width: calc(50% - 10px);
    }


    .footercall .call span {
        font-size: 0.8rem;
    }

    .footercall .call p {
        font-size: 1.2rem;
    }

    .footer_info {
        margin-top: 25px;
    }

    .footer_info .footer_img {
        width: 50%;
    }


    .slide_clinic .clinic_next {
        width: 30px;
        height: 30px;
    }

    .slide_clinic .clinic_prev {
        width: 30px;
        height: 30px;
        right: 29px;
    }

    .slide_clinic .clinic_pagin {
        width: 60px;
        height: 30px;
        right: 59px;
        bottom: 0px;
        line-height: 30px;
        font-size: 0.9rem;
    }

    .m_gap {

        gap: 30px;
    }

    .map_info li {
        font-size: 0.9rem;
    }
}


/* .header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 70px;
    background-color: #fff;
    z-index: 999;
    padding: 0 2vw;
}

.header:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #B9BAC1;
    z-index: 10;
    opacity: 1;
    transition: all 0.3s;
}

.header .header_in {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.header .logo {
    width: 180px;
}

.header .logo img {
    max-width:100%;
}

.header nav {
    height: 100%;
}

.header nav .nav_menu {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.header nav .nav_menu li {
    position: relative;
    height: 100%;
}

.header nav .nav_menu > .li_dep1 > a {
    display: flex;
    height: 100%;
    padding: 0 65px;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.header nav .ul_dep2 {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    padding-top: 20px;
    transform: translate(-50%, 100%);
    white-space: nowrap;
    text-align: center;
    opacity: 0;
    transition: all 0.3s;
    transition-delay: -0.1s;
    z-index: 1;
}

.header nav .ul_dep2 > li > a {
    display: block;
    padding: 9px 0;
    transition:0.3s ease;
}

.nav_bg {
    position: absolute;
    left: 50%;
    bottom: 1px;
    height: 0;
    width: 100%;
    content:'';
    background-color: #fff;
    transform: translate(-50%,100%);
    transition: all 0.2s;
}
 */

/* Header ON */

/* 

@media screen and (hover:hover) {

    
.nav_menu:hover .ul_dep2 {
    opacity: 1;
}


.nav_menu:hover~.nav_bg {
    height: 220px;
    box-shadow: 0px 8px 15px black;
}


    .nav_menu .ul_dep2 > li:hover > a {
        color:darkblue;
    }
    
}  */


.facility .col-md-4 {
    margin-bottom: 25px;
    overflow: hidden;
}

.facility .col-md-4 p {
    position: relative;
    text-align: center;
    padding-bottom: 10px;
    font-size: 1.2em;
    font-weight: 600;
}

.facility .col-md-4 p:after {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    content: '';
    display: block;
    width: 30%;
    height: 1px;
    background: #000;
}

.facility .col-md-4 .imbox {
    display: block;
    width: 100%;
    overflow: hidden;
    margin-bottom: 5px;
}

.facility .col-md-4 img {
    display: block;
    width: 100%;

    transition:0.5s ease;
}

.facility .col-md-4:hover img {
    transform:scale(1.3);
}


.cpage_img {
    & img {
        display: block;
        width: 100% !important;
    } 
    & h3 {
        font-size:2rem;
        font-weight:800;
        margin-top: 15px;
    }
}

.crow1 {
    display: flex;
    flex-wrap:wrap;
    margin: 75px auto;
    gap:20px;

    & .crow1item {
        width: calc(31%);
        padding:35px 25px;
        border-radius:5px;
        border:1px solid #ccc;
        transition:0.3s ease;
    }

    & h4 {
        text-align: center;
        font-size:1.5rem;
        & i {
            display: block;
            font-size:5rem;
            margin-bottom: 30px;
            transition:0.3s ease;
        }
        & span {
            display: inline-block;
            transition:0.3s ease;
            margin: 0 auto;
            padding:10px;
        }

        &.h4col1 {
            color:#7e932e;
        }
        &.h4col2 {
            color:#4c51a5;
        }
        &.h4col3 {
            color:#f02878;
        }


    }

}

@media screen and (hover:hover) {
    .crow1 .crow1item:first-child:hover {

        background: #7e932e;
        & i {
            color:#fff !important;
        }
        & h4 {
            color:#fff !important;
        }
    }
    .crow1 .crow1item:nth-child(2):hover {

        background: #4c51a5;
        & i {
            color:#fff !important;
        }
        & h4 {
            color:#fff !important;
        }
    }
    .crow1 .crow1item:last-child:hover {

        background: #f02878;
        & i {
            color:#fff !important;
        }
        & h4 {
            color:#fff !important;
        }

    }
}


@media screen and (hover:none) {
    .crow1 .crow1item:first-child {

        background: #7e932e;
        & i {
            color:#fff !important;
        }
        & h4 {
            color:#fff !important;
        }
    }
    .crow1 .crow1item:nth-child(2) {

        background: #4c51a5;
        & i {
            color:#fff !important;
        }
        & h4 {
            color:#fff !important;
        }
    }
    .crow1 .crow1item:last-child {

        background: #f02878;
        & i {
            color:#fff !important;
        }
        & h4 {
            color:#fff !important;
        }

    }
}

@media screen and (max-width:767px) {
    .crow1 .crow1item {
        width: 100%;
    }
}

.profile_flex {
    margin: 75px auto;

    & h5 {
        font-size:2.5rem;
        font-weight:600;
        margin-bottom: 30px;
    }
    & p {
        position: relative;
        padding-left: 30px;
        font-size: 1.4rem;
        line-height: 2.4rem;

        &::after {
            position: absolute;
            content:'\f04b';
            font-family:'Font Awesome 6 Free';
            font-weight:700;
            left: 0;
            top: 0;

        }
    }
}

@media screen and (max-width:567px) {
    .cpage_img {

        & h3 {
            font-size: 1.2rem;
            font-weight: 800;
            margin-top: 15px;
        }
    }

    .crow1 {
        & .col-md-4 {
            margin: 30px auto;
        }
        & h4 {
            font-size: 1.1rem;
        }
        & i {
            display: block;
            font-size: 4rem;
        }
    }
    .profile_flex {
        & h5 {
            font-size: 2rem;
        }
        & p {
            font-size: 1.1rem;
            line-height: 2rem;
        }
    }

}

.coursepage {
	padding: 60px 0;


}

.course_subtitle {
		text-align: center;
		font-size:2rem;
		font-weight:600;
	}
.course_flex {
	display: flex;
	padding:30px 0;
	gap:20px;

	& .course {
		width: calc(100% / 5);
		border:1px solid #ccc;
		background: #fff;
		box-sizing:border-box;
		padding-bottom:30px;
		border-radius:5px;
		overflow: hidden;

		& img {
			display: block;	
			width: 100%;
			
		}

		& p {
			margin-top: 30px;
			text-align: center;
			font-size:1.2rem;
			font-weight:600;
		}
	}
}

.course_flex2 {
    display: flex;
    gap:20px;
    flex-wrap:wrap;
    margin: 30px auto;
}

.course2 {
    width: calc(100% / 3 - 15px);
    overflow: hidden;
    box-sizing:border-box;
    border-radius:5px;
    border:1px solid #ccc;
    text-align: center;
    padding: 30px 40px;
    background: #f9f9ff;

    & h4 {
        display: inline-block;
        margin: 0 auto;
        padding:14px 22px;
        font-size:2rem;
        font-weight:600;
        color:#fff;
        background: #4c51a5;
        border-radius:100px;
    }
    & p {
        margin-top: 30px;
        word-break:keep-all;

        & strong {
            color:red;
            font-weight:800;
        }
    }
}

.rowimgbox {
    & img {
        width: 100% !important;
        margin: 0 auto;
        border-radius:5px;
    }
}

.course_box {
    padding:120px 0;
}
.course_section {
    display: flex;
    overflow: hidden;


    &.rev {
        flex-direction:row-reverse;
    }

    & .left {
        width: 50%;

        & img {
            display: block;
            width: 100%;
        }
    }

    & .right {
        width: 50%;
        padding:40px 55px;

        & h5 {
            font-size:2rem;
            font-weight:700;
            color:#4c51a5;
            margin-bottom: 30px;
        }
        & p {
            word-break:keep-all;
            line-height: 2rem;
        }
    }
}

@media screen and (max-width:567px) {
    .course_box {
        padding:80px 0;
    }
    .course_subtitle {
        font-size: 1.2rem;
    }
    .course_flex {
        gap: 10px;
        flex-wrap: wrap;
        & .course {
            width: 31%;
            & p {
                font-size: 0.8rem;
            }
        }
    }

    .course_flex2 {
        gap: 15px;
    }

    .course2 {
        width: 100%;
    }

    .rowimgbox {

        & .col-md-4 {
            margin-bottom: 15px;
        }
    }

    .course_section {
        flex-direction: column;

        &.rev {
            flex-direction: column;
        }

        & .left {
            width: 100%;
        }

        & .right {
            width: 100%;
            padding:45px 20px;

            & h5 {
                font-size:1.2rem;
                margin-bottom: 20px;
            }
            & p {
                line-height: 1.7rem;
            }
        }
    }
}