@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

/* 노멀라이징 */
body {
    font-family: 'Noto Sans KR', sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

ul,
li,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

/* 라이브러리 */
.con {
    max-width: 750px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

.ju_cen {
    justify-content: center;
}

.ju_en {
    justify-content: flex-end;
}

.ju_sa {
    justify-content: space-around;
}

.ju_sb {
    justify-content: space-between;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
}

.img-box {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.img-box>img {
    width: 100%;
    display: block;
}

/* intro */
body {
    background-color: #2d2d2d;
}

.intro_wrap {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.mo-wrap {
    background-color: #fff;

}

/* index */
/* top-bar st */
.top-bar {
    max-width: 750px;
    width: 100%;
    height: 15.067vw;
    background-color: #fff;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    z-index: 9999;
}

.top-bar>.menu-btn {
    position: absolute;
    left: 5.333vw;
    top: 50%;
    transform: translateY(-50%);
    width: 6.1333%;
}

.top-bar>.menu-btn>.img-box>img:nth-child(1) {
    display: block;
}

.top-bar>.menu-btn>.img-box>img:nth-child(2) {
    display: none;
}

.top-bar>.menu-btn.active>.img-box>img:nth-child(1) {
    display: none;
}

.top-bar>.menu-btn.active>.img-box>img:nth-child(2) {
    display: block;
}

.top-bar>.logo-box {
    width: 26.1333%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.top-bar>.gotoClinic {
    position: absolute;
    right: 5.333vw;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
}

@media screen and (min-width : 750px) {

    .top-bar {
        height: 113px;
    }

    .top-bar>.menu-btn {
        left: 40px;
    }

    .top-bar>.gotoClinic {
        right: 40px;
    }

}

/* mo-menu st */
.mo-menu {
    width: 100%;
    position: fixed;
    z-index: 99;
    font-size: 2.667vw;
    top: 15.067vw;
    color: black;
    overflow: hidden;
    visibility: hidden;
}

.mo-menu.active {
    visibility: visible;
}

.mo-menu>.bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.mo-menu.active>.bg {
    opacity: 1;
    visibility: visible;
}

.mo-menu>.content {
    position: relative;
    height: calc(100vh - 39.333vw);
    max-width: 520px;
    width: 70%;
    overflow-y: auto;
    background-color: #fff;
    transform: translateX(-100%);
    transition: 0.5s;
}

.mo-menu.active>.content {
    transform: translateX(0);
}

.mo-menu::after {
    display: block;
    content: "";
    max-width: 520px;
    width: 70%;
    height: 22.667vw;
    background-color: #fff;
    position: relative;
    transform: translateX(-100%);
    transition: 0.5s;
}

.mo-menu.active::after {
    transform: translateX(0);
}

.mo-menu>.content>.top {
    display: flex;
}

.mo-menu>.content>.top>div {
    width: 100%;
    text-align: center;
    color: white;
    background-color: #000;
    font-weight: bold;
    line-height: 60px;
    /* 22 */
    font-size: 24px;
}

.mo-menu>.content>.nav a {
    display: block;
    /* padding-top: 2vw;
    padding-bottom: 2vw;
    padding-left: 10.667vw;
    padding-right: 5.3333vw; */
    line-height: 60px;
    padding-left: 10.67vw;
    padding-right: 40px;
    font-size: 24px;
}

.mo-menu>.content>.nav>li {
    background-color: #e8e8e8;
    color: #000;
    border-bottom: 1px solid #eee;
}

.mo-menu>.content>.nav>li>a {
    position: relative;
}

.mo-menu>.content>.nav>li>a::after {
    content: "";
    display: block;
    width:0.195vw;
    height: 3.00vw;
    background-color: #afafaf;
    position: absolute;
    top: 50%;
    right: 6.3333vw;
    transform: translate(50%, -50%);
    transition: 0.5s;
}

.mo-menu>.content>.nav>li>a::before {
    content: "";
    display: block;
    width: 3.00vw;
    height: 0.195vw;
    background-color: #afafaf;
    position: absolute;
    top: 50%;
    right: 6.3333vw;
    transform: translate(50%, -50%);
}

.mo-menu>.content>.nav>li.active>a {
    background-color: #9d253f;
    color: white;
}

.ac_page .mo-menu>.content>.nav>li.active>a {
    background-color: #aa8c62    ;
    color: white;
}

.mo-menu>.content>.nav>li.active>a::after {
    transform: translate(50%, -50%) rotate(90deg);
    background-color: white;
}

.mo-menu>.content>.nav>li.active>a::before {
    background-color: white;
}

.mo-menu>.content>.nav>li>ul {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s;
    background-color: #fff;
    color: #000;
}

.mo-menu>.content>.nav>li.active ul {
    max-height: 300px;
}

.mo-menu>.content>.nav>li>ul>li {
    border-bottom: 1px solid #ddd;
    color: #999999;
}

.mo-menu>.content>.nav>li>ul>li>a::before {
    content: "·";
    margin-right: 1.33vw;
    color: #666;
}

.mo-menu>.content>.nav>li>ul>li>a:hover {
    background-color: #9d253f;
    color: white;
}
.ac_page .mo-menu>.content>.nav>li>ul>li>a:hover {
    background-color: #000;
    color: white;
}

@media screen and (min-width:750px) {

    .mo-menu {
        font-size: 20px;
        top: 113px;
    }

    .mo-menu>.content {
        height: calc(100vh - 295px);
    }

    .mo-menu>.content>.top>div {
    }

    .mo-menu>.content>.nav a {
        padding-left: 80px;
        padding-right: 40px;
    }

    .mo-menu>.content>.nav>li>a::after {
        height: 15px;
    }

    .mo-menu>.content>.nav>li>a::before {
        width: 15px;
    }
    .mo-menu>.content>.nav>li>ul>li>a::before {
        margin-right: 10px;
    }
    .mo-menu>.content>.nav>li>a::after{
        width: 15px;
        height: 1px;
    }
    .mo-menu>.content>.nav>li>a::before{
        width: 15px;
        height: 1px;
    }
}

/* top-slide-wrap st */
.top-slide-wrap {
    position: relative;
    margin-top: 15.067vw;
}

.top-slide-wrap .slide .content {
    position: relative;
}

.top-slide-wrap .content .txt-box {
    position: absolute;
}

.top-slide-wrap .content.active .txt-box>.txt-02{
    transition-delay: 0.3s;
}
.top-slide-wrap .content.active .txt-box>.txt-03{
    transition-delay: 0.6s;
}
/* 1번 슬라이드 */
.top-slide-wrap .content1 .txt-box {
    left: 10.667vw;
    bottom: 17.333vw;
}

.top-slide-wrap .content1 .txt-box>.txt-01 {
    width: 36vw;
    max-width: 270px;
    margin-bottom: 4vw;
}

.top-slide-wrap .content1 .txt-box>.txt-02 {
    width: 44.267vw;
    max-width: 332px;
    margin-bottom: 4vw;
}

.top-slide-wrap .content1 .txt-box>.txt-03 {
    width: 26vw;
    max-width: 195px;
}
/* 2번 슬라이드 */
.top-slide-wrap .content2 .txt-box {
    top: 22.6667vw;
    right: 9.6000vw;
}

.top-slide-wrap .content2 .txt-box>.txt-01 {
    width: 29.8667vw;
    max-width: 224px;
    margin-bottom: 4vw;
}

.top-slide-wrap .content2 .txt-box>.txt-02 {
    width: 28.0000vw;
    max-width: 210px;
    margin-bottom: 4vw;
}

.top-slide-wrap .content2 .txt-box>.txt-03 {
    width: 26vw;
    max-width: 195px;
}
/* ac 2번 슬라이드 */
.ac_page .top-slide-wrap .content2 .txt-box {
    left: 50%;
    transform: translate(-50%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.ac_page .top-slide-wrap .content2 .txt-box>.txt-01 {
    width: 69.33vw;
    max-width: 520px;
    margin-bottom: 2vw;
}

.ac_page .top-slide-wrap .content2 .txt-box>.txt-02 {
    width: 89.60vw;
    max-width: 672px;
    margin-bottom:3vw;
}

.ac_page .top-slide-wrap .content2 .txt-box>.txt-03 {
    width: 26vw;
    max-width: 195px;
}
/* 3번 슬라이드 */
.top-slide-wrap .content3 .txt-box {
    top: 17.3333vw;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.top-slide-wrap .content3 .txt-box>.txt-01 {
    width: 64.1333vw;
    max-width: 481px;
    margin-bottom: 4vw;
}

.top-slide-wrap .content3 .txt-box>.txt-02 {
    width: 92.13vw;
    max-width: 691px;
    margin-bottom: 4vw;
}

.top-slide-wrap .content3 .txt-box>.txt-03 {
    width: 26vw;
    max-width: 195px;
}
/* 4번 슬라이드 */
.top-slide-wrap .content4 .txt-box {
    top: 18vw;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.top-slide-wrap .content4 .txt-box>.txt-01 {
    width: 77.3333vw;
    max-width: 580px;
    margin-bottom: 4vw;
}

.top-slide-wrap .content4 .txt-box>.txt-02 {
    width: 89.4667vw;
    max-width: 671px;
    margin-bottom: 8vw;
}
.top-slide-wrap .content4 .txt-box>.txt-03 {
    width: 26vw;
    max-width: 195px;
}

/*  */

.top-slide-wrap .txt-box>.txt {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: 0s;
}

.top-slide-wrap .content.active .txt-box>.txt {
    display: block;
    opacity: 1;
    transform: translateY(0px);
    transition-duration: 0.5s;
}

.top-slide-wrap>.dots {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 8vw;
    width: 100%;
}

.top-slide-wrap>.dots>li {
    max-width: 17px;
    max-height: 17px;
    width: 2.267vw;
    height: 2.267vw;
    background-color: #fff;
    margin-right: 2.267vw;
}

.top-slide-wrap>.dots>li:last-child {
    margin-right: 0;
}

.top-slide-wrap>.dots>li.active {
    background-color: #b8254d;
}

.ac_page .top-slide-wrap>.dots>li.active {
    background-color: black;
}

@media screen and (min-width: 750px) {
    .top-slide-wrap {
        position: relative;
        margin-top: 113px;
    }

    .top-slide-wrap  .content1 .txt-box {
        left: 80px;
        bottom: 130px;
    }

    .top-slide-wrap  .content .txt-box>.txt-01 {
        margin-bottom: 30px;
    }

    .top-slide-wrap .content .txt-box>.txt-02 {
        margin-bottom: 30px;
    }

    .top-slide-wrap .content2 .txt-box {
        top: 170px;
        right: 72px;
    }
        
    .ac_page .top-slide-wrap .content2 .txt-box {
        top: 90px;
    }
        
    .top-slide-wrap .content3 .txt-box {
        top: 130px;
    }
        
    .top-slide-wrap .content4 .txt-box {
        top: 135px;
    }

    .top-slide-wrap>.dots {
        bottom: 60px;
    }

    .top-slide-wrap>.dots>li {
        margin-right: 17px;
    }
}

/* section01 st */

.section01.img-up>* {
    opacity: 1;
    transform: translateY(0px);
}

.section01>* {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
}

.section01 {
    width: 100%;
    height: 110.400vw;
    padding-top: 9.333vw;
    box-sizing: border-box;
}

.section01>.tp-txt {
    width: 51.067%;
    margin: 0 auto;
}

.section01>.content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 11vw;
    margin-top: 6vw;
    transition-delay: 0.5s;
}

.section01>.content>.img-box {
    width: calc(50% - 8vw);
    margin-left: 4vw;
    margin-right: 4vw;
    margin-top: 4vw;
}

@media screen and (min-width: 750px) {
    .section01 {
        padding-top: 70px;
        height: 828px;
    }

    .section01>.content {
        margin: 0 92px;
        margin-top: 60px;
    }

    .section01>.content>.img-box {
        width: calc(50% - 60px);
        margin-left: 30px;
        margin-right: 30px;
        margin-top: 30px;
    }
}

/* section02 st */
.section02>.tp-txt,
.section02 .content01,
.section02 .content02,
.section02 .content03 {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.5s;
}

.section02>.tp-txt.img-up,
.section02 .content01.img-up,
.section02 .content02.img-up,
.section02 .content03.img-up {
    opacity: 1;
    transform: translateY(0px);
}

.section02 {
    height: 171.733vw;
    padding: 0 4vw;
    padding-top: 8vw;
    box-sizing: border-box;
}

.section02>.tp-txt {
    width: 52.533%;
    margin: 0 auto;
    margin-top: 13.333vw;
}

.section02>.content-box1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 4vw;
}

.section02>.content-box1>.content01 {
    margin-right: 2vw;
    position: relative;
}

.section02>.content-box1>.content01 .obj {
    width: 14.133vw;
    max-width: 106px;
    position: absolute;
    left: 4.800vw;
    top: -9.333vw;
}

.section02>.content-box1>.content02 {
    margin-left: 2vw;
    position: relative;
}

.section02>.content-box1>.content02 .obj {
    width: 14.133vw;
    max-width: 106px;
    position: absolute;
    top: 26vw;
    right: -3.333vw;
}

.section02>.content-box2 {
    display: flex;
    justify-content: flex-end;
    margin-top: 4vw;
}

.section02>.content-box2>.content03 {
    width: 76%;
    position: relative;
}

.section02>.content-box2>.content03 .obj {
    width: 14.133vw;
    max-width: 106px;
    position: absolute;
    top: 12vw;
    left: -10.667vw;
}

.section02>.content-box1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

@media screen and (min-width: 750px) {
    .section02 {
        padding-top: 70px;
        max-height: 1288px;
    }

    .section02>.tp-txt {
        margin-top: 100px;
    }

    .section02>.content {
        margin: 0 92px;
        margin-top: 60px;
    }

    .section02>.content>.img-box {
        width: calc(50% - 60px);
        margin-left: 30px;
        margin-right: 30px;
        margin-top: 30px;
    }

    .section02>.content-box1 {
        margin-top: 40px;
    }

    .section02>.content-box1>.content01 {
        margin-right: 20px;
    }

    .section02>.content-box1>.content02 {
        margin-left: 20px;
    }

    .section02>.content-box2 {
        margin-top: 40px;
    }

    .section02>.content-box1>.content01 .obj {
        left: 36px;
        top: -70px;
    }

    .section02>.content-box1>.content02 .obj {
        top: 195px;
        right: -25px;
    }

    .section02>.content-box2>.content03 .obj {
        top: 90px;
        left: -80px;
    }
}

/* section03 */
.section03 {
    max-height: 870px;
    height: 116vw;
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #fff;
    text-align: center;
    margin-top: 10vw;
    padding-top: 4vw;
    box-sizing: border-box;
}

.section03 .txt-box .txt01 {
    max-width: 358px;
    width: 47.733%;
    margin: 0 auto;
    margin-bottom: 2vw;
}

.section03 .txt-box .txt02 {
    max-width: 301px;
    width: 40.133vw;
    margin: 0 auto;
    margin-bottom: 8vw;
}

.section03 .slide-wrap .slide .content{
}

.section03 .slide-wrap .slide .content>.img-box {
    display: block;
    padding-top: 6.667vw;
    padding-bottom: 0px;
    box-sizing: border-box;
    margin-right: 2vw;
    margin-left: 2vw;
    transition: 0.5s;
}

.section03 .slide-wrap .slide .content.active>.img-box {
    padding-top: 0px;
    padding-bottom: 6.667vw;
}

@media screen and (min-width: 750px) {
    .section03 {
        padding-top: 30px;
    }

    .section03 .txt-box .txt01 {
        margin-bottom: 15px;
    }

    .section03 .txt-box .txt02 {
        margin-bottom: 60px;
    }
}


/* section04 st */
.section04 {
    padding: 0 4vw;
    padding-top: 10.667vw;
    padding-bottom: 10.667vw;
    box-sizing: border-box;
}

.section04 .txt-box {
    margin-bottom: 6.667vw;
}

.section04 .txt-box .txt01 {
    max-width: 302px;
    margin: 0 auto;
    width: 40.267vw;
    margin-bottom: 2.667vw;
}


.section04 .txt-box .txt02 {
    max-width: 378px;
    margin: 0 auto;
    width: 50.400vw;
}

.section04 .content-box {
    background-color: #fff;
    position: relative;
}

.section04 .content-box {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center 67.60vw;
}

.section04 .content-box>.product>.img-box {
    display: block;
    width: 64.667vw;
    max-width: 485px;
}

.section04 .content-box>.product {
    transform: translateX(2vw) translateY(-4vw);
}

.section04 .content-box>.md-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 8.667vw;
    background-size: contain;
    background-position: center -0.7vw;
    background-repeat: no-repeat;
    margin-bottom: 4vw;
    margin-top: 2vw;
    /* transform: translateY(-4vw); */
}

.section04 .content-box>.md-content>.content {
    width: 50%;
    margin-bottom: 2vw;
    margin-top: 2vw;
}

.section04 .content-box>.md-content>.content3,
.section04 .content-box>.md-content>.content4 {
    width: 50%;
    margin-top: 4vw;
}

.section04 .content-box>.md-content>.content>.text1,
.section04 .content-box>.md-content>.content>.text2 {
    margin: 0 auto;
    margin-bottom: 1.333vw;
}

.section04 .content-box>.md-content>.content1>.text1 {
    width: 13.867vw;
    max-width: 104px;
}

.section04 .content-box>.md-content>.content1>.text2 {
    width: 24.267vw;
    max-width: 182px;
}

.section04 .content-box>.md-content>.content2>.text1 {
    width: 23.867vw;
    max-width: 179px;
}

.section04 .content-box>.md-content>.content2>.text2 {
    width: 26.400vw;
    max-width: 198px;
}

.section04 .content-box>.md-content>.content3>.text1 {
    width: 18.133vw;
    max-width: 136px;
}

.section04 .content-box>.md-content>.content3>.text2 {
    width: 26.267vw;
    max-width: 197px;
}

.section04 .content-box>.md-content>.content4>.text1 {
    width: 18.133vw;
    max-width: 136px;
}

.section04 .content-box>.md-content>.content4>.text2 {
    width: 20vw;
    max-width: 150px;
}

.section04 .content-box>.bt-content {
    width: 100%;
    padding: 0 8.667vw;
    margin-bottom: 5.333vw;
}

.section04.ac_section > .txt-box{
    max-width: 334px;
    width: 44.53vw;
    margin: 0 auto;
}

.section04.ac_section > .img{
    padding-left: 4vw;
    padding-right: 4vw;
}
.section04.ac_section > .img > .img-box{
    margin-top: 6.67vw;
    display: block;
}

@media screen and (min-width: 750px) {
    .section04 {
        padding: 30px;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .section04 .txt-box {
        margin-bottom: 50px;
    }

    .section04 .txt-box .txt01 {
        margin-bottom: 20px;
    }

    .section04 .content-box {
        background-position: center 507px;
    }

    .section04 .content-box>.product {
        transform: translateX(15px) translateY(-30px);
    }

    .section04 .content-box>.md-content {
        padding: 0 65px;
    }

    .section04 .content-box>.bt-content {
        padding: 0 65px;
        margin-bottom: 40px;
        margin-top: 20px;
    }

    .section04 .content-box>.md-content>.content {
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .section04 .content-box>.md-content>.content3,
    .section04 .content-box>.md-content>.content4 {
        margin-top: 30px;
        margin-bottom: 0;
    }

    .section04 .content-box>.md-content>.content>.text1,
    .section04 .content-box>.md-content>.content>.text2 {
        margin-bottom: 10px;
    }

    .section04 .content-box>.md-content {
        background-position: center -6px;
        margin-bottom: 30px;
    }

    .section04.ac_section > .img{
        padding-left: 30px;
        padding-right: 30px;
    }
        
    .section04.ac_section > .img > .img-box{
        margin-top: 50px;
    }

}

/* section05 st */
.section05 {
    padding: 0 4vw;
    margin-top: 13.333vw;
    padding-bottom: 13.333vw;
}

.section05>.txt-box {
    max-width: 596px;
    width: 79.467vw;
    margin: 0 auto;
    margin-bottom: 4vw;
}

.section05>.slide-box {
    position: relative;
}

.section05>.slide-box>.btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.6);
}

.section05>.slide-box>.left-btn {
    left: -1vw;
}

.section05>.slide-box>.left-btn>img {
    transform: rotate(180deg);
}

.section05>.slide-box>.right-btn {
    right: -1vw;
}

@media screen and (min-width: 750px) {
    .section05 {
        padding: 0 30px;
        margin-top: 100px;
        padding-bottom: 100px;
    }

    .section05>.txt-box {
        margin-bottom: 30px;
    }

    .section05>.slide-box>.left-btn {
        left: -15px;
    }

    .section05>.slide-box>.right-btn {
        right: -15px;
    }
}

/* footer st */

.footer {
    background-color: black;
    color: #d7d7d7;
    padding-bottom: 33.333vw;
}

.footer>.tp-txt {
    display: flex;
    justify-content: space-around;
}

.footer>.tp-txt>div {
    width: 50%;
    text-align: center;
    font-size: 3.733vw;
    padding: 2.667vw 0;
    border-bottom: 1px solid #707070;
    border-collapse: collapse;
    box-sizing: border-box;
}

.footer>.tp-txt>div:nth-child(1) {
    border-right: 1px solid #707070;
}

.footer>.tp-txt>div>a {
    display: block;
}

.footer>.info {
    font-size: 3.2vw;
    text-align: center;
    margin-top: 5.333vw;
    color: #a7a7a7;
}

.footer>.info>b {
    color: #d7d7d7;
}

@media screen and (min-width: 750px) {
    .footer {
        padding-bottom: 250px;
    }

    .footer>.tp-txt>div {
        font-size: 28px;
        padding: 20px 0;
    }

    .footer>.info {
        font-size: 24px;
        margin-top: 40px;
    }
}

/* bt_nav */
.bt_nav {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 99;
}

@media screen and (min-width: 750px) {}

/* scrollmagic */
.img_up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.5s;
}

.img_up.active {
    opacity: 1;
    transform: translateY(0px);
}


.sub-content > img{
width: 100%;
padding-top: 15.067vw;
}

@media screen and (min-width: 750px) {
    
.sub-content > img{
    padding-top: 113px;
    }
}
.sub_top.sub-content {
padding-top: 15.067vw;
} 