@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

*, *:before, *:after{
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin:0;
	padding:0;
	font-size:100%;
	box-sizing:border-box;
}

html { height:100%;}
body {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.78);
	line-height: 160%;
	letter-spacing: -1px;
}

img {
    max-width: 100%;
}

/* display */
.d-flex { display: flex !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.align-center { align-items: center !important; }
.align-start { align-items: start !important; }
.text-center { text-align: center !important; } 

a:link,
a:visited { color: rgba(0, 0, 0, 0.78); text-decoration:none;}


select {appearance: none; -webkit-appearance: none;border:1px solid #d8d8d8; background-color:#fff; border-radius: 4px;color: rgba(0, 0, 0, 0.78);font-family: 'Noto Sans KR', sans-serif;}
select::-ms-expand { display:none; }
select[disabled] { background-color: #F5F5F5;}

input[type=submit] { border:0; cursor:pointer; -webkit-appearance: none;}
input[type=checkbox], input[type=radio]  {
	width:24px;
	height:24px;
	margin: 0;
	border: 1px solid #eee;
}
input[type=file], input[type=text], input[type=password], input[type=tel], input[type=email] {
	padding:0 10px;
	height: 40px;
	color: rgba(0, 0, 0, 0.58);
	font-size:14px;
	font-weight: bold;
	border:1px solid #d4d4d4;
	background-color:#fff;
	border-radius: 4px;
	box-sizing:border-box;
	font-family: 'Noto Sans KR', sans-serif;
	-webkit-appearance: none;
}
input[type=text]:focus, input[type=password]:focus {
	outline: none;
}
input[type=text]::placeholder, input[type=password]::placeholder, input[type=tel]::placeholder, input[type=email]::placeholder{
	color: rgba(0, 0, 0, 0.3);
}

input[readonly],
input[disabled] { background-color:#fff;}

button {
	line-height: 120%;
	border:0 none;
	padding:0;
	margin:0;
	font-size:100%;
	text-align: center;
	color: rgba(0, 0, 0, 0.58);
	background:transparent;
	cursor:pointer;
	vertical-align: middle;
	font-family: 'Noto Sans KR', sans-serif;
	-webkit-appearance: none;
}

button::-moz-focus-inner {
	margin: -1px;
	padding: 0;
}

ul, ol {
	list-style:none;
}

address,caption,cite,code,dfn,var,em {
	font-style:normal;
	font-weight:normal;
}

textarea {
	width:100%;
	padding: 14px 15px;
	font-family: 'Noto Sans KR', sans-serif;
	font-size:100%;
	border:1px solid #ddd;
	background-color:#fff;
	border-radius: 8px;
	resize:none;
	box-sizing:border-box;
	-webkit-appearance: none;
}
textarea[disabled],
textarea[readonly]  { background-color:#ccc;}

textarea::placeholder{color: rgba(0, 0, 0, 0.3);font-family: 'Noto Sans KR', sans-serif;}

fieldset,img {
	border:0;
}

legend {
	width:0;
	height:0;
	overflow:hidden;
	margin:0;
	padding:0;
	visibility:hidden;
	font-size:0;
	line-height:0;
}

.ellipsis { overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}

/* clear */
.clearfix::after { display:block; clear:both; visibility:hidden; height:0; content:'.';}
* html .clearfix {
	height:1%;
}

/* 가이드 텍스트 숨기기 */
.txt-none{
    position: absolute;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

.hidden {
	display:none;
}
.visible {
	position:absolute;
	top:-9999px;
	width:0;
	height:0;
	overflow:hidden;
	margin:0;
	padding:0;
	visibility:hidden;
	font-size:0;
	line-height:0;
}
hr { margin: 0; border: none;}


/* Table */
caption {
	width: 0;
	height: 0;
	overflow: hidden;
	padding: 0;
	visibility: hidden;
	font-size: 0;
	line-height: 0;
}
table {
	table-layout: fixed;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells:show;
}
table th,
table td { vertical-align: middle;}
