/*** # 공통 CSS ***/

@charset "utf-8";

/* theme color */
:root{
	--white: #fff;
	--black: #000000;
	--dark-blue: #1A2558;
	--dark: #1E1E1E;
	--gray-dark: #565656;
}

html {
	position: relative;
	padding: 0px;
	margin: 0px;
	font-size: 18px;
}

body {
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-family: "NotoSansKR","Apple SD Gothic Neo", Sans-serif, -apple-system;
	color: var(--dark);
	/* line-height: 150%; */
	overflow: hidden;
}
html,body{
	overflow-x: hidden;
}
html, h1, h2, h3, h4, h5, h6, form, fieldset, img {
	margin: 0;
	padding: 0;
	border: 0
}

body {
	padding:0;
	margin:0;
}
a{
	color:inherit;
	text-decoration:none;
}
input[type=button]{
	outline:none;
	font-family: "NotoSansKR","Apple SD Gothic Neo", Sans-serif, -apple-system;
}
textarea {
	outline:none;
	font-family: "NotoSansKR","Apple SD Gothic Neo", Sans-serif, -apple-system;
}
button{
	outline:none;
	cursor:pointer;
	font-family: "NotoSansKR","Apple SD Gothic Neo", Sans-serif, -apple-system;
}

/* common */
.width-limit{
	max-width:1320px;
	width: 100%;
	margin:0 auto;
	box-sizing:border-box;
}
.pc{
	display:block;
}
.mo{
	display:none;
}
.none{
	display:none;
}

@media screen and (max-width:1400px){
	.width-limit{
		max-width:1000px;
	}
}

@media screen and (max-width:1200px){
	.width-limit{
		max-width: none;
		width: 100%;
		padding:0 50px;
	}
}

@media screen and (max-width:970px){
	.width-limit{
		padding: 0 30px;
		max-width: 810px;
	}
}

/* MOBILE */
@media screen and (max-width:768px){
	.width-limit{
		padding:0 15px;
		max-width:700px;
	}
	.pc{
		display:none !important;
	}
	.mo{
		display:block;
	}
}