.checkDiv {
  display: none;
}

.dpOn {
  display: block;
}
.dpNone {
  display: none;
}

/*wrap*/
.wrap {
  position: relative;
  padding: 50px 0;
  background-color: rgb(206, 145, 35);
  box-sizing: border-box;
  text-align: center;
  height: 100vh;
  z-index:1;
}
.wrap:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 200px solid #ababab;
  border-left: 200px solid #ababab;
  border-right: 200px solid transparent;
  border-bottom: 200px solid transparent;
  opacity: 0.2;
  z-index:-1;
}
.subWrap {
  width: 640px;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
  background: #f7f7f7;
  border: 1px solid #999;
}

/*header, gnb*/
.header {
  margin-bottom: 20px;
}
.header img {
  width: 200px;
}

.findform h2 {
  font-size: 20px;
  padding: 10px 0;
  background: #eee;
  color: #777;
  margin-bottom: 10px;
}
.find_wrapList {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
}
.find_wrapList li.on {
  background: #f7f7f7;
  border-bottom: 1px solid #f7f7f7;
}
.find_wrapList li:first-child {
  border-right: 0;
}
.find_wrapList li {
  display: flex;
  background: #e9e9e9;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  padding: 10px 40px;
  cursor: pointer;
}
.find_wrapList li span {
  font-size: 13px;
}

.idList {
  display: table;
  margin: 0 auto;
  text-align: left;
}
.idList > li > input[type="text"] {
  width: 120px;
}
.idList > li > input {
  width: 250px;
  padding: 5px 20px 5px 5px;
  box-sizing: border-box;
}
.idList > li > label {
  display: inline-block;
  width: 73px;
  text-align: right;
  margin-right: 10px;
  margin-bottom: 25px;
  font-size: 13px;
  font-weight: bold;
}
.idList > li > input[type="date"] {
  width: 182px;
}
.idList > li > .doublechk {
  display: inline-block;
  padding: 7px 20px;
  box-sizing: border-box;
  background: #3b3b3b;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  vertical-align: middle;
  border-radius: 3px;
  margin-left: 5px;
}
.idList > li > .crd_btn {
  display: inline-block;
  padding: 7px 20px;
  box-sizing: border-box;
  background: #3b3b3b;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  vertical-align: middle;
  border-radius: 3px;
  margin-left: 5px;
}
.idPassword {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
.confirm_btn a {
  color: #37416c;
  text-shadow: 1px 1px #fff;
  padding: 10px 40px;
  display: inline-block;
  box-shadow: 1px 2px 5px #000;
  background: #ffb017;
  font-weight: bold;
  margin: 30px auto 30px;
}
@media all and (max-width: 767px) {
  .wrap {
    padding: 20px 0 0 0;
    height: auto;
  }
  .subWrap {
    width: 100%;
  }
  .header img {
    width: 150px;
  }
}

/* 하단 */
.ftWrap {
  margin-bottom: 20px;
}
.ftWrap p {
  font-size: 14px;
  color: #000;
}
.ftWrapList {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}
.ftWrapList li:first-child:after {
  content: "";
  display: inline-block;
  background: #000;
  width: 1px;
  height: 11px;
  margin: 0px 7px 0px 5px;
}
.ftWrapList li a {
  font-size: 13px;
  color: #3b3b3b;
}
.ftWrapList li:last-child a {
  font-weight: bold;
}