@charset "utf-8";

/********************************************
    관심고객등록
********************************************/
.regist_tit {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px;
}
.regist_tit:not(:first-child) {
  margin: 40px 0 20px;
}
/********************************************
    관심고객등록 > 개인정보 수집 및 이용에 관한 안내 (스크롤박스)
********************************************/
.temp_regist .terms_box {
    padding: 10px 30px 30px;
    background: #f9f9f9;
    border: 1px solid var(--line_color);
    height: 280px;
    overflow-y:scroll;
    font-size: 14px;
    font-weight: 300;
}
.temp_regist .terms_box p {
  padding: 0 0 5px;
}
.temp_regist .terms_box ul li {
  text-indent: -12px;
  padding: 0 0 0 15px;
}
.regist_stit {
  font-size: 16px;
  font-weight: 600;
  padding: 20px 0 10px;
}
/* 동의버튼 */
.terms_agree {
  text-align: right;
  padding: 20px 30px;
}
/* 버튼 */
.regist_button {
  padding: 40px 0 0;
  text-align: center;
}
.regist_button a {
  display: inline-block;
  line-height: 30px;
  padding: 10px 30px;
  min-width: 180px;
  margin: 0 5px;
}
@media screen and (max-width: 480px) {
  .regist_button {
    padding: 10px 0 0;
  }  
  .regist_button a {
    min-width: 120px;
    padding: 10px 10px;    
  }
}

.regist_button a.btn_regist {
  color: #fff;
  background-color: var(--point_color);
}
.regist_button a.btn_cancel {
  color: #000;
  background-color: var(--second_color);
}
/********************************************
      개인정보 취급 위탁동의
********************************************/
div.privacy_tb table {
  width: 100%;
}
div.privacy_tb table thead th {
  font-size: min(calc(14/480 * 100vw), 14x);
  width: 50%;
  word-break: keep-all;
  color: #fff;
  padding: 15px 20px;
  background-color: var(--point_color);
}
div.privacy_tb table tbody td {
  font-size: min(calc(14/480 * 100vw), 14x);
  word-break: keep-all;
  text-align: center;
  padding: 10px 20px;
  border-top: 1px solid var(--line_color);
  border-bottom: 1px solid var(--line_color);
}
div.privacy_tb table tbody td:nth-of-type(2) { 
  border-left: 1px solid var(--line_color);
}
/********************************************
      개인정보입력
********************************************/
.info_table dl {
  display: grid;
  grid-template-columns: 160px auto;
}
.info_table dl dt {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  border-top: 1px solid var(--line_color);
  border-bottom: 1px solid var(--line_color);  
  background-color: var(--point_color);
  padding: 10px 20px;
  margin: -1px 0 0;
}
.info_table dl dd {
  border-top: 1px solid var(--line_color);
  border-bottom: 1px solid var(--line_color);  
  padding: 10px 20px; 
  margin: -1px 0 0;
}
.info_table dl dd * { vertical-align: middle;}


#joinNm { 
  width: min(100%, 366px);
}
#pcs1 {
  width: min(32%, 120px);
}
#pcs2 {
  width: min(32%, 120px);
}
#pcs3 {
  width: min(32%, 120px);
}
#s1 {
  width: min(32%, 120px);
}
#s2 {
  width: min(32%, 120px);  
}
#s3 {
  width: min(32%, 120px);  
}
@media screen and (max-width: 480px) {
  .info_table dl {
    display: grid;
    grid-template-columns: 120px auto;
  }  
  #pcs1 {
    width: 100%;
  }
  #pcs2 {
    width: 100%;
    margin: 5px 0;
  }
  #pcs3 {
    width: 100%;
  }  
  #s1 {
    width: 100%;
  }
  #s2 {
    width: 100%;
    margin: 5px 0;
  }
  #s3 {
    width: 100%;
  }
}
