@charset "UTF-8";
.mainArea {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .mainArea {
    margin-top: 30px;
  }
}
.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: #606e7c;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.3;
}

.contentBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 1180px) {
  .contentBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contentBox .leftBox {
  width: 65%;
  padding-right: 80px;
}
@media (max-width: 1180px) {
  .contentBox .leftBox {
    width: 100%;
    padding-right: 0;
    margin-bottom: 50px;
  }
}
.contentBox .rightBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.contentBox iframe {
  height: 320px;
  margin-bottom: 40px;
}
@media (max-width: 400px) {
  .contentBox iframe {
    height: 250px;
    margin-bottom: 20px;
  }
}

.sideContactInfo li {
  padding: 10px 0;
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: #495056;
  letter-spacing: 0.8px;
}
.sideContactInfo .infoText {
  width: 50px;
  display: inline-block;
}
.sideContactInfo i {
  display: inline-block;
  vertical-align: middle;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-right: 8px;
  border: 1px solid #606e7c;
  border-radius: 50%;
  font-size: 20px;
  color: #606e7c;
  text-align: center;
}
.sideContactInfo a {
  color: #606e7c;
  display: inline-block;
}
.sideContactInfo a::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #606e7c;
  display: block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  bottom: -1px;
  left: 0;
  opacity: 0;
}
.sideContactInfo a:hover::after {
  opacity: 1;
}

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