@charset "UTF-8";
:root {
  --header_height: 95px;
}
@media (max-width: 767px) {
  :root {
    --header_height: 80px;
  }
}

/**************************************************
* ページ: フォーム
**************************************************/
.c-form__box {
  background: url(../img/form_bg.webp) no-repeat center center/100%;
  aspect-ratio: 1080/206;
  padding: 48px 0 37px;
  text-align: center;
}
@media (max-width: 767px) {
  .c-form__box {
    background: url(../img/form_bg_sp.webp) no-repeat center center/100%;
    aspect-ratio: 335/206;
  }
}

.c-form__message {
  font-size: min(1.6rem, 1.8229166667vw);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .c-form__message {
    font-size: 1.4rem;
  }
}

.c-form__tel {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .c-form__tel {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    margin-top: 20px;
  }
}

.c-form__tel-number {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(4.8rem, 4.9479166667vw);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  font-family: "Outfit", sans-serif;
}
.c-form__tel-number::before {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_tel.webp) no-repeat center center/contain;
  width: 1em;
  aspect-ratio: 1/1;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .c-form__tel-number {
    font-size: 2.8rem;
  }
}

.c-form__tel-note {
  font-size: min(1.2rem, 1.3020833333vw);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .c-form__tel-note {
    display: block;
    font-size: 1.2rem;
    text-align: left;
  }
}

.c-form__content {
  max-width: 874px;
  margin: 0 auto;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .c-form__content {
    margin-top: 60px;
  }
}

.c-form__items dt {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-form__items dt:nth-of-type(n + 2) {
  margin-top: 35px;
}
.c-form__items dd {
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 12px;
}
.c-form__items dd input[type=text],
.c-form__items dd input[type=tel],
.c-form__items dd input[type=email],
.c-form__items dd select,
.c-form__items dd textarea {
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1.6rem;
  width: 100%;
  border: none;
  background: #fff;
  border-radius: 6px;
  padding: 1.2em 2em;
  border: 1px solid #D7D7D7;
}
.c-form__items dd input[type=text]::-moz-placeholder, .c-form__items dd input[type=tel]::-moz-placeholder, .c-form__items dd input[type=email]::-moz-placeholder, .c-form__items dd select::-moz-placeholder, .c-form__items dd textarea::-moz-placeholder {
  color: #ccc;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}
.c-form__items dd input[type=text]::placeholder,
.c-form__items dd input[type=tel]::placeholder,
.c-form__items dd input[type=email]::placeholder,
.c-form__items dd select::placeholder,
.c-form__items dd textarea::placeholder {
  color: #ccc;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}
.c-form__items dd textarea {
  resize: vertical;
  min-height: 210px;
}
@media (max-width: 767px) {
  .c-form__items dt, .c-form__items dd {
    font-size: 1.4rem;
  }
  .c-form__items dd input[type=text],
.c-form__items dd input[type=tel],
.c-form__items dd input[type=email],
.c-form__items dd select,
.c-form__items dd textarea {
    padding: 16px 24px;
  }
}

.c-form__required,
.c-form__option {
  display: inline-block;
  line-height: 1.4;
  color: #fff;
  border-radius: 4px;
  padding: 0.3em 0.6em;
  margin-right: 0.6em;
  font-size: 1rem;
  font-weight: 700;
}

.c-form__required {
  background: #B73939;
}

.c-form__option {
  background: #A7A7A7;
}

.c-form__select {
  position: relative;
}
.c-form__select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: url(../img/icon_select-arrow.webp) no-repeat center center/contain;
  width: 24px;
  aspect-ratio: 1/1;
}
.c-form__select select {
  color: #ccc;
}

.c-form__radio {
  margin-top: 20px;
}
.c-form__radio label {
  width: 100%;
  display: flex;
  align-items: center;
}
.c-form__radio label:has(input[type=radio]:checked) .c-form__radio-item::after {
  display: block;
}
.c-form__radio label input[type=radio] {
  opacity: 0;
  -webkit-appearance: unset;
     -moz-appearance: unset;
          appearance: unset;
  margin: 0;
  width: 0;
  height: 0;
}

.c-form__radio-item {
  width: 22px;
  height: 22px;
  border: 1px solid #A7A7A7;
  margin-right: 10px;
  border-radius: 50%;
  position: relative;
}
.c-form__radio-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 12px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #A7A7A7;
  background: #1253BF;
  transition: background-color 0.3s, border-color 0.3s;
  display: none;
}

.c-form__privacy {
  margin-top: 60px;
  text-align: center;
}
.c-form__privacy label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
.c-form__privacy input {
  width: 20px;
  height: 20px;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .c-form__privacy {
    margin-top: 64px;
    text-align: left;
  }
}

.c-form__privacy-message {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}
.c-form__privacy-message a {
  display: inline-block;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .c-form__privacy-message {
    line-height: 2;
    text-align: center;
  }
}

.c-form__privacy-en {
  margin-top: 50px;
  font-size: 1.2rem;
  font-weight: 400;
  color: #999;
}
.c-form__privacy-en a {
  text-decoration: underline;
}

.c-form__submit {
  text-align: center;
  margin-top: 60px;
}

.c-form__button {
  cursor: pointer;
  position: relative;
  margin: 0 auto;
}
.c-form__button input {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.c-form__button .dummy {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

/*------------------------------
お問い合わせ完了
------------------------------*/
.thanks__content {
  padding: 140px 0 120px;
  text-align: center;
}
@media (max-width: 767px) {
  .thanks__content {
    padding: 80px 0 120px;
  }
}

.thanks__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(6.4rem, 6.5104166667vw);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  font-family: "Outfit", sans-serif;
}
.thanks__title::before {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_arrow.svg) no-repeat center center/contain;
  width: 1em;
  aspect-ratio: 70/105;
  margin-right: 0.375em;
}
@media (max-width: 767px) {
  .thanks__title {
    font-size: 3.6rem;
  }
}

.thanks__heading {
  margin-top: 60px;
  font-size: min(2rem, 2.34375vw);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .thanks__heading {
    margin-top: 40px;
    font-size: 1.8rem;
  }
}

.thanks__message {
  margin-top: 60px;
  font-size: min(1.6rem, 1.6927083333vw);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}
.thanks__message a {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .thanks__message {
    margin-top: 48px;
    font-size: 1.4rem;
  }
}

.thanks__button {
  margin-top: 60px;
}

/*------------------------------
contact
------------------------------*/
.contact__container {
  padding: 120px 0 240px;
}
@media (max-width: 767px) {
  .contact__container {
    padding: 60px 0 120px;
  }
}

div.wpcf7 .wpcf7-spinner {
  display: none !important;
}

.wpcf7-list-itemDeny { /* denyで否定 */ }
.wpcf7-list-itemDeny .wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
  display: none;
}

.c-form__privacy > label {
  position: relative;
}
.c-form__privacy .wpcf7-not-valid-tip {
  position: absolute;
  transform: translateY(170%);
  margin: 0;
}

.wpcf7-response-output { /* エラー&送信完了テキスト */
  font-size: 16px;
  text-align: center;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-spinner {
  display: none !important;
}

.clone {
  font-family: inherit;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  font-size: 1.6rem;
  pointer-events: none;
  display: flex;
  align-items: center;
  font-size: 2rem;
  line-height: 1.75;
  visibility: hidden;
}
.clone.clone-textarea {
  align-items: flex-start;
}

.only-confirm {
  display: none;
}

.wpcf7-not-valid-tip {
  position: relative;
  bottom: 0;
  line-height: 1;
  margin: 0.8em 0 3.5em;
  font-size: 1.3rem;
  display: none;
}

.c-form dd:has(.invalid) .wpcf7-not-valid-tip:not(.email) {
  display: block;
}

.c-form dd:has(.invalid-mail)[class][class] { /* mail用 必須メッセージをnone,mail用をblock*/ }
.c-form dd:has(.invalid-mail)[class][class] .wpcf7-not-valid-tip {
  display: none;
}
.c-form dd:has(.invalid-mail)[class][class] .wpcf7-not-valid-tip.email {
  display: block;
}

body.confirm[class][class] .only-confirm {
  display: block;
}
body.confirm[class][class] .only-input {
  display: none;
}
body.confirm[class][class] input[type=text], body.confirm[class][class] input[type=email], body.confirm[class][class] textarea {
  background: transparent;
}
body.confirm[class][class] input:not([type=submit]), body.confirm[class][class] textarea {
  pointer-events: none;
}
body.confirm[class][class] input, body.confirm[class][class] textarea {
  visibility: hidden;
}
body.confirm[class][class] .clone, body.confirm[class][class] input[type=submit] {
  visibility: unset;
}
body.confirm[class][class] .wpcf7-checkbox .wpcf7-list-item:not(:has(input:checked)) {
  display: none;
}
body.confirm[class][class] .wpcf7-checkbox .wpcf7-list-item .c-form__radio {
  display: none;
}
body.confirm[class][class] #wpcf7-f15-o1 {
  background: #fff;
}

.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-direction: column;
}

/*------------------------------
会社説明資料ダウンロード
------------------------------*/
.download__container {
  padding: 160px 0 120px;
}

.download__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .download__wrapper {
    display: block;
  }
}

.download__image {
  width: 46.3%;
}
@media (max-width: 767px) {
  .download__image {
    width: 100%;
  }
}

.download__body {
  width: 49%;
}
@media (max-width: 767px) {
  .download__body {
    width: 100%;
    margin-top: 40px;
  }
}

.download__heading {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .download__heading {
    font-size: 2rem;
  }
}

.download__description {
  margin-top: 24px;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .download__description {
    font-size: 1.4rem;
  }
}

.download__form {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .download__form {
    margin-top: 40px;
  }
}
/*# sourceMappingURL=form.css.map */