/* common css */

/* css reset */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
    -o-box-sizing: border-box
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, hr, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, span, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, form, label, 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;
    border: 0;
    font-style: normal;
    font-variant: normal;
    font-weight: inherit;
    font-size: 100%;
	font-family: inherit;
    vertical-align: baseline;
    line-height: 160%;
	background-repeat:no-repeat !important
}

input,
select {
    margin: 0;
    padding: 0;
    font-style: normal;
    font-variant: normal;
    font-weight: inherit;
	font-family:'NotoSansKR-Regular'
}

input[type='tel'],
input[type='text'],
input[type='password'],
textarea,
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none
}

input[type='tel']:focus,
input[type='text']:focus,
input[type='password']:focus,
textarea:focus,
button:focus {
	outline:none
}

input,
select {
	padding: 5px
}

input[type='file'] {
	padding: 0
}

input::-webkit-input-placeholder {
	font-size:12px;
   color:#aaa;
   font-family:'NotoSansKR-Regular'
}
input:focus::-webkit-input-placeholder {
    color: transparent !important
}
input:focus::-moz-placeholder {
    color: transparent !important
}
input:focus:-ms-placeholder {
    color: transparent !important
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}

body {
   font-family:'NotoSansKR-Regular', 'Malgun Gothic', '맑은 고딕', 'Apple SD Gothic Neo', 'AppleGothic', 'NanumGothic', '나눔고딕', 'Droid sans', 'Microsoft NeoGothic';
	word-break: keep-all;
    -webkit-text-size-adjust: none
}

ol, ul {
    list-style: none
}
blockquote,
q {
    quotes: '"' '"'
}
blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none
}
table {
    border-collapse: collapse;
    border-spacing: 0
}
address {
    font-style: normal
}

textarea {
    width: 100%;
    resize: none;
}

button, img, input, select {
    vertical-align: middle
}
button {
    margin: 0;
    padding: 0;
    border: 0;
    background-color: transparent;
    font: inherit;
    color: inherit;
    cursor: pointer;
    border-radius: 0
}

input,
textarea,
button,
select,
a,
.btn {
  font-family:'NotoSansKR-Regular';
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0,0,0,0)
}

input,
select,
textarea {
	background-color:#fff !important;
	padding: 5px;
	border:1px solid #d9d9d9
}

input:focus,
select:focus,
textarea:focus {
	background-color:#fff !important;
	outline:none;
	border-color:#cdcdcd;
	box-shadow: 0 0 10px #cdcdcd
}

input:-webkit-autofill { 
	-webkit-box-shadow: 0 0 0 30px #fff inset ; 
	-webkit-text-fill-color: #000
} 
input:-webkit-autofill, 
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
	transition: background-color 5000s ease-in-out 0s
}

a {
    font-size: inherit;
    color: inherit;
    text-decoration: none
}

img {
    border: 0;
	max-width:100%;
}

em, strong {
    font-size: inherit;
    line-height: inherit
}

/* common */
body, html {
	/* overflow-x:hidden; */
	min-width:320px
}

body {
	/*font-family:'NotoSansKR-Regular'*/
    font-family: 'Noto Sans CJK KR', sans-serif;
}

body, a {
	color:#222
}

b, .bd, h1, h2, h3, h4, h5, h6, strong {
	/*font-family:'NotoSansKR-Medium'*/
    font-family: 'Noto Sans CJK KR', sans-serif;
}

.div-table {
	display:table;
	width: 100%;
	height: 100%
}

.div-tablecell {
	display:table-cell;
	vertical-align:middle
}

ul.inbl {
	font-size:0
}

ul.inbl > li {
	display:inline-block
}

.flex {
	display: flex;
}

.flex-v {
	display: flex;
	align-items: center;
}

.flex-j {
	display: flex;
	justify-content: space-between;
}

.flex-jv {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.T-left {
	text-align:left
}

.T-center {
	text-align:center
}

.T-right {
	text-align:right
}

.Fixed {
	position:fixed
}

.Rel {
	position:relative
}

.Abs {
	position:absolute
}

.Block {
	display:block
}

.Inblock {
	display:inline-block
}

.Clearfix, .div-inner {
	*zoom:1
}


.Clearfix::after,
.div-inner::after {
	content:'';
	display:block;
	clear:both
}

.Ellipsis {
	display:inline-block;
	max-width:100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	word-wrap: normal;
	vertical-align:middle
}

table td a {
    overflow: hidden;
    height: auto;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

