
/*===========================================================================
	FONT
============================================================================*/
@layer common {
    /* 폰트 */
    @font-face {
        font-family: 'Pretendard';
        font-weight: 100;
        font-style: normal;
        src: url('../fonts/Pretendard-Thin.otf') format("truetype");
        font-display: swap;
    }

    @font-face {
        font-family: 'Pretendard';
        font-weight: 200;
        font-style: normal;
        src: url('../fonts/Pretendard-ExtraLight.otf') format("truetype");
        font-display: swap;
    }

    @font-face {
        font-family: 'Pretendard';
        font-weight: 300;
        font-style: normal;
        src: url('../fonts/Pretendard-Light.otf') format("truetype");
        font-display: swap;
    }

    @font-face {
        font-family: 'Pretendard';
        font-weight: 400;
        font-style: normal;
        src: url('../fonts/Pretendard-Regular.otf') format("truetype");
        font-display: swap;
    }

    @font-face {
        font-family: 'Pretendard';
        font-weight: 500;
        font-style: normal;
        src: url('../fonts/Pretendard-Medium.otf') format("truetype");
        font-display: swap;
    }

    @font-face {
        font-family: 'Pretendard';
        font-weight: 600;
        font-style: normal;
        src: url('../fonts/Pretendard-SemiBold.otf') format("truetype");
        font-display: swap;
    }

    @font-face {
        font-family: 'Pretendard';
        font-weight: 700;
        font-style: normal;
        src: url('../fonts/Pretendard-Bold.otf') format("truetype");
        font-display: swap;
    }

    @font-face {
        font-family: 'Pretendard';
        font-weight: 800;
        font-style: normal;
        src: url('../fonts/Pretendard-ExtraBold.otf') format("truetype");
        font-display: swap;
    }

    @font-face {
        font-family: 'Pretendard';
        font-weight: 900;
        font-style: normal;
        src: url('../fonts/Pretendard-Black.otf') format("truetype");
        font-display: swap;
    }

    @font-face {
        font-family: 'xeicon';
        font-style: normal;
        src: url('../fonts/xeicon.ttf') format("truetype");
        font-display: swap;
    }

    /*===========================================================================
        CSS 초기화
    ============================================================================*/
    * {
        font-family: 'Pretendard', sans-serif;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-weight: normal;
    }

    html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, em, img, strong, b, i, dl, dt, dd, ol, ul, li, form, label, legend, article, aside, footer, header, menu, nav, section, video, a {
        border: 0;
        outline: 0;
        font-size: 100%;
        color: #333;
        line-height: 1;
    }

    body {
        line-height: 1;
    }

    article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
        display: block;
    }

    ul, ol, li {
        list-style: none;
    }

    strong {
        display: inline-block;
    }

    a {
        margin: 0;
        padding: 0;
        font-size: 100%;
    }

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

    input, select {
        vertical-align: middle;
        font-size: 16px;
    }

    p {
        line-height: 1.5;
        word-break: keep-all;
    }

    img {
        width: 100%;
        object-fit: contain;
    }

    input {
        outline: none;
    }

    button {
        cursor: pointer;
        border: 0;
        outline: 0;
        background: none;
        font-size: 16px;
    }

    a {
        text-decoration: none;
    }

    textarea {
        resize: none;
    }

    input,
    select {
        vertical-align: middle;
        outline: 0;
        border: 0;
        background: none;
        font-family: "Pretendard", sans-serif;
    }

    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    input[type="file"],
    input[type="checkbox"],
    input[type="radio"] {
        display: none;
    }

    select {
        appearance: none;
        background-image: url(/images/icon_arrow_down.svg);
        background-repeat: no-repeat;
        background-position: right 8px center;
        background-size: 24px;
    }

    select option[value="disabled"][disabled] {
        display: none;
    }

    label {
        cursor: pointer;
    }

    i {
        font-family: 'xeicon';
        font-style: normal;
    }

    /*===========================================================================
        Global
    ============================================================================*/
    :root {
        /* 폰트 */
        --NanumSquareNeo: 'NanumSquareNeo-Variable', sans-serif;


        /* 색상 */
    }

    ::-webkit-scrollbar {
        display: none;
    }


    /*===========================================================================
        공통요소
    ============================================================================*/
    body {
        background-color: #f5f5f5;
    }

    .container {
        width: 100%;
        /* max-width: 1352px; */
        margin: 0 auto;
        padding: 0 20px;
    }

    .mb {
        display: none;
    }

    .row {
        display: flex;
        flex-direction: row;
    }

    .col {
        display: flex;
        flex-direction: column;
    }

    .bold {
        font-weight: bold;
    }


    /* 유동적 이미지 */
    .fluid-img-wrap {
        width: 100%;
        position: relative;
    }

    .fluid-img-wrap img {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }


    .h-64 {
        height: 64px;
    }


    /* font */
    .font-20 {
        font-size: 20px;
    }


    .pageControll {
        width: 100%;
        display: flex;
        justify-content: end;
        margin-top: 32px;
    }

    .pageControll .controll-wrap {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .pageControll .arrow_btn {
        max-width: 24px;
    }

    .pageControll .arrow-wrap {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .pageControll .num-wrap {
        display: flex;
        align-items: center;
    }

    .pageControll .num_now {
        width: 100%;
        min-width: 64px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        border: 1px solid #e4e4e4;
        border-radius: 4px;
        height: 32px;
        width: 64px;
    }

    .pageControll .slash {
        margin-left: 16px;
        margin-right: 4px;
        font-size: 18px;
        opacity: 0.5;
        color: #404040;
    }

    .pageControll .num_txt {
        font-size: 18px;
        opacity: 0.5;
        color: #404040;
    }

    .pageControll .num_now {
        font-size: 18px;
        font-weight: 600;
        color: #000;
        opacity: unset;
    }

}






