.page-title {
  background-image: url("../images/title_bg_contact.png");
}

.contact__txt {
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
}

.contact__button-wrapper {
  text-align: center;
  padding: 40px;
  width: 90%;
  max-width: 500px;
  margin: 0 auto 40px;
  background-color: var(--bg-highlight);
  border-radius: 10px;
}
.contact__button-wrapper .contact__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.contact__button-wrapper .contact__button img {
  height: 40px;
  width: auto;
}
.contact__button-wrapper .contact__button span {
  color: var(--color-primary);
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 1.8rem;
}
.contact__button-wrapper p {
  font-size: clamp(1rem, 0.925rem + 0.34vw, 1.2rem);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__button-wrapper {
    padding: 20px;
  }
  .contact__button-wrapper .contact__button {
    margin-bottom: 10px;
  }
  .contact__button-wrapper .contact__button img {
    height: 25px;
  }
}

.contact__form table {
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse;
}
.contact__form table th {
  padding: 20px;
  text-align: left;
}
.contact__form table th .require {
  color: #fff;
  background-color: #f55;
  padding: 2px 5px;
  border-radius: 5px;
  font-size: clamp(0.6rem, 0.525rem + 0.34vw, 0.8rem);
  font-weight: 600;
  margin-left: 10px;
}
.contact__form table td {
  padding: 20px;
}
.contact__form table td input[type=text], .contact__form table td input[type=email], .contact__form table td input[type=tel], .contact__form table td textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  padding: 10px 20px;
}
.contact__form .accept {
  text-align: center;
  margin-bottom: 60px;
}
.contact__form .accept a {
  text-decoration: underline;
}
.contact__form .button__submit input[type=submit] {
  width: 80%;
  max-width: 400px;
  font-size: clamp(1rem, 0.925rem + 0.34vw, 1.2rem);
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  background-color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 991px) {
  .contact__form table {
    width: 100%;
  }
  .contact__form table th {
    padding: 10px 0;
    display: block;
    width: 100%;
  }
  .contact__form table td {
    padding: 0 0 20px;
    display: block;
    width: 100%;
  }
  .contact__form .accept {
    margin-bottom: 40px;
  }
}/*# sourceMappingURL=contact.css.map */