*{margin: 0; padding: 0;}
li{list-style:none;}
a{text-decoration: none; color: #111; display: block;}
header, section ,footer{ width: 100%; float: left;}
img{width: 100%;}
div{box-sizing: border-box;}
/* 전체메뉴 클릭했을때 스크롤 없앰 */
body.active{overflow-y: hidden;}

.wrap{position: relative;}
header{
    height: 200px;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    z-index: 100;
}
header .logo{
    width: 104px;
    height: 100%;
    background-image: url(../img/logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-left: 100px;
}
header .logo a{
    width: 100%;
    height: 100%;
}
header nav{
    width: 900px;
    height: 100%;
    margin-right: 100px;
}
header nav > ul{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
}
header nav > ul >li{
    flex: 1;
    margin-top: 50px;
}
header nav > ul > li > a{
    font-size: 20px;
    padding: 25px 10px;
    font-weight: bold;
    text-align: center;
}
header nav .sub{
    border: 1px solid #ccc;
    background-color: #fff;
    display: none;
}
header nav .sub li a{
    padding: 16px;
    border-bottom: 1px solid #ccc;
    text-align: center;
    font-size: 14px;
}
header nav .sub li:last-child a{
    border: none;
}
header nav > ul > li:hover .sub{
    display: block;
}
header nav .sub li:hover{
    background-color: #5ea152;
}
header nav .sub li:hover a{
    color: #fff;
}

/* visual section*/
section.visual{
    height: 100vh;
    background-image: url(../img/img_mainVisual.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    top: 0;
    left: 0;
}
/* 이 부분은 홈페이지 참고함 */
section.visual:after{
    content: "";
    width: 1013px;
    height: 647px;
    background-image: url(../img/icon_mainVisual.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;
    position: absolute;
    bottom: -35px;
    right: 30px;
}

section.visual .text_box{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20%;
}
section.visual .text_box > p{
    font-size: 24px;
}
section.visual .text_box h1{
    font-size: 60px;
    margin-top: 10px;
}
section.visual .text_box .text_btn a{
    width: 200px;
    height: 60px;
    background-color: #5ea152;
    border-radius: 60px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-top: 60px;
}
section.visual .text_box .text_btn img{
    width: 6px;
}

/* box1 section */
section.box1{
    height: 600px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
}
section.box1 h1{
    font-size: 40px;
}
section.box1 > p{
    margin-top: 20px;
    font-size: 20px;
}
section.box1 .icon_btn ul{
    width: 1200px;
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}
section.box1 .icon_btn ul li{
    width: 125px;
    height: 150px;
}
section.box1 .icon_btn ul li .icon{
    height: 125px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40%;
    border-radius: 20px;
    background-color: #eee;
    padding: 50px;
    transition: all 0.3s;
}
section.box1 .icon_btn ul .li1 .icon{
    background-image: url(../img/icon_diagnosis01.png);
}
section.box1 .icon_btn ul .li2 .icon{
    background-image: url(../img/icon_diagnosis02.png);
}
section.box1 .icon_btn ul .li3 .icon{
    background-image: url(../img/icon_diagnosis03.png);
}
section.box1 .icon_btn ul .li4 .icon{
    background-image: url(../img/icon_diagnosis04.png);
}
section.box1 .icon_btn ul .li5 .icon{
    background-image: url(../img/icon_diagnosis05.png);
}
section.box1 .icon_btn ul .li6 .icon{
    background-image: url(../img/icon_diagnosis06.png);
    background-size: 20%;
}
section.box1 .icon_btn ul .li7 .icon{
    background-image: url(../img/icon_diagnosis07.png);
}
section.box1 .icon_btn ul .li8 .icon{
    background-image: url(../img/icon_diagnosis08.png);
}
section.box1 .icon_btn ul li p{
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin-top: 30px;
    /* 줄바꿈방지 */
    white-space: nowrap;
}
/* 마우스 오버효과 */
section.box1 .icon_btn ul li:hover .icon{
    background-color: #5ea152;
}
section.box1 .icon_btn ul .li1:hover .icon{
    background-image: url(../img/icon_diagnosis01-w.png);
}
section.box1 .icon_btn ul .li2:hover .icon{
    background-image: url(../img/icon_diagnosis02-w.png);
}
section.box1 .icon_btn ul .li3:hover .icon{
    background-image: url(../img/icon_diagnosis03-w.png);
}
section.box1 .icon_btn ul .li4:hover .icon{
    background-image: url(../img/icon_diagnosis04-w.png);
}
section.box1 .icon_btn ul .li5:hover .icon{
    background-image: url(../img/icon_diagnosis05-w.png);
}
section.box1 .icon_btn ul .li6:hover .icon{
    background-image: url(../img/icon_diagnosis06-w.png);
    background-size: 20%;
}
section.box1 .icon_btn ul .li7:hover .icon{
    background-image: url(../img/icon_diagnosis07-w.png);
}
section.box1 .icon_btn ul .li8:hover .icon{
    background-image: url(../img/icon_diagnosis08-w.png);
}
/* box2 section */
section.box2{
    height: 700px;
    background-color: #eee;
    position: relative;
}
section.box2 .con{
    width: 1200px;
    position: absolute;
    top:-40px;
    left: 50%;
    transform: translateX(-50%);
}
section.box2 .con .con1{
    width: 700px;
    float: left;
}
section.box2 .con .con1 .three_btn{
    background-color: #fff;
    height: 100px;
    border: 1px solid #999;
    border-radius: 30px 0 0 30px;
}
section.box2 .con .con1 .three_btn ul{
    display: flex;
    justify-content: space-between;
    height: 100%;
}
section.box2 .con .con1 .three_btn ul li{
    flex: 1;
    border-right: 1px solid #eee;
}
section.box2 .con .con1 .three_btn ul li a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
section.box2 .con .con1 .three_btn ul li p{
    font-size: 18px;
    font-weight: bold;
}
section.box2 .con .con1 .three_btn ul li .btn{
    width: 30px;
    height: 30px;
    background-color: #999;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
section.box2 .con .con1 .three_btn ul li .btn img{
    width: 6px;
    height: 11px;
}
section.box2 .con .con1 .notice ul{
    padding: 30px;
}
section.box2 .con .con1 .notice ul li{
    display: flex;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #aaa;
}
section.box2 .con .con1 .notice ul li:last-child{
    border:none;
}
section.box2 .con .con1 .notice ul li .day{
    float: left;
    text-align: center;
    margin-right: 20px;
}
section.box2 .con .con1 .notice ul li .day h2{
    font-size: 40px;
}
section.box2 .con .con1 .notice ul li .day p{
    font-size: 14px;
    font-weight: bold;
}
section.box2 .con .con1 .notice ul li a h1{
    font-size: 20px;
}
section.box2 .con .con1 .notice ul li a p{
    white-space: nowrap;
    margin-top: 5px;
}
section.box2 .con .con2{
    width: 500px;
    float: right;
}
section.box2 .con .con2 .banner{
    height: 250px;
    background-color: #6052a1;
    color: #fff;
    border-radius: 0 30px 0 0;
    padding: 100px 50px;
}
section.box2 .con .con2 .banner p{
    margin-bottom: 8px;
}
section.box2 .con .con2 .call{
    padding: 50px;
    height: 400px;
    background-color: #fff;
    box-shadow: 30px 30px 50px -40px #999;
}
section.box2 .con .con2 .call .call_box p{
    width: 150px;
    height: 40px;
    background-color: #6052a1;
    border-radius: 30px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-weight: bold;
}
section.box2 .con .con2 .call .call_box a{
    color: #6052a1;
    font-size: 50px;
    font-weight: bold;
    margin-top: 10px;
}
section.box2 .con .con2 .call > p{
    margin-top: 30px;
}
section.box2 .con .con2 .call .call_btn{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
section.box2 .con .con2 .call .call_btn a{
    width: 175px;
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-weight: bold;
}
section.box2 .con .con2 .call .call_btn .btn1 a{
    border: 1px solid #999;
}
section.box2 .con .con2 .call .call_btn .btn1 a img{
    width: 6px;
    height: 9px;
}
section.box2 .con .con2 .call .call_btn .btn2 a{
    border: 1px solid #5ea152;
    color: #5ea152;
}
section.box2 .con .con2 .call .call_btn .btn2 a img{
    width: 16px;
    height: 14px;
}
/* footer */
footer{
    height: 350px;
}
footer .center_box{
    width: 1200px;
    margin: 0 auto;
}
footer .f_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}
footer .f_top .info ul{
    width: 100%;
    float: left;
}
footer .f_top .info ul li{
    float: left;
    border-right: 2px solid #ddd;
}
footer .f_top .info ul li:last-child{
    border: none;
}
footer .f_top .info ul li a{
    margin:0 30px;
    font-weight: bold;
}
footer .f_top .info ul li:first-child a{
    margin-left: 0;
}
footer .f_top .info address{
    font-style: normal;
    margin-top: 50px;
    line-height: 25px;
    word-spacing: -2px;
}
footer .f_top .info address span{
    font-weight: bold;
}
footer .f_bottom{
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
footer .f_bottom .copy p{
    color: #999;
}
footer .f_bottom a{
    width: 100px;
}
/* 전체메뉴 버튼 */
.full_menu a{
    width: 50px;
    height: 50px;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
}
.full_menu a p{
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
.full_menu a span:nth-child(2){
    width: 50px;
    height: 2px;
    background-color: #999;
    display: block;
    margin-top: 5px;
}
.full_menu a span:nth-child(3){
    width: 30px;
    height: 2px;
    background-color: #999;
    display: block;
    margin-top: 7px;
}
.full_menu a span:last-child{
    width: 40px;
    height: 2px;
    background-color: #999;
    display: block;
    margin-top: 7px;
}
/* 사이드 메뉴 */
.side_menu{
    position: fixed;
    right: 5%;
    bottom: 30px;
}
.side_menu ul{
    display: flex;
    flex-flow: column nowrap;
}
.side_menu ul li{
    margin-top: 20px;
}
.side_menu ul li:first-child{
    margin-top: 0;
}
.side_menu ul li a .menu_icon{
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 100%;
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30%;
    box-shadow: 5px 5px 10px #ddd;
    transition: all 0.5s;
}
.side_menu ul .li1 a .menu_icon{
    background-image: url(../img/icon_sideNav1.png);
}
.side_menu ul .li2 a .menu_icon{
    background-image: url(../img/icon_sideNav2.png);
}
.side_menu ul .li3 a .menu_icon{
    background-image: url(../img/icon_sideNav3.png);
}
.side_menu ul .li4 a .menu_icon{
    background-image: url(../img/icon_sideNav4.png);
}
.side_menu ul .li5 a .menu_icon{
    background-image: url(../img/icon_naver.png);
}
.side_menu ul li a p{
    text-align: center;
    margin-top: 8px;
    font-weight: bold;
    font-size: 14px;
}
/* 마우스 오버효과 */
.side_menu ul li:hover a .menu_icon{
    background-color: rgb(117, 62, 0);
}
.side_menu ul .li1:hover a .menu_icon{
    background-image: url(../img/icon_sideNav1-w.png);
}
.side_menu ul .li2:hover a .menu_icon{
    background-image: url(../img/icon_sideNav2-w.png);
}
.side_menu ul .li3:hover a .menu_icon{
    background-image: url(../img/icon_sideNav3-w.png);
}
.side_menu ul .li4:hover a .menu_icon{
    background-image: url(../img/icon_sideNav4-w.png);
}
.side_menu ul .li5:hover a .menu_icon{
    background-image: url(../img/icon_naver-w.png);
}
/* 전체메뉴 */
.full_page{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
}
.full_page .menu{
    width: 60%;
    height: 100%;
    float: left;
    background-color: #fff;
}
.full_page .menu .close{
    width: 10%;
    height: 100%;
    float: left;
    border-right: 2px solid #ddd;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.full_page .menu .close img{
    width: 50px;
}
.full_page .menu > ul{
    width: 90%;
    height: 100%;
    float: right;
    box-sizing: border-box;
    padding: 80px 0;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}
.full_page .menu > ul > li{
    margin: 20px 0;
    padding-left:80px ;
    position: relative;
}
/* 클릭이벤트 */
.full_page .menu > ul > li:after{
    content: "";
    height: 0;
    width: 3px;
    background-color: #333;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    transition: all 0.5s;
}
.full_page .menu > ul > li.active:after{
    height: 100%;
}
.full_page .menu > ul > li > a{
    font-weight: bold;
    font-size: 30px;
}
.full_page .menu .sub{
    margin-top: 10px;
    display: none;
}
.full_page .menu .sub li{
    float: left;
    margin-right: 30px;
    margin-bottom: 8px;
}
.full_page .menu .sub li a{
    font-size: 18px;
    white-space: nowrap;
}

.full_page .side_bg{
    width: 40%;
    height: 100%;
    float: right;
    background-image: url(../img/img_menu.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px;
    position: relative;
}
.full_page .side_bg img{
    width: 104px;
}
.full_page .side_bg p{
    font-size: 50px;
    color: #fff;
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 20%;
    transform: translateX(-50%);
    white-space: nowrap;
}