/* CSS Document */
*{margin: 0; padding:0; box-sizing:border-box;}
li {list-style:none;}
a {text-decoration:none; cursor:pointer;}
html {font-size:16px;}
body{font-family: 'Noto Sans KR', sans-serif; border: 0; padding: 0px;}


/* Page */
.endd{
    text-align: center; font-size: 20px; margin: 60px 40px; color: #535353;
}
.endd span{
    color: #0066ff; font-weight: 600; font-size: 22px; margin-bottom: 12px;
}
.end_btn{
    width: 200px; height: 60px; display: grid; align-items: center; color: #fff; background-color: #232f3d; font-size: 22px; margin: 40px auto 0; text-align: center; border-radius: 35px; cursor: pointer;
}
.popup-bg{ display: none;
    width: 100vw; height: 100vh; background-color: rgba(0, 0, 0, 0.6); position: fixed; top: 0; left: 0;
}
.endpopup{width: 480px; height: 200px; border: 1px solid #ccc; border-radius: 10px;
    text-align: center;
    background-color: #fff; padding: 32px 16px;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.endpopup h5{font-size: 18px; color: #0066ff; margin-bottom: 12px;}
.endpopup p{font-size: 16px; margin-bottom: 14px;}
.endpopup p a{color: #0a7dff;}
.endpopup .closebtn{width: 100px; height: 36px; background-color: #0066ff; font-weight: 700; color: #fff; text-align: center; align-items: center; line-height: 34px; transition: 0.3s; margin: 20px auto; cursor: pointer; border-radius: 20px;} 
.endpopup .closebtn:hover{background-color: #0a7dff;}

@media screen and (max-width:500px) {
    .endd{font-size: 16px;}
    .endd span{font-size: 19px; margin-bottom: ;}
    .end_btn{width: 180px; height: 48px; font-size: 18px;}
    .endpopup{width: 360px; height: 220px;}
}
@media screen and (max-width:400px) {
    .endd{margin: 40px 32px;}
    .endpopup{width: 300px; height: 230px; }
    .endpopup p{font-size: 15px; }
}


.header_all{width: 100%; background-image:url(../images/reg_top_bg.jpg); background-position: center; background-size: cover;}
.header_wrap{width: 1200px;  height: auto; margin: 0 auto; padding: 0px; display: block;}

.hr_01 {border: 1px solid #cccccc; margin:20px 0px; border-bottom:none;}
.hr_02 {border: 1px solid #d2dbe4; margin: 30px 0px;}
.hr_03 {border: 1px solid #f0f0f0; margin: 30px 0px;}
.hr_04 {border: 1px solid #eeeeee; margin: 50px 0px 35px;}


.body_all{width: 100%; height: auto; display: block;}
.body_wrap_join{width: 100%; height: auto; background-color: #fff;}


.join_wrap{width: 1200px; margin: 0 auto; height: auto; padding: 40px 0px; background-color: #fff; border-radius: 10px; display: block;}
.join_title{width: 100%; font-size: 32px; font-weight: 500; text-align: center; display: block;}
.join_title_bottom{width: 100%; font-size: 20px; color:#232f3d; font-weight: 500; text-align: center; display: block; margin: 10px 0px;}
.join_subtitle{width: 100%; color: #232f3d; font-size: 22px; display: block; padding-bottom: 20px;}
.join_text_01{width: 100%; font-size: 15px; text-align: right; color: #232f3d; display: block; padding: 30px 0px 0px; margin-bottom: -30px;}
.join_input_wrap{width:100%; height: auto; display: inline-block; padding: 10px 0px;}
.join_input_box_01{width: 49%; float: left; display: block;}
.join_input_box_02{width: 49%; float: right; display: block;}
.join_form_title{width: 100%; font-size: 16px; color: #000000; display: block; padding-bottom: 10px;}
.join_form_important{color: #232f3d;}
.join_form_01{width: 100%; height: 50px; background-color: #fff; border: 2px solid #e5e5e5; padding: 0px 10px; border-radius: 5px; display: flex; align-items: center;}
.join_form_01:focus {color: #232f3d; background-color: #fff; border-color: #80a4e1; outline:0; transition: 0.5s;}
.join_form_02{width: 26%; height: 50px; background-color: #fff; border: 2px solid #e5e5e5; padding: 0px 10px; border-radius: 5px; display: flex; align-items: center; float: left;}
.join_form_02:focus {color: #232f3d; background-color: #fff; border-color: #80a4e1; outline:0; transition: 0.5s;}
.phone_blank{width:4%; text-align: center; float: left; padding: 12px 0px;}
.join_form_03{width: 33%; height: 50px; background-color: #fff; border: 2px solid #e5e5e5; padding: 0px 10px; border-radius: 5px; display: flex; align-items: center; float: left;}
.join_form_03:focus {color: #232f3d; background-color: #fff; border-color: #80a4e1; outline:0; transition: 0.5s;}
.join_agree_wrap{background-color: #f0f0f0; border-radius: 5px; padding: 25px; font-size: 14px; color: #535353;}

.join_agree_check{float:right; height:30px;}
.join_agree_check input[type="checkbox"] {
    -webkit-appearance: none;
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    outline: none !important;
    border: 2px solid #232f3d;
    border-radius: 15px;
    background: #fbfbfb;
}

.join_agree_check input[type="checkbox"]::before {
    content: "\2713";
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: hidden;
    transform: scale(0) translate(-50%, -50%);
    line-height: 1;
}

.join_agree_check input[type="checkbox"]:hover {
    border-color: rgba(170, 170, 170, 0.5);
}

.join_agree_check input[type="checkbox"]:checked {
    background-color: #232f3d;
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.join_agree_check input[type="checkbox"]:checked::before {
    border-radius: 2px;
    transform: scale(1) translate(-50%, -50%)
}

/* partners check */
.partners{
    width: 100%;
    margin-top: 48px;
}
.partners > span{
    color: #0066ff;
    font-size: 18px;
    font-weight: 500;
}
.partners > span span{
    color: #0066ff;
    font-size: 15px;
}
.partners .track-title{
    margin-top: 32px;
}
.partners .track{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.partners .track div p{
    margin-bottom: 8px;
}
.business{color:rgb(59, 181, 57); font-size: 16px; font-weight: 700;}
.technologys{color: rgba(244, 109, 186, 1); font-size: 16px; font-weight: 700;}
.security{color: rgb(67, 177, 225); font-size: 16px; font-weight: 700;}
/*  */


.join_btn{width: 200px; height: 60px; display: grid; align-items: center; color: #fff; background-color: #232f3d; font-size: 22px; margin: 40px auto 0px; text-align: center; border-radius: 35px; cursor: pointer;}
.join_btn:hover{background-color: #232f3d; transition: 0.5s;}




.question {padding-bottom:10px; font-weight: 500;}
.answer {padding-bottom:20px; line-height: 30px; padding-left:20px;}
.answer .answer1 {margin-left:0px !important;}



.title_box_wrap {overflow:hidden; cursor: pointer;}
.title_box {border:1px solid #232f3d; padding:10px 15px; margin-bottom: 15px;}
.title_box_text {font-size: 20px; color:#232f3d; float:left;}

.term_txt{padding: 10px 0px 40px;}
.form_txt{font-size:14px; padding-bottom: 15px;}

.inform_wrap{width:100%; height:auto; display: inline-block; background-color: #fff; border: 1px solid #888;}
.inform_table{width: 25%; height: auto;  border-radius: 5px; float: left;}
.inform_top{width: 100%; height: auto; background-color: #888; color: #fff; padding: 10px; text-align: center;}
.inform_bottom{width: 100%; background-color: #fff; padding:10px; font-size: 14px; text-align: center; height: 120px; overflow-y: scroll; resize: none;}
.inform_bottom::-webkit-scrollbar{width: 6px;}
.inform_bottom::-webkit-scrollbar-thumb{background-color: #d6d6d6; border-radius: 10px; border: 10px solid #d6d6d6;}
.inform_bottom::-webkit-scrollbar-track{ background-color:none; border-radius: 10px; box-shadow: inset 0px 0px 5px #f4f4f4;}

.terms {padding: 20px; background-color:#f2f2f2; margin-top:15px; margin-bottom: 30px; display: none;}
.term_answer_wrap{margin-left: 20px; float: right;}
.radio_agree{margin-right:10px;}
.form-group2{font-weight: 500; display: inline-block;}

.view {display: block;}

table {
width: 100%;
border: 1px solid #444444;
border-collapse: collapse;
}
th, td {
border: 1px solid #444444;
padding: 10px;
}

table .color1 {
    background: #f1e3f9;
}
table .color2 {
    background: #dfeafc;
}
table .color3 {
    background: #e6f7f5;
}

.footer_all{width: 100%; height: auto; display: block; background-color: #1b1b1b;}
.footer_wrap{width: 1200px; height: auto; margin: 0 auto; display: flex; align-items: center; padding: 25px 0px;}
.footer_box_01{width: 80%; height: auto; float:left; color: #a7a7a7; font-size: 13px;}
.footer_box_02{width: 20%; height: auto; float:right; display: inline-block; text-align: right; font-size: 13px;}
.footer_menu{margin-left: 50px; text-decoration: none; color: #a7a7a7;}




@media(max-width:1199px) {
.header_all{width: 100%; padding: 0px 0px;}
.header_wrap{width: 100%;  height: auto; margin: 0 auto; padding: 0px 15px; display: block;}

    
.hr_02{border: 1px solid #d2dbe4; margin: 30px 0px;}
.hr_03{border: 1px solid #f0f0f0; margin: 30px 0px;}
.hr_04{border: 1px solid #eeeeee; margin: 50px 0px 35px;}


.body_all{width: 100%; height: auto; display: block;}
/* .body_wrap_main{width: 100%; height: calc(100vh - 69px); margin: 0 auto; background-image: url(http://jtmgtest.cafe24.com/temp/images/main_bg_00.jpg); background-position: left; background-repeat: no-repeat; background-size: cover; margin-top: -100px;} */
.body_wrap_login{width: 100%; height: calc(100vh - 169px); margin: 0 auto; background: linear-gradient(to right, #0a7dff, #0066ff);}
.body_wrap_join{width: 100%; height: auto; background-color: #fff;}
.body_wrap_dashboard{width: 100%; height: auto; background-color: #fff;}
.body_wrap_notice{width: 100%; height: auto; background-color: #fff;}
.body_wrap_faq{width: 100%; height: auto; background-color: #fff;}


.join_wrap{width: 100%; margin: 0 auto; height: auto; padding: 80px 15px; background-color: #fff; border-radius: 10px; display: block;}
.join_title{width: 100%; font-size: 32px; font-weight: 500; text-align: center; display: block;}
.join_title_bottom{width: 100%; font-size: 20px; color:#232f3d; font-weight: 500; text-align: center; display: block; margin: 10px 0px;}
.join_subtitle{width: 100%; color: #232f3d; font-size: 22px; display: block; padding-bottom: 20px;}
.join_text_01{width: 100%; font-size: 15px; text-align: right; color: #232f3d; display: block; padding: 30px 0px 0px; margin-bottom: -30px;}
.join_input_wrap{width:100%; height: auto; display: inline-block; padding: 10px 0px;}
.join_input_box_01{width: 49%; float: left; display: block;}
.join_input_box_02{width: 49%; float: right; display: block;}
.join_form_title{width: 100%; font-size: 18px; color: #000000; display: block; padding-bottom: 10px;}
.join_form_important{color: #232f3d;}
.join_form_01{width: 100%; height: 50px; background-color: #fff; border: 2px solid #e5e5e5; padding: 0px 10px; border-radius: 5px; display: flex; align-items: center;}
.join_form_01:focus {color: #232f3d; background-color: #fff; border-color: #80a4e1; outline:0; transition: 0.5s;}
.join_form_02{width: 26%; height: 50px; background-color: #fff; border: 2px solid #e5e5e5; padding: 0px 10px; border-radius: 5px; display: flex; align-items: center; float: left;}
.join_form_02:focus {color: #232f3d; background-color: #fff; border-color: #80a4e1; outline:0; transition: 0.5s;}
.phone_blank{width:4%; text-align: center; float: left; padding: 12px 0px;}
.join_form_03{width: 33%; height: 50px; background-color: #fff; border: 2px solid #e5e5e5; padding: 0px 10px; border-radius: 5px; display: flex; align-items: center; float: left;}
.join_form_03:focus {color: #232f3d; background-color: #fff; border-color: #80a4e1; outline:0; transition: 0.5s;}
.join_agree_wrap{background-color: #f0f0f0; border-radius: 5px; padding: 25px; font-size: 14px; color: #535353;}
.join_agree_check{float:right;}
.join_btn{width: 200px; height: 60px; display: grid; align-items: center; color: #fff; background-color: #5327af; font-size: 22px; margin: 40px auto 0; text-align: center; border-radius: 35px; cursor: pointer;}
.join_btn:hover{background-color: #232f3d; transition: 0.5s;}


.footer_all{width: 100%; height: auto; display: block; background-color: #1b1b1b;}
.footer_wrap{width: 100%; height: auto; margin: 0 auto; display: flex; align-items: center; padding: 25px 0px;}
.footer_box_01{width: 80%; height: auto; float:left; color: #a7a7a7; font-size: 13px;}
.footer_box_02{width: 20%; height: auto; float:right; display: inline-block; text-align: right; font-size: 13px;}
.footer_menu{margin-left: 50px; text-decoration: none; color: #a7a7a7;}

.partners{width: 100%;}


} 


/* Mobile */
@media(max-width:768px) {
.header_all{width: 100%; padding: 0px 0px;}
.header_wrap{width: 100%;  height: auto; margin: 0 auto; padding: 0px 15px; display: block;}
.header_wrap img{width: 100%;}
    
    
.join_wrap{width: 100%; margin: 0 auto; height: auto; padding: 10px 15px 40px 15px; background-color: #fff; border-radius: 10px; display: block;}
.join_title{width: 100%; font-size: 32px; font-weight: 500; text-align: center; display: block;}
.join_title_bottom{width: 100%; font-size: 20px; color:#232f3d; font-weight: 500; text-align: center; display: block; margin: 10px 0px;}
.join_subtitle{width: 100%; color: #232f3d; font-size: 22px; display: block; padding-bottom: 15px;}
.join_text_01{width: 100%; font-size: 15px; text-align: right; color: #232f3d; display: block; padding: 30px 0px 0px; margin-bottom: -30px;}
.join_input_wrap{width:100%; height: auto; display: inline-block; padding: 10px 0px;}
.join_input_box_01{width: 100%; margin-bottom:20px; float: left; display: block;}
.join_input_box_02{width: 100%; float: right; display: block;}
.join_form_title{width: 100%; font-size: 18px; color: #000000; display: block; padding-bottom: 10px;}
.join_form_important{color: #232f3d;}
.join_form_01{width: 100%; height: 50px; background-color: #fff; border: 2px solid #e5e5e5; padding: 0px 10px; border-radius: 5px; display: flex; align-items: center;}
.join_form_01:focus {color: #232f3d; background-color: #fff; border-color: #80a4e1; outline:0; transition: 0.5s;}
.join_form_02{width: 26%; height: 50px; background-color: #fff; border: 2px solid #e5e5e5; padding: 0px 10px; border-radius: 5px; display: flex; align-items: center; float: left;}
.join_form_02:focus {color: #232f3d; background-color: #fff; border-color: #80a4e1; outline:0; transition: 0.5s;}
.phone_blank{width:4%; text-align: center; float: left; padding: 12px 0px;}
.join_form_03{width: 33%; height: 50px; background-color: #fff; border: 2px solid #e5e5e5; padding: 0px 10px; border-radius: 5px; display: flex; align-items: center; float: left;}
.join_form_03:focus {color: #232f3d; background-color: #fff; border-color: #80a4e1; outline:0; transition: 0.5s;}
.join_agree_wrap{background-color: #f0f0f0; border-radius: 5px; padding: 25px; font-size: 14px; color: #535353;}
.join_agree_check{float:right;}
.join_btn{width: 200px; height: 60px; display: grid; align-items: center; color: #fff; background-color: #232f3d; font-size: 22px; margin: 40px auto 0; text-align: center; border-radius: 35px; cursor: pointer;}
.join_btn:hover{background-color: #232f3d; transition: 0.5s;}

.footer_all{width: 100%; height: auto; display: block; background-color: #1b1b1b;}
.footer_wrap{width: 100%; height: auto; margin: 0 auto; display: flex; align-items: center; padding: 25px 0px;}
.footer_box_01{width: 80%; height: auto; float:left; color: #a7a7a7; font-size: 13px; padding:0px 15px;}
.footer_menu{margin-left: 50px; text-decoration: none; color: #a7a7a7;}


.inform_table{width: 100%; height: auto;  border-radius: 5px; float: left;}
.inform_bottom{width: 100%; background-color: #fff; padding:10px; font-size: 13px; text-align: center; height: auto;}

.term_answer_wrap{width:100%; margin-left: 20px; padding-top:10px; float: right; text-align: center;}

.title_box_wrap {overflow:hidden;}
.title_box {border:1px solid #232f3d; padding:10px 15px; margin-bottom: 15px;}
.title_box_text {font-size: 18px; color:#232f3d; padding-top:2px; float:left; cursor: pointer;}

}

@media(max-width:640px) {
.partners{margin-bottom: 0;}
.partners .track{display: block;}
.partners .track div{margin-bottom: 20px;}
}