
/* ====================================contact-form */
.contact-form {
  margin-top: -5px;
  display: block;
  z-index: 98;
  height: 100%;
  padding-top: 23px;
  padding-bottom: 16px;
  background: rgba(0, 0, 0, 0.6);
  background: #707070;
  color: #fff;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  -webkit-animation: opa1 1s 0.4s both;
          animation: opa1 1s 0.4s both;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-form__head {
  text-align: center;
}
.contact-form__head h2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8rem;
  font-weight: 800;
  font-size: clamp(2.4rem, -5.1rem + 20vi, 2.7rem);
  line-height: 1.4444444444;
}
.contact-form__head h2 span {
  width: 1.9rem;
  height: 5px;
  background: #00A4AC;
}
.contact-form__head p {
  margin-top: 5px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
}

.contact-form-wrapper {
  margin: 1.5rem 1.2rem 1.4rem;
  padding: 1rem 1rem 4rem;
  border-radius: 19px;
  -webkit-backdrop-filter: blur(26.1564998627px);
          backdrop-filter: blur(26.1564998627px);
  background-color: rgba(0, 0, 0, 0.19);
  overflow: hidden;
}

.contact-form__wrap {
  overflow: hidden;
  position: relative;
}

.contact-form__item {
  margin-top: 2rem;
  line-height: 1;
  /* padding: 2rem 1rem 0rem 1rem; */
  text-align: left;
}

.contact-form__item.submit {
  text-align: center;
}

.contact-form__item.--tel input,
.contact-form__item.--name input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* width: 90%; */
  width: 100%;
  margin-inline: auto;
}

.contact-form__title {
  font-size: 1.6rem;
  line-height: 1.5;
  /* padding: 2rem 1rem 0rem 1rem; */
  text-align: left;
}

.contact-form__item-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.contact-form__item-label .badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 23px;
  background-color: #AD0A17;
  font-weight: 700;
  font-size: 12px;
}

.contact-form__item-label .title {
  /* padding: 0.2rem 0.7rem; */
  margin-left: 9px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

.contact-form__item-input {
  width: 100%;
  margin-top: 1rem;
  padding: 10px 15px;
  border-radius: 3px;
  background: #FFF;
  color: #000;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
}

.contact-form__item-input::-webkit-input-placeholder {
  color: rgba(39, 39, 39, 0.28);
  opacity: 1;
}

.contact-form__item-input::-moz-placeholder {
  color: rgba(39, 39, 39, 0.28);
  opacity: 1;
}

.contact-form__item-input:-ms-input-placeholder {
  color: rgba(39, 39, 39, 0.28);
  opacity: 1;
}

.contact-form__item-input::-ms-input-placeholder {
  color: rgba(39, 39, 39, 0.28);
  opacity: 1;
}

.contact-form__item-input::placeholder {
  color: rgba(39, 39, 39, 0.28);
  opacity: 1;
}

.contact-form__submit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  height: 70px;
  /* margin: 20px 7% 30px 7%; */
  margin: 0 auto;
  padding: 0.2rem 2rem;
  border: solid 2px #fff;
  border-radius: 40px;
  background: #00A4AC;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact-form__submit::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 25px;
  width: 25px;
  height: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/left-white.webp) no-repeat center center;
  background-size: contain;
  content: "";
}

.contact-form__submit:hover {
  border: solid 2px #fff;
  background: #404852;
  color: #fff;
}

.contact-form__submit.--gray {
  height: 49px;
  border: initial;
  background: #3F4852;
}

.contact-form__submit.--gray::before {
  position: absolute;
  width: 97%;
  height: 87%;
  padding: 5px;
  border: 1px solid #FFF;
  border-radius: 27px;
  content: "";
}

.contact-form__submit.--gray:hover {
  background: #00A4AC;
  color: #fff;
}


/* サンクスページ */
.contact-form.--thanks {
	margin-top: 57px;
}

.contact-form__thanks {
  width: 80%;
  margin-top: 15px;
  margin-inline: auto;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: left;
}

.contact-form__return {
  margin-top: 15px;
}
.contact-form__return a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 85%;
  /* height: 70px; */
  /* margin: 20px 7% 30px 7%; */
  margin: 0 auto;
  /* padding: 0.2rem 2rem; */
  /* border: solid 2px #fff; */
  /* border-radius: 40px; */
  /* background: #00A4AC; */
  /* color: #fff; */
  /* font-weight: 700; */
  /* font-size: 20px; */
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
/* .contact-form__return a::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 25px;
  width: 25px;
  height: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/left-white.webp) no-repeat center center;
  background-size: contain;
  content: "";
} */

/* @media (any-hover: hover) {
  .contact-form__return a:hover {
    border: solid 2px #fff;
    background: #404852;
    color: #fff;
  }
} */

/* サンクスページ */
/* ラジオボタン全体 */
.p-form__radio--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* width: 90%; */
  width: 100%;
  margin-top: 0.667rem;
  margin-inline: auto;
  gap: 0.667rem 2rem;
  gap: 10px;
}

.p-form__radio--grid label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  border-radius: 3px;
  background-color: #EFEFEF;
  color: #333;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  min-height: 7.6rem;
}

.p-form__radio--grid label span {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.125;
}
.p-form__radio--grid label span .mini {
  font-size: 1.2rem;
  line-height: 1.5;
}

/* input 非表示 */
.p-form__radio--grid input[type=radio] {
  display: none;
}

/* 選択されたときのスタイル */
.p-form__radio--grid label:has(input[type=radio]:checked) {
  background-color: #00A4AC;
  color: #fff;
}

.qa {
  padding-bottom: 90px;
}

.footer {
  margin-top: initial;
}

/* ====================================contact-form */
/*# sourceMappingURL=map/styles.css.map */
