/*** # 공통 CSS ***/

@charset "utf-8";

/* theme color */
:root{
	--white: #fff;
	--whiteopa:#ffffff47;
	--black: #000000;
	--dark-blue: #0A2540;
	--dark-green : #218C74;
	--tag-bg: rgba(33, 140, 116, 0.1);
}

html {
	position: relative;
	padding: 0px;
	margin: 0px;
	font-size: 18px;
}

body {
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 13px;
	font-family: "PlusJakartaSans","Apple SD Gothic Neo", Sans-serif, -apple-system;
	color: var(--dark-blue);
	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;
	cursor:pointer;
	font-family:"PlusJakartaSans","Apple SD Gothic Neo", Sans-serif, -apple-system;
}
button{
	outline:none;
	cursor:pointer;
	font-family:"PlusJakartaSans","Apple SD Gothic Neo", Sans-serif, -apple-system;
}

/* common */
.width-limit{
	max-width:1200px;
	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;
	}
}