@charset "UTF-8";
.linkWrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.bgWrap {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.beforeGsap {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.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: #d8282a;
  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;
  }
}

.contactPage .classNote {
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
.contactPage .textEditor p {
  margin-bottom: 0;
}
.contactPage .select {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.contactPage .select.formColumn::before {
  display: none;
}
.contactPage .select .columnTitle {
  width: 10%;
  margin-bottom: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .contactPage .select .columnTitle {
    width: 100%;
  }
}
.contactPage .select .columnSelect {
  width: 25%;
  padding-right: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%23626262' stroke-width='2' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 12px center;
  background-repeat: no-repeat;
}
@media (max-width: 1180px) {
  .contactPage .select .columnSelect {
    width: 100%;
  }
}
.contactPage .bread {
  padding: 50px 0 20px;
}
.contactPage .bread .wrap {
  justify-content: start;
}

.contentBox {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 1180px) {
  .contentBox {
    grid-template-columns: minmax(0, 1fr);
  }
}
.contentBox .leftBox {
  padding: 0 50px 0 0;
}
@media (max-width: 1180px) {
  .contentBox .leftBox {
    padding: 0 0 30px 0;
  }
}
.contentBox .rightBox {
  padding: 0;
}

.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%;
  }
}

.sideContactInfo {
  margin-top: 20px;
}

.servicePointItem {
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
}

.servicePointTitle {
  color: #d8282a;
  font-size: clamp(20px, 1.25vw, 24px);
  letter-spacing: 0.05em;
  font-weight: 700;
  margin: 0 0 12px;
}

.servicePointList {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.servicePointList li {
  color: #000000;
  font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
}
.servicePointList .infoText {
  display: inline-block;
  margin-right: 4px;
}
.servicePointList .infoValue {
  color: #000000;
}
@media (min-width: 1181px) {
  .servicePointList a.infoValue:hover {
    color: #d8282a;
  }
}
