@charset "UTF-8";

/* =========================================================
  form
========================================================= */

/* surveyForms
----------------------------------------------- */
.surveyForms .core-title:not(:last-child) {
  margin-bottom: 40px;
}

.surveyForms .name {
  margin-bottom: 20px;
  padding: 17px 0;
  border-top: 3px solid var(--ac-color-orange-1);
  border-bottom: 1px solid var(--ac-color-orange-1);
  color: var(--ac-color-orange-1);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
}

.surveyForms .name a {
  color: inherit;
}

/* surveyForm
----------------------------------------------- */
.surveyForm > .body {
  margin-bottom: 50px;
}

.surveyForm .questions {
  margin-bottom: 50px;
}

.surveyForm .question {
  margin-bottom: 50px;
}

.surveyForm .question .question_content:not(.free) {
  margin-bottom: 15px;
  font-size: 1.1875rem;
}

.surveyForm form[action$="/send_answers"] .question .question_content:not(.free) {
  margin-bottom: 0;
}

.surveyForm .question .question_content .note {
  margin-left: 8px;
  padding: 1px 4px 2px;
  border: 1px solid var(--ac-color-orange-1);
  background: var(--ac-color-orange-1);
  color: var(--mono-color-9);
  font-size: 0.875rem;
}

.surveyForm .question .question_content.free {
  margin-bottom: 20px;
  padding: 17px 0;
  border-top: 3px solid var(--ac-color-orange-1);
  border-bottom: 1px solid var(--ac-color-orange-1);
  color: var(--ac-color-orange-1);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
}

.surveyForm .question .question_content.free ~ .body {
  font-size: 1rem;
}

.surveyForm form[action$="/send_answers"] .question .question_content:not(.free) ~ .body {
  display: none;
}

.surveyForm .question .body > *:last-child {
  margin-bottom: 0 !important;
}

.surveyForm .question .answer_content {
  margin: 15px 0;
}

.surveyForm .question .question_content + .answer_content {
  margin-top: 0;
}

.surveyForm form[action$="/send_answers"] .question .answer_content {
  margin: 0;
}

.surveyForm .question .answer_content input[type="text"],
.surveyForm .question .answer_content input[type="email"],
.surveyForm .question .answer_content select,
.surveyForm .question .answer_content textarea {
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid #eaeaea;
  background: #eaeaea;
}

.surveyForm .question .answer_content input[type="text"]:focus,
.surveyForm .question .answer_content input[type="email"]:focus,
.surveyForm .question .answer_content select:focus,
.surveyForm .question .answer_content textarea:focus {
  border: 1px solid var(--mono-color-6);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: var(--mono-color-9);
  outline: none !important;
  transition: border linear 0.2s, box-shadow linear 0.2s;
}

.surveyForm .question .answer_content input::placeholder,
.surveyForm .question .answer_content textarea::placeholder {
  color: #c4c4c4;
}

.surveyForm .question .answer_content .last_name input[type="text"],
.surveyForm .question .answer_content .first_name input[type="text"] {
  margin-left: 10px;
}

.surveyForm .question .answer_content .address_search {
  margin: 0 10px 10px 0;
}

.surveyForm .question .answer_content textarea {
  width: 100%;
  vertical-align: bottom;
}

.surveyForm .question .answer_content .max_length {
  display: block;
  margin-top: 5px;
  font-size: 0.875rem;
}

.surveyForm .question .answer_content:has(label) {
  display: flex;
  flex-wrap: wrap;
  gap: 0 35px;
}

.surveyForm .question .answer_content input[type="radio"],
.surveyForm .question .answer_content input[type="checkbox"] {
  margin: -4px 8px 0 0;
}

.surveyForm .question .answer_content [aria-invalid="true"] {
  border: 1px solid var(--ac-color-red-1) !important;
  background: #fad7d7 !important;
}

.surveyForm .question .answer_content.invalid label {
  color: var(--ac-color-red-1);
}

.captchaForm .image {
  margin: 0 0 15px;
}

.captchaForm img {
  padding: 5px;
  border: 1px solid var(--mono-color-6);
}

.captchaForm .reload,
.captchaForm .talk {
  display: inline-block;
  width: 140px;
  margin: 0 0 15px;
}

.captchaForm .reload {
  margin-right: 5px;
}

.captchaForm .reload a,
.captchaForm .talk a {
  display: block;
  padding: 4px 0 6px;
  border: 1px solid var(--mono-color-5);
  border-radius: 6px;
  background: linear-gradient(to bottom, #fff, #f7f7f7);
  color: var(--mono-color-1);
  text-decoration: none;
  text-align: center;
}

.captchaForm .reload a:hover,
.captchaForm .talk a:hover {
  background: linear-gradient(to bottom, #f7f7f7, #fff);
}

.captchaForm .player:not(:empty) {
  margin-bottom: 15px;
}

.surveyForm .submit,
.surveyForm .back {
  padding-top: 30px;
  text-align: center;
}

.surveyForm .submit input[type="submit"],
.surveyForm .back a {
  display: inline-block;
  min-width: 300px;
  margin: 0.5em;
  padding: 12px 40px 14px;
  border: 1px solid var(--ac-color-orange-2);
  border-radius: 8px;
  background: var(--ac-color-orange-2);
  color: var(--mono-color-9);
  font-size: 1.1875rem;
  outline-offset: -4px;
  cursor: pointer;
}

.surveyForm .submit input[type="submit"]:hover,
.surveyForm .back a:hover {
  /*
  opacity: 0.6;
  */
}

@media only screen and (max-width: 959px) {
  .surveyForm > .body {
    margin-bottom: 30px;
  }

  .surveyForm .questions {
    margin-bottom: 30px;
  }

  .surveyForm .question {
    margin-bottom: 40px;
  }

  .surveyForm .submit,
  .surveyForm .back {
    padding-top: 0;
  }
}

/* errorExplanation
----------------------------------------------- */
#errorExplanation {
  margin-bottom: 40px;
  padding: 15px;
  border: 1px solid var(--ac-color-red-1);
}

.surveyForm #errorExplanation h2 {
  margin-bottom: 5px;
  color: var(--ac-color-red-1);
  font-size: 1.125rem;
}

.surveyForm #errorExplanation p {
  margin-bottom: 5px;
}

.surveyForm #errorExplanation ul {
  list-style-type: disc;
  margin-left: 30px;
  color: var(--ac-color-red-1);
}

/* message
----------------------------------------------- */
.surveyForm .message {
  margin: 40px 0;
  text-align: center;
}