@charset "utf-8";
@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'GangwonEduPowerExtraBoldA';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/GangwonEduPowerExtraBoldA.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Paperlogy-8ExtraBold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Gothic_Goding';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/naverfont_05@1.0/Gothic_Goding.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    border-color: var(--line-color);
    font-family: var(--font-style);
    font-size: 14px;
    box-sizing: border-box;
}
*::placeholder {color: #BBB;}

html {
	background: var(--bg-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--bg-color);
    color: var(--font-color);
}

html, body {
    padding: 0;
    margin: 0;
}

table {
    width: 100%;
    height: auto;
}

ul, li {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
a {text-decoration: none;}
a:link,
a:visited,
a:hover,
a:active {color: inherit;}

label,
button {cursor: pointer;}

form {margin: 0;}

input:focus,
textarea:focus {outline: none;}
input,
select {
    height: 30px;
    border: 1px solid var(--line-color);
}
input[type="file"] {
    background-color: #FFF;
    padding: 2px;
    font-size: 0.85em;
}
input[type="file"],
input[type="text"] {width: 100%;}
input[type="checkbox"] {
    width: auto;
    height: auto;
    padding: 5px;
    border: none;
    cursor: pointer;
    appearance: none;
    box-sizing: border-box;
    background-clip: content-box;
}
input[type="checkbox"]:checked {position: relative;}
input[type="checkbox"]:checked::before {
    content: '✔';
    position: absolute;
    top: -2px;
    left: 0;
    font-size: 14px;
}
input[type='radio'] {
    width: 13px;
    height: 13px;
    border: 1px solid var(--line-color);
    border-radius: 100%;
    outline: none;
    cursor: pointer;
    flex-shrink: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type='radio']:checked {
    background-color: var(--line-color);
    border: 3px solid #FFF !important;
    box-shadow: 0 0 0 1px var(--line-color);
}
select {padding: 0 10px;}

textarea {
    width: 100%;
    height: 165px;
    padding: 5px;
    border: 1px solid var(--line-color);
    resize: none;
}

small {
    color: #8b8b8b;
    font-size: small;
}

p {margin: 0;}

img {max-width: 100%;}