@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR:300,400,500,700|Noto+Serif+KR:500&display=swap&subset=korean');

html, body {
	color: #3f3f3f;
	font-size: 14px;
	line-height: 1.4;
}
body {
	font-family: 'Noto Sans KR', 'Noto Serif KR', sans-serif, serif;
	word-break: keep-all;
}
.font-sans-serif {font-family: 'Noto Sans KR', sans-serif;}
.font-serif {font-family: 'Noto Serif KR', serif;}
* {box-sizing: border-box;}
h1,.h1 { font-size: 2.2rem; }
h2,.h2 { font-size: 1.8rem; }
h3,.h3 { font-size: 1.6rem; }
h4,.h4 { font-size: 1.4rem; }
h5,.h5 { font-size: 1.2rem; }
h6,.h6 { font-size: 1rem; }
p { font-size: 0.85rem; }
h1,h2,h3,h4,h5,h6,p {
	line-height: 1.4;
	margin-bottom: 0;
}
.h1,.h2,.h3,.h4,.h5,.h6 {
	font-weight: 400;
	margin-bottom: 0;
	line-height: 1.4;
}
em { font-size: 1.2em; }
small { font-size: 0.8em; }
a { color: inherit; }
a:hover { color: inherit; text-decoration: none; }
button { cursor: pointer; }
button:focus { outline: 1px solid rgba(220,17,36,0.5); }
.underline { text-decoration: underline; }
.cursor { cursor: pointer; }
.color_common { color: #dc1124 !important; }
.bg_common { background-color: #081731; }
.bg_white {background-color: #fff;}
.common_btn {
	background-color: #dc1124 !important;
	border: 1px solid #dc1124 !important;
	color: #fff !important;
	transition: 0.4s background ease;
}
.common_btn:hover {
	background-color: #ec4646;
}
.gray_btn {
	background-color: #f6f6f6 !important;
	border: 1px solid #f6f6f6 !important;
	transition: 0.4s background ease;
}
.gray_btn:hover {
	background-color: #e9e9e9;
}
.dashed_btn {
	background-color: #fff !important;
	border: 1px dashed #dc1124 !important;
	color: #dc1124 !important;
	transition: 0.4s background ease;
}
.dashed_btn:hover {
	background-color: #dc1124 !important;
	color: #fff !important;
}

.bg_default { background-size: cover; background-position: center; background-repeat: no-repeat; }
.bg_gray { background-color: #f7f7f7; }
.img_wrap {
	text-align: center;
}
.img_wrap img {
	max-width: 100%;
}

.flex_div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}