@charset "UTF-8";

@font-face {
    font-family: '777Lovespring';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_nine_@1.1/777Lovespring.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bazzi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/Bazzi.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

body {
    font-family: '맑은 고딕', 'malgun gothic',
        'Apple SD Gothic Neo', 'Apple SD 산돌고딕 Neo',
        'Microsoft NeoGothic',
        'Droid sans', Helvetica sans-serif;
    font-size: 16px;
    font-weight: 400;
    word-break: keep-all;
    width: 100%;
}

.notosans {
    font-family: 'Noto Sans KR', sans-serif;
}

a {
    font-size: 1rem;
    color: #444;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-size: 1rem;
    font-weight: 400;
}

ul {
    list-style: none;
}

table {
    table-layout: auto;
    border-collapse: collapse;
}

.blind {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
}

.fix_scroll {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 65px;
    width: 130px;
    text-align: center;
}

.icon_scroll {
    width: 18px;
    height: 30px;
    -webkit-box-shadow: inset 0 0 0 2px #fff;
    box-shadow: inset 0 0 0 2px #fff;
    border-radius: 25px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 8px;
}

.icon_scroll::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #fff;
    position: absolute;
    top: 8px;
    left: 5.5px;
    border-radius: 4px;
    -webkit-animation-duration: 1.5s;
    -o-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: scroll;
    -o-animation-name: scroll;
    animation-name: scroll;
}

.fix_scroll > p {
    font-size: 0.688rem;
    color: #fff;
    font-weight: 100;
}

@-webkit-keyframes scroll {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        top: 16px;
    }
}

@-o-keyframes scroll {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        top: 16px;
    }
}

@keyframes scroll {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        top: 16px;
    }
}

@media all and (max-width: 481px) {
    .fix_scroll {
        bottom: 15px;
    }
}

@media all and (max-width: 321px) {
    .fix_scroll {
        display: none;
    }
}