/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    /* padding: 5px; */
    padding: 0px;
    line-height: 1;
}

.clearfix::after {
    content: '';
    display: block;
    clear:both;
}

img{vertical-align: top; max-width: 100%;}

caption{
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip-path: polygon(0 0, 0 0, 0 0);
}

p{word-break: keep-all;}

/* select 태그 */
select{
    width: 100px;
    padding: 0.5em 0.2em;
    border: 1px solid #999;
    /* background: url('/img/input/select_arrow.svg') no-repeat 94% 50%; */
    background-size: 10px;
    border-radius: 0px;
    /* -webkit-appearance: none; */
    /* -moz-appearance: none; */
    /* appearance: none; */
    /* outline: none; */
}
select::-ms-expand {
    display: none;
}
/*// select 태그 */
/* input, textarea 태그 */
input, textarea{
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    outline: none;
    border: 1px solid #000;
    box-sizing: border-box;
}
/*// input, textarea 태그 */
/* checkbox */
input[type="checkbox"]{
	display: inline-block;
	width: 15px;
	height: 15px;
	border: 1px solid #000;
    background-color: #fff;
	cursor: pointer;
    border-radius: 1px;
    margin: 0;
}
input[type="checkbox"]:checked{
    background-image: url('input/checkbox_btn.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 49% 49%;
    border-color: #1074f8;
    background-color: #1074f8;
}
/*// checkbox */
/* radio */
input[type="radio"]{
	display: inline-block;
	width: 15px;
	height: 15px;
	border: 1px solid #000;
    border-radius: 100%;
    background-color: #fff;
	cursor: pointer;
}
input[type="radio"]:checked{
    background-color: #1074f8;
    border-color: #1074f8;
    -webkit-box-shadow: 0px 0px 0px 2px #fff inset;
    box-shadow: 0px 0px 0px 2px #fff inset;
}
/*// radio */
input[type="file"]{border: 0;}
input[type="submit"]{cursor: pointer;}

/**/

.line_01{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.line_02{
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    word-wrap: normal;
}
.line_03{
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    word-wrap: normal;
}

/* 글자 숨기기 */
.msg_sound_only, .sound_only {
    display: inline-block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0;
    line-height: 0;
    border: 0 !important;
    overflow: hidden !important;
}