@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/* ホバー変更はやさ*/
/* ボーダーボックスの変更*/
/* ボーダーボックスの変更*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/*----------------------------------------------------
フォント設定
----------------------------------------------------*/
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
背景
----------------------------------------------------*/
/*----------------------------------------------------
icon回転
----------------------------------------------------*/
/*----------------------------------------------------
矢印
----------------------------------------------------*/
/*----------------------------------------------------
リストマーカー
----------------------------------------------------*/
/*----------------------------------------------------
擬似要素
----------------------------------------------------*/
/*----------------------------------------------------
ボタン

基本のhtml
<a href="" class="btn">
  <span>私たちについて</span>
</a>
----------------------------------------------------*/
/* 初期：bg塗りあり、枠線塗りあり ⇨ hoverで反転 */
/* 初期：bg塗りなし、枠線塗りあり ⇨ hoverで反転 */
/* 右矢印付き 「▶︎」*/
/* ボタン矢印あり 「 ---\ 」*/
/* '+' ありボタン */
/* hoverするとブワッとかわる */
/*----------------------------------------------------
ページ共通部分
----------------------------------------------------*/
.head_contents {
  /* 751- */
}
@media all and (min-width: 751px) {
  .head_contents {
    padding: 70px 40px 84px;
  }
}
@media all and (min-width: 1200px) {
  .head_contents {
    padding: 70px 144px 84px;
  }
}

.attention {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.846;
  margin-bottom: 40px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .attention {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2;
    margin-bottom: 60px;
  }
}

.intro {
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #C7D0D6;
  /* 751- */
}
.intro .yellow {
  margin-top: 24px;
  color: #FF8900;
  font-size: 11px;
  letter-spacing: 0em;
  line-height: 1.818;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media all and (min-width: 751px) {
  .intro {
    padding-bottom: 52px;
    margin-bottom: 40px;
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 2;
  }
  .intro .yellow {
    margin-top: 24px;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2.142;
  }
}

/*----------------------------------------------------
フォームフロー
----------------------------------------------------*/
.lt_flow {
  margin-bottom: 50px;
  /* 751- */
}
.lt_flow li {
  background-color: #ECF1F4;
  padding: 10px 0;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 250px;
  color: #1BA1E6;
  position: relative;
}
.lt_flow li.current {
  background-color: #697D93;
  color: white;
}
.lt_flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  background: url("../images/contact/triangle.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  left: 50%;
  bottom: -30px;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}
@media all and (min-width: 751px) {
  .lt_flow li {
    padding: 0px;
    height: 40px;
    margin: 0 auto 50px;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2.857;
    width: 266px;
  }
}
@media all and (min-width: 1200px) {
  .lt_flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 80px;
  }
  .lt_flow li {
    margin: 0;
    max-width: 250px;
    color: #1BA1E6;
  }
  .lt_flow li:not(:last-child)::after {
    content: "";
    position: absolute;
    background: url("../images/contact/triangle.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    left: calc( 100% + 25px);
    bottom: calc( 50% - 5px);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

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

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

::-webkit-input-placeholder {
  color: #9FB1BA;
}

::-moz-placeholder {
  color: #9FB1BA;
}

:-ms-input-placeholder {
  color: #9FB1BA;
}

::-ms-input-placeholder {
  color: #9FB1BA;
}

::placeholder {
  color: #9FB1BA;
}

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

input[type=checkbox],
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=checkbox]::before,
input[type=radio]::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,
input[type=radio]::before {
    top: 0px;
  }
}
input[type=checkbox]::after,
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=checkbox]::after,
input[type=radio]::after {
    top: 4px;
  }
}
input[type=checkbox]:checked::after,
input[type=radio]:checked::after {
  opacity: 1;
}

.consentArea {
  margin-bottom: 50px;
  /* 751- */
}
.consentArea input[type=checkbox] {
  position: relative;
}
.consentArea input[type=checkbox]::before {
  /* ベースの四角 */
  content: "";
  position: absolute;
  display: block;
  background: #ECF1F4;
  width: 40px;
  height: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -30px;
  border-radius: initial;
  border: 1px solid #ECF1F4;
}
.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: 30px;
  height: 30px;
  background-repeat: no-repeat;
  opacity: 1;
  top: -10px;
  left: -25px;
  background-color: initial;
}
@media all and (min-width: 751px) {
  .consentArea {
    margin-bottom: 70px;
  }
}

.submitArea {
  text-align: center;
}

.submit {
  width: 220px;
  -webkit-appearance: none;
  background-color: #1BA1E6;
  border: 1px solid #1BA1E6;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  padding: 18px 0;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
.submit:hover, .submit:focus {
  outline: none;
}
.submit:-moz-foucus-inner {
  border: none;
  padding: 0;
}
@media all and (min-width: 751px) {
  .submit {
    height: 60px;
    width: 250px;
  }
  .submit:hover {
    background-color: #fff;
    color: #1BA1E6;
  }
}

.back_btn {
  width: 220px;
  -webkit-appearance: none;
  background-color: white;
  border-radius: 0;
  color: #1BA1E6;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  padding: 18px 0;
  text-decoration: none;
  -webkit-filter: drop-shadow(0px 0px 20px rgba(0, 147, 255, 0.16));
          filter: drop-shadow(0px 0px 20px rgba(0, 147, 255, 0.16));
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
.back_btn:hover, .back_btn:focus {
  outline: none;
}
.back_btn:-moz-foucus-inner {
  border: none;
  padding: 0;
}
@media all and (min-width: 751px) {
  .back_btn {
    height: 60px;
    width: 250px;
  }
  .back_btn:hover {
    background-color: #1BA1E6;
    color: white;
  }
}

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

.mwform-checkbox-field,
.mwform-radio-field {
  margin-bottom: 20px;
  /* 751- */
}
/*----------------------------------------------------
フォーム
----------------------------------------------------*/
#form {
  /* 751- */
  /* CT⇨センターの意味*/
}
#form .file_yellow {
  display: inline-block;
  color: #FF8900;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 5px;
}
#form .row {
  margin-bottom: 40px;
}
#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: 1px solid #1BA1E6;
  border-right: 1px solid #1BA1E6;
  -webkit-transform: rotate(45deg);
          transform: 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 .row.row_checkBox .row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#form .row.row_checkBox .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#form .row.row_checkBox .contents .horizontal-item {
  margin-left: 0;
  /* -750 */
}
@media all and (max-width: 751px) {
  #form .row.row_checkBox .contents .horizontal-item {
    margin-bottom: 50px;
  }
}
#form .row.row_file {
  /* 751- */
}
#form .row.row_file .row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#form .row.row_file .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#form .row.row_file .contents .horizontal-item {
  margin-left: 0;
}
#form .row.row_file input {
  margin-bottom: 10px;
}
@media all and (min-width: 751px) {
  #form .row.row_file input {
    margin-bottom: 20px;
  }
}
#form .label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
}
#form label.typetext,
#form label.typecheck,
#form label.typetextArea {
  display: inline-block;
  cursor: initial;
  /* -750 */
}
@media all and (max-width: 751px) {
  #form label.typetext,
#form label.typecheck,
#form label.typetextArea {
    margin-bottom: 25px;
  }
}
#form .consentArea {
  text-align: center;
}
#form .necessary {
  margin-left: 20px;
  display: inline-block;
  background-color: #1BA1E6;
  color: white;
  padding: 1px 6px;
}
@media all and (min-width: 751px) {
  #form .label {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.6667;
  }
  #form .label .necessary {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.6667;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
}
@media all and (min-width: 1161px) {
  #form label.typetext,
#form label.typecheck,
#form label.typetextArea {
    display: block;
    margin-bottom: 0px;
    width: 26.976%;
  }
  #form .row:not(.textArea) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #form .row.textArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #form .row.row_checkBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #form .contents {
    width: 72.9%;
  }
  #form .contents.column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #form .contents.column label {
    margin-bottom: 30px;
  }
}

/*----------------------------------------------------
checkページ
----------------------------------------------------*/
#form.check_page {
  /* チェックページでは非表示。擬似要素は矢印 */
}
#form.check_page .row {
  margin-bottom: 0;
}
#form.check_page .necessary {
  display: none;
}
#form.check_page .submitArea {
  margin-top: 55px;
  /* -750 */
}
@media all and (max-width: 751px) {
  #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;
  }
}
#form.check_page .submit {
  /* -750 */
}
@media all and (max-width: 751px) {
  #form.check_page .submit {
    margin: 0 auto;
  }
}
#form.check_page .back_btn {
  /* -750 */
}
@media all and (max-width: 751px) {
  #form.check_page .back_btn {
    margin: 0 auto 20px;
  }
}
#form.check_page .submit {
  width: 220px;
  -webkit-appearance: none;
  background-color: #1BA1E6;
  border-radius: 0;
  color: white;
  cursor: pointer;
  display: block;
  font-size: 1em;
  padding: 18px 0;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
#form.check_page .submit:hover, #form.check_page .submit:focus {
  outline: none;
}
#form.check_page .submit:-moz-foucus-inner {
  border: none;
  padding: 0;
}
@media all and (min-width: 751px) {
  #form.check_page .submit {
    height: 60px;
    width: 250px;
  }
  #form.check_page .submit:hover {
    background-color: white;
    color: #1BA1E6;
  }
}
#form.check_page .attention,
#form.check_page .consentArea,
#form.check_page .row.select .contents::after {
  display: none;
}

.check {
  /* 751- */
}
.check .row {
  border-top: 1px solid #D3D3D3;
  border-bottom: 1px solid #D3D3D3;
  padding: 2em 0;
  margin-bottom: 0;
}
.check .row label {
  position: relative;
  display: inline-block;
  margin: 0 0 1em;
  font-size: 15px;
  color: #1BA1E6;
  font-weight: bold;
}
@media all and (min-width: 751px) {
  .check .row {
    padding: 33px 0;
  }
  .check .row label {
    margin-bottom: 25px;
  }
  .check .submitArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .check .submitArea .back_btn {
    margin-right: 20px;
  }
}

/*----------------------------------------------------
thanks
----------------------------------------------------*/
.thanks {
  /* 751- */
}
.thanks h2 {
  text-align: center;
  margin-bottom: 30px;
}
.thanks h2 span {
  display: block;
  color: #1BA1E6;
}
.thanks h2 .en {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  letter-spacing: 0em;
  line-height: 1;
}
.thanks h2 .jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
}
.thanks .text {
  margin-bottom: 30px;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.866;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #1E2427;
}
.thanks .btnArea {
  text-align: center;
}
@media all and (min-width: 751px) {
  .thanks h2 {
    margin-bottom: 60px;
  }
  .thanks h2 .en {
    font-size: 80px;
    letter-spacing: 0em;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  .thanks h2 .jp {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 2;
  }
  .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 */