/*---CSS RESET---*/

*{margin: 0;padding: 0;font-family: inherit;font-size: inherit;font-weight: inherit;font-style: inherit;color: inherit;text-decoration: inherit;box-sizing: border-box;}

html, body{text-size-adjust: none;
    -webkit-text-size-adjust: none; 
    -moz-text-size-adjust: none; 
    -ms-text-size-adjust: none;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}/*텍스트 사이즈 고정*/

body{font-family: 'Noto Sans KR', sans-serif;font-size:16px;font-weight:300;font-style: normal;text-decoration: none;color: #222;}
li{list-style: none;}
table{border-spacing: 0;border-collapse: collapse;}
input, select, textarea, button{box-sizing: border-box;}
button{background: none;border: none;cursor: pointer;outline: none;}
fieldset{ border: 0; }
img{max-width: 100%;}

/*공통클래스*/
.clearfix::after{
	content: "";
	clear: both;
	display: block;
}
.j_left_con{
	float : left;
}
.j_right_con{
	float : right;
}
.j_flex_con{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.j_flex_j{
    justify-content: space-between;
}
.j_flex_a{
    -ms-align-items: center;
    align-items: center;
}
.j_center{
	position : absolute;
	top : 50%;
	left : 50%;
	transform : translate(-50%, -50%);
}
.j_y_center{
	position : absolute;
	top : 50%;
	left : 0;
	transform: translateY(-50%);
}

.bg{
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center center;
}


.br_t{
    display: none;
}
.br_m{
    display: none;
}

@media screen and (max-width:1280px){
	.br_p{
		display: none;
	}
	.br_t{
		display: block;
	}
}
@media screen and (max-width:760px){
	.br_t{
		display: none;
	}
	.br_m{
		display: block;
	}
}



/*공통클래스*/

/*텍스트사이즈*/

@media screen and (min-width:1281px){
    html, body{font-size: 16px;}/*body와 확인 할 것*/
}

@media screen and (min-width:761px) and (max-width:1281px){
    html, body{font-size: 14px;}/*body와 확인 할 것*/
}

@media screen and (max-width:760px){
    html, body{font-size: 12px;}/*body와 확인 할 것*/
}
/*텍스트사이즈*/





