.join-flex-div-wrapper {
  width: 100%;
  min-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.join-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1100px;
  height: 100px;
  border-bottom: 1px solid rgba(213,213,213,1);
  font-size: 2.0rem;
}
.join-body-box {
  display: flex;
  width: 600px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.join-body-box > div {
  display: flex;
  width: 100%;
  height: 50px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.join-body-box > div.join-body-title {
  font-size: 1.3rem;
  font-weight: bold;
  height: 70px;
  align-items: flex-start;
}
.join-body-box > div > p {
  margin: 0;
  padding: 0 5px 0 5px;
  width: auto;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.join-body-box > div > p:first-child {
  width: 140px;
  padding: 0 5px 0 20px;
}
.join-body-box > div > p > input {
  width: 300px;
  height: 30px;
}
#spanUserIDOK {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 30px;
  border: 1px solid #eb5c05;
  color: #eb5c05;
}
#btnCheckDuplicateID {
  width: 100px;
  height: 30px;
  border: 1px solid #eb5c05;
  color: #eb5c05;
}
.join-body-box > div > p > input.input-red-border {
  border: 1px solid red;
}
.join-body-box > div > p > input.phoneNumber {
  width: 100px;
}
.join-agree-box {
  display: flex;
  width: 600px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.join-agree-box > div {
  display: flex;
  width: 100%;
  height: 50px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: rgba(240,240,240,1);
  border-bottom: 1px solid rgba(213,213,213,1);
  padding: 0 20px 0 20px;
}
.join-agree-box > div.agree-content {
  display: none;
  width: 100%;
  height: auto;
  white-space: pre-wrap;
  border-right: 1px solid rgba(213,213,213,1);
  border-left: 1px solid rgba(213,213,213,1);
  border-bottom: 1px solid rgba(213,213,213,1);
  background: white;
  font-size: 0.9rem;
}
button#btnJoin {
  padding: 10px 20px 10px 20px;
  background: #eb5c05;
  border: 1px solid #eb5c05;
  color: white;
  font-size: 1.2rem;
}