@charset "UTF-8";
.mainArea.successPage {
  height: calc(100vh - 300px);
  min-height: 500px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 60px 0;
  text-align: center;
}
.mainArea.successPage .successTxt {
  color: #2a59a7;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.3;
}

.contentBox:not(.row) .wrap {
  max-width: 1380px;
}

.classWrapBox {
  margin-bottom: 30px;
}
.classWrapBox .classBoxDropDown {
  max-width: 100%;
}

/*感謝資訊*/
.thankInfo {
  border: 1px solid #d9d9d9;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  padding: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1180px) {
  .thankInfo {
    padding: 20px;
  }
}

.dataList {
  display: flex;
  justify-content: space-between;
  align-items: normal;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
}
@media (max-width: 1180px) {
  .dataList {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 540px) {
  .dataList {
    gap: 20px;
  }
}
@media (max-width: 400px) {
  .dataList {
    flex-direction: column;
  }
}
.dataList .dataItem {
  width: 100%;
}
@media (max-width: 1180px) {
  .dataList .dataItem {
    width: calc(50% - 15px);
  }
}
@media (max-width: 540px) {
  .dataList .dataItem {
    width: calc(50% - 10px);
  }
}
@media (max-width: 400px) {
  .dataList .dataItem {
    width: 100%;
  }
}
.dataList a {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #d9d9d9;
  background-color: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 14px;
  padding: 40px 20px;
  text-align: center;
}
@media (min-width: 1181px) {
  .dataList a:hover {
    background-color: #f1f7fb;
    border-color: #2a59a7;
  }
}
@media (max-width: 640px) {
  .dataList a {
    padding: 30px 10px;
  }
}
.dataList .title {
  color: #333;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 1.6px;
}
@media (max-width: 640px) {
  .dataList .title {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .dataList .title {
    font-size: 18px;
  }
}
.dataList .subtitle {
  color: #2a59a7;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", "Noto Sans SC", "Microsoft JhengHei", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.dataList .subtitle::after {
  content: "";
  position: relative;
  width: auto;
  height: 2px;
  background: linear-gradient(to right, #2a59a7 50%, #d8df3f 50%);
  max-width: 74px;
  width: 100%;
  margin: 10px 0;
  display: inline-block;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 640px) {
  .dataList .subtitle {
    font-size: 15px;
  }
}
@media (max-width: 450px) {
  .dataList .subtitle {
    font-size: 14px;
  }
}