@charset "UTF-8";
.titleBox {
  text-align: left;
  margin: 0;
  margin-bottom: 20px;
}

.mainArea.successPage {
  height: calc(100vh - 300px);
  min-height: 500px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 0;
  text-align: center;
}
.mainArea.successPage .successTxt {
  color: #13759c;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.3;
}

.side_contactInfo {
  margin-top: 20px;
}

/*感謝資訊*/
.thankInfo {
  margin-bottom: 25px;
  padding: 0 0 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: #2f2f2f;
  line-height: 1.8;
}

.mainArea:not(.show) .titleBox {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
.mainArea:not(.show) .leftBox {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
.mainArea:not(.show) .rightBox {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
.mainArea:not(.show) .bread .wrap {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
.mainArea.show .titleBox {
  opacity: 1;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.mainArea.show .leftBox {
  opacity: 1;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: all 1s 0.3s ease-out;
  transition: all 1s 0.3s ease-out;
}
.mainArea.show .rightBox {
  opacity: 1;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: all 1s 0.6s ease-out;
  transition: all 1s 0.6s ease-out;
}
.mainArea.show .bread .wrap {
  opacity: 1;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: all 1s 0.9s ease-out;
  transition: all 1s 0.9s ease-out;
}