@charset "utf-8";
/* CSS Document */
/* 기본폰트 : Noto Sans KR (고딕)
font-family: "Noto Sans KR", sans-serif;
*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

html {
	scroll-behavior: auto;
	min-width:360px;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Noto Sans KR", sans-serif;
	line-height: 1.6em; 
	font-size: 16px;
	color: #444;
	box-sizing: border-box;
	line-height: inherit;
	word-break: keep-all;
}
a,
a:focus,
a:hover {
	color: #444;
	text-decoration: none;
	outline: 0;
	transition: all 0.2s ease-in 0s;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul,
ol,
dl,
dt,
dd,
table,
th,
td,
form,
fieldset,
input,
textarea,
button,
select,
div,
a {
	font-family: inherit;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	letter-spacing: -0.25px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
}
input,
input:focus,
select,
select:focus {
	outline: none;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

li {
	text-decoration: none;
}

figure {
	margin: 0;
}

button {
	cursor: pointer;
	background-color: inherit;
	border: none;
	outline: none;
}

button:active,
button:focus {
	border: none;
	outline: none;
}

img {
	max-width: 100%;
	vertical-align: top;
	display: inline-block;
	image-rendering: -moz-crisp-edges;
   image-rendering:   -o-crisp-edges;
   image-rendering: -webkit-optimize-contrast;
   image-rendering: crisp-edges;
   -ms-interpolation-mode: nearest-neighbor; 
}

table {
	width: 100%;
	vertical-align: middle;
	border-collapse: collapse;
}

hr {
	margin-top: 10px;
	margin-bottom: 10px;
	border: 0;
	border-top: 1px solid #eeeeee;
}

/* IE10 이상을 위한 css */
input::placeholder,
textarea::placeholder {
	color: #b6b6b6;
	opacity: 1;
	/* 파이어폭스에서 뿌옇게 나오는 현상을 방지하기 위한 css */
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #b6b6b6;
}

/* IE */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #b6b6b6;
}

/* Firefox */
input:-mos-input-placeholder {
	color: #b6b6b6;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
	/* WebKit browsers */
	color: transparent;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: transparent;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: transparent;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: transparent;
}

/* IE9 이하를 위한 css */
.placeholder {
	color: #ddd;
}

a {
	text-decoration: none;
}

button {
	cursor: pointer;
}


.bg-gray {
	background-color: #f0f0f0 !important;
}

.bg-black {
	background-color: #000 !important;
}

.bg-white {
	background-color: #fff !important;
}

.bg-f0f0f0 {
	background-color: #f0f0f0 !important;
}

.bg-f5f5f5 {
	background-color: #f5f5f5 !important;
}
.text_red {
	color: #ff0000;
}
.text-white {
	color: #fff;
}
.text-black {
	color: #000;
}
.img-responsive,
.thumbnail>img,
.thumbnail a>img,
.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
	display: block;
	max-width: 100%;
	height: auto;
}
