/* 회원가입 */

.joinMenuArt {
  width: 60%;
  margin: 40px auto;
  display: flex;
  justify-content: center;
}

.joinMenuArt > ul {
  width: 100%;
  display: flex;
}
.joinMenuArt > ul > li {
  width: 25%;
  text-align: center;
  background-color: var(--anColor);
  color: var(--txtPColor);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--whiteColor);
}
.joinMenuArt > ul > li.on {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.joinMenuArt > ul > li > p {
  cursor: default;
}
.joinMenuArt > ul > li > p:first-child {
  font-size: 13px;
}
.joinMenuArt > ul > li > p:last-child {
  font-size: 15px;
}

.joinPsBox {
  width: fit-content;
  margin: 20px auto 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.joinPsTxt {
  font-size: 15px;
  color: var(--txt9Color);
  font-weight: 500;
  line-height: 28px;
}
.joinPsTxt > p::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--txt9Color);
  border-radius: 10px;
  margin: 0 5px 0 0;
}
.joinPsTxt > p:last-child::before {
  display: none;
}

/* 회원가입 내용 */
.joinArt {
  width: 70%;
  min-height: 70vh;
  display: none;
  flex-direction: column;
  margin: 20px auto;
}
.joinArt.on {
  display: flex;
}

.joinTit {
  font-size: 17px;
  color: var(--txtColor);
  font-weight: 700;
}

/* 회원가입 및 유형선택 */
.joinArt1 {
  gap: 60px;
}

.joinArt1 .joinTit {
  text-align: center;
}

.joinTypeBox {
  display: flex;
  justify-content: center;
}

.joinCheckBox {
  display: flex;
  gap: 30px;
}

.joinCheckBox > label {
  width: 300px;
  height: 360px;
  background-color: var(--whiteColor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid var(--whiteColor);
  gap: 15px;
}

.joinCheckBox input[type=radio] {
  display: none;
}
.joinCheckBox input[type=radio]:checked + label {
  border: 2px solid var(--checkColor);
}

.joinType {
  font-size: 19px;
  color: var(--txtColor);
  font-weight: 700;
}
.joinSubTxt {
  font-size: 15px;
  color: var(--txt9Color);
}

.joinTypeImg {
  width: 150px;
  height: 150px;
}

.pageBottomBtns {
  justify-content: center;
  margin: 60px 0;
}
.pageBottomBtns input[type=button] + label {
  width: 140px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--borderLine);
  border-radius: 50px;
  font-size: 15px;
  cursor: pointer;
}
.pageBottomBtns input[type=button] {
  display: none;
}


.joinNextBtn:disabled + label {
  background-color: var(--backGColor);
  color: var(--txt6Color);
  cursor: default !important;
}
.joinNextBtn + label {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

/* 본인인증 */
.joinArt2 {
  gap: 20px;
}

.joinTitBox {
  width: 80%;
  margin: 0 auto 20px;
  line-height: 33px;
}
.joinTitBox .joinSubTxt {
  display: flex;
  align-items: center;
  gap: 8px;
}
.joinTitBox .joinSubTxt::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--txt9Color);
  border-radius: 10px;
  flex-shrink: 0;
}

.confirmBox {
  width: 300px;
  height: 360px;
  background-color: var(--whiteColor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  border: 2px solid var(--whiteColor);
  gap: 15px;
  padding: 20px;
  text-align: center;
}
.confirmBox .joinSubTxt {
  word-break: keep-all;
  line-height: 20px;
  height: 65px;
  font-size: 13px;
}

.confirmIcon {
  width: 70px;
  height: 70px;
}

.confirmBtn {
  width: 140px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mainColor);
  font-size: 15px;
  color: var(--whiteColor);
  cursor: pointer;
}

/* 약관 동의 */
.clauseBox {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.clauseBox:nth-of-type(2) {
  margin-top: 60px;
}

.clauseBox:nth-of-type(3) {
  margin-top: 60px;
}

.clauseBox > textarea {
  width: 100%;
  height: 300px;
  background-color: var(--borderBack);
  border: 1px solid var(--borderLine);
  padding: 10px;
  line-height: 22px;
  font-size: 13px;
  cursor: default;
  color: var(--txt6Color);
}

.clauseBtns {
  display: flex;
  align-items: center;
  gap: 20px;
}
.clauseBtn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  color: var(--txtColor);
}
.clauseBtn input[type=radio] {
  cursor: pointer;
}
.clauseBtn label {
  cursor: pointer;
}

.clauseBtnBox {
  display: flex;
  align-items: center;
  gap: 30px
}

.clauseBtnBox > .joinSubTxt {
  display: flex;
  align-items: center;
  gap: 5px;
}

.clauseBtnBox > .joinSubTxt::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--txt9Color);
  border-radius: 10px;
}

.clauseContext {
  width: 100%;
  height: 300px;
  background-color: var(--borderBack);
  border: 1px solid var(--borderLine);
  padding: 10px;
  font-size: 13px;
  line-height: 22px;
  cursor: default;
  color: var(--txt6Color);
  overflow-y: auto;
}
.clauseContext > table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  word-break: keep-all;
}
.clauseContext > table th {
  border: 1px solid var(--borderLine);
}
.clauseContext > table td {
  border: 1px solid var(--borderLine);
}

.clauseContext::-webkit-scrollbar {
  background-color: #d6d6d6;
  width: 6px;
}
.clauseContext::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 50px;
}

/* 정보입력 */
.joinArt4 {
  gap: 20px;
}

.boardTable {
  width: 80%;
  margin: 0 auto;
}

.clauseInfoTable > table thead th {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: none;
  color: var(--txtColor);
}
.clauseInfoTable > table thead th:first-child {
  border-bottom: none;
}
.clauseInfoTable > table tbody td:first-child {
  border-bottom: none;
}
.clauseInfoTable > table tbody td {
  padding: 10px;
  height: 55px;
}

.clauseInfoTable > table tbody td:first-child .clauseInput {
  width: 210px;
}

.clauseInput {
  background-color: var(--backColor);
  border: 1px solid var(--borderLine);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txtColor);
  font-weight: 400;
  padding: 0 10px;
}

.phoneNumBox {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 10px;
}

.infoBox {
  margin: 0 0 40px 0;
}

/* 기본 정보 입력 */
.InfoTable > table thead th {
  height: 70px;
  border-bottom: none;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.InfoTable > table thead th:last-child {
  border-bottom: 1px solid var(--tableLine);
}

.InfoTable > table tbody td {
  height: 70px;
  border-bottom: none;
  padding: 10px;
}
.InfoTable > table tbody td:last-child {
  border-bottom: 1px solid var(--tableLine);
}

.infoTableBox {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.infoTableBox > div {
  display: flex;
  gap: 5px;
}
.infoTableBox > div input {
  padding: 5px;
  height: 30px;
  font-size: 13px;
}

/* 아이디 */
.idBox input[type=text] {
  border: 1px solid var(--borderLine);
}
.idBox input[type=button] {
  background-color: var(--subColor);
  border: 1px solid var(--borderLine);
  width: 80px;
  height: 30px;
  border-radius: 5px;
  color: var(--txtColor);
  font-weight: 500;
  cursor: pointer;
}

.idBox input[type=button]:disabled {
  background-color: var(--backGColor);
  cursor: default;
}

/* 비밀번호 */
.pwBox {
  display: flex;
  align-items: center;
  gap: 0 !important;
}
.pwBox > input {
  width: 170px;
  height: 30px;
  border-top: 1px solid var(--borderLine);
  border-left: 1px solid var(--borderLine);
  border-bottom: 1px solid var(--borderLine);
  border-right: none;
}
.eyeBox {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--borderLine);
  border-bottom: 1px solid var(--borderLine);
  border-right: 1px solid var(--borderLine);
  color: var(--txtGColor);
  cursor: pointer;
  font-size: 15px;
}
.eyeBox .xi-eye {
  display: none;
}

/* 이메일 */
.emailBox {
  flex-direction: row;
  align-items: center;
  height: 100%;
}
.emailBox > input {
  width: 150px;
  height: 30px;
  border: 1px solid var(--borderLine);
  padding: 0 5px;
}
.at {
  color: var(--txt6Color);
}
.choiceEmail {
  width: 120px;
  height: 30px;
  border: 1px solid var(--borderLine);
  color: var(--txtColor);
  font-weight: 500;
}
.directEmail:read-only {
  background-color: var(--backGColor);
}

/* 14세 미만 가입 */
.ageTable > table thead th {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-right: none;
  height: 55px;
  word-break: keep-all;
  padding: 0 5px;
}

.ageTable > table thead th:first-child {
  border-bottom: none;
}

.ageTable > table tbody td {
  height: 55px;
  padding: 10px;
}
.ageTable > table tbody td:first-child {
  border-bottom: none;
}

.ageTable > table .infoTableBox {
  height: 100%;
}
.ageTable > table tbody input[type=text] {
  border: 1px solid var(--borderLine);
  height: 100%;
}

.agePerName > input[type=text] {
  width: 190px;
  max-width: 100%;
  padding: 0 5px;
}

.ageNumBox {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.ageNumBox input[type=text] {
  text-align: center;
  width: 50px;
}


/* 문구 */
.infoCheckBox {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--txt9Color);
}

.idCheckNone, .pwCheckNot, .pwsCheckTxt {
  color: var(--warningColor);
}
.idCheckOk, .pwsCheckOk {
  color: var(--txtBColor);
}

/* 초기 텍스트 none */
.idCheckNone, .idCheckOk, .pwCheckNot, .pwsCheckOk {
  display: none;
}

/* 수신 */
.msBox  > div {
  gap: 10px;
  align-items: center;
}
.msPopup {
  color: var(--warningColor);
  font-weight: 700;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}
.msPopup:hover {
  color: #ff8819;
}

.msCheckBox {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--txtColor);
  font-weight: 500;
}

.msBox .infoCheckBox {
  font-size: 12px;
}
.msCheckBox input[type=radio] {
  cursor: pointer;
}
.msCheckBox label {
  font-size: 13px;
  cursor: pointer;
}

/* 팝업 */
.popupBox {
  display: none;
}

.popupContent {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.popPersonalBox {
  max-width: 600px;
  max-height: 300px;
  overflow-y: auto;
  width: 100%;
  background-color: var(--backColor);
  border: 1px solid var(--borderLine);
  padding: 10px;
  font-size: 13px;
  color: var(--titColor);
  font-weight: 400;
}

/* 가입완료 */
.joinArt5 {
  gap: 60px;
  align-items: center;
  margin: 80px auto 0;
}

.joinCompletion {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.joinCompletion i {
  font-size: 60px;
  margin: 0 0 10px 0;
}

.joinTxt {
  font-size: 19px;
  line-height: 30px;
  font-weight: 700;
  color: var(--txtColor);
}


.loginGoBtn {
  width: 140px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mainColor);
  border-radius: 50px;
  color: var(--whiteColor);
  font-size: 14px;
}

/* 근무기관 */
.organBox {
  height: 100%;
  flex-direction: row;
  align-items: center;
}

.organBox input[type=text] {
  width: 300px;
  border: 1px solid var(--borderLine);
  cursor: default;
}

.organBox input[type=button] {
  width: 100px;
  height: 30px;
  border-radius: 5px;
  background-color: var(--subColor);
  border: 1px solid var(--borderLine);
  cursor: pointer;
  color: var(--txtColor);
  font-weight: 500;
}

/* 팝업 */
.organSearchPopup {
  width: 40%;
  max-width: 800px;
}

.organSearchBox {
  padding: 0 20px;
  margin: 0 0 25px 0;
}

.organSearchForm {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.organSearchBox input[type=text] {
  width: 80%;
  height: 35px;
  padding: 0 10px;
  border: 1px solid var(--borderLine);
}
.organSearchBox input[type=button] {
  width: 20%;
  height: 35px;
  background-color: var(--subColor);
  border: 2px solid var(--borderLine);
  border-radius: 5px;
  cursor: pointer;
}

.organSearchPopup .popupContents {
  padding: 0;
}

.organSearchContents {
  background-color: var(--anColor);
  border-radius: 0 0 10px 10px;
  padding: 20px;
  display: none;
}

.organPsTxt {
  text-align: center;
  font-size: 14px;
}

.organContents {
  margin: 15px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 400px;
  overflow-y: auto;
}
.organContents::-webkit-scrollbar {
  background-color: #d6d6d6;
  width: 8px;
}
.organContents::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 50px;
}


.organContentBox {
  background-color: var(--whiteColor);
  padding: 15px;
  border: 1px solid var(--borderLine);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.organContentBox input[type=radio] {
  display: none;
}

.organTxt {
  font-size: 15px;
}
.organAddressTxt {
  font-size: 14px;
  color: var(--txt6Color);
}

.popupBtns {
  justify-content: center;
  margin: 20px 0 0 0;
}

.registerBtn {
  width: 100px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pageReviewBox {
  width: 1300px;
  margin: 50px auto 60px;
}

/* 14세미만 회원가입 체크 */
.joinAgeChecks {
  display: flex;
  align-items: center;
  justify-content: center;
}
.joinAgeCheck {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--txt6Color);
  font-weight: 500;
}
.joinAgeCheck input[type=checkbox] {
  display: none;
}
.joinAgeCheck input[type=checkbox] + label {
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}
.joinAgeCheck input[type=checkbox] + label::before {
  content: '';
  display: flex;
  width: 20px;
  height: 20px;
  background-image: url(/img/icon/checkOff.png);
  background-size: contain; 
}
.joinAgeCheck input[type=checkbox]:checked + label::before {
  background-image: url(/img/icon/checkOn.png);
}
.joinAgeCheck input[type=checkbox]:checked + label {
  color: var(--mainColor);
  font-weight: 600;
}

.agePsTxt {
  font-size: 14px;
  color: var(--warningColor);
  font-weight: 500;
  line-height: 18px;
}


@media screen and (max-width: 1300px) { 
  .pageReviewBox {
    width: 90%;
  }
}

/* 반응형 */
@media screen and (max-width: 1440px) {
  .joinMenuArt {
    width: 70%;
  }
  .joinMenuArt > ul > li {
    gap: 7px;
  }
  .joinMenuArt > ul > li > p:first-child {
    font-size: 12px;
  }
  .joinMenuArt > ul > li > p:last-child {
    font-size: 14px;
  }

  .joinTit {
    font-size: 16px;
  }
  .joinType {
    font-size: 16px;
  }
  .joinSubTxt {
    font-size: 14px;
  }
  .joinCheckBox > label {
    width: 280px;
    height: 340px;
    gap: 10px;
  }
  .pageBottomBtns input[type=button] + label {
    width: 130px;
  }

  .joinTitBox {
    width: 95%;
  }

  /* 본인인증 */
  .confirmBox .joinSubTxt {
    font-size: 13px;
  }
  .confirmBtn {
    width: 120px;
    height: 35px;
    font-size: 13px;
  }

  /* 약관동의 */
  .clauseBox {
    width: 100%;
  }

  /* 정보입력 */
  .boardTable {
    width: 95%;
  }

}

@media screen and (max-width: 1200px) {
  .msCheckBox {
    font-size: 13px;
  }
  .msBox .infoCheckBox {
    font-size: 13px;
    text-align: left;
  }
  .msBox .msCheckBox {
    height: 20px;
  }
  .infoCheckBox {
    font-size: 13px;
  }

  .organSearchPopup {
    width: 60%;
  }

  .msBox {
    height: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 1000px) {
  .joinMenuArt > ul {
    display: none;
  }

  .joinMenuArt > ul > li > p:first-child {
    font-size: 13px;
  }
  .joinMenuArt > ul > li > p:last-child {
    font-size: 13px;
  }

  .joinMenuArt {
    margin: 20px auto;
  }

  .joinTitBox .joinSubTxt {
    font-size: 13px;
    line-height: 20px;
    word-break: keep-all;
    margin: 5px 0 0 0;
  }
  
  /* 정보입력 */
  .boardTable table {
    font-size: 13px;
  }
  .clauseInfoTable > table thead th {
    height: 50px;
  }
  .clauseInfoTable > table tbody td {
    height: 50px;
  }
  .clauseInfoTable > table tbody td:first-child .clauseInput {
    width: 160px;
  }
  .emailBox > input {
    width: 120px;
  }
  .choiceEmail {
    width: 100px;
  }
  .msBox .infoCheckBox {
    font-size: 13px;
  }

  .InfoTable > table thead th {
    height: 90px;
  }
  .organBox input[type=text] {
    width: 240px;
  }
  .InfoTable > table tbody td {
    height: 90px;
  }
  .infoTableBox {
    height: 100%;
    justify-content: center;
    gap: 8px;
  }
  .emailBox, .organBox {
    justify-content: start;
  }
  .organSearchBox input[type=button] {
    font-size: 13px;
  }
  .organPsTxt {
    font-size: 13px;
  }

  .ageNumBox {
    justify-content: start;
  }

  .organTxt {
    font-size: 13px;
  }
  .organAddressTxt {
    font-size: 13px;
  }


}

@media screen and (max-width: 800px) { 
  .joinTit {
    font-size: 13px;
    word-break: keep-all;
    line-height: 22px;
  }
  .joinCheckBox > label {
    width: 240px;
    height: 280px;
  }

  .joinType {
    font-size: 15px;
  }
  .joinSubTxt {
    font-size: 13px;
  }
  .joinTypeImg {
    width: 120px;
    height: 120px;
  }
  .confirmBtn {
    width: 100px;
    height: 30px;
    font-size: 13px;
  }

  .pageBottomBtns input[type=button] + label {
    width: 110px;
    height: 35px;
    font-size: 13px;
    gap: 5px;
  }
  .pageBottomBtns input[type=button] + label i {
    font-size: 13px;
  }

  /* 정보입력 */
  .pwBox > input {
    width: 150px;
  }
  .emailBox {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .emailBox > input {
    width: 100%;
  }
  .choiceEmail {
    width: 100%;
  }
  .organBox {
    width: 100%;
  }
  .organBox > div {
    width: 100%;
  }
  .organBox input[type=text] {
    width: 70%;
  }
  .organBox input[type=button] {
    width: 30%;
  }

  /* 팝업 */ 
  .popupBox {
    width: 80%;
  }

  .registerBtn {
    width: 85px;
    height: 30px;
    font-size: 13px;
  }

  /* 가입완료 */
  .joinArt5 {
    margin: 30px auto 0;
  }
  .joinCompletion {
    gap: 20px
  }
  .joinTxt {
    font-size: 18px;
    line-height: 28px;
  }

  .loginGoBtn {
    width: 120px;
    height: 35px;
    font-size: 13px;
  }

  .joinArt5 .joinSubTxt {
    word-break: keep-all;
  }

  .joinAgeCheck {
    font-size: 13px;
  }

  .confirmBox {
    width: 280px;
    height: 300px;
  }

  .joinPsBox .joinTit {
    font-size: 15px;
  }
  .joinPsTxt {
    font-size: 14px;
  }

}

@media screen and (max-width: 600px) { 
  .joinArt {
    width: 80%;
  }

  .joinArt1 {
    gap: 40px;
  }
  .joinCheckBox > label {
    width: 200px;
    height: 200px;
  }
  .joinTypeImg {
    width: 80px;
    height: 80px;
  }

  .pageBottomBtns input[type=button] + label {
    font-size: 13px;
  }


  /* 약관동의 */
  .clauseBtnBox {
    flex-direction: column;
    align-items: end;
    gap: 15px;
  }
  .clauseBox > textarea {
    height: 200px;
    font-size: 13px;
  }
  .clauseContext {
    height: 200px;
    font-size: 13px;
  }
  .clauseBtn {
    font-size: 13px;
  }
  .joinArt3 .joinSubTxt {
    font-size: 13px;
  }

  /* 정보입력 */
  .clauseInput {
    font-size: 11px;
    padding: 0 5px;
  }
  .InfoTable > table thead th {
    font-size: 13px;
  }

  .msBox {
    gap: 0;
  }

  .infoTableBox > div input {
    font-size: 13px;
  }
  .boardTable {
    width: 100%;
  }

  .boardTable table {
    font-size: 13px;
  }

  .phoneNumBox {
    gap: 5px;
  }

  .idBox input[type=text] {
    width: 60%;
  }
  .infoCheckBox > p {
    text-align: left;
    word-break: keep-all;
    line-height: 18px;
  }

  .at {
    text-align: left;
  }
  .msCheckBox label {
    font-size: 13px;
  }
  .choiceEmail {
    font-size: 13px;
  }
  .emailBox > input {
    font-size: 13px;
  }

  .organBox > div {
    flex-direction: column;
  }
  .organBox input[type=text] {
    width: 100%;
  }
  .organBox input[type=button] {
    width: fit-content;
  }

  .popupSubTit {
    font-size: 13px;
    word-break: keep-all;
    text-align: center;
    line-height: 16px;
  }
  .organSearchBox input[type=button] {
    width: 25%;
    font-size: 13px;
  }
  .organSearchBox input[type=text] {
    width: 75%;
    font-size: 13px;
  }

  .organContents {
    max-height: 140px;
  }
  .organSearchContents {
    padding: 15px 10px 10px 10px;
  }

  .agePsTxt {
    font-size: 12px;
    word-break: keep-all;
  }

  .joinAgeCheck input[type=checkbox] + label::before {
    width: 18px;
    height: 18px;
  }

  .joinPsTxt {
    font-size: 13px;
    line-height: 25px;
    word-break: keep-all;
  }
}

@media screen and (max-width: 500px) { 
  .joinArt2 {
    width: 85%;
    margin: 0 auto;
  }

  .joinCheckBox {
    gap: 15px;
  }
  .joinCheckBox > label {
    width: 160px;
    height: 160px;
    gap: 7px;
  }
  .joinType {
    font-size: 13px;
  }
  .joinSubTxt {
    font-size: 13px;
  }

  .confirmBox .joinType {
    font-size: 15px;
  }

  .pageBottomBtns {
    margin: 40px 0;
  }

  .confirmBtn {
    width: 90px;
    font-size: 13px;
  }


  .joinTitBox {
    width: 100%;
  }

  .joinTitBox .joinSubTxt {
    font-size: 13px;
    line-height: 18px;
  }

  /* 약관동의 */
  .clauseBox > textarea {
    font-size: 13px;
  }
  .clauseContext {
    font-size: 13px;
  }
  .clauseContext > table {
    font-size: 10px;
  }

  /* 정보입력 */
  .organSearchBox input[type=text] {
    width: 70%;
  }
  .organSearchBox input[type=button] {
    width: 30%;
  }
  .organPsTxt {
    font-size: 13px;
  }

  .organAddressTxt {
    font-size: 13px;
  }
  .organSearchForm {
    gap: 5px;
  }

  /* 가입완료 */
  .joinArt5 {
    gap: 40px
  }

  .joinTxt {
    font-size: 15px;
    line-height: 24px;
  }

  .loginGoBtn {
    font-size: 13px;
  }

  .joinArt4 {
    width: 90%;
  }
}


@media screen and (max-width: 400px) {  
  .joinTit {
    font-size: 13px;
  }
  .joinCheckBox > label {
    width: 140px;
    height: 140px;
  }
  .joinTypeImg {
    width: 70px;
    height: 70px;
  }
  .joinType {
    font-size: 13px;
  }
  .joinSubTxt {
    font-size: 13px;
  }
}