/* http://meyerweb.com/eric/tools/css/reset/ 
    v2.0 | 20110126
    License: none (public domain)
*/
* {user-select: none;}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    vertical-align: baseline;
    font-family: 'MoriExtraBold';

    list-style: none;
    line-height: normal;
}

@media screen and (max-width:992px) {
    html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
        font-size: 15px;
    }
}

.main_color {color: var(--main-color);}
.sub_color {color: var(--sub-color) !important;}
[data-bg-color="sub-color"] {background-color: var(--sub-color);}

:root {
    /* COLOR */
    --main-color: #fff;
    --sub-color: #FF641D;
    --color-white: #fff;
    --color-black: #1c1d1e;

    --yellow-color: #FFCF4E;
    --blue-color: #5591F8;
    --pink-color: #FF99F5;
    --red-color: #FF2719;

    /* FONT */
    --font-family-Gilroy: 'Gilroy', sans-serif;
    --font-family-KoPubWorldDotum: 'KoPubWorldDotum', sans-serif;

    --letter-spacing: -0.01em;

    --font-size-01: 1.6rem;
    --font-size-02: 50rem;
    --font-size-03: 45rem;
    --font-size-04: 32rem;
    --font-size-05: 24rem;
    --font-size-06: 20rem;
    --font-size-07: 18rem;
    --font-size-08: 16rem;
    --font-size-09: 14rem;
    --font-size-10: 20rem;
    --font-size-11: 110rem;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: normal;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* asset */
.relative {
    position: relative;
}

.img-responsive {
    display: block;
    max-width: 100%;
    width: 100%;
}

.flex {
    display: flex;
}

.bold {
    font-weight: bold;
}


/* button */
.button01 {
    display: flex;
    border: 1px solid;
    padding: 1rem 2rem;
    border-bottom-right-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.button01.black {
    background-color: #000;
    color: #fff;
}

.button01.black:hover {
    background-color: transparent;
    color: #000;
}

.button01.trans {
    background-color: transparent;
    border-color: #000;
}

.button01.trans:hover {
    background-color: #000;
    color: #fff;
}

/* text hover Left to Right */
.hoverLTR {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.hoverLTR>div {
    font-size: 0.9rem;
    transition: 0.3s 0.1s;
}

.hoverLTR>div:nth-child(1) {
    position: absolute;
    left: -102%;
}

.hoverLTR>div:nth-child(2) {
    position: relative;
    left: 0;
}

.hoverLTR_box:not(.each):hover .hoverLTR>div:nth-child(1),
.hoverLTR_box.each .hoverLTR:hover>div:nth-child(1) {
    left: 0;
}

.hoverLTR_box:not(.each):hover .hoverLTR>div:nth-child(2),
.hoverLTR_box.each .hoverLTR:hover>div:nth-child(2) {
    left: 112%;
}

