@charset "UTF-8";
@media screen and (min-width: 768px) {
  .bread-crumb {
    max-width: 1104px;
    margin-inline: auto;
    padding: 17px 24px;
  }
}
@media screen and (max-width: 767px) {
  .bread-crumb {
    padding: 12px 3.9800995025vw;
  }
}

.form-content {
  max-width: 800px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .form-content {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .form-content {
    margin-top: 60px;
  }
}

.categorySect {
  container-type: inline-size;
}
.categorySect__inner {
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .categorySect__inner {
    max-width: 1104px;
    margin-inline: auto;
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .categorySect__inner {
    padding: 0 3.9800995025vw;
  }
}
.categorySect__head {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
@media screen and (min-width: 768px) {
  .categorySect__head {
    box-sizing: content-box;
    padding-block: 40px;
  }
}
@media screen and (max-width: 767px) {
  .categorySect__head {
    padding-block: 28px;
  }
}
.categorySect__head:before {
  content: "";
  display: block;
  background-color: var(--color-gray-100);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100cqw;
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .categorySect__body {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .categorySect__body {
    padding-bottom: 30px;
  }
}

/* コンタクトフォーム */
.contactForm {
  width: 100%;
}

/* フォームグループ */
.formGroup {
  margin-bottom: 24px;
  /* ラベル */
  /* 入力フィールド */
  /* セレクトボックス */
  /* テキストエリア */
}
.formGroup--submit {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .formGroup--submit {
    display: flex;
    justify-content: center;
  }
}
.formGroup--confirm {
  margin-top: 80px;
}
.formGroup--2col {
  display: flex;
}
@media screen and (min-width: 768px) {
  .formGroup--2col {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .formGroup--2col {
    flex-direction: column;
    row-gap: 40px;
  }
}
.formGroup__label {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  -webkit-column-gap: 6px;
  -moz-column-gap: 6px;
  column-gap: 6px;
  margin-bottom: 8px;
  white-space: nowrap;
}
.formGroup__label--required::after {
  font-size: 1.2rem;
  line-height: 1.3333333333;
  letter-spacing: 0.06em;
  font-weight: normal;
  color: var(--color-white);
  background-color: var(--color-orange-300);
  padding: 3px;
  border-radius: 4px;
  content: " 必須";
}
.formGroup__input {
  display: inline-block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--color-gray-300);
  padding: 0;
  margin: 0;
  min-height: 48px;
  padding-inline: 16px 24px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-gray-500);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.formGroup__input:focus {
  outline: none;
  border: 2px solid var(--color-black);
}
.formGroup__input--short {
  max-width: 300px;
}
.formGroup__selectWrap {
  position: relative;
  max-width: 400px;
}
.formGroup__selectWrap::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 2em;
  top: 50%;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  -webkit-transform: translateY(-75%) rotate(135deg);
          transform: translateY(-75%) rotate(135deg);
}
.formGroup__select {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: var(--color-gray-500);
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.formGroup__select:focus {
  outline: none;
  border: 2px solid var(--color-black);
}
.formGroup__textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  resize: vertical;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.formGroup__textarea:focus {
  outline: none;
  border: 2px solid var(--color-black);
}
.formGroup__radio {
  padding-right: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-gray-500);
  cursor: pointer;
}
.formGroup__notice {
  color: var(--color-gray-500);
  font-size: 1.3rem;
  line-height: 1.3846153846;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  pointer-events: none;
}
.formGroup__upload {
  margin-block: 16px;
  font-size: calc(16rem / 10);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .formGroup__upload {
    width: 100%;
  }
}
.formGroup__upload + .noticeValid {
  margin-top: 16px;
  color: var(--color-red);
}
@media screen and (min-width: 768px) {
  .formGroup__upload + .noticeValid {
    font-size: calc(16rem / 10);
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  .formGroup__upload + .noticeValid {
    font-size: calc(14rem / 10);
    line-height: 1.4285714286;
    letter-spacing: 0.05em;
  }
}

/* 送信ボタン */
.submitButton {
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-orange-300);
  text-decoration: none;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  min-height: 56px;
  position: relative;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  justify-self: center;
}
@media screen and (min-width: 768px) {
  .submitButton {
    font-weight: 600;
    font-size: calc(18rem / 10);
    line-height: 1.3333333333;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  .submitButton {
    font-weight: 600;
    font-size: calc(16rem / 10);
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}
.submitButton:hover {
  background-color: var(--color-orange-300);
  color: var(--color-white);
  border: 1px solid var(--color-orange-300);
}

.acceptBox {
  margin-top: 100px;
  border-radius: 8px;
  border: 1px solid var(--color-gray-300);
  padding: 24px;
}
.acceptBox__txt {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
.acceptBox__txt a {
  color: inherit;
}
.acceptBox__checkbox {
  margin-top: 20px;
  text-align: center;
  accent-color: var(--color-orange-300);
}
.acceptBox__checkbox #checkbox {
  margin: 0;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .acceptBox__checkbox #checkbox {
    margin-bottom: 2.5px;
  }
}
.acceptBox__label {
  font-size: calc(20rem / 10);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 768px) {
  .formTitle {
    font-weight: 600;
    font-size: calc(26rem / 10);
    line-height: 1.4615384615;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  .formTitle {
    font-weight: 600;
    font-size: calc(20rem / 10);
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}
.formTitle--confirm {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .formTitle + .formText {
    margin-top: 40px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .formTitle + .formText {
    margin-top: 20px;
    margin-bottom: 32px;
  }
}

@media screen and (min-width: 768px) {
  .formText {
    font-size: calc(18rem / 10);
    line-height: 1.3333333333;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  .formText {
    font-size: calc(16rem / 10);
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}

@media screen and (min-width: 768px) {
  .formConfirm__list {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .formConfirm__list {
    margin-top: 32px;
  }
}
@media screen and (min-width: 768px) {
  .formConfirm__ttl {
    font-weight: 600;
    font-size: calc(20rem / 10);
    line-height: 1.4;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .formConfirm__ttl {
    font-weight: 600;
    font-size: calc(18rem / 10);
    line-height: 1.3333333333;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) {
  .formConfirm__ttl:not(:first-child) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .formConfirm__ttl:not(:first-child) {
    margin-top: 20px;
  }
}
.formConfirm__desc {
  border-bottom: 1px solid var(--color-gray-300);
}
@media screen and (min-width: 768px) {
  .formConfirm__desc {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .formConfirm__desc {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .formConfirm__desc {
    font-size: calc(18rem / 10);
    line-height: 1.3333333333;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  .formConfirm__desc {
    font-size: calc(16rem / 10);
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}

@media screen and (min-width: 768px) {
  #errorMessage {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  #errorMessage {
    margin-bottom: 32px;
  }
}
#errorMessage .error-notice {
  color: var(--color-red);
}
@media screen and (min-width: 768px) {
  #errorMessage .error-notice {
    font-size: calc(16rem / 10);
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  #errorMessage .error-notice {
    font-size: calc(14rem / 10);
    line-height: 1.4285714286;
    letter-spacing: 0.05em;
  }
}
#errorMessage .error-notice:not(:first-child) {
  padding-top: 10px;
}

@media screen and (min-width: 768px) {
  .present-contents {
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .present-contents {
    padding-top: 32px;
    padding-bottom: 50px;
  }
}

.thanksSect__head {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
@media screen and (min-width: 768px) {
  .thanksSect__head {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .thanksSect__head {
    padding-bottom: 32px;
  }
}
.thanksSect__head .heading {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .thanksSect__head .heading {
    font-weight: 600;
    font-size: calc(26rem / 10);
    line-height: 1.4615384615;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  .thanksSect__head .heading {
    font-weight: 600;
    font-size: calc(20rem / 10);
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}
.thanksSect__body .messageBox {
  margin-bottom: 40px;
}
.thanksSect__body .messageBox .message {
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .thanksSect__body .messageBox .message {
    font-weight: 600;
    font-size: calc(20rem / 10);
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  .thanksSect__body .messageBox .message {
    font-weight: 600;
    font-size: calc(18rem / 10);
    line-height: 1.3333333333;
    letter-spacing: 0.04em;
  }
}
.thanksSect__body .messageBox .caution {
  font-size: calc(13rem / 10);
  line-height: 1.3846153846;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--color-red);
}
.thanksSect__body .generalButton {
  justify-self: center;
  padding-inline: 3em;
  padding-block: 8px;
}/*# sourceMappingURL=enquete.css.map */