@charset "utf-8";

/* Tag Definition */
* {
	font-style: normal
		/* em, dfn, var, cite, address */
	;
	font-family: "Pretendard", 돋움, sans-serif;
	-webkit-text-size-adjust: 100%;
}

/* 전체 선택자 사용시 위 속성 외에는 지정하지 마세요. */
* html {
	overflow: scroll;
	overflow-x: auto;
}

/* [IE] 프레임안의가로스크롤문제해결 */
html,
body {
	min-width: 320px;
	min-height: 100%;
	margin: 0 auto !important;
	padding: 0;
	background: transparent;
	overflow-x: hidden;
	position: relative;
	word-break: break-all;
}

/* [IE] 배경색을지정해서화면이뭉개지는문제해결 */
html {
	height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
table {
	font-family: inherit;
}

textarea {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	resize: none;
	vertical-align: middle;
}

* html body {
	height: 100%;
}

:root body {
	/* font-size:1em; */
}

table,
pre {
	font-size: 0.875rem;
	line-height: 1.4;
}

/* DOCTYPE 없으면 속성 상속 안됨 */
table {
	table-layout: fixed;
	border-collapse: collapse;
	text-indent: 0;
	width: 100%;
}

a:link,
a:visited,
a:hover,
a:focus,
a:active {
	text-decoration: none;
	color: inherit;
}

img,
fieldset,
iframe {
	border: 0 none;
	vertical-align: middle;
}

ul,
ul li {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* ul:after { display:block; height:0; clear:both; float:none; content:""; } */

ul>li:first-child {
	margin-left: 0 !important;
}

/* ul > li img { width: 100%; } */

dl,
dt,
dd {
	padding: 0;
	margin: 0;
}

p {
	margin: 0;
	padding: 0;
	line-height: 160%;
}

strong {
	font-weight: 700;
}

em {
	color: #f75;
}

em em {
	color: #c09;
}

sup,
sub {
	font-size: 0.75rem;
}


pre

/* 형식 유지 컨텐츠 자동개행 */
	{
	white-space: pre-wrap;
	/* css3 */
	white-space: -moz-pre-wrap;
	/* Mozilla, since1999 */
	white-space: -pre-wrap;
	/* Op4-6 */
	white-space: -o-pre-wrap;
	/* Op7 */
	word-wrap: break-word;
	/* IE 5.5+ */
	margin: 0;
}

button,
input[type="button"],
input[type="submit"],
input[type="image"],
input[type="reset"] {
	display: inline-block;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	outline: 0;
	text-decoration: none;
	white-space: nowrap;
	vertical-align: middle;
	font-family: inherit;
	overflow: visible;
	/* for IE7 */
	font-size: 1em;
	padding: 0.5rem 1rem;
	line-height: 1;
	height: 2.5rem;
	min-width: 110px;
}

.btn_small {
	padding: 4px 8px !important;
	vertical-align: baseline !important;
}

/* 사파리에서 버튼 라운드 금지 */
input[type='submit'],
input[type='button'],
button,
input[type='image'],
input[type='reset'] {
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	border: 0;
}

:focus {
	outline-style: none;
	-moz-outline-style: none;
}

::-webkit-input-placeholder,
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: #999;
	font-size: 0.875rem;
}

:-ms-input-placeholder,
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #999;
	font-size: 0.875rem;
}

:-moz-placeholder,
input:-moz-placeholder textarea:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #999;
	font-size: 0.875rem;
	opacity: 1;
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	/* IE 7 and olders */
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	/* Netscape */
	-moz-opacity: 1;
	/* Safari 1.x */
	-khtml-opacity: 1;
}

::-moz-placeholder,
input::-moz-placeholder,
textarea::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #999;
	font-size: 0.875rem;
	opacity: 1;
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	/* IE 7 and olders */
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	/* Netscape */
	-moz-opacity: 1;
	/* Safari 1.x */
	-khtml-opacity: 1;
}

::placeholder,
input::placeholder,
textarea::placeholder {
	color: #999;
	font-size: 0.875rem;
}