@charset "utf-8";

/* ------------------------------
   WelfareBox Reset.css
   최소한의 브라우저 초기화 + 접근성 대응
   Author : WelfareBox
   License : MIT
---------------------------------*/

/* 기본 박스 모델 */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HTML5 블록 요소 기본화 */
html, body {
    height: 100%;
    font-size: 16px;
    line-height: 1.5;
    -webkit-text-size-adjust: none;
}

/* 공통 숨김 처리 (웹 접근성) */
.blind,
.hidden,
legend,
caption {
    position: absolute !important;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* 목록 초기화 */
ul, ol, li {
    list-style: none;
}

/* 링크 초기화 */
a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

/* 텍스트 관련 */
em, i, address { font-style: normal; }
strong, b { font-weight: 600; }

/* 이미지, 폼 요소 */
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: 0;
}
input, select, button, textarea {
    font: inherit;
    color: inherit;
    vertical-align: middle;
}
button {
    border: none;
    background: none;
    cursor: pointer;
}

/* 표 */
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}
th, td {
    padding: 0;
    text-align: left;
}
