@charset "UTF-8";

/* reset.css */


/* variable:color, size, font  */


/*
NanumSquare : 300 normal bold 800
 */


/* base */

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: #333;
    font-size: 10px;
    font-family: "NanumSquare", dotum, monospace, sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-weight: 500;
    word-break: keep-all;
}


/* ::-webkit-scrollbar {
    display: none;
} */

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video {
    vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
ul,
ol,
li,
dl,
dt,
dd,
div,
table,
thead,
tbody,
tfoot,
tr,
th,
td,
form,
fieldset,
legend,
input,
textarea,
select,
a,
img,
figcaption,
figure {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}

table,
tr,
td,
th,
thead,
tbody,
tfoot {
    border-collapse: collapse;
    border-spacing: 0;
}

thead {
    text-indent: 0;
}

tfoot {
    font-weight: bold;
}

th,
td {
    border: 1px solid #777;
    border-left: 0;
    border-right: 0;
}


/*th:first-of-type, td:first-of-type{border-left:0;} 
th:last-of-type,  td:last-of-type{border-right: 0;} */

hr {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #333;
}

address,
em,
wbr,
strong,
ins,
del,
abbr {
    font-style: normal;
}

h1 {
    font-size: 32px;
    font-size: 3.2rem;
}

h2 {
    font-size: 30px;
    font-size: 3.0rem;
}

h3 {
    font-size: 28px;
    font-size: 2.8rem;
}

h4 {
    font-size: 24px;
    font-size: 2.4rem;
}

h5 {
    font-size: 22px;
    font-size: 2.2rem;
}

h6 {
    font-size: 20px;
    font-size: 2rem;
}

ul,
ol,
li {
    list-style: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:hover,
a:active {
    color: inherit;
}

code {
    padding: 6px;
    border: 1px solid #777;
    background-color: #7af;
}

kbd {
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
    background-color: #333;
    border-radius: 0.3rem;
}


/* form ============================================ */

input[type="text"],
input[type="password"],
input[type="search"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="month"],
input[type="year"],
input[type="week"],
input[type="url"],
textarea {
    box-sizing: border-box;
    border-radius: 0;
    background-color: #f5f5fa;
    text-indent: 5px;
    padding: 18px 20px;
}

input[type="date"],
input[type="time"],
input[type="month"],
input[type="year"],
input[type="week"] {
    cursor: pointer;
}

input[type="text"] {
    ime-mode: active;
    ime-mode: active;
}

input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input:-moz-placeholder,
input:placeholder {
    color: #E5D9C4;
}

select {
    -webkit-appearance: listbox;
    -moz-appearance: listbox;
    appearance: listbox;
    border: 0;
}

input[type="submit"],
input[type="reset"],
input[type="image"],
input[type="file"],
input[type="button"],
button,
select {
    cursor: pointer;
    border-radius: 0;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

input::placeholder {
    color: #e6e6e6;
}

button {
    background-color: transparent;
    color: inherit;
    font-size: inherit;
}


/*  html5 ============================================  */

header,
nav,
article,
section,
footer,
aside,
main,
figure,
figcaption,
picture {
    display: block;
    color: inherit;
}

input[type="checkbox"]+label {
    cursor: pointer;
}

@media screen and (min-width:1024px) {
    h2 {
        font-size: 6.0rem;
    }
    h3 {
        font-size: 5.6rem;
    }
}