@charset "UTF-8";
.mainArea.successPage {
  height: calc(100vh - 300px);
  /*以防有不支援dvh的瀏覽器*/
  height: calc(100dvh - 300px);
  min-height: 500px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 60px 0;
  text-align: center;
}
.mainArea.successPage .successTxt {
  color: #772330;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.3;
}

.contentBox {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 1180px) {
  .contentBox {
    grid-template-columns: minmax(0, 1fr);
  }
}
.contentBox .leftBox {
  padding: 0 50px 0 0;
}
@media (max-width: 1180px) {
  .contentBox .leftBox {
    padding: 0 0 30px 0;
  }
}
.contentBox .rightBox {
  padding: 0;
}

.formList .class,
.formList .exp,
.formList .privacyAgree {
  width: 100%;
}
.formList .privacyAgree .columnCheckLabel {
  align-items: flex-start;
}
.formList .privacyAgree .columnCheck {
  flex: 0 0 16px;
  margin-top: 4px;
}
.formList .privacyAgree .privacyAgreeExp {
  clear: none;
  display: block;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 0 8px;
  max-width: none;
}
.formList .privacyAgree .privacyAgreeExp p {
  margin: 0;
}
.formList .name,
.formList .email,
.formList .telephone,
.formList .mobile {
  width: 50%;
}
@media (max-width: 768px) {
  .formList .name,
  .formList .email,
  .formList .telephone,
  .formList .mobile {
    width: 100%;
  }
}

.thankInfo {
  /*感謝資訊*/
  margin-bottom: 25px;
  padding: 0 0 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dataTable table {
  border-collapse: collapse;
  border: 1px solid #dedede;
  border-bottom: 2px solid #ba9770;
}
.dataTable th {
  padding: 10px;
  border: 1px solid #e1e1e1;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-color: #ba9770;
  vertical-align: middle;
}
.dataTable td {
  padding: 10px;
  border: 1px solid #e1e1e1;
  font-size: 15px;
  vertical-align: middle;
}
.dataTable td input[type=text] {
  height: 25px;
  line-height: 20px;
  border: 1px solid #d6d6d6;
  text-align: center;
}
.dataTable td a img {
  width: 50px;
  vertical-align: middle;
  margin-right: 8px;
}
.dataTable td .removeInquiryBtn {
  display: block;
  padding: 5px;
  font-size: 24px;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.dataTable .error {
  border-color: #f00 !important;
}

.formBox {
  margin-top: 25px;
}