/*** content  ***/
#content .tit {
    font-size: 1.9rem;
    text-align: center;
    margin-top: 50px;
    color: #666
}

/** join_box **/
#content .join_box {
    width: 600px;
    margin: 0 auto;
    box-shadow: 0px 1px 3px 0px #D2D2D2;
    margin-top: 30px;
    padding: 50px;
    font-size: 1.6rem
}

/* join_nav */
#content .join_box .join_nav {
    font-size: 0;
    margin-bottom: 50px
}

#content .join_box .join_nav li {
    display: inline-block;
    font-size: 1.6rem;
    color: #888;
    border-bottom: 2px solid transparent;
    text-align: center
}

#content .join_box .join_nav li a {
    font-size: 1rem;
    display: inline-block;
    width: 120px;
    height: 42px;
    line-height: 42px;
}

#content .join_box .join_nav li.on {
    color: #444;
    border-color: #3672b0
}

/* join_content */
#content .join_box .join_content .group {
    margin-top: 20px;
    font-size: 1.4rem
}

#content .join_box .join_content .group label {
    display: block;
    color: #3672b0;
    margin-bottom: 5px;
    font-size: 1rem
}

#content .join_box .join_content .group input {
    font-size: 1rem;
    border: 0 none;
    border-bottom: 1px solid #e7e7e7;
    height: 40px;
    width: 100%;
    background: none
}

#content .join_box .join_content .group select {
    float: none;
}

/* input태그 선택했을때 */
#content .join_box .join_content .group input.active {
    border-color: #3672b0;
}

#content .join_box .join_content .group .id_box input {
    font-size: 1rem;
    width: 43%
}

#content .join_box .join_content .group .id_box .at {
    padding: 0 9px;
    font-size: 0.9rem;
}

#content .join_box .join_content .group select {
    font-size: 1rem;
    width: 43%;
    height: 40px;
    background: none;
    border: 0 none;
    border-bottom: 1px solid #e7e7e7
}

#content .join_box .join_content .group input.input {
    display: none
}

/* 비밀번호 조건이 안맞을때 */
#content .join_box .join_content .group .password_error {
    color: red;
    margin-top: 5px;
    line-height: 1.3;
    font-size: 1rem;
    display: none
}

/* 비밀번호확인 일치하지 않을때 */
#content .join_box .join_content .group .password_confirm_error {
    color: red;
    margin-top: 5px;
    font-size: 1.2rem;
    display: none
}

#content .join_box .join_content .group .subscription {
    width: 100%;
    height: 40px;
    background: none;
    border: 0 none;
    border-bottom: 1px solid #e7e7e7;
    font-size: 1rem
}

#content .join_box .join_content .join_con {
    border: 1px solid #ddd;
    padding: 25px;
    font-size: 1rem;
    color: #888
}

#content .join_box .join_content .join_con .entity {
    line-height: 1.3
}

#content .join_box .join_content .join_con .case {
    color: #3672b0;
}

#content .join_box .join_content .join_con .title {
    font-size: 1rem;
    color: #3672b0;
    margin-top: 15px;
    font-weight: 500;
    margin-bottom: 3px
}

#content .join_box .join_content .join_con .desc {
    line-height: 1.3
}

#content .join_box .join_content .agreement {
    margin: 30px 0;
}

#content .join_box .join_content .agreement .all_check {
    font-size: 1rem;
    font-weight: 700
}

#content .join_box .join_content .agreement .choice {
    font-size: 0;
    margin-top: 15px
}

#content .join_box .join_content .agreement .choice li {
    display: inline-block;
    width: 50%;
    font-size: 1rem
}

#content .join_box .join_content .agreement .choice .popup {
    font-size: 0.7rem;
    color: #888;
    transition: all 0.3s
}

#content .join_box .join_content .agreement .choice .popup:hover {
    color: #3672b0;
}

#content .join_box .join_content .button input {
    font-size: 1.2rem;
    width: 100%;
    background: #3672b0;
    color: #fff;
    height: 50px;
    border: 1px solid #3672b0;
    box-sizing: border-box;
    border-radius: 5px;
    transition: all 0.3s
}

#content .join_box .join_content .button input:hover {
    background: none;
    color: #444
}

/* 동의 체크박스 */
.check {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.small {
    padding-left: 28px
}

/* Hide the browser's default checkbox */
.check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #ddd;
    box-sizing: border-box
}

.small .checkmark {
    width: 18px;
    height: 18px
}

/* When the checkbox is checked, add a blue background */
.check input:checked ~ .checkmark {
    background-color: #3672b0;
    border: 0 none
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check .checkmark:after {
    left: 10px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: 1px solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.small .checkmark:after {
    top: 3px;
    left: 7px
}

.check .check_desc {
    font-weight: normal;
    font-size: 0.7rem;
    display: inline-block;
    padding-top: 5px
}
