
/* ===== 기본 초기화 ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    line-height: 1.5;
    font-family: "Elice Digital Baeum", sans-serif;
    font-size: 16px;
    color: #333;
    background: #43b2db;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== 링크, 버튼 초기화 ===== */
a {
    color: inherit;
    text-decoration: none;
    display:block; 
}

button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

/* ===== 목록 초기화 ===== */
ul, ol {
    list-style: none;
}

/* ===== 이미지 초기화 ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== 폼 요소 초기화 ===== */
input,
textarea,
select {
    font: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

textarea {
    resize: none;
}

/* ===== 테이블 초기화 ===== */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ===== 기타 유틸 ===== */
.hidden {
    display: none !important;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}


.fp-warning, .fp-watermark{display:none;}
