@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

/* 공통 */
body,.wrapper,h1,h2,h3,h4,h5,h6,p,blockquote,pre,dl,dd,ol,ul,fieldset,legend,figure,menu,tr, td, button{
    margin:0;
    padding:0;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 300;
}
ul li{
    list-style: none;
}

a{
    text-decoration: none;
}
.wrapper{
    width: 100%;
    height: 100%;
}
.m_hide{
    display: none;
}
/* 헤더 */
/* 헤더 높이 35+80=115 */
.main_wrap{
    width: 100%;
}

.skip{
    display: none;
}
.header_wrap{
    background-color: white;
    z-index: 99;
    top: 0;
    position: fixed;
    width: 100%
}
.tnb_bar{
    pointer-events: none;
    transition: right 0.5s;
    z-index: 2;
    top: 50px;
    right: -80%;
    height: 100%;
    width: 80%;
    position: fixed;
}
.tnb_bar.active{
    right: 0;
}
.tnb_menu{
    pointer-events: all;
    display: flex;
}
.tnb_menu li a{
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    color: black;
}
.join_btn,.login_btn{
    display: none;
}
.join_btn a,.login_btn a{
    padding: 0 20px;
    text-align: center;
    
    font-size: 16px;
    display: block;
}
.member_name{
    display: none;
    padding: 0 20px;
}
.member_name a{
    text-decoration: underline;
}
.login_form{
    box-sizing: border-box;
    padding: 0 20px;
    width: 100%;
    
}
.login_title{
    font-size: 16px;
    margin-bottom: 10px;
}
.userid{
    font-size: 16px;
    box-sizing: border-box;
    padding: 5px;
    margin-left: 1px;
    width: 100%;
    height: 30px;
    margin-bottom: 10px;
}
.pass{
    font-size: 16px;
    box-sizing: border-box;
    padding: 5px;
    margin-left: 1px;
    width: 100%;
    height: 30px;
    margin-bottom: 5px;
}
.login_flex_wrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.login_flex_wrap a, .login_flex_wrap label{
    
    font-size: 16px;
}
.loginpage_btn{
    background-color: rgb(18, 27, 56);
    border: none;
    color: white;
    margin: 5px 0;
    width: 100%;
    display: block;
    height: 30px;
}
.header{
    /* border-bottom: 1px solid black; */
    width: 100%;
    margin: 0 auto;
    display: flex;
}
.h_logo{
    font-size: 0;
    padding: 10px 0;
    width: 100%;
    height: 50px;
}
.h_logo a{
    height: 100%;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    /* height: 80px; */
}
.h_logo a img{
    height: 70%;
}
.gnb_bar{
    overflow-y: scroll;
    transition: right 0.5s;
    border-left: 1px solid rgb(216, 216, 216);
    right: -80%;
    /* top: 106px; */
    padding-top: 106px;
    position: fixed;
    background-color: white;
    height: 100%;
    width: 80%;
}
.gnb_bar.active{
    right: 0;
}
.gnb_menu{
    line-height: 40px;
}
.gnb_menu  li a{
    color: black;
    font-size: 16px;
    font-weight: 400;
    padding: 0 30px;
    display: block;
    border-bottom: 1px solid rgb(216, 216, 216);
}
.home{
    z-index: 2;
    top: 10px;
    left: 15px;
    position: fixed;
    height: 45px;
    width: 45px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.home a{
    font-size: 24px;
    color: rgb(18, 27, 56);
    display: block;
}
.ham_menu{
    padding: 7.5px;
    z-index: 2;
    top: 10px;
    right: 15px;
    position: fixed;
    height: 45px;
    width: 45px;
    box-sizing: border-box;

}
.ham{
    transition: all 0.5s;
    width: 70%;
    height: 3px;
    background-color: rgb(18, 27, 56);
    left: 50%;
    position: absolute;
    transform: translate(-50%);
}
.ham_1{
    top: 10px;
}
.ham_2{
    bottom: calc(50% - 1.5px);
}
.ham_3{
    bottom: 10px;
}
.snb_menu{
    
    display: none;
}
.snb_menu >  li > a{
    
    font-size: 16px;
    font-weight: 300;
    color: black;
}
.ham_menu.active .ham_1{
    left: 15%;
    top: calc(50% - 1.5px);
    transform: rotate(45deg);
    
}
.ham_menu.active .ham_2{
    opacity: 0;
}
.ham_menu.active .ham_3{
    left: 15%;
    bottom: calc(50% - 1.5px);
    transform: rotate(-45deg);
    
}
.footer_wrap{
    /* position: absolute; */
    /* margin-top: 100px; */
    background-color: rgb(192, 192, 192);
    text-align: center;
    width: 100%;
    padding-bottom: 150px;
}
.f_tnb_bar{
    width: 100%;
}
.f_tnb_menu{
    text-align: center;
    width: 100%;
}
.f_tnb_menu > li:first-child{
    border-top: 1px solid gray;
}
.f_tnb_menu > li{
    line-height: 45px;
    border-bottom: 1px solid gray;
    background-color: white;
}
.f_tnb_menu > li a{
    color: gray;
}
.f_logo{
    line-height: 120px;
}
.f_logo img{
    width: 200px;
}
.f_script{
    color: #555;
    padding: 0 50px;
}


.top_btn{
    transition: all 0.5s;
    visibility: hidden;
    /* display: none; */
    opacity: 0;
    cursor: pointer;
    text-align: center;
    position: fixed;
    right: 10px;
    bottom: 100px;
    border: 1px solid #ccc;
    background-color: rgb(18, 27, 56);
}

.top_btn.show{
    visibility: visible;
    transition: all 0.5s;
    opacity: 1;
    display: block;
}
.top_btn i{
    
    font-size: 18px;
    color: #f1f1f1;
    line-height: 50px;
    width: 50px;
}
.back_btn{
    color: #f1f1f1;
    transition: all 0.5s;
    /* visibility: hidden; */
    /* display: none; */
    opacity: 1;
    cursor: pointer;
    text-align: center;
    position: fixed;
    right: 10px;
    bottom: 110px;
    border: 1px solid #ccc;
    background-color: rgb(18, 27, 56);
}
.back_btn.show{
    bottom: 160px;
}
.back_btn i{
    
    font-size: 18px;
    color: #f1f1f1;
    line-height: 50px;
    width: 50px;
}
.mobi_nav{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
.mobi_menu{background-color: white;
    border-top: 1px solid gray;
    display: flex;
    background-color: rgb(18, 27, 56);
    justify-content: space-between;
}
.mobi_li{
    color: white;
    font-size: 18px;
    width: 25%;
    text-align: center;
    
    border-right: 1px solid gray;
    box-sizing: border-box;
}
.mobi_li:last-child{
    border-right: none;
}
.mobi_li > a{
    font-size: 16px;
    width: 100%;
    display: flex;
    padding: 20px 0;
    text-align: center;
    flex-direction: column;
    color: white;

}
.mobi_li > a > span{
    margin-top: 10px;
    font-weight: bold;
}