@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face{
    font-family: 'Jost', sans-serif;
    unicode-range: U+0061-007A, U+0041+005A, U+0030-0039;
}

*{padding: 0; margin: 0; box-sizing: border-box;}
a {color: #666; text-decoration: none;}
ul, ol, li {list-style: none;}
body {font-family: 'Jost', sans-serif,  noto sans kr; color: #333; word-break: break-all; width: 100%;overflow-x: hidden;}


:root {
    --white-color: #fff;
    --black-color:#333;
    --gold-color:#C07F00;
    --yellow-color:#FAE100;
    --brown-color:#65401D;
    --red-color:#FF5530; 
    --line-color:#d1d1d1;
    --font-color:#666;
    --red-dark: #D40000;
    --blue-color: #1756CF;
    --grey-color: #e7e7e7;
}
/*color*/
.gold {color: var(--gold-color);}
.red_d {color: var(--red-dark);}
.blue {color: var(--blue-color);}


/*header*/

header {
    width: 100%;
    padding: 10px 0;
    position: fixed;
    z-index: 999999;
    background: var(--white-color);
    top: 0;
}
header .header_wrap {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}
header .header_wrap .logo {
    display: block;
    background: url(/image/logo.svg)no-repeat 0 0 /contain;
    width: 120px;
    height: 70px;
}
header .header_wrap ul {
    display: flex;
    align-items: center;
    gap: 1.5vw;
}
header .header_wrap ul a {
    font-weight: 700;
    color: var(--brown-color);
}
header .header_wrap ul a:hover {
    opacity: 1;
    font-weight: 700;
    color: var(--red-color);
    transition: 0.5s;

}
header .header_wrap .gnb { gap: 1.2vw; }
header .header_wrap .gnb li {}
header .header_wrap .mypage {
    gap: 1vw;
}
header .header_wrap .mypage a{
    opacity: 1;
    font-weight: 500;
    display: inline-block;
}
header .header_wrap .mypage li:nth-child(1) a{
    background: #FFF386;
    border-radius: 100px;
    padding: 5px 10px ;
    color: var(--brown-color);
    border: 1px solid #FFF386;
    font-weight: 700;
}
header .header_wrap .mypage li:nth-child(2) a{
    background: #FFF386;
    border-radius: 100px;
    padding: 5px 10px ;
    color: var(--brown-color);
    border: 1px solid #FFF386;
    font-weight: 700;
}
header .header_wrap .login {
    background: url(/image/login.svg)no-repeat 0 0/contain;
    width: 24px;
    height: 24px;
    display: block;
}


/*layout*/
section {   
    max-width: 1300px;
    /* max-width: 1024px; */
    margin: 0 auto;
    position: relative;
    margin-bottom: 100px;
}

/*footer*/

footer {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line-color);
    align-items: center;
}
footer .info .bar {
    display: inline-block;
    width: 1px;
    height: 16px;
    background: var(--font-color);
    margin: 0 10px;
    position: relative;
    top: 3px;
    color: var(--font-color);
}
.footer_logo a {
    display: block;
    background: url(/image/logo.svg)no-repeat 0 0 /contain;
    width: 220px;
    height: 100px;
}
.bt {
    border-radius: 3px;
    height: 40px;
    width: 140px;
    background: var(--yellow-color);
    color: var(--brown-color);
    font-weight: 700;
    text-align: center;
    line-height: 40px;
    margin: 10px auto;
    border: none;
}
.bt:hover {cursor: pointer;}
button:hover {cursor: pointer; box-shadow: 1px 1px 1px rgba(0,0,0,0.1);}
textarea, input, select {
    outline: none;
    padding: 5px;
    font-size: 16px;
    color: var(--font-color);
    border: 1px solid var(--line-color);
    border-radius: 3px;
}
.new {
    display: inline-block;
    background: url(/image/new.svg)no-repeat 0 0 /contain;
    width: 18px;
    height: 18px;
    margin-left: 5px;
}
.like {
    background: url(/image/like_r.svg)no-repeat center center /contain;
    width: 20px;
    height: 20px;
    display: inline-block;
}
.red {color: var(--red-color);}

input[type=checkbox] + label {
    display: inline-block;
    margin: 0 10px 0 5vw;
    background: url(/image/check.svg)no-repeat 0 0 /contain;
    width: 16px;
    height: 16px;
}
input[type=checkbox]:checked + label {
    background: url(/image/checked.svg)no-repeat 0 0 /contain;

}
input[type=checkbox] {
    display: none;
}
 input[type=checkbox] + label {
    margin: 0 10px;
}




input[type=radio] + label {
    display: inline-block;
    margin: 0 10px 0 5vw;
    background: url(/image/check.svg)no-repeat 0 0 /contain;
    width: 16px;
    height: 16px;
}
input[type=radio]:checked + label {
    background: url(/image/checked.svg)no-repeat 0 0 /contain;

}
input[type=radio] {
    display: none;
}
 input[type=radio] + label {
    margin: 0 10px;
}


.check_box{text-align: right;}

.input_box{display: flex;}
.input_box button{width: 20%; border:0; background: var(--yellow-color);}
.readonly_input input:read-only{background: #d1e7dd;}

.msg_popup{position:fixed; top:0; left: 0; width: 100%; display: none; z-index: 999;}
.msg_popup_inner{display: flex; align-items: center; justify-content: center; text-align: center; height: 60px;}
.msg_danger{background:#f8d7da; border:1px solid #f5c2c7; color: #842029;}
.msg_success{color: #0f5132; background-color: #d1e7dd; border-color: #badbcc;}

.pw_info{font-size: 12px;}

.label_ling{position:relative;}
.label_ling .label_ling_href{position:absolute; top:-8px; right: -14px; background: #FF5530; color: #fff; border-radius: 50%; width: 20px; height: 20px; display: flex !important; align-items: center; justify-content: center; font-size: 12px; cursor: pointer; z-index: 1;}
.label_ling div{
    position: absolute;
    top: 6px;
    right: -128px;
    width: 250px;
    background: #f5c2c7;
    font-size: 12px;
    text-align: center;
    padding: 10px;
    color: #842029;
    border-radius: 4px;
    display: none;
}
.label_ling .label_ling_href:hover{color: #fff;}