@charset "UTF-8";
/***********************共通設定************************/
/* 文字幅が指定幅を超えたときに「...」を表示する */
/*----------------------------------------------------
transition
----------------------------------------------------*/
/* ホバー変更はやさ*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/*----------------------------------------------------
======================================================
mixin-疑似要素
======================================================
----------------------------------------------------*/
/*----------------------------------------------------
テキストホバーで線を表示する

//html例：<p>テキスト<a href="" class="link_text"><span>こちら</span></a>テキス</p>
spanタグにhoverしたときに線画出るようにしている。

----------------------------------------------------*/
/* ホバーで下線が左に消える */
/* ホバーで左から右に線が出る */
/* ホバーで中央から線が出る */
/* ホバーで中央の線がきえる */
/*----------------------------------------------------
mixinで、cssアニメーションを変数で指定できるようにするのに使う
----------------------------------------------------*/
/* インクルードする際はこんなふうに使う */
/* アニメーション名を指定する */
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
フェードイン
----------------------------------------------------*/
main {
  text-align: initial;
  max-width: 1000px;
  margin: 0 auto;
}
main .inner {
  max-width: 1000px;
}

.fv1 {
  margin-bottom: 64px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .fv1 {
    margin-bottom: 78px;
  }
}

/*----------------------------------------------------
入力ページ 導入部分
----------------------------------------------------*/
#inputPageIntro {
  margin: 0 auto 60px;
  text-align: center;
  /* 751- */
}
@media all and (min-width: 751px) {
  #inputPageIntro {
    max-width: 683px;
    margin: 0 auto 116px;
  }
}
#inputPageIntro .textArea {
  text-align: left;
  margin-bottom: 48px;
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 2.333;
  /* 751- */
}
@media all and (min-width: 751px) {
  #inputPageIntro .textArea {
    text-align: center;
    margin-bottom: 74px;
    font-size: 15px;
    letter-spacing: 0.12em;
    line-height: 2.333;
  }
}
#inputPageIntro .area.phone {
  background: #406185;
  padding: 23px 0px 22px;
  /* 751- */
}
#inputPageIntro .area.phone h2 {
  margin-bottom: 16px;
  font-size: 15px;
  letter-spacing: 0.12em;
  line-height: 1.6667;
  color: white;
}
#inputPageIntro .area.phone .tel {
  margin-bottom: 16px;
}
#inputPageIntro .area.phone .tel a {
  text-decoration: none;
  font-size: 24px;
  letter-spacing: 0.12em;
  line-height: 1.6667;
  /* 751- */
}
#inputPageIntro .area.phone .tel a span {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  color: white;
  opacity: 1;
}
#inputPageIntro .area.phone .tel a span::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: white;
  left: 0;
  bottom: -2px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media all and (min-width: 751px) {
  #inputPageIntro .area.phone .tel a:hover span {
    opacity: 0.8;
  }
  #inputPageIntro .area.phone .tel a:hover span::after {
    left: 0%;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0); /* x軸方向に縮小で0にして消えてるように見せる */
    width: 0%;
  }
}
#inputPageIntro .area.phone .tel a span::before {
  content: "";
  position: absolute;
  background: url("../images/icon/phone.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 23px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -35px;
}
#inputPageIntro .area.phone .time {
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 2;
  color: white;
}
@media all and (min-width: 751px) {
  #inputPageIntro .area.phone {
    padding: 53px 0px 53px;
  }
  #inputPageIntro .area.phone h2 {
    margin-bottom: 21px;
    font-size: 18px;
  }
  #inputPageIntro .area.phone .tel {
    margin-bottom: 31px;
  }
  #inputPageIntro .area.phone .tel a {
    font-size: 34px;
  }
  #inputPageIntro .area.phone .tel a span::before {
    width: 21px;
    height: 31px;
    top: 55%;
  }
  #inputPageIntro .area.phone .time {
    font-size: 13px;
    letter-spacing: 0.12em;
    line-height: 2;
  }
}

/*----------------------------------------------------
同意するボタン(JSでスクロールすると同意ボタンが押せるようになる)
----------------------------------------------------*/
#agree {
  padding: 20px;
  font-size: 0.9em;
  border: 1px solid #ddd;
  margin-bottom: 50px;
  height: 360px;
  overflow-y: scroll;
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 2.333;
  /* 751- */
}
@media all and (min-width: 751px) {
  #agree {
    padding: 30px 20px;
    margin-bottom: 80px;
    font-size: 15px;
  }
}

.consentArea.notclick > span {
  opacity: 0.5;
}
.consentArea.notclick #pp-check {
  pointer-events: none;
}
.consentArea .wpcf7-list-item {
  position: relative;
  /* 751- */
}
.consentArea .wpcf7-list-item::after {
  content: "";
  position: absolute;
  background: url("../images/contact/necessary.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 5px;
  height: 5px;
  top: 6px;
  right: -5px;
}
@media all and (min-width: 751px) {
  .consentArea .wpcf7-list-item::after {
    width: 8px;
    height: 8px;
    top: 6px;
    right: -8px;
  }
}

.scrollTitle {
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1.6667;
  color: #414141;
  margin-bottom: 12px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .scrollTitle {
    margin-bottom: 18px;
    font-size: 15px;
  }
}

/*----------------------------------------------------
フォーム(リセット)
----------------------------------------------------*/
input[type=text],
input[type=email],
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid #d6dade;
  border-radius: 0;
  font: inherit;
  outline: none;
  width: 100%;
  font-size: 15px;
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border: 1px solid #1169B0;
  outline: 0;
}

input[type=text],
input[type=email],
select,
textarea {
  padding: 1em 1em;
}

input[type=checkbox] {
  /* デフォルトを消して擬似要素で作る。 */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: -0.2em 1.5em 0 0em;
}
input[type=checkbox]::before {
  /* ベースの四角 */
  content: "";
  position: absolute;
  display: block;
  background: #ECF1F4;
  width: 20px;
  height: 20px;
  top: -10px;
  border-radius: 50%;
  border: 1px solid #ECF1F4;
  /* -375 */
}
@media all and (max-width: 375px) {
  input[type=checkbox]::before {
    top: 0px;
  }
}
input[type=checkbox]::after {
  /* チェックを入れた時の表示 */
  content: "";
  position: absolute;
  display: block;
  background: #716F6F;
  width: 12px;
  height: 12px;
  top: -5.5px;
  left: 3.5px;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 50%;
  /* -375 */
}
@media all and (max-width: 375px) {
  input[type=checkbox]::after {
    top: 4px;
  }
}
input[type=checkbox]:checked::after {
  opacity: 1;
}

input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: -0.2em 1.5em 0 0em;
}
input[type=radio]::before {
  /* ベースの四角 */
  content: "";
  position: absolute;
  display: block;
  background: #fff;
  width: 20px;
  height: 20px;
  top: -10px;
  border-radius: 50%;
  border: 1px solid #d6dade;
  /* -375 */
}
@media all and (max-width: 375px) {
  input[type=radio]::before {
    top: 0px;
  }
}
input[type=radio]::after {
  /* チェックを入れた時の表示 */
  content: "";
  position: absolute;
  display: block;
  background: #716F6F;
  width: 12px;
  height: 12px;
  top: -5.5px;
  left: 3.5px;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 50%;
  /* -375 */
}
@media all and (max-width: 375px) {
  input[type=radio]::after {
    top: 4px;
  }
}
input[type=radio]:checked::after {
  opacity: 1;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background: #ECF1F4;
  border-radius: 0;
  font: inherit;
  cursor: pointer;
  color: #222222;
  position: relative;
  /* 751- */
}
select.is-empty {
  color: #CECECE;
}
@media all and (min-width: 751px) {
  select {
    min-width: 300px;
    width: 30%;
    display: inline;
  }
}

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

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

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

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

::placeholder {
  color: #d7d7d7;
}

.mwform-checkbox-field,
.mwform-radio-field {
  margin-bottom: 20px;
  /* 751- */
}
.mw_wp_form .horizontal-item + .horizontal-item {
  /* innerの幅 */
}
@media all and (min-width: 1201px) {
  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0;
  }
}

/*----------------------------------------------------
フォーム
----------------------------------------------------*/
#form {
  margin-bottom: 80px;
  /* 751- */
  /* 金額など入力させたくない場合に使う */
}
@media all and (min-width: 751px) {
  #form {
    margin-bottom: 130px;
  }
}
#form .row {
  margin-bottom: 32px;
  /* 751- */
  /* innerの幅 */
}
@media all and (min-width: 751px) {
  #form .row {
    margin-bottom: 46px;
  }
}
#form .row:last-child {
  margin-bottom: 0px;
}
#form .row.textArea {
  margin-bottom: 50px;
}
#form .row.select .contents {
  position: relative;
}
#form .row.select .contents::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 2px #1169B0;
  border-right: solid 2px #1169B0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-color: #707070;
  left: calc(100% - 22px);
  top: calc(50% - 5px);
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  /* -750 */
  /* 751- */
}
@media all and (min-width: 751px) {
  #form .row.select .contents::after {
    left: 280px;
  }
}
#form label.typetext,
#form label.typecheck,
#form label.typetextArea {
  display: block;
  cursor: initial;
}
#form .label {
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1.6667;
  /* 751- */
}
@media all and (min-width: 751px) {
  #form .label {
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 1.6667;
    margin-bottom: 10px;
  }
}
#form .contents.noInput input[type=text] {
  background: initial;
  outline: none;
  border: none;
}
#form sup {
  color: #FF0000;
  font-size: 12px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #form sup {
    font-size: 14px;
  }
}

/*----------------------------------------------------
プライバシーポリシーの説明(ファーム最初の画面)
----------------------------------------------------*/
.form_privacy {
  text-align: center;
  margin: 50px 0;
  line-height: 2;
  font-weight: bold;
  color: #000000;
}
.form_privacy a {
  /* 751- */
}
.form_privacy a span {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  color: #5F5F5F;
  opacity: 1;
}
.form_privacy a span::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #5F5F5F;
  left: 0;
  bottom: 1px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media all and (min-width: 751px) {
  .form_privacy a:hover span {
    opacity: 0.8;
  }
  .form_privacy a:hover span::after {
    left: 0%;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0); /* x軸方向に縮小で0にして消えてるように見せる */
    width: 0%;
  }
}

/*----------------------------------------------------
同意チェック
----------------------------------------------------*/
.consentArea {
  text-align: center;
  margin-bottom: 30px;
  /* 751- */
}
.consentArea input[type=checkbox] {
  position: relative;
}
.consentArea input[type=checkbox]::before {
  /* ベースの四角 */
  content: "";
  position: absolute;
  display: block;
  background: #fff;
  width: 30px;
  height: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -15px;
  border-radius: initial;
  border: 1px solid #d6dade;
  border-radius: 50%;
}
.consentArea input[type=checkbox]::after {
  /* チェックを入れた時の表示 */
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: initial;
}
.consentArea input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  background: url("../images/contact/check.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  opacity: 1;
  top: -8px;
  left: -8px;
  background-color: initial;
  /* 751- */
}
@media all and (min-width: 751px) {
  .consentArea input[type=checkbox]:checked::after {
    width: 16px;
    height: 16px;
    top: -8px;
    left: -8px;
  }
}
@media all and (min-width: 751px) {
  .consentArea {
    margin-bottom: 70px;
  }
}
.consentArea .privacyBtn {
  font-size: 12px;
  margin-bottom: 20px;
  text-align: center;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 750px) {
  .consentArea .privacyBtn {
    margin-left: 0px;
  }
}
.consentArea .privacyBtn a {
  color: #1BA1E6;
}
@media all and (min-width: 751px) {
  .consentArea .privacyBtn {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .consentArea .privacyBtn span {
    /* 751- */
  }
  .consentArea .privacyBtn span span {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    color: #1BA1E6;
    opacity: 1;
  }
  .consentArea .privacyBtn span span::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: #1BA1E6;
    left: 0;
    bottom: -2px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
@media all and (min-width: 751px) and (min-width: 751px) {
  .consentArea .privacyBtn span:hover span {
    opacity: 0.8;
  }
  .consentArea .privacyBtn span:hover span::after {
    left: 0%;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0); /* x軸方向に縮小で0にして消えてるように見せる */
    width: 0%;
  }
}

/* スマホ safari用のCSS  */
/* -750 */
@media all and (max-width: 750px) {
  ::-webkit-full-page-media, :future, :root .consentArea input::before {
    left: 0px;
  }
  ::-webkit-full-page-media, :future, :root .consentArea input:checked::after {
    top: 0px;
    left: 7px;
  }
}
/*----------------------------------------------------
送信ボタン、確認ボタン、修正ボタンのレイアウト調整
----------------------------------------------------*/
.submitArea {
  text-align: center;
}

#form.check_page {
  margin-bottom: 80px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #form.check_page {
    margin-bottom: 130px;
  }
}
#form.check_page .submitArea {
  margin-top: 55px;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 750px) {
  #form.check_page .submitArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 150px;
       -moz-column-gap: 150px;
            column-gap: 150px;
    row-gap: 50px;
    max-width: 400px;
    margin: 55px auto 0px;
  }
}
@media all and (min-width: 751px) {
  #form.check_page .submitArea {
    margin-top: 92px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
#form.check_page .submit {
  /* -750 */
}
@media all and (max-width: 750px) {
  #form.check_page .submit {
    margin: 0 auto;
  }
}

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

確認ボタン、入力画面に戻るボタン

----------------------------------------------------*/
/* ボタン共通部分 */
.wrapConfirm, .wrapRepair {
  position: relative;
  display: inline-block;
}
.wrapConfirm::before, .wrapRepair::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  left: 0%;
  bottom: 0;
  display: block;
  height: 1px;
  width: 100%;
  background-color: #182E41;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  /* マウスが離れた時に右に戻る */
  -webkit-transform-origin: left top;
          transform-origin: left 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 (hover: hover) {
  .wrapConfirm:hover::before, .wrapRepair:hover::before {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    /* マウスが乗った時は左から出る */
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
}

.wrapConfirm .submit, .wrapRepair .back_btn {
  width: 220px;
  -webkit-appearance: none;
  cursor: pointer;
  display: inline-block;
  height: 60px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .wrapConfirm .submit, .wrapRepair .back_btn {
    height: 60px;
    width: 250px;
  }
}

/* 確認ボタン、送信ボタンにボタンアニメーションをつけるために覆ってるクラス。inputタグは擬似要素使えないため */
.wrapConfirm {
  height: 60px;
}
.wrapConfirm .submit {
  color: #272727;
  text-align: center;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapConfirm .submit:hover, .wrapConfirm .submit:focus {
  outline: none;
}
.wrapConfirm .submit:-moz-foucus-inner {
  border: none;
  padding: 0;
}

/* 修正ボタン(最初の入力画面に戻るボタン) */
.wrapRepair {
  /* 修正画面に戻るボタン */
}
.wrapRepair .back_btn {
  border-radius: 0;
  font-size: 1em;
  padding: 18px 0;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* -750 */
  /* 751- */
}
.wrapRepair .back_btn:hover, .wrapRepair .back_btn:focus {
  outline: none;
}
.wrapRepair .back_btn:-moz-foucus-inner {
  border: none;
  padding: 0;
}
@media all and (max-width: 750px) {
  .wrapRepair .back_btn {
    margin: 0 auto 0px;
  }
}
@media all and (min-width: 751px) {
  .wrapRepair .back_btn {
    margin-right: 20px;
  }
}

/*
  コンタクトフォーム7 
  非表示にしないとボタンが中央寄せにならない 
*/
.wpcf7-spinner {
  display: none;
}

/*----------------------------------------------------
checkページ
----------------------------------------------------*/
#form.check_page .data_list {
  position: relative;
  /* 751- */
}
#form.check_page .data_list li {
  border-bottom: 1px solid #D0D0D0;
  position: relative;
  padding: 24px 0;
}
#form.check_page .data_list li:first-child {
  border-top: 1px solid #D0D0D0;
}
#form.check_page .data_list li .title {
  line-height: 2;
}
#form.check_page .data_list li .conts {
  line-height: 2;
}
@media all and (min-width: 751px) {
  #form.check_page .data_list li {
    padding: 30px 0 29px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  #form.check_page .data_list .title {
    width: 200px;
  }
  #form.check_page .data_list .conts {
    width: 90%;
  }
}

/*----------------------------------------------------
thanks ページ
----------------------------------------------------*/
.thanks {
  margin-bottom: 80px;
  /* 751- */
}
.thanks .image {
  min-width: 48px;
  width: 14.328%;
  margin: 60px auto 35px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .thanks .image {
    width: 64px;
    margin: 78px auto 60px;
  }
}
.thanks h2 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 2;
  /* 751- */
}
@media all and (min-width: 751px) {
  .thanks h2 {
    margin-bottom: 60px;
    font-size: 24px;
  }
}
.thanks .text {
  margin-bottom: 30px;
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 2.333;
  color: #1E2427;
  text-align: center;
  /* 751- */
}
@media all and (min-width: 751px) {
  .thanks .text {
    font-size: 15px;
  }
}
.thanks .btnArea {
  text-align: center;
}
@media all and (min-width: 751px) {
  .thanks {
    margin-bottom: 130px;
  }
  .thanks h2 {
    margin-bottom: 60px;
  }
  .thanks h2 .en {
    font-size: 80px;
    letter-spacing: 0em;
    line-height: 1;
    font-weight: bold;
  }
  .thanks h2 .jp {
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-weight: bold;
  }
  .thanks .text {
    margin-bottom: 60px;
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 1.866;
  }
  .thanks .text a {
    color: #1BA1E6;
  }
}
/*# sourceMappingURL=contact.css.map */