@charset "UTF-8";
/* CSS 불러오기 */
@import url(./font.css);
/* 브라우저 CSS 초기화 */
html,
body,
div,
span,
iframe,
h1,h2,h3,h4,h5,h6,
p,
blockquote,
pre,
cite,
code,
del,
em,
img,
ins,
q,
small,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
legend,
caption,
thead,
tbody,
tfoot,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary,
time,
mark,
audio,
video,
button {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font-weight: normal;
    vertical-align: baseline;
}

/* 문서 전체 CSS 적용 */
body {
    line-height: 1;
}

/* 새로운 HTML5 태그 IE9 이하에서 정상적으로 작동하도록 설정 */
article,
aside,
details,
figure,
figcaption,
footer,
header,
nav,
section {
    display: block;
}

/* 커스텀태그는 inline으로 해야함(브라우저가 모르니까) */

/* List 요소 */
ul,li {
    list-style: none;
}

/* A 요소 */
a {
    font-size: 100%;
    text-decoration: none;
    color: inherit;
    background: none;
    vertical-align: baseline;
}

/* Img 요소 */
img {
    vertical-align: top;
}

/* Button 요소 */
button {
    background: none;
}

/* hr 요소 */
hr {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
}

/* input,textarea 요소 */
input,
textarea {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: top;
}

/* Boxsizing */
* {
    box-sizing: border-box;
}

/* 플롯해제 */
.cf::after {
    content: "";
    display: block;
    clear: both;
}

/* 마진,패딩 없애기 */
.no_mt {margin-top: 0 !important;}
.no_mr {margin-right: 0 !important;}
.no_mb {margin-bottom: 0 !important;}
.no_ml {margin-left: 0 !important;}

.no_pt {padding-top: 0 !important;}
.no_pr {padding-right: 0 !important;}
.no_pb {padding-bottom: 0 !important;}
.no_pl {padding-left: 0 !important;}

.no_bdt {border-top: none !important;}
.no_bdr {border-right: none !important;}
.no_bdl {border-left: none !important;}
.no_bdb {border-bottom: none !important;}

/* 접근성 요소 가려주는 공통 CSS */
.blind {
    display: inline-block;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.legend {
    position: absolute;
    left: -9999px;
}
.caption {
    display: none;
}