@charset "UTF-8";
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 変数の定義
--------------------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 色の定義
--------------------------------------------------*/
/* フォントの定義
--------------------------------------------------*/
html,
body,
ul,
ol,
dl,
li,
dt,
dd,
a,
p,
div,
img,
svg,
table,
tr,
th,
td,
figure {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: #000000;
  font-feature-settings: "palt";
}

body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
img,
svg,
a,
table,
tr,
th,
td,
figure {
  font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1.4;
  font-weight: 700;
  font-feature-settings: "palt";
}

.en {
  font-family: "Clash Display", sans-serif;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* お問い合わせ・資料請求
--------------------------------------------------*/
/* 入力画面
--------------------------------------------------*/
.form_area {
  padding-top: 80px;
}
@media screen and (max-width: 999px) {
  .form_area {
    padding-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .form_area {
    padding-bottom: 40px;
  }
}
.form_area .wrap_intro_txt {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 999px) {
  .form_area .wrap_intro_txt {
    margin-bottom: 40px;
  }
}
.form_area .wrap_intro_txt .txt:first-child {
  margin-bottom: 20px;
}
.form_area .wrap_intro_txt .sample {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin: 40px auto 0;
  padding: 0 30px 10px 10px;
}
@media screen and (max-width: 768px) {
  .form_area .wrap_intro_txt .sample {
    flex-direction: column;
    margin-top: 30px;
    padding: 0 20px 20px;
  }
}
.form_area .wrap_intro_txt .sample .sample_img {
  width: 150px;
  height: auto;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .form_area .wrap_intro_txt .sample .sample_img {
    width: 120px;
  }
}
.form_area .wrap_intro_txt .sample .line_txt {
  font-size: 1.8rem;
  font-weight: 700;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5px;
}
@media screen and (max-width: 768px) {
  .form_area .wrap_intro_txt .sample .line_txt {
    font-size: 1.4rem;
  }
}
.form_area .wrap_intro_txt .sample .line_txt > span {
  border-bottom: dashed 1px #0976BC;
}
.form_area .wrap_step {
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 120px;
       column-gap: 120px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 999px) {
  .form_area .wrap_step {
    -moz-column-gap: 80px;
         column-gap: 80px;
    margin-bottom: 40px;
  }
}
.form_area .wrap_step .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
@media screen and (max-width: 999px) {
  .form_area .wrap_step .item {
    row-gap: 8px;
  }
}
.form_area .wrap_step .item .number {
  font-size: 1.4rem;
  color: #A7B7C2;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  background: #E9F1F6;
  position: relative;
}
@media screen and (max-width: 999px) {
  .form_area .wrap_step .item .number {
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
  }
}
.form_area .wrap_step .item .number::after {
  content: "";
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  border-top: dashed 1px #C6D9E6;
}
@media screen and (max-width: 999px) {
  .form_area .wrap_step .item .number::after {
    left: calc(100% + 8px);
    width: 64px;
  }
}
.form_area .wrap_step .item .txt {
  line-height: 1;
}
@media screen and (max-width: 999px) {
  .form_area .wrap_step .item .txt {
    font-size: 1.4rem;
  }
}
.form_area .wrap_step .item:last-child .number::after {
  display: none;
}
.form_area .wrap_step .item.current .number {
  color: #fff;
  background: linear-gradient(to top right, #0065A3, #0982CC);
}

/* form
--------------------------------------------------*/
.form_wrap {
  display: grid;
  grid-template-columns: minmax(25%, 260px) 1fr;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: solid 1px #C6D9E6;
}
@media screen and (max-width: 999px) {
  .form_wrap {
    grid-template-columns: auto;
    row-gap: 15px;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}
.form_wrap.message_box {
  padding-bottom: 0;
  margin-bottom: 80px;
  border: none;
}
@media screen and (max-width: 999px) {
  .form_wrap.message_box {
    margin-bottom: 40px;
  }
}

.required {
  font-size: 1.4rem;
  line-height: 1;
  background-color: #36B2FF;
  padding: 2px 10px;
  margin-right: 10px;
}

.form_box {
  position: relative;
}
.form_box select, .form_box input, .form_box textarea {
  width: 100%;
  padding: 16px;
  border-radius: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  font-size: 1.6rem;
  color: #041B29;
  border: solid 1px #C6D9E6;
  background-color: #F6F7F9;
  transition: border-color 0.4s ease;
}
.form_box select::-moz-placeholder, .form_box input::-moz-placeholder, .form_box textarea::-moz-placeholder {
  color: #A7B7C2;
}
.form_box select::placeholder, .form_box input::placeholder, .form_box textarea::placeholder {
  color: #A7B7C2;
}
.form_box select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml,%3Csvg width='10' height='11' viewBox='0 0 11 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.15184 11.9964L0 0L5.15184 2.62501L10.3047 0L5.15184 11.9964Z' fill='%230976BC'/%3E%3C/svg%3E") no-repeat right 16px center/10px auto;
  background-color: #F6F7F9;
}
.form_box textarea {
  height: 200px;
}
.form_box {
  /* フォーカス時の共通 */
}
.form_box select:focus,
.form_box input:focus,
.form_box textarea:focus {
  border: 1px solid #0976BC;
}
.form_box .note {
  font-size: 1.4rem;
  color: #8E9DA7;
  margin-top: 6px;
}

.count_txt {
  font-size: 1.4rem;
  color: #8E9DA7;
}

.agree_wrap {
  text-align: center;
}
@media screen and (max-width: 999px) {
  .agree_wrap {
    margin-bottom: 30px;
  }
}
.agree_wrap .form_ttl .link_txt {
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-right: 4px;
  position: relative;
  transition: color 0.4s ease;
}
.agree_wrap .form_ttl .link_txt::after {
  content: "";
  background-color: currentColor;
  -webkit-mask: var(--sub-arrow) no-repeat center/contain;
  mask: var(--sub-arrow) no-repeat center/contain;
  width: 14px;
  height: 14px;
  transform: rotate(-135deg);
}
.agree_wrap .form_ttl .link_txt:hover {
  color: #0CA0FF;
}
.agree_wrap .wpcf7-list-item {
  margin: 0;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-top: 15px;
}
.agree_wrap .wpcf7-list-item input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
  padding: 0;
  width: 24px;
  height: 24px;
  border: solid 1px #A0ACBA;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  transition: background 0.4s ease, border-color 0.4s ease;
}
@media screen and (max-width: 768px) {
  .agree_wrap .wpcf7-list-item input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
}
.agree_wrap .wpcf7-list-item input[type=checkbox]:checked {
  background: #0976BC;
  border-color: #0976BC;
}
.agree_wrap .wpcf7-list-item input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.19632 9L0 4.73389L1.04908 3.66736L4.19632 6.86694L10.9509 0L12 1.06653L4.19632 9Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
  width: 12px;
  height: 9px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  margin-top: 40px;
}
.btn_wrap .btn {
  position: relative;
}
.btn_wrap .btn input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  cursor: pointer;
  width: 100%;
  text-align: left;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding-left: 30px;
}
.btn_wrap .btn .wpcf7-spinner {
  display: none;
}
.btn_wrap .btn .arrow {
  margin-left: auto;
}

/* 確認ページ
--------------------------------------------------*/
.btn_wrap .bl_form_back {
  /* ブラウザ標準スタイルのリセット */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  color: #0976BC;
  text-decoration: underline;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1.8;
  vertical-align: middle;
  font-weight: 500;
  font-size: 1.6rem;
  transition: color 0.4s ease;
}
.btn_wrap .bl_form_back:hover {
  color: #0CA0FF;
}

.wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  color: red;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 4px;
}

.wpcf7-response-output {
  display: none;
}

.txt_error {
  display: none;
}
.txt_error.is-show {
  display: block;
  text-align: center;
  color: red;
  margin-bottom: 40px;
}

body.is-confirm .note {
  display: none;
}

/* 完了ページ
--------------------------------------------------*/
.complete_txt {
  text-align: center;
}
.complete_txt .thanks_img {
  width: auto;
  height: 140px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .complete_txt .thanks_img {
    height: 100px;
    margin-bottom: 20px;
  }
}
.complete_txt .thanks_img img {
  width: 100%;
  height: 100%;
}
.complete_txt h2 {
  font-size: clamp(2.4rem, 2.4vw, 3rem);
  margin-bottom: 20px;
}
.complete_txt .wrap_txt {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .complete_txt .wrap_txt {
    margin-bottom: 30px;
  }
}
.complete_txt .wrap_txt .txt:first-child {
  margin-bottom: 20px;
}
.complete_txt .other_link {
  padding: 40px 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 999px) {
  .complete_txt .other_link {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 768px) {
  .complete_txt .other_link {
    margin-bottom: 30px;
  }
}
.complete_txt .other_link h3 {
  font-size: clamp(2rem, 2vw, 2.4rem);
}
.complete_txt .other_link h3, .complete_txt .other_link .txt {
  margin-bottom: 15px;
}
.complete_txt .other_link .wrap_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 999px) {
  .complete_txt .other_link .wrap_btn {
    flex-direction: column;
    row-gap: 10px;
  }
}
.complete_txt > .btn {
  margin-inline: auto;
}/*# sourceMappingURL=form.css.map */