@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
/* 폰트 적용 */
body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: 16px;
}

div
{
    box-sizing: border-box;
}

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

img
{
    width: 100%;
    display: block;  /* 부모 영역과 높이 일치 */
}

.m_show_flex
{
    display: none;
}

.m_show_block
{
    display: none;
}

.m_none_flex
{
    display: flex;
}

.m_none_block
{
    display: block;
}


.text_center
{
    text-align: center;
}

.text_start
{
    text-align: left;
}

.flex
{
    display: flex;
}

.flex_column
{
    flex-direction: column;
}

.flex_row
{
    flex-direction: row;
}

.flex_wrap
{ 
    flex-wrap: wrap; /* 넘치면 줄바꿈 */
}


.justify_start
{
	justify-content:start;
}

.justify_between
{
	justify-content:space-between;
}




.float_left
{
    float: left;
}

.float_right
{
    float: right;
}

.clear_both
{
    clear: both;
}

/* 고정 위치 */
.fixed_top
{
    position: fixed;
    top: 0;
    z-index: 100;
}

/* 레이아웃 Layout grid 그리드 width 너비 */
.full_width 
{
    width: 100%;
}

.col-3
{
	width:33.333333%;
}

.width_lg_40
{
    width: 40%;
}

.width_lg_50
{
    width: 50%;
}

.width_lg_60
{
    width: 60%;
}

.gap_15
{
	gap: 15px;
}

.gap_30
{
    gap: 30px;
}



.center_wrap {
    width: 100%;
    display: flex;
    justify-content: center; /* 가로 중앙 정렬 */
}

.center
{
    width: 1200px;
    padding: 0 15px;
}

.center_1604
{
    width: 1604px;
}

/* 색상 Color*/
.color_gold
{
    color: #C5A662;
}

.grey_500
{
    color: #9E9E9E;
}

.grey_900
{
    color: #212121;
}

/* 마진 Margin*/
.mt_lg_20
{
    margin-top: 20px;
}

.mt_lg_30
{
    margin-top: 30px;
}

.mt_lg_40
{
    margin-top: 40px;
}

.mt_lg_50
{
    margin-top: 50px;
}

.mt_lg_100
{
    margin-top: 100px;
}

.mt_lg_120
{
    margin-top: 120px;
}

.mr_lg_30
{
    margin-right: 30px;
}

.pb_lg_120
{
    padding-bottom: 120px;
}


/* 다양한 디바이스 대응 */
/* 큰 데스크톱 */
@media screen and (min-width: 1200px) {
    .gnb_menu { display: flex; }
    .gnb_menu_btn { display: none; }
}

/* 데스크톱 */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .gnb_menu { display: flex; }
    .gnb_menu_btn { display: none; }
}

/* 태블릿 */
@media screen and (min-width: 769px) and (max-width: 991px) {
    .gnb_menu { display: flex; }
    .gnb_menu_btn { display: none; }
}

/* 모바일 */
@media screen and (max-width: 768px) {

    .center
    {
        width: 100%;
    }

    .center_1604
    {
        width: 100%;
    }

    .gnb_menu { display: none; }
    .gnb_menu_btn { display: block; }


    .m_show_flex
    {
        display: flex;
    }

    .m_show_block
    {
        display: block;
    }

    .m_none_flex
    {
        display: none;
    }

    .m_none_block
    {
        display: none;
    }

    .width_sm_100
    {
        width: 100%;
    }
    
    .mt_sm_30
    {
    	margin-top: 30px;
    }
    
    .pb_sm_30
    {
    	padding-bottom:30px;
    }

}