@charset "UTF-8";
.bannerArea:not(.show) .title {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.bannerArea:not(.show) .textBox {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.bannerArea:not(.show) .right {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.bannerArea.show .title {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.bannerArea.show .textBox {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 0.8s 0.2s;
  transition: all 0.8s 0.2s;
}
.bannerArea.show .right {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 0.8s 0.4s;
  transition: all 0.8s 0.4s;
}

.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: #be8a3a;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.3;
}

.contentBox {
  margin: 100px 0;
}
@media (max-width: 1180px) {
  .contentBox {
    margin: 60px 0;
  }
}
@media (max-width: 768px) {
  .contentBox {
    margin: 40px 0;
  }
}
.contentBox .leftBox {
  padding: 0 50px 0 0;
}
@media (max-width: 1023px) {
  .contentBox .leftBox {
    padding: 0 0 30px 0;
  }
}
.contentBox .rightBox {
  padding: 0;
}
.contentBox:not(.show) {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.contentBox.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.side_contactInfo {
  margin-top: 20px;
}

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