body, h1, h2, p, ul, li, input {
    margin: 0;
    padding: 0;
    color: #333;
    font-family: 'Noto Sans KR', sans-serif, dotum, Arial;
}
a {
    text-decoration: none;
    color: #333;
}
li {
    list-style: none;
}
button {
    background: inherit ;
    border:none;
    box-shadow:none;
    border-radius:0;
    padding:0;
    overflow:visible;
    cursor: pointer;
}

/* wrap */
.join_wrap {
    width: 460px;
    margin: 0 auto;
    padding: 0 20px;
}
.container_wrap .container_tab .tab_menu li.on button {
    color: #333;
    background-color: #fff;
    border: 1px solid #333;
    border-bottom: none;
}
.container_wrap .container_tab .tab_menu li.off button {
    color: #999;
    background-color: #f8f8f8;
}
/*헤더*/
.header_wrap {
    text-align: center;
    padding: 100px 0 35px;
}
.header_wrap .header_logo img {
    width: 255px;
    height: auto;
}
.header_wrap .header_title {
    font-size: 30px;
}
.container_join02 {
    display: none;
}
/*회원가입 정보 - 탭메뉴*/
.container_wrap .container_tab .tab_menu {
    width: 100%;
    color: #999;
}
.container_wrap .container_tab .tab_menu::after {
    content: '';
    display: table;
    clear: both
}
.container_wrap .container_tab .tab_menu li {
    float: left;
    text-align: center;
    width: calc(50% - 2px);
    height: 63px;
    line-height: 65px;
    background-color: #f8f8f8;
}
.container_wrap .container_tab .tab_menu button{
    width: 100%;
    font-size: 16px;
    height: 63px;
}
.container_wrap .container_tab .tab_menu .tab_on button{
    border-bottom: 1px solid #333;
    color: #999;
}
.container_wrap .container_tab .tab_menu .tab_off button{
    border-bottom: 1px solid #333;
    color: #999;
}


/*회원가입 정보 - 입력*/
.container_join {
    padding: 0 9px;
}
.container_join h2 {
    margin-bottom: 15px;
}
.container_join .join_description {
    padding: 21px 0 34px;
    font-size: 14px;
}
.container_join .join_description p {
    font-weight: 300;
    color: #666;
    margin-bottom: 8px;
    letter-spacing: -0.4px;
}
.container_join .join_description a {
    text-decoration: underline;
}

.container_join h2 {
    font-size: 16px;
}
.container_join .necessary_input {
    position: relative;
    margin-bottom: 16px;
}
.container_join .necessary_input input {
    width: calc(100% - 25px);
    height: 58px;
    border: 1px solid #ccc;
    padding-left: 23px;
}
.container_join .necessary_input_check::after {
    position: absolute;
    content: '';
    display: block;
    width: 23px;
    height: 17px;
    right: 12px;
    top: 21px;
    background: url("../images/ic-checked@3x.png") no-repeat;
    background-size: 23px 17px;
}
.container_join .necessary_input input::placeholder {
    color: #ccc;
}

.container_join .select_info .select_title {
    padding-top: 30px;
}
.container_join .select_info .select_input {
    margin-bottom: 20px;
}
.container_join .select_info .select_input .container {
    margin-right: 30px;
}
.container_join .select_info .select_input .select_name {
    display: inline-block;
    width: 115px;
    font-size: 16px;
    color: #666;
}
.container_join .select_info .select_input .select_box {
    width: calc(100% - 148px);
    height: 54px;
    border: 1px solid #ccc;
    padding-left: 23px;
}
.container_join .select_info .select_input .select_box::placeholder {
    color: #ccc;
}

.container_join .agree_info label {
    color: #666;
}

.container_join .agree_info .agree_all {
    padding: 10px 0 20px;
    border-bottom: 2px solid #e0e0e0;
}
.container_join .agree_info .agree_boxs {
    padding: 35px 0 24px;
    position: relative;
}
.container_join .agree_info .agree_boxs .agree_box button {
    position: absolute;
    right: 6px;
    color: #999;
    font-size: 16px;
    background-color: #fff;
}
.container_join .agree_info .join_button {
    text-align: center;
    border: 1px solid #e1e1e1;
    background-color: #fafafa;
    font-size: 18px;
    font-weight: bold;
}
.container_join .agree_info .join_button button {
    width: 100%;
    padding: 21px 0;
    color: #9a9a9a;
}
.container_join .agree_info .join_button_check {
    text-align: center;
    border: none;
    font-size: 18px;
    font-weight: bold;
}
.container_join .agree_info .join_button_check button {
    width: 100%;
    padding: 21px 0;
    color: #333;
    background-color: #ffca00;
}

/*푸터*/
.join_footer {
    text-align: center;
    margin: 30px 0 110px;
    font-size: 13px;
    color: #999;
}




/*체크박스 css*/
.container {
    display: inline-block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: top;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    height: 20px;
    width: 20px;
    background: url("../images/ellipse-1-copy.png") no-repeat;
    background-size: 100% 100%;
}

.container input:checked ~ .checkmark {
    background: url("../images/checkbox-on.png") no-repeat;
    background-size: 100% 100%;
    border: none;
}

.error_msg {
    display: inline-block;
    padding: 5px 0 0 20px;
    font-size: 14px;
    color: #fd6152;
}


/*기업 사업자 등록 input*/
.container_join .select_info .select_input .select_box_enter {
    width: calc((100% - 145px)/4);
    height: 54px;
    border: 1px solid #ccc;
    padding-left: 23px;
}
.container_join .select_info .select_input .select_box_enter2 {
    width: calc((100% - 145px)/5);
}
.container_join .select_info .select_input .select_box_enter3 {
    width: calc((100% - 145px)/3);
}

.container_join .necessary_input select {
    width: 100%;
    height: 58px;
    border: 1px solid #ccc;
    padding: 0 10px 0 23px;
    /*-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;*/
}

.container_join .necessary_input .phone_box {
    width: calc(100% - 125px) !important;
}
.container_join .necessary_input .phone_certification {
    width: 94px;
    height: 60px;
    border: 1px solid #333;
    font-size: 15px;
    position: absolute;
    margin-left: 6px;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input:-ms-input-placeholder {
    color: #bbb;
}
.certification_complete {
    background-color: #fafafa;
    color: #999;
    border: 1px solid #ccc !important;
    display: inline-block;
    width: 92px !important;
    height: 58px !important;
    line-height: 58px;
    text-align: center;
}
.complete_num {
    background-color: #fafafa;
    color: #999;
}
.complete_time {
    position: absolute;
    right: 110px;
    top: 17px;
    color: #fd6152;
    font-size: 19px;
}
.select-margin {
    margin-right: 25px;
}
.select-margin + .container {
    margin-right: 10px;
}

/*202106 버튼추가 s*/
.log_img .log_box {
    display: block;
    margin: 0 auto 30px;
    padding: 0 9px;
}
.log_img .log_box div {
    float: left;
    background-size: 70% 80%;
    width: 140px;
    height: 40px;
    position: relative;
    margin-top: 10px;
}
.log_img .log_box::after {
    content: '';
    display: block;
    clear: both;
}
.log_img .log_box div img {
    display: inline-block;
    width: 53%;
    height: 75%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/*202106 버튼추가 e*/


/*모바일에서 width가 너무 큼 > 너비가 500px 보다 작을 때 width 조정 */
@media (max-width:500px){

    .join_wrap {width:100%;padding:0px;}
    .container_wrap {padding:20px;}
    .container_join .select_info .select_input .select_name{display: block; margin-bottom: 5px;}
    .container_join .necessary_info .select_input .select_name{display: block; margin-bottom: 5px;}
    .container_join .select_info .select_input .select_box{width: 90%;}
    .container_join .select_info .select_input .container {margin-right: 10px;}
    .container_join .join_description {font-size:13px;}
    .log_img .log_box div {width: 30%;}

}
/* //모바일에서 width가 너무 큼 > 너비가 500px 보다 작을 때 width 조정 */
