@charset "utf-8";

/* > font */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css');

/* noto */
@font-face {
    font-family: "notoBold";
    font-style: normal;
    font-weight: normal;
    src: url(/public/font/NotoSansKR-Bold.woff);
}
@font-face {
    font-family: "notoRegular";
    font-style: normal;
    font-weight: normal;
    src: url(/public/font/NotoSansKR-Medium.woff);
}
@font-face {
    font-family: "notoRegular";
    font-style: normal;
    font-weight: normal;
    src: url(/public/font/NotoSansKR-Regular.woff); 
}
/* HSSaemaul */
@font-face {
    font-family: 'HSSaemaul-Regular';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/HSSaemaul-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* > reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    word-break: keep-all;
    color: var(--black-1-color);
    font-size: var(--font-5-size);
    font-family: 'Pretendard Variable', sans-serif;
    letter-spacing:-0.75px;
}
html,
body {
    font-weight: normal;
    scroll-behavior: smooth;
    /* overflow-x: hidden; */
}
h1,
h2,
h3,
h4,
h5,
h6,
strong {
    font-size: 100%;
    font-weight: normal;
}
ol,
ul {
    list-style: none;
}
a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
img {
    max-width: 100%;
    vertical-align: top;
    
}
input {
    cursor: pointer;
    border: none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type="checkbox"] {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
    outline: none;
    border: 1px solid var(--black-3-color);
    border-radius: 2px;
    background: #fbfbfb;
    position: relative;
}
input[type="checkbox"]:checked {
    background: var(--orange-1-color);
    border-radius: 3px;
    position: relative;
    border: none;
}
input[type="checkbox"]:checked::before {
    content: '\F26E';
    font-family: bootstrap-icons;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    display: block;
    
}
textarea {
    width: 100%;
    background: none;
    resize: none;
    border: none;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
    font-family: "notoRegular", sans-serif;
}

select {
    cursor: pointer;
    background-color: #fff;
    outline: none;
    overflow: hidden;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("../images/common/bottom_arrow.png") no-repeat 96% 50%/10px auto;
    border: none;
}
