@charset "UTF-8";

/* HTML 기본 요소 초기화 */
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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li, hr,
fieldset, form, label, legend, textarea,
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 요소들이 블록 요소로 렌더링 설정 */
article, aside, details, figcaption, figure, 
footer, header, menu, nav, section, picture, source {
    display: block;
}

/* 전역 박스 모델 초기화 */
html, body {
    font-size: 14px;
    line-height: 1.3;
    word-break: keep-all;
}

*, ::after, ::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* 리스트 스타일 제거 */
ul, ol {
    list-style: none;
}

/* 인용문 스타일 제거 */
blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* Select 태그 스타일 제거 */
select {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* 폼 요소 스타일 제거 */
button, input, select, textarea {
    margin: 0;
    background: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    padding: 0;
    border-radius: 0;
}

input[type="button"], input[type="submit"] {
    cursor: pointer;
}

/* 버튼, 링크 스타일 제거 */
a, a:hover, button {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

/* 미디어 요소 초기화 */
img, video {
    display: block;
    height: auto;
    max-width: 100%;
}

iframe {
    border: 0;
}

/* 표, 캡션 요소 초기화*/
table {
    width:100%;
    border-collapse: collapse;
    border-spacing: 0;
}

td, th {
    padding: 0;
}

caption {
    text-align: left;
    font-weight: normal;
}

fieldset legend {
    display: none;
}

*:focus:not(:focus-visible) {
    outline: none;
}

