@charset "UTF-8";
@import url(reset.css);

html,body{
    transition: 0.5s;
}
/* ############### header영역 ############### */
#header{
    position: fixed;
    width: 100vw;
    z-index: 9999999;
}
#header .header_logo{
    position: absolute;
    left: 55px;
    top: 55px;
}
#header .header_logo img{}
#header .header_menu{
    position: absolute;
    right: 95px;
}
#header .header_menu .header_menu_btn{
    position: absolute;
    top: 78px;
    z-index: 99999;
}
#header .header_menu .header_menu_btn span{
    display: block;
    width: 25px;
    height: 4px;
    background: #333;
    margin-bottom: 5px;
    transition: 0.3s;
}
#header .header_menu .header_menu_btn:hover span{
    margin-bottom: 4px;
}
#header .header_menu .header_menu_btn span:last-child{
    margin-bottom: 0;
}
#header .header_menu.navOn .header_menu_btn span:nth-child(1){
    transform: rotate(45deg) translateY(11px);
}
#header .header_menu.navOn .header_menu_btn span:nth-child(2){
    opacity: 0;
    margin-left: 5px;
}
#header .header_menu.navOn .header_menu_btn span:nth-child(3){
    transform: rotate(-45deg) translate(2px,-13px);
}
#header .header_menu.navOn .header_menu_btn:hover span{
    margin-bottom: 5px;
}
#header .header_menu .header_menu_list{
    position: absolute;
    top: 0;
    left: -95.6vw;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 999;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    box-sizing: border-box;
}
#header .header_menu .header_menu_list .menu_wrap{
    position: absolute;
    top: 50%;
    left: 7vw;
    transform: translateY(-50%);
}
#header .header_menu .header_menu_list .menu_list{}
#header .header_menu .header_menu_list .menu_list li{
    margin-bottom: 50px;
    position: relative;
}
#header .header_menu .header_menu_list .menu_list li:nth-child(2) .counting1{
    width: 78px;
    height: 78px;
    background: #ff0b34;
    border-radius: 50%;
    color: #fff;
    font-size: 27px;
    font-weight: 700;
    text-align: center;
    line-height: 78px;
    position: absolute;
    top: -30px;
    right: -25px;
    z-index: -1;
    animation: floating 4s linear infinite;
}

@keyframes floating{
    25%{
        top: -24px;
    }
    50%{
        top: -30px;
    }
    75%{
        top: -24px;
    }
    100%{
        top: -30px;
    }
}

#header .header_menu .header_menu_list .menu_list li a{
    font-weight: 800;
    font-size: 80px;
    color: #333;
    transition: 0.3s;
}
#header .header_menu .header_menu_list .menu_list li:hover a{
    color: #ff0b34;
}
#header .header_menu .header_menu_list .menu_sns{
    display: inline-block;
}
#header .header_menu .header_menu_list .menu_sns li{
    margin-bottom: 20px;
}
#header .header_menu .header_menu_list .menu_sns li a{
    font-size: 20px;
    transition: 0.3s;
}
#header .header_menu .header_menu_list .menu_sns li:hover a{
    color: #ff0b34;
}
#header .header_menu.navOn .header_menu_list{
    opacity: 1;
    pointer-events: all;
}


#header.motion .header_menu .header_menu_list{
    background: #222;
}
#header.motion .header_menu .header_menu_list .menu_list li a{
    color: #fff;
}
#header.motion .header_menu .header_menu_list .menu_list li:hover a{
    color: #ff0b34;
}
#header.motion .header_menu .header_menu_list .menu_sns li a{
    color: #a7a7a7;
}
#header.motion .header_menu .header_menu_list .menu_sns li:hover a{
    color: #ff0b34;
}

/* ############### 첫번째 영역 ############### */
#main_sec1{
    padding-top: 130px;
    position: relative;
    /* height: 1230px; */
	height: auto;
}
#main_sec1 .main_title{
    color: #111;
    /* font-size: 135px; */
	font-size: 185px;
    font-weight: 700;
    line-height: 1;
    /* width: 1100px; */
	width: 85%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
#main_sec1 .main_title img{
    animation: pounding 1s linear infinite alternate;
	
	width: 185px;
}
@keyframes pounding{
    0%{  transform: scale(0.9); }
    60%{  transform: scale(0.9); }
    100%{  transform: scale(1.05); }
}
#main_sec1  .visual_img{
    /* position: absolute; */
	position: relative;
    /* top: 360px; */
    /* right: 0; */
    width: 80%;
    /* height: 805px; */
	height: auto;
	padding-bottom: 45%;
    overflow: hidden;
	margin: 100px 0 0 auto;
}

#main_sec1  .visual_img video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}

#main_sec1 .main_disc{
	/* width: 85%;
	margin: 0 auto; */
	margin-top: 180px;
    text-align: right;
    /* font-size: 45px;
	font-size: 25px; */
	font-size: 30px;
	line-height: 1.7;
    /* position: absolute; */
    /* bottom: 0px;
    right: 13vw; */
    font-weight: 300;
}

/* ############### 두번째 영역 ############### */
#main_sec2{
    width: 100%;
    height: 100vh;
    position: relative;
    /* background: #222; */
}
/*
#main_sec2.motion{
    background: #222;
}
*/
#main_sec2 .copywriting{
    width: 1115px;
    height: 125px;
    font-size: 60px;
    line-height: 110px;
    color: #444;
    text-align: center;
    box-sizing: border-box;
    border: 10px solid #222;
    transition: 0.3s;
    font-weight: 300;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    letter-spacing: -2px;
}
#main_sec2 .copywriting.copy1{
    /* opacity: 0; */
}
#main_sec2 .copywriting.copy2{
    color: #fff;
}

/* ############### 세번째 영역 ############### */
#main_sec3{
    padding-bottom: 200px;
    /* margin-top: 150px; */
	margin-top: 230px;
}
#main_sec3 .sec_title{
    /* font-size: 60px; */
	font-size: 80px;
    /* color: #333; */
	color: #111;
    font-weight: 700;
    /* width: 1100px; */
	width: 100%;
    margin: 0 auto;
    position: relative;
}

#main_sec3 .sec_title > span{
	display: inline-block;
	width: 15px; height: 15px;
	border-radius: 50%;
	background-color: #ff0b34;
	margin-left: 3px;
}


#main_sec3 .we_are{
	font-size: 25px;
	margin-top: 45px;
	line-height: 1.5;
	color: #888;
}

#main_sec3 .sec_title .circle_ani{
    /* position: absolute; */
	position: relative;
   /*  left:575px;
    top:12px; */
    width: 45px;
    height: 45px;
    /* animation: circle_rotate 9s ease-out infinite; */
	margin-bottom: 30px;
}

@keyframes circle_rotate{
    12.5%{transform: rotate(90deg);}
    25%{transform: rotate(180deg);}
    37.5%{transform: rotate(270deg);}
    50%{transform: rotate(360deg);}
    62.5%{transform: rotate(450deg);}
    75%{transform: rotate(540deg);}
    87.5%{transform: rotate(630deg);}
    100%{transform: rotate(720deg);}
}

#main_sec3 .sec_title .circle_ani span{
    width: 18.5px;
    height: 18.5px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}
#main_sec3 .sec_title .circle_ani span:nth-child(1){
    background: #e2e2e2;
    animation: circle_1 3s ease-in-out infinite;
}

@keyframes circle_1{
    12.5% {top: 0px;left: 30px;}
    25% {top: 30px;left: 30px;}
    37.5% {top: 30px;left: 30px;}
    50% {top: 30px;left: 30px;}
    62.5% {top: 30px;left: 30px;}
    75% {top: 30px;left: 30px;}
    87.5% {top: 30px;left: 0px;}
    100% {top: 0px;left: 0px;}
}

#main_sec3 .sec_title .circle_ani span:nth-child(2){
    background: #ff0b34;
    animation: circle_2 3s ease-in-out infinite;
}

@keyframes circle_2{
    12.5% {top: 0px;left: 30px;}
    25% {top: 30px;left: 30px;}
    37.5% {top: 30px;left: 0px;}
    50% {top: 0px;left: 0px;}
    62.5% {top: 0px;left: 0px;}
    75% {top: 0px;left: 0px;}
    87.5% {top: 0px;left: 0px;}
    100% {top: 0px;left: 0px;}
}

#main_sec3 .sec_title .circle_ani span:nth-child(3){
    background: #ff0b34;
    z-index: 4;
    animation: circle_3 3s ease-in-out infinite;
}

@keyframes circle_3{
    12.5% {top: 0px;left: 30px;}
    25% {top: 30px;left: 30px;}
    37.5% {top: 30px;left: 0px;}
    50% {top: 0px;left: 0px;}
    62.5% {top: 0px;left: 30px;}
    75% {top: 30px;left: 30px;}
    87.5% {top: 30px;left: 0px;}
    100% {top: 0px;left: 0px;}
}

#main_sec3 .sec_title .circle_ani span:nth-child(4){
    background: #e2e2e2;
    animation: circle_4 3s ease-in-out infinite;
}

@keyframes circle_4 {
    12.5% {top: 0px;left: 30px;}
    25% {top: 30px;left: 30px;}
    37.5% {top: 30px;left: 0px;}
    50% {top: 30px;left: 0px;}
    62.5% {top: 30px;left: 0px;}
    75% {top: 30px;left: 0px;}
    87.5% {top:30px;left: 0px;}
    100% {top: 0px;left: 0px;}
    
}


#main_sec3 .work_list_wrap{
    /* width: 1000px; */
	width: 100%;
    /* margin: 125px auto 0; */
	margin: 85px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    transform: rotate(-0.03deg);
}
#main_sec3 .work_list_wrap .work_list{
	width: calc(100% / 3);
}
#main_sec3 .work_list_wrap .work_list dt{
    /* font-size: 35px; */
	font-size: 50px;
    color: #ff0b34;
    font-weight: 700;
    margin-bottom: 35px;
}
#main_sec3 .work_list_wrap .work_list dd{
    /* font-size: 18px; */
	font-size: 20px;
    font-weight: 400;
    color: #888;
    margin-bottom: 15px;
    letter-spacing: 0px;
	transition: 0.3s;
}
#main_sec3 .work_list_wrap .work_list dd:hover{
	color: #444;
}



#main_sec3 .work_list_wrap2{
	margin-top: 160px;
}


#main_sec3 .work_list_wrap2 .work_list{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

#main_sec3 .work_list_wrap2 .work_list h3{
	width: 30%;
	font-size: 60px; font-weight: 700;
	color: #111;
	padding: 50px 20px;
	box-sizing: border-box;

	border-top: 3px solid #111;
}

#main_sec3 .work_list_wrap2 .work_list ul{
	width: 65%;
	display: flex;
	flex-wrap: wrap;
	padding: 50px 20px 130px;
	box-sizing: border-box;

	border-top: 3px solid #888;
}

#main_sec3 .work_list_wrap2 .work_list ul li{
	width: calc(100% / 3);
	word-break: keep-all;
	font-size: 22px;
	color: #666;
	box-sizing: border-box;
	padding: 20px 5px;
}

#main_sec3 .work_list_wrap2 .work_list ul li:not(:last-child){
	margin-bottom: 20px;
}

#main_sec3 .work_list_wrap2 .work_list.wl_3 ul{
	padding-bottom: 0;
}


#main_sec3 .member_list_wrap{
    /* width: 1000px; */
	width: 80%;
    margin: 300px auto 0;
}
#main_sec3 .member_list_wrap .member_list{
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}
#main_sec3 .member_list_wrap .member_list .member{
    margin-bottom: 80px;
    width: 30%;
    margin-right: 5%;
}
#main_sec3 .member_list_wrap .member_list .member:nth-of-type(3n){
    margin-right: 0;
}
#main_sec3 .member_list_wrap .member_list .member:nth-child(3n+2){
    margin-top: -80px;
}
#main_sec3 .member_list_wrap .member_list .member img{
    width: 100%;
}
#main_sec3 .member_list_wrap .member_list .member p{
    font-size: 25px;
    color: #666;
    margin-top: 15px;
    transform: rotate(-0.03deg);
}
#main_sec3 .member_list_wrap .member_list .member p .rank{
    color: #888;
    font-size: 18px;
}

#main_sec3 .member_list_wrap .member_list .mem1 img{
    opacity: 0.5;    
}

/* ############### 인증서 영역 ############### */

#certificates{
    width: 100%; height: auto; 
    background-color: #fafafa;
    padding: 175px 0; margin-top: 200px;
    box-sizing: border-box;
}

#certificates .wrap{
    /* width: 1200px; */ 
    margin: 0 auto; padding: 0 50px; 
    box-sizing: border-box; display: flex;
}

#certificates .left{
    /* width: 433px; */
	width: 40%;
	height: 321px; position: relative;
}

#certificates .left h2{
    font-size: 70px; color: #333; font-weight: 700; /* margin:-10px 0; */
	display: inline-block;
}

#certificates .left p{
    /* font-size:18px; */ 
	font-size: 25px;
	font-weight: 400; color: #888; margin-top: 34px;
	line-height: 1.4;
}

#certificates .left span{
    width:12px; 
    height: 12px;
    border-radius: 50%; 
    /* display: block; */ 
	display: inline-block;
    background-color: #f64242;
    /* position: absolute; */
    /* left: 353px; */ /* top: 40px; */
	margin-left: 3px;
}

#certificates .wrap .right{
    /* width:668px; */
	width: 60%;
	overflow: hidden;
}

#certificates .right .swiper-slide{
    /* width: 205px !important;  */
}
#certificates .right .swiper-slide img{
    border: 1px solid #bbbaba;
    box-sizing: border-box;
    /* width: 203px; */
    width: 100%;
}

#certificates .right .swiper-slide  p{
    font-size: 18px; font-weight: 400; color: #888; 
    text-align: center;
    /* width: 205px; */
    margin-top: 15px;
}

#certificates .left .btn-next{
    position: absolute; 
    top: 253px; left: 62px;
    cursor: url(/img/cursor-click.png), auto;
}

#certificates .left .btn-prev{
    position: absolute; 
    top: 253px;
    cursor: url(/img/cursor-click.png), auto;
}

#certificates .left .btn img{
    width: 35px; height: 35px;
}




/* ############### 네번째 영역 ############### */
#main_sec4{
    position: relative;
    background: url(../img/portfolio_bottom.png) no-repeat;
    background-position: center top;
}
#main_sec4 p{
    padding-top: 125px;
    font-size: 17px;
    color: #888;
    line-height: 37px;
    letter-spacing: 0px;
    text-align: center;
    transform: rotate(-0.03deg);
}
#main_sec4 .go_contact{
    position: relative;
    display: block;
    width: 530px;
    height: 270px;
    background: #333;
    margin: 120px auto 150px;
    box-sizing: border-box;
    padding: 20px 30px;
    overflow: hidden;
}
#main_sec4 .go_contact .pointer_circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    background: rgba(255,11,52,0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease, left 0s, top 0s;
}
#main_sec4 .go_contact .pointer_circle.change{
    width: 200px;
    height: 200px;
}
#main_sec4 .go_contact p:nth-child(1){
    color: #fff;
    text-align: right;
    padding-top: 0;
    position: relative;
    z-index: 999;
}
#main_sec4 .go_contact p:nth-child(1) img{
    vertical-align: middle;
}
#main_sec4 .go_contact p:nth-child(2){
    text-align: left;
    font-size: 100px;
    color: #fff;
    font-weight: 700;
    position: relative;
    z-index: 999;
}
#main_sec4 .go_contact p:nth-child(2) .accent{
    font-size: 100px;
    color: #ff0b34;
    font-weight: 700;
}










/* ############### quick menu ############### */
.quick_btn{
    position: absolute;
    top: 40vh;
    right: 0;
    writing-mode: vertical-rl;
    width: 50px;
    height: 180px;
    background: #333;
    color: #fff;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    letter-spacing: -0.5px;
    cursor: pointer;
}
.quick_btn .accent{
    color: #ff0b34;
    font-weight: 700;
}
.quick_btn img{
    padding-top: 20px;
    padding-right: 20px;
}


/* ############################################
############## 반응형 - mobile #################
############################################### */

@media screen and (max-width: 1024px){
	#main_sec1{ padding-top: 210px;  }
	#main_sec1 .main_title{ font-size: 155px; }
	#main_sec1 .main_title img{ width: 135px; }
	#main_sec1 .main_disc{ font-size: 22px; }

	#main_sec1 .visual_img{ 
		width: 90%;
		padding-bottom: 51%;
		margin-top: 70px;
	}


	#main_sec3 .sec_title{
		font-size: 70px;
	}
	#main_sec3 .we_are{
		font-size: 22px;
	}


	#main_sec3 .work_list_wrap2 .work_list h3{
		font-size: 50px;
		padding: 30px 10px;
	}

	#main_sec3 .work_list_wrap2 .work_list ul li{
		font-size: 20px;
		width: calc(100% / 2);
		padding-bottom: 5px;
	}

	#main_sec3 .work_list_wrap2 .work_list ul{
		padding: 30px 10px 110px;
	}



	#certificates .wrap{
		flex-wrap: wrap;
		padding: 0;
	}
	#certificates .left{
		width: 100%;
	}

	#certificates .wrap .right{
		width: 100%;
	}
	

	#certificates .left h2{
		font-size: 60px;
	}

	#certificates .left p{
		font-size: 22px;
	}
	

	#main_sec3 .member_list_wrap{
		margin-top: 260px;
		width: 100%;
	}

	#main_sec3 .member_list_wrap .member_list .member:nth-child(3n+2){
		margin-top: -50px;
	}

	

}




@media screen and (max-width: 900px){
	

	#main_sec1 .main_title{
		font-size: 135px;
	}

	#main_sec1 .main_disc{
		font-size: 20px;
		margin-top: 130px;
		
	}


	#main_sec1 .visual_img {
		width: 95%;
		padding-bottom: 54%;
		margin-top: 70px;
	}


	#main_sec3{
		margin-top: 180px;
	}


	#main_sec3 .sec_title{
		font-size: 65px;
	}

	#main_sec3 .we_are{
		font-size: 20px;
		margin-top: 35px;
	}

	
	#main_sec3 .work_list_wrap2{
		margin-top: 110px;
	}
	#main_sec3 .work_list_wrap2 .work_list{
		flex-wrap: wrap;
	}

	#main_sec3 .work_list_wrap2 .work_list h3{
		width: 100%;
	}
	
	#main_sec3 .work_list_wrap2 .work_list ul{
		width: 100%;
		border-color: #e9e9e9;
	}
	#main_sec3 .work_list_wrap2 .work_list ul li{
		
	}

	#main_sec3 .work_list_wrap2 .work_list h3{
		font-size: 45px;
		padding: 25px 10px;
	}


	#certificates{
		margin-top: 170px;
		padding: 145px 0;
	}
	

	#main_sec3{
		padding-bottom: 130px;
	}

	#main_sec3 .member_list_wrap{
		margin-top: 220px;
	}

	#main_sec3 .member_list_wrap .member_list .member{
		width: 45%;
	}
	#main_sec3 .member_list_wrap .member_list .member:nth-child(3n+2){
		margin-top: 0;
	}
	#main_sec3 .member_list_wrap .member_list .member:nth-child(2n){
		margin-right: 0;
		margin-top: -50px;
	}

	#main_sec3 .member_list_wrap .member_list .member:nth-of-type(3n){
		margin-right: 5%;
	}


}




@media screen and (max-width: 600px){

    
    #header .header_logo {
        left: 20px;
        top: 35px;
        width: 40px;
    }
    #header .header_logo img {
        width: 100%;
    }
    #header .header_menu{
        right: 60px;
    }
    #header .header_menu .header_menu_btn{
        top: 44px;
    }
    #header .header_menu .header_menu_list{
        left: -84vw;
        width: 101vw;
    }
    #header .header_menu .header_menu_list .menu_list li a{
        font-size: 50px;
        display: block;
    }
    #header .header_menu .header_menu_list .menu_list li:nth-child(2) .counting1{
        width: 65px;
        height: 65px;
        font-size: 22px;
        line-height: 65px;
    }
    #header .header_menu .header_menu_list .menu_sns li a{
        font-size: 17px;
    }
    
    #main_sec1 {
        padding-top: 145px;
        /* height: 100vh;
        overflow-x: hidden; */
    }
    #main_sec1 .main_title{
        font-size: 90px;
        width: 100%;
        box-sizing: border-box;
        padding-left: 3vw;
    }
    #main_sec1 .main_title img{
        width: 80px;
    }
    #main_sec1 .visual_img{
       /*  width: 150%;
        left: 0px;
        height: 400px; */
    }

    #main_sec1 .visual_img video{
        width: 100%;
    }

    #main_sec1 .main_disc{
        /* font-size: 18px; */
		font-size: 16px;
        bottom: 15vh;
        right: 3vw;
		word-break: keep-all;
		margin-top: 85px;
    }
	#main_sec1 .main_disc br{
		display: none;
	}

    
    #main_sec2 .copywriting{
        border: 5px solid #222;
        width: 250px;
        height: 185px;
/*        text-align: right;*/
        font-size: 34px;
        line-height: 44px;
        padding: 25px 14px;
        font-weight: 300;
        right: 10px;
    }
    
    #main_sec3{
        padding-bottom: 75px;
    }
    #main_sec3 .sec_title{
        font-size: 40px;
        width: 100%;
    }

    #main_sec3 .sec_title .circle_ani{
       /*  left: 188px;
        top: 162px; */
    }
    #main_sec3 .sec_title .circle_ani .circle_wrap{
        /* position: relative;
        width: 35px;
        height: 35px;
        float: right; */
    }/* 
    #main_sec3 .sec_title .circle_ani span:nth-child(1) {
        background: #e2e2e2;
        animation: circle_1_m 3s ease-in-out infinite;
    }
    @keyframes circle_1_m{
        12.5% {top: 0px;left: 17px;}
        25% {top: 17px;left: 17px;}
        37.5% {top: 17px;left: 17px;}
        50% {top: 17px;left: 17px;}
        62.5% {top: 17px;left: 17px;}
        75% {top: 17px;left: 17px;}
        87.5% {top: 17px;left: 0px;}
        100% {top: 0px;left: 0px;}
    }
    #main_sec3 .sec_title .circle_ani span:nth-child(2) {
        background: #e2e2e2;
        animation: circle_2_m 3s ease-in-out infinite;
    }
    @keyframes circle_2_m{
    12.5% {top: 0px;left: 17px;}
    25% {top: 17px;left: 17px;}
    37.5% {top: 17px;left: 0px;}
    50% {top: 0px;left: 0px;}
    62.5% {top: 0px;left: 0px;}
    75% {top: 0px;left: 0px;}
    87.5% {top: 0px;left: 0px;}
    100% {top: 0px;left: 0px;}
    }
    #main_sec3 .sec_title .circle_ani span:nth-child(3) {
        animation: circle_3_m 3s ease-in-out infinite;
    }
    @keyframes circle_3_m{
        12.5% {top: 0px;left: 17px;}
        25% {top: 17px;left: 17px;}
        37.5% {top: 17px;left: 0px;}
        50% {top: 0px;left: 0px;}
        62.5% {top: 0px;left: 17px;}
        75% {top: 17px;left: 17px;}
        87.5% {top: 17px;left: 0px;}
        100% {top: 0px;left: 0px;}
    }
    #main_sec3 .sec_title .circle_ani span:nth-child(4) {
        background: #e2e2e2;
        animation: circle_4_m 3s ease-in-out infinite;
    }
    @keyframes circle_4_m {
        12.5% {top: 0px;left: 17px;}
        25% {top: 17px;left: 17px;}
        37.5% {top: 17px;left: 0px;}
        50% {top: 17px;left: 0px;}
        62.5% {top: 17px;left: 0px;}
        75% {top: 17px;left: 0px;}
        87.5% {top:17px;left: 0px;}
        100% {top: 0px;left: 0px;}
        
    }
    #main_sec3 .sec_title .circle_ani span{
        width: 11.5px;
        height: 11.5px;
    } */
	
	#main_sec3 .we_are{
		/* font-size: 18px; */
		font-size: 16px;
		margin-top: 15px;
		word-break: keep-all;
		
	}
	#main_sec3 .we_are br{
		display: none;
	}
    #main_sec3 .work_list_wrap{
        width: 100%;
        margin: 60px auto 0;
    }
    #main_sec3 .work_list_wrap .work_list{
        width: calc(100% / 3);
    }
    #main_sec3 .work_list_wrap .work_list dt{
        font-size: 20px;
        margin-bottom: 20px;
    }
    #main_sec3 .work_list_wrap .work_list dd{
        font-size: 12px;
        word-break: keep-all;
        margin-bottom: 10px;
    }

	
	#main_sec3 .work_list_wrap2{
		margin-top: 60px;
	}

	#main_sec3 .work_list_wrap2 .work_list h3{
		font-size: 30px;
		padding: 18px 10px;
	}
	
	#main_sec3 .work_list_wrap2 .work_list ul{
		padding: 20px 10px 60px;
	}
	#main_sec3 .work_list_wrap2 .work_list ul li{
		font-size: 16px;
		line-height: 1.4;

		width: 100%;
		padding-top: 10px;
	}

	#main_sec3 .work_list_wrap2 .work_list ul li:not(:last-child){
		margin-bottom: 10px;
	}

	
    #main_sec3 .member_list_wrap{
        width: 100%;
        flex-wrap: wrap;
        margin: 125px auto 0;
    }
    #main_sec3 .member_list_wrap .member_list{
        width: 100%;
    }
    #main_sec3 .member_list_wrap .member_list .member{
        width: 48%;
        margin-bottom: 25px;
        margin-right: 2%;
    }
    #main_sec3 .member_list_wrap .member_list .member:nth-child(3n+2){
        margin-top: 0;
    }
    #main_sec3 .member_list_wrap .member_list .member:nth-child(2n){
        margin-top: -20px;
    }
    #main_sec3 .member_list_wrap .member_list .member:nth-of-type(3n){
        margin-right: 2%;
    }
    #main_sec3 .member_list_wrap .member_list .member img{
        width: 100%;
    }
    #main_sec3 .member_list_wrap .member_list .member p{
        font-size: 18px;
        margin-top: 5px;
    }
    #main_sec3 .member_list_wrap .member_list .member p .rank{
        font-size: 12px;
        letter-spacing: -1.3px;
    }

    #main_sec4{
        background-size: 70%;
    }
    #main_sec4 p{
        font-size: 13px;
    }
    #main_sec4 .go_contact {
        width: 260px;
        height: 185px;
        padding: 10px 20px;
        margin: 60px auto 130px;
    }
    #main_sec4 .go_contact p:nth-child(2){
        font-size: 65px;
        padding-top: 75px;
    }
    #main_sec4 .go_contact p:nth-child(2) .accent {
        font-size: 65px;
    }
    
    


    .quick_btn{
        width: 35px;
        height: 135px;
        line-height: 35px;
        font-size: 13px;
        z-index: 10;
    }
    .quick_btn img {
        padding-top: 10px;
        padding-right: 13px;
    }
    
    #certificates{
        width: 100%; height: auto; 
        background-color: #fafafa;
        padding: 90px 0; margin-top: 75px;
        box-sizing: border-box;
    }
    
    #certificates .wrap{
        width: 85%; 
        margin: 0 auto; padding: 0 0px; 
        box-sizing: border-box; display: flex; 
        flex-direction: column;
    }
    
    #certificates .left{
        width: 100%; height: 135px; position: relative;
    }
    
    #certificates .left h2{
        font-size: 40px; color: #333; font-weight: 700; margin:-10px 0;
    }
    
    #certificates .left p{
        /* font-size:12px; */
		font-size: 16px;
		font-weight: 400;
		/* color: #888; */
		margin-top: 24px;
    }
    
    #certificates .left span{
        width:9px; 
        height: 9px;
        border-radius: 50%; 
        display: block; 
        background-color: #f64242;
        position: absolute;
        left: 233px; top: 25px;
    }
    
    #certificates .wrap .right{
        width:100%; overflow: hidden;
		margin-top: 30px;
    }
    
    
    #certificates .right .swiper-slide img{
        border: 1px solid #bbbaba;
        box-sizing: border-box;
        /* width: 203px; */
        width: 100%;
    }
    
    #certificates .right .swiper-slide  p{
        font-size: 12px; font-weight: 400; color: #888; 
        text-align: center;
        /* width: 205px; */
        word-break: keep-all;
        margin-top: 5px;
    }
    
    #certificates .left .btn-next{
        position: absolute; 
        /* top: 65px; */
		top: 115px;
		/* left: 90%; */
		left: 55px;
        cursor: url(/img/cursor-click.png), auto;
    }
    
    #certificates .left .btn-prev{
        position: absolute; 
        /* top: 65px; */
		top: 115px;
		/* left: 75%; */
        cursor: url(/img/cursor-click.png), auto;
    }
    
    #certificates .left .btn img{
        /* width: 25px; height: 25px; */
		width: 30px; height: 30px;
    }

    ul{list-style: none;}

}


