@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.6/dist/web/static/pretendard.css");

:root {
    /* color */
    --primary-white: #ffffff;
    --primary-black: #000000;
    --primary-blue: #1d95d4;
    --primary-green: #2ba449;
    --primary-yellow: #e99a21;

    --font-eb: 700;
    --font-b: 600;
    --font-sb: 500;
    --font-m: 400;

    --odd-bg: #f7f7f7;
    --fc-subtit: #585656;
    --fz-maintit: 45px;
    --fz-maintit--mobile: 26px;

    --mobile-padding: 15px;

    --box-shadow: rgba(0, 0, 0, 0.25) -2px 3px 90px -20px !important;
}

* {
    margin: 0;
    padding: 0;
    color: inherit;
    font: inherit;
}
*, ::after, ::before{box-sizing: border-box !important; }

button {
    background: none;
    border: 0;
    cursor: pointer;
}

a {
    text-decoration: none;
}

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

ul {
    list-style: none;
}

fieldset,
input {
    border: 0;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    object-fit: cover;
}

section {
    position: relative;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    position: relative;
    word-break: keep-all;
    font-family: "Pretendard", sans-serif !important;
    letter-spacing: -0.025em;
    background: #fff;
    overflow-x: hidden;
}

.side_bottom--block .side_bottom--right::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
}

@media screen and (max-width: 992px) {
    body {
        -ms-overflow-style: none;
        /* IE & Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    body::-webkit-scrollbar {
        display: none !important;
        /* Safari & Chrome */
        scrollbar-width: none !important;
    }
}