/* Default Options */
/* Media Query */
/* Transform Font Size */
/* --------------------------------- */
.contact {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 40px);
}
.contact .title {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  line-height: 1.6;
}
.contact .note {
  font-size: clamp(0.6875rem, 0.5852272727rem + 0.2840909091vw, 0.8125rem);
}
.contact .inner {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 80px);
}
.contact .recaptcha {
  font-size: clamp(0.6875rem, 0.5852272727rem + 0.2840909091vw, 0.8125rem);
}
.contact .thanks {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 80px);
}
.contact .thanks .title {
  font-size: clamp(1.5rem, 1.0909090909rem + 1.1363636364vw, 2rem);
  font-weight: 500;
}
.contact .thanks p {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
}
@media screen and (min-width: 992px) {
  .contact {
    display: grid;
    grid-template-columns: var(--grid-column-guide);
    gap: var(--grid-gap);
  }
  .contact .note {
    grid-column: 1/3;
  }
  .contact .inner {
    grid-column: 5/13;
  }
  .contact .thanks {
    grid-column: 5/13;
  }
}

.form-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 40px);
}
.form-list li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-list li p {
  display: flex;
  align-items: center;
  padding-block: 10px;
  padding-inline: clamp(10px, 2vw, 20px);
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
.form-text, .form-textarea {
  width: 100%;
  padding-inline: clamp(10px, 2vw, 20px);
  background-color: var(--background-color);
  border: 1px solid var(--text-color);
  border-radius: 5px;
  box-sizing: border-box;
  outline: none;
  transition: all 250ms ease;
}
.form-text:focus, .form-text:hover, .form-textarea:focus, .form-textarea:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.form-text {
  height: clamp(50px, 5vw, 60px);
}
.form-textarea {
  height: clamp(180px, 20vw, 240px);
}
.form-button {
  width: 100%;
  height: clamp(60px, 5vw, 80px);
  background-color: var(--text-color);
  border-radius: 10px;
  border: 0;
  color: var(--background-color);
  cursor: pointer;
}
.form-button.cancel {
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--text-color);
}
.form-foot {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.grecaptcha-badge {
  visibility: hidden;
}