@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
.sec_ttl {
  padding: 20px 0 20px;
}

.form_contents {
  /* 751- */
}
@media all and (min-width: 751px) {
  .form_contents {
    margin: 80px 0;
  }
}

.form_list .form_item {
  margin: 30px 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  .form_list .form_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 60px 0;
  }
}
.form_list .form_item .title {
  /* 751- */
}
@media all and (min-width: 751px) {
  .form_list .form_item .title {
    width: 20%;
  }
}
.form_list .form_item .content {
  /* 751- */
  /* -750 */
}
@media all and (min-width: 751px) {
  .form_list .form_item .content {
    width: 80%;
  }
}
@media all and (max-width: 750px) {
  .form_list .form_item .content {
    margin-top: 10px;
  }
}

.join_hand, .footer_contact {
  display: none;
}

.sec_join .join_content {
  padding: 0px 0px 300px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_join .join_content {
    padding: 100px 0px 300px;
  }
}

.bg_sky::after {
  display: none;
}

/*----------------------------------------------------
フォーム共通
----------------------------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
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: #fff;
  padding: 10px;
  color: #1D2120;
  /* 751- */
}
@media all and (min-width: 751px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  textarea {
    padding: 20px;
  }
}

input[type=text]:not(.address),
input[type=email]:not(.address),
input[type=tel]:not(.address) {
  width: 50%;
}

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

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

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

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

::placeholder {
  color: #e9e9e9;
}

input[type=submit],
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  font: inherit;
  border: none;
  margin: 0;
  padding: 0;
}

.wpcf7-file {
  border: 1px solid #fff;
  padding: 10px;
}

/* ラジオボタンを非表示に */
input[type=radio] {
  display: none;
}

/* ラベルに対してカスタムスタイルを付ける */
.wpcf7-list-item-label {
  position: relative;
  padding-left: 40px; /* ラジオ風の丸を左に表示するため */
  cursor: pointer;
  display: inline-block;
  line-height: 36px;
}

/* 擬似要素でラジオの外枠を表示 */
.wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: background-color 0.2s, border-color 0.2s;
  transition: background-color 0.2s, border-color 0.2s;
}

/* 擬似要素で中の丸（選択時）を表示 */
.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #36BB48;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

/* チェックされた時に中の丸を表示 */
input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.agree {
  display: block;
  text-align: center;
}
.agree a {
  color: #fff;
  position: relative;
}
.agree a::after {
  content: "";
  width: 100%;
  height: 1px;
}
.agree input[type=checkbox] {
  display: none;
}
.agree .wpcf7-list-item-label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  display: inline-block;
  line-height: 1.5;
}
.agree .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 4px; /* 丸みをなくしたい場合 0 に */
  -webkit-transition: background-color 0.2s, border-color 0.2s;
  transition: background-color 0.2s, border-color 0.2s;
}
.agree .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #36BB48;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.agree input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.submit_btn {
  display: block;
  margin: 40px auto 0;
  border-radius: 100px;
  overflow: hidden;
}
.submit_btn input[type=submit], .submit_btn button {
  background: #158A24;
  color: #fff;
  padding: 10px 40px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.submit_btn input[type=submit]:hover, .submit_btn button:hover {
  color: #36BB48;
  background: #fff;
}
.submit_btn .wpcf7-spinner {
  position: absolute;
}
/*# sourceMappingURL=contact.css.map */