@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/* ==========================================================================//
//
// お問い合わせ
//
// ========================================================================== */
/*----------------------------------------------------
フォーム共通
----------------------------------------------------*/
input[type=text],
input[type=tel],
input[type=email],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  font: inherit;
  border-radius: 0%;
  margin: 0;
  padding: 0;
  width: 100%;
  border: none;
  background-color: #F2F2F2;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  padding: 18px 20px;
  color: #1F1F1F;
  /* 751- */
}
@media all and (min-width: 751px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea {
    padding: 26.5px 30px;
  }
}

::-webkit-input-placeholder {
  color: #ADADAD;
}

::-moz-placeholder {
  color: #ADADAD;
}

:-ms-input-placeholder {
  color: #ADADAD;
}

::-ms-input-placeholder {
  color: #ADADAD;
}

::placeholder {
  color: #ADADAD;
}

input[type=submit],
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  font: inherit;
  border: none;
  margin: 0;
  padding: 0;
  color: #1F1F1F;
}
@media (hover: hover) {
  input[type=submit]:hover,
  button:hover {
    cursor: pointer;
  }
}

/* プライバシーポリシーに同意するをクリックしていない場合の表示 */
.button:disabled span {
  opacity: 0.7;
}
@media (hover: hover) {
  .button:disabled:hover .char {
    -webkit-animation: none;
            animation: none;
  }
  .button:disabled:hover span {
    color: #1F1F1F;
    opacity: 0.7;
  }
  .button:disabled:hover::before {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

input[type=checkbox] {
  /* デフォルトを消して擬似要素で作る。 */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  display: block;
  cursor: pointer;
  margin: 0;
  z-index: -1;
  width: 0;
  height: 0;
}
input[type=checkbox]::before {
  /* ベースの四角 */
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background-color: #E1EBE6;
  top: -8px;
  left: 0;
  border-radius: 4px;
  /* 751- */
}
@media all and (min-width: 751px) {
  input[type=checkbox]::before {
    top: -10px;
    width: 50px;
    height: 50px;
  }
}
input[type=checkbox]::after {
  /* チェックを入れた時の表示 */
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/contact/ico_check.svg);
  width: 43px;
  height: 32px;
  top: -6px;
  left: 5px;
  clip-path: inset(0 100% 0 0);
  /* 751- */
}
@media all and (min-width: 751px) {
  input[type=checkbox]::after {
    width: 49px;
    height: 38px;
    top: -6px;
    left: 8px;
  }
}
input[type=checkbox]:checked::after {
  -webkit-animation: check_anime 0.5s forwards;
          animation: check_anime 0.5s forwards;
}
@-webkit-keyframes check_anime {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  30% {
    clip-path: inset(0 20% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
@keyframes check_anime {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  30% {
    clip-path: inset(0 20% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}

input[type=radio] {
  /* デフォルトを消して擬似要素で作る。 */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 36px;
  height: 36px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 5px;
  cursor: pointer;
  /* 751- */
}
@media all and (min-width: 751px) {
  input[type=radio] {
    width: 44px;
    height: 44px;
    margin-right: 10px;
  }
}
input[type=radio]::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1F1F1F;
  content: "";
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
@media all and (min-width: 751px) {
  input[type=radio]::before {
    width: 25px;
    height: 25px;
  }
}
input[type=radio]:checked:before {
  opacity: 1;
}

.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 12px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .wpcf7-radio {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
.wpcf7-radio .wpcf7-list-item {
  margin-left: 0;
  width: 48%;
  /* 751- */
}
@media all and (min-width: 751px) {
  .wpcf7-radio .wpcf7-list-item {
    width: auto;
  }
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
}

.wpcf7-spinner {
  display: none;
}

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

/* 入力画面
---------------------------------------------------------- */
.wrap {
  /* 751- */
}
@media all and (min-width: 751px) {
  .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.wrap .required {
  color: #9F2020;
}
.wrap .fixed_contents {
  margin-bottom: 50px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .wrap .fixed_contents {
    margin-bottom: 0;
    width: 26.7%;
  }
}
.wrap .fixed_contents .texts {
  /* 751- */
}
@media all and (min-width: 751px) {
  .wrap .fixed_contents .texts {
    position: sticky;
    top: 120px;
  }
}
.wrap .fixed_contents p {
  /* 751- */
}
@media all and (min-width: 751px) {
  .wrap .fixed_contents p {
    line-height: 2.07;
  }
}
.wrap .fixed_contents .tel {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  font-size: 15px;
  padding-left: 23px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .wrap .fixed_contents .tel {
    margin-top: 20px;
    font-size: 16px;
    padding-left: 29px;
  }
}
.wrap .fixed_contents .tel::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/contact/ico_tel.svg);
  width: 12px;
  height: 11px;
  left: 0;
  top: 6px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .wrap .fixed_contents .tel::before {
    width: 15px;
    height: 14px;
    top: 5px;
  }
}
.wrap .form_contents {
  /* 751- */
}
@media all and (min-width: 751px) {
  .wrap .form_contents {
    width: 66.7%;
  }
}
.wrap .form_contents .form_list .form_item:not(:first-child) {
  margin-top: 17px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .wrap .form_contents .form_list .form_item:not(:first-child) {
    margin-top: 30px;
  }
}
.wrap .form_contents label {
  margin-bottom: 13px;
  display: block;
  /* 751- */
}
@media all and (min-width: 751px) {
  .wrap .form_contents label {
    font-size: 16px;
  }
}
.wrap .form_contents textarea {
  height: 160px;
  line-height: 2;
  /* 751- */
}
@media all and (min-width: 751px) {
  .wrap .form_contents textarea {
    height: 300px;
  }
}
.wrap .form_contents .acceptance {
  margin-top: 38px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  /* 751- */
}
@media all and (min-width: 751px) {
  .wrap .form_contents .acceptance {
    margin-top: 50px;
  }
}
.wrap .form_contents .acceptance .wpcf7-list-item {
  margin: 0;
}
.wrap .form_contents .acceptance input[type=checkbox] {
  opacity: 0;
  visibility: hidden;
}
.wrap .form_contents .acceptance input[type=checkbox]:checked + span.wpcf7-list-item-label::after {
  opacity: 1;
  visibility: visible;
}
.wrap .form_contents .acceptance .wpcf7-list-item-label {
  padding-left: 60px;
  cursor: pointer;
  position: relative;
  /* 751- */
}
@media all and (min-width: 751px) {
  .wrap .form_contents .acceptance .wpcf7-list-item-label {
    padding-left: 70px;
    font-size: 14px;
  }
}
.wrap .form_contents .acceptance .wpcf7-list-item-label::before, .wrap .form_contents .acceptance .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
}
.wrap .form_contents .acceptance .wpcf7-list-item-label::before {
  background-color: #F2F2F2;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  /* 751- */
}
@media all and (min-width: 751px) {
  .wrap .form_contents .acceptance .wpcf7-list-item-label::before {
    width: 50px;
    height: 50px;
  }
}
.wrap .form_contents .acceptance .wpcf7-list-item-label::after {
  background-image: url(../images/contact/ico_check.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 16.38px;
  height: 11.5px;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
@media all and (min-width: 751px) {
  .wrap .form_contents .acceptance .wpcf7-list-item-label::after {
    width: 20.38px;
    height: 14.5px;
    left: 15px;
  }
}
.wrap .form_contents .acceptance a {
  position: relative;
  display: inline-block;
  color: #1F1F1F;
  /* 751- */
}
.wrap .form_contents .acceptance a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background-color: #1F1F1F;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}
@media (min-width: 751px) and (hover: hover) {
  .wrap .form_contents .acceptance a:hover::before {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
.wrap .form_contents .btn_area {
  margin-top: 50px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .wrap .form_contents .btn_area {
    margin-top: 70px;
  }
}
.wrap .form_contents .btn_area button {
  margin-inline: auto;
}

/* 完了画面
---------------------------------------------------------- */
.thanks {
  padding-top: 90px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .thanks {
    padding-top: 135px;
  }
}
.thanks .thanks_ttl {
  position: relative;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 65px;
  color: #1F1F1F;
  font-weight: 500;
  /* 751- */
}
@media all and (min-width: 751px) {
  .thanks .thanks_ttl {
    font-size: 130px;
    letter-spacing: 0.01em;
  }
}
.thanks .thanks_ttl img {
  position: absolute;
  width: 154px;
  bottom: -22%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /* 751- */
}
@media all and (min-width: 751px) {
  .thanks .thanks_ttl img {
    width: 261px;
    bottom: -3%;
  }
}
.thanks .txts {
  margin: 0 auto;
  text-align: center;
}
.thanks .txts .txt_ttl {
  margin: 50px 0 28px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  /* 751- */
}
@media all and (min-width: 751px) {
  .thanks .txts .txt_ttl {
    margin: 40px 0 30px;
    font-size: 24px;
  }
}
.thanks .txts p {
  display: inline-block;
  width: 100%;
  text-align: left;
  line-height: 1.95;
  /* 751- */
}
@media all and (min-width: 751px) {
  .thanks .txts p {
    text-align: center;
    line-height: 2.35;
  }
}
.thanks .txts p:not(:first-of-type) {
  margin-top: 25px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .thanks .txts p:not(:first-of-type) {
    margin-top: 33px;
  }
}
.thanks .btn_area {
  margin-top: 50px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .thanks .btn_area {
    margin-top: 60px;
  }
}
.thanks .btn_area .button {
  margin-inline: auto;
}
/*# sourceMappingURL=contact.css.map */