@charset "UTF-8";
/* ------------------------------
	レスポンシブ
------------------------------ */
/* ------------------------------
	フォント
------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
/* ------------------------------
	カラー
------------------------------ */
/* ------------------------------
	.contact
------------------------------ */
.contact {
  padding: 9.5rem 0 12rem;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 4.5rem 0 12rem;
  }
}
.contact .wrap {
  max-width: 113rem;
}
.contact .page_ttl {
  margin-bottom: 9.5rem;
}
@media screen and (max-width: 768px) {
  .contact .page_ttl {
    margin-bottom: 8rem;
  }
}

/* ------------------------------
	.form_wrap
------------------------------ */
.form_wrap {
  max-width: 81rem;
  margin: 0 auto;
}
.form_wrap .form_box {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .form_wrap .form_box {
    display: block;
  }
}
.form_wrap .form_box + .form_box {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .form_wrap .form_box + .form_box {
    margin-top: 3rem;
  }
}
.form_wrap .form_ttl {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 24rem;
  line-height: 1.5;
  font-weight: bold;
  vertical-align: middle;
  font-family: "Noto Serif JP", "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, serif;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .form_wrap .form_ttl {
    width: 100%;
    margin-bottom: 1.6rem;
  }
}
.form_wrap .form_ttl .min {
  margin-left: 0.5em;
  font-size: 1.2rem;
}
.form_wrap .ico {
  flex-shrink: 0;
  margin-right: 1.6rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid #646464;
  color: #646464;
  vertical-align: middle;
  font-family: "Noto Serif JP", "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, serif;
  line-height: 1;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.form_wrap .ico.req {
  border-color: #D32929;
  color: #D32929;
}
.form_wrap .form_txt {
  position: relative;
  width: 100%;
  line-height: 1.6;
}
.form_wrap .form_txt * {
  line-height: 1.6;
}
.form_wrap .form_txt .txt {
  padding: 6px 0;
  line-height: 1.8;
}
.form_wrap .form_input,
.form_wrap .form_select,
.form_wrap .form_textarea {
  width: 100%;
  height: 4.2rem;
  padding: 0 1.5rem;
  background: #fff;
  border: 1px solid #CDCDCD;
  border-radius: 0;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .form_wrap .form_input,
  .form_wrap .form_select,
  .form_wrap .form_textarea {
    font-size: 1.3rem;
  }
}
.form_wrap .form_input::placeholder,
.form_wrap .form_select::placeholder,
.form_wrap .form_textarea::placeholder {
  color: #9B9B9B;
}
.form_wrap .form_select {
  padding-right: 3rem;
  background: #fff url(../img/ico_select01.svg) no-repeat;
  background-size: 1.1rem;
  background-position: calc(100% - 1.2rem) center;
}
.form_wrap .form_textarea {
  width: 100%;
  height: 12.6rem;
  padding: 1rem 1.5rem;
  line-height: 1.8;
}
.form_wrap .form_textarea::placeholder {
  color: #9B9B9B;
}
.form_wrap .checkbox label {
  position: relative;
  display: flex;
  padding: 0.5rem 0;
  line-height: 1.5;
  cursor: pointer;
}
.form_wrap .checkbox label span {
  display: flex;
}
.form_wrap .checkbox label span::before {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  content: "";
  display: block;
  width: 1.9rem;
  height: 1.9rem;
  margin-right: 2.4rem;
  margin-top: 0.3rem;
  border: 1px solid #CDCDCD;
}
.form_wrap .checkbox label span::after {
  position: absolute;
  z-index: 2;
  top: 1.1rem;
  left: 0.4rem;
  margin: auto;
  content: "";
  display: none;
  width: 1.3rem;
  height: 1.3rem;
  background: #161616;
}
.form_wrap .radio label {
  display: flex;
  font-size: 1.6rem;
}
.form_wrap .radio label span {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 2.2rem;
  line-height: 1.3;
  cursor: pointer;
}
.form_wrap .radio label span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: #fff;
  border: 0.2rem solid #CDCDCD;
  border-radius: 50%;
}
.form_wrap .radio label span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.4rem;
  margin: auto;
  content: "";
  display: none;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #646464;
}
.form_wrap input[type=checkbox],
.form_wrap input[type=radio] {
  width: 1px;
  margin: 0;
  visibility: hidden;
}
.form_wrap input[type=checkbox]:checked,
.form_wrap input[type=radio]:checked {
  appearance: none;
}
.form_wrap .radio input[type=radio]:checked + span::after,
.form_wrap .checkbox input[type=checkbox]:checked + span::after {
  display: block;
}
.form_wrap .radio_wrap,
.form_wrap .checkbox_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 3rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .form_wrap .radio_wrap,
  .form_wrap .checkbox_wrap {
    flex-direction: column;
    gap: 1rem;
  }
}
.form_wrap .btm_check {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6.4rem;
}
@media screen and (max-width: 768px) {
  .form_wrap .btm_check {
    margin-top: 4.8rem;
  }
}
.form_wrap .btm_check .ico {
  margin: 0 0 0 2.4rem;
}
.form_wrap .btm_check .checkbox {
  font-weight: 500;
  font-size: 1.6rem;
}
.form_wrap .btm_check .checkbox .link {
  text-decoration: underline;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .form_wrap .btm_check .checkbox .link:hover {
    text-decoration: none;
  }
}
.form_wrap .btm_check .wpcf7-list-item {
  margin: 0;
}
.form_wrap .btm_check .wpcf7-list-item-label {
  font-weight: 500;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, serif;
}
.form_wrap .btm_check .wpcf7-list-item-label .link {
  text-decoration: underline;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .form_wrap .btm_check .wpcf7-list-item-label .link:hover {
    text-decoration: none;
  }
}
.form_wrap .btn_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 5.6rem;
}
@media screen and (max-width: 768px) {
  .form_wrap .btn_box {
    margin-top: 4.8rem;
  }
}
.form_wrap .form_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 29.6rem;
  height: 5.6rem;
  background: #F8F8F8;
  border: 1px solid #161616;
  font-size: 2rem;
  line-height: 1.3;
  font-size: 1.6rem;
  -webkit-transition: background 0.4s ease, color 0.4s ease, border 0.4s ease;
  transition: background 0.4s ease, color 0.4s ease, border 0.4s ease;
}
@media screen and (max-width: 768px) {
  .form_wrap .form_btn {
    height: 5.1rem;
  }
}
.form_wrap .form_btn:disabled {
  background: #DBDBDB;
  color: #646464;
  border-color: #DBDBDB;
  cursor: not-allowed;
}
.form_wrap .form_btn:disabled:hover {
  opacity: 1;
  background: #DBDBDB;
  color: #646464;
  border-color: #DBDBDB;
}
@media screen and (min-width: 769px) {
  .form_wrap .form_btn:hover {
    opacity: 1;
    background: #161616;
    color: #fff;
  }
}

/* ------------------------------
	.thanks
------------------------------ */
@media screen and (min-width: 769px) {
  .contact.thanks {
    padding-bottom: 20rem;
  }
}
.contact.thanks .wrap {
  max-width: 96rem;
}
.contact.thanks .thanks_ttl {
  margin-bottom: 12rem;
  font-size: 5.6rem;
  font-weight: 600;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .contact.thanks .thanks_ttl {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 8rem;
  }
}
.contact.thanks .space1 {
  margin-top: 2rem;
}
.contact.thanks .space2 {
  margin-top: 7rem;
}
.contact.thanks .ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20.8rem;
  height: 4.4rem;
  margin-bottom: 3rem;
  border: 1px solid #161616;
  font-weight: bold;
}
.contact.thanks .txt.min {
  font-size: 1.4rem;
  line-height: 1.5;
}