@charset "UTF-8";
.mainArea.successPage {
  height: calc(100vh - 400px);
  /*以防有不支援dvh的瀏覽器*/
  height: calc(100dvh - 400px);
  min-height: 400px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 60px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .mainArea.successPage {
    height: auto;
    min-height: 200px;
  }
}
.mainArea.successPage .successTxt {
  color: #7B8C78;
  font-size: 30px;
  line-height: 1.3;
}
@media (max-width: 1180px) {
  .mainArea.successPage .successTxt {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .mainArea.successPage .successTxt {
    font-size: 22px;
  }
}
@media (max-width: 400px) {
  .mainArea.successPage .successTxt {
    font-size: 18px;
  }
}

.mainArea > .wrap .contentBox {
  display: flex;
  gap: clamp(40px, 26.6666666667px + 1.7361111111vw, 60px);
}
@media (max-width: 960px) {
  .mainArea > .wrap .contentBox {
    flex-direction: column;
  }
}
.mainArea > .wrap .contentBox .leftBox {
  flex: 3;
}
.mainArea > .wrap .contentBox .rightBox {
  flex: 1;
}
.mainArea .storeList {
  display: flex;
  flex-direction: column;
}
.mainArea .storeList .storeItem {
  flex: 1;
  max-width: 100%;
  padding: 1.5em 0;
}
.mainArea .storeList .storeItem:not(:last-child) {
  border-bottom: 1px solid rgba(123, 140, 120, 0.4);
}
.mainArea .storeList .storeItem .item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mainArea .storeList .storeItem .title {
  font-size: clamp(18px, 16.6666666667px + 0.1736111111vw, 20px);
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-family: "Marcellus", "Noto Serif TC", "Microsoft JhengHei", sans-serif;
}
.mainArea .storeList .storeItem .time {
  font-size: clamp(14px, 12.6666666667px + 0.1736111111vw, 16px);
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-family: "Marcellus", "Noto Serif TC", "Microsoft JhengHei", sans-serif;
}
.mainArea .storeList .storeItem .infoBox {
  padding-top: 1em;
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 1.6666666667px + 0.4340277778vw, 10px);
  font-size: clamp(14px, 12.6666666667px + 0.1736111111vw, 16px);
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.mainArea .storeList .storeItem .infoBox a {
  color: #888888;
}
@media (min-width: 1181px) {
  .mainArea .storeList .storeItem .infoBox a:hover {
    color: #7B8C78;
  }
}
.mainArea .storeList .storeItem .infoBox .phoneBox {
  display: flex;
  align-items: center;
  gap: 5px;
}
.mainArea .storeList .storeItem .infoBox .phoneBox span {
  color: #7B8C78;
}
.mainArea .storeList .storeItem .social {
  padding-top: 1em;
  display: flex;
  align-items: center;
  gap: 1em;
}
.mainArea .storeList .storeItem .social a {
  font-size: 16px;
  color: #7B8C78;
}
@media (min-width: 1181px) {
  .mainArea .storeList .storeItem .social a:hover {
    color: #222222;
  }
}

.formList .class,
.formList .exp,
.formList .privacyAgree {
  width: 100%;
}
.formList .privacyAgree .columnCheck {
  flex: 0 0 16px;
}
.formList .privacyAgree .columnCheckLabel {
  align-items: flex-start;
}
.formList .privacyAgree .privacyAgreeExp {
  clear: none;
  display: block;
  font-size: 15px;
  line-height: 1.2;
  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%;
  }
}