@charset "utf-8";
@import url("./font.css");

/* 요소(element) 여백 초기화  */
html, 
body, 
div, 
span, 
dl, 
dt, 
dd, 
ul, 
ol, 
li, 
h1, 
h2, 
h3, 
h4, 
h5, 
h6, 
blockquote, 
p, 
address, 
pre, 
cite, 
form, 
fieldset, 
input, 
textarea, 
select,
button, 
table, 
th, 
td {
    font-family: inherit;
    font-weight: inherit;
    font-size: 100%;
    margin: 0;
    padding: 0;
}

/* 제목요소 */
h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
    font-weight: inherit;
}

/* 테두리 없애기 */
fieldset, 
img, 
abbr, 
acronym {
    border: 0 none;
}

/* 링크밑줄 없애기 */
a, 
button {
    -webkit-tap-highlight-color: transparent;
    text-decoration: none !important;
    color: inherit;
}

button {
    line-height: 1;
    border: 0;
    cursor: pointer;
    background: none;
    -webkit-appearance: none;
        -moz-appearance: none;
            appearance: none;
}

button:hover, 
a:hover {
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
}

/* 목록 */
ol, 
ul, 
li {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    border: 0 none;
}

caption, 
th, 
td {
    text-align: left;
    font-weight: normal;
}

/* 텍스트 관련 요소 초기화 */
address, 
caption, 
em, 
cite {
    font-weight: normal;
    font-style: normal;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

/* 인용문 */
blockquote:before, 
blockquote:after, 
q:before, 
q:after {
    content: "";
}

blockquote, 
q {
    quotes: """";
}

figure {
    margin: 0;
}

img, 
svg {
    width: 100%;
    margin: 0;
    padding: 0;
    pointer-events: none;
    vertical-align: bottom;
}

sup {
    font-size: 0;
}

/*인풋*/
input, 
textarea {
    background: transparent;
    background-color: transparent;
    -webkit-appearance: none;
        -moz-appearance: none;
            appearance: none;
    border: 0;
    -webkit-border-radius: 0;
            border-radius: 0;
    -webkit-transition: all .3s ease;
            transition: all .3s ease;
}

textarea {
    resize: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button, 
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input::placeholder, 
textarea::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #eee !important;
    opacity: 1;
    /* Firefox */
}

input:-ms-input-placeholder, 
textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #eee !important;
}

input::-ms-input-placeholder, 
textarea::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #eee !important;
}

/*인풋 x버튼 제거*/
/* IE의 경우 */
input::-ms-clear, 
input::-ms-reveal {
    display: none;
}

/* 크롬의 경우 */
input::-webkit-search-decoration, 
input::-webkit-search-cancel-button, 
input::-webkit-search-results-button, 
input::-webkit-search-results-decoration {
    display: none;
}