@charset "UTF-8";
/* =========================================================
    Responsive Reset CSS
   ========================================================= */
/* Pretendard  */
@font-face {
    font-family: "Pretendard";
    src: url("../font/pretendard/Pretendard-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Pretendard SemiBold */
@font-face {
    font-family: "Pretendard";
    src: url("../font/pretendard/Pretendard-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Pretendard Bold */
@font-face {
    font-family: "Pretendard";
    src: url("../font/pretendard/Pretendard-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Inter  */
@font-face {
    font-family: "Inter";
    src: url("../font/inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../font/inter/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* Box sizing */
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

*, *::before, *::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

/* Reset */
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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video { 
    margin: 0;
    padding: 0; 
    border: 0; 
    font: inherit; 
    vertical-align: baseline;
}

/* HTML5 display-role reset */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
    display: block;
}

/* Document */
html, body {
    width: 100%;
    min-height: 100%;
}

body {
    line-height: 1.5;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", "Noto Sans KR", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #222;
    background-color: #fff;
    word-break: keep-all;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.en {
    font-family: "Inter", "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", "Noto Sans KR", sans-serif;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}

strong, b {
    font-weight: 700;
}

em, i {
    font-style: italic;
}

address {
    font-style: normal;
}

/* Lists */
ol, ul {
    list-style: none;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
}

/* Media */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

img, video {
    height: auto;
}

iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    border: 0;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

th {
    font-weight: inherit;
    text-align: left;
}

/* Forms */
button, input, select, textarea {
    margin: 0;
    font: inherit;
    color: inherit;
    line-height: inherit;
    border-radius: 0;
}

button, input[type="button"], input[type="submit"], input[type="reset"] {
    cursor: pointer;
}

button {
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
}

input, select, textarea {
    max-width: 100%;
}

textarea {
    overflow: auto;
    resize: vertical;
}

select {
    background-color: #fff;
}

button:disabled, input:disabled, select:disabled, textarea:disabled {
    cursor: default;
}

input[type="search"] {
    -webkit-appearance: none;
    appearance: none;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/* Chrome / Safari autofill */
input:-webkit-autofill {
    -webkit-text-fill-color: inherit;
    transition: background-color 9999s ease-out 0s;
}

/* Quotes */
blockquote,
q {
    quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
    content: "";
    content: none;
}

/* Hidden */
[hidden] {
    display: none !important;
}

/* Accessibility */
.blind, .sr_only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Focus */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    /* outline: 2px solid currentColor;
    outline-offset: 2px; */
}

/* Clearfix */
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

/* Mobile touch */
a, button, input, select, textarea, label {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Responsive container base */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

/* Reduced motion */
/* @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} */