@charset "UTF-8";
@import url('fonts.css');

/* ================================= reset =================================  */
html,body,div,ul,ol,dl,li,dt,dd,p,h1,h2,h3,h4,h5,h6,table,thead,tbody,tr,th,td,
caption,address,canvas,details,figure,figcaption,
footer,header,menu,nav,section,article,aside,form,button,select,
textarea,input,fieldset,legend,label,a,span,strong,em,address,dfn,small,i,b,::before,::after {
    margin:0;
    padding:0;
    border:0;
    list-style:none;
    line-height:inherit;
    font-style:normal;
    font-weight:inherit;
    font-family: Pretendard;
    font-weight:400;
    font-size:100%;
    color:inherit;
    word-break:inherit;
    word-wrap:inherit;
    box-sizing:border-box;
    -webkit-tap-highlight-color:transparent;
}
article,aside,canvas,details,figure,figcaption,footer,header,menu,nav,section {
    display: block;
}
body {
    font-family: Pretendard;
    font-size: 14px;
    font-weight:400;
    line-height:1;
    word-wrap:initial;
    word-break: keep-all;
    -webkit-text-size-adjust:none;
    -moz-text-size-adjust:none;
    -ms-text-size-adjust:none;
}
body.pop_open {overflow: hidden;touch-action: none;}

/*body #wrapper {word-break: keep-all;}*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: #f1f3f4;
    z-index: 99999;
}
::-webkit-scrollbar-thumb {
    background: #ced4da;
    z-index: 99999;
}
[hidden],
hr {
    display:none;
}
img{
    vertical-align:middle;
}
button {
    background:transparent;
    cursor:pointer;
}
b,strong{
    font-weight:400;
}
b * ,strong * {
    font-weight: 700;
}
fieldset,iframe {
    width:100%;
}
img,a,frame,iframe,fieldset {
    border:0;
}
a {
    text-decoration:none;
}
table {
    width:100%;
    border-spacing:0;
    border-collapse:collapse;
}
caption {
    overflow:hidden;
    height:1px;
}
legend {
    position: absolute;
    left:-9999em;
    top:-9999em;}
button {
    background:transparent;
    cursor:pointer;
}
button::-moz-focus-inner{
    border:0;
    padding:0;
}
input:focus{
    outline:none;
}

/* common */
:root {
    /* color */
    /* blue */
    --blue900: #02559c;
    --blue800: #0275be;
    --blue700: #0286d2;
    --blue: #0099e6;
    --blue500: #00a7f5;
    --blue400: #26b5f7;
    --blue300: #4dc2f8;
    --blue200: #b3e4fd;
    --blue100: #b3e4fd;
    --blue50: #e1f5fe;

    /* red */
    --red-dark:#e03131;
    --red:#ff5d5d;
    --red-light:#ffbfbf;

    /* green */
    --green-dark:#0fa15f;
    --green:#35d48d;
    --green-light:#aeeed1;

    /*gray*/
    --white: #fff;
    --gray50: #f5f6f8;
    --gray100: #f1f3f5;
    --gray200: #e9ecef;
    --gray300: #dee2e6;
    --gray400: #ced4da;
    --gray500: #adb5bd;
    --gray600: #868e96;
    --gray700: #5e666e;
    --gray800: #495057;
    --gray900: #212529;

    --gray41:#414141;
    --black:#000;

    /* sub_color*/
    --yellow : #fdd835;
    --orange : #ff9800;
    --mint : #00c5cc;
    --violet : #845ef7;

}
.blue{
    color:var(--blue);
}
.blue_bg{
    background:var(--blue);
}
.blue_bd{
    border-color:var(--blue);
}
.red{
    color:var(--red);
}
.red_bg{
    background:var(--red);
}
.red_bd{
    border-color:var(--red);
}
.green{
    color:var(--green);
}
.green_bg{
    background:var(--green);
}
.green_bd{
    border-color:var(--green);
}

/* select */
select::-ms-expand {
    display: none;
}
select{
    margin-right: 8px;
    padding:7px 0 7px 16px;
    line-height: 1.5;
    font-family: Pretendard;
    font-size: 16px;
    border:1px  solid var(--gray400);
    border-radius: 2px;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}
/* 검색 input */
.input_box.normal{
    position: relative;
    padding:0 16px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--gray400);
    border-radius: 2px;
    box-sizing: border-box;
    cursor:pointer;
}
.input_box.normal input{
    margin-right: 54px;
    width: calc(100% - 54px);
    height: 100%;
    line-height: 1.5;
    font-family: Pretendard;
    font-size: 16px;
}
.input_box.normal input::placeholder{
    color: var(--gray400);
}
.input_box.normal .icon_del{
    display: none;
    position: absolute;
    right:45px;
    top: 50%;
    transform: translateY(-50%);
    padding:5px;
    cursor: pointer;
    z-index: 1;
}
.input_box.normal .btn_search{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-right:16px;
    width: 36px;
    height: 40px;
    text-indent: -9999px;
    font-size: 0;
    background: url("../imgs/common/icon_input_search.svg") no-repeat left center;
    z-index: 1;
}

.d-none {
    display:none;
}

.vertical_line_dark {
    height: 10px;
    border-right: 1px solid #212529;
    margin: 0 12px;
}

.vertical_line_gray {
    height: 10px;
    border-right: 1px solid #DEE2E6;
    margin: 0 12px;
}

.vertical_line_gray.not_mg,
.vertical_line_dark.not_mg {
    margin: 0;
}

/* 모바일 nav */
.mobile_nav_wrap {
    overflow: auto;
    width: 100%;
    padding:0 50px;
    box-sizing: border-box;
    border-bottom:1px solid var(--gray400)
}
.mobile_nav {
    width: 100%;
    min-width: max-content;
    display: block;
    white-space: nowrap;
    overflow: auto;
}
.mobile_nav_wrap::-webkit-scrollbar,
.mobile_nav::-webkit-scrollbar {
    display: none!important;
}

.mobile_nav li {
    font-size: 16px;
    float: left;
    width: 70px;
    margin-right: 16px;
    text-align: center;
    padding-bottom: 11px;
    padding-top: 12px;
    border-bottom: 2px solid transparent;
}

.mobile_nav li.on {
    border-bottom: 2px solid #0099E6;
}

.mobile_nav li.on a {
    color: #0099E6;
    font-weight: 700;
}

.mobile_nav li:last-child {
    margin-right: 0;
}

@media (max-width: 600px) {
    .mobile_nav_wrap {padding:0 20px; }
}
/* 모바일 nav */


/* start: 이용약관, 개인정보처리방침, 이메일무단수집거부 */
.privacy-con{
    height: 100vh;
    overflow: scroll;
    padding: 10px;
    font-size: 14px;
    text-align: justify;
}
.privacy-con .privacy-btn{
    padding: 0 10px;
    text-align: right;
}
.privacy-con .privacy-btn a{
    display: inline-block;
    border: 1px solid #333333;
    border-radius: 20px;
    padding: 3px 10px;
    text-decoration: none;
    color: #333333;
}
.privacy-con .privacy-tit{
    margin: 10px 0;
    font-weight: bold;
    font-size: 18px;
}
.privacy-con .privacy-sub-tit{
    margin: 10px 0 5px;
    font-weight: bold;
    font-size: 14px;
}
.privacy-con table {
    width: 100%;
    border-top: 1px solid #cccccc;
    border-collapse: collapse;
    margin: 10px 0;
}
.vertical_line_dark {
    height: 10px;
    border-right: 1px solid #212529;
    margin: 0 12px;
}
.privacy-con table tr th {
    background: #efefef;
    border-bottom: 1px solid #cccccc;
    padding: 5px 0;
    width: auto;
    white-space: nowrap;
}

.vertical_line_gray {
    height: 10px;
    border-right: 1px solid #DEE2E6;
    margin: 0 12px;
}
.privacy-con table tr td{
    border-bottom: 1px solid #cccccc;
    padding: 3px 0;
}
/* end: 이용약관, 개인정보처리방침, 이메일무단수집거부 */