/*************************************************

section

*************************************************/
.contact-lead {
  margin-bottom: 4rem;
  text-align: center;
}

.contact-item {
  max-width: 80rem;
  margin: 4rem auto 0;
}

.contact-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.contact-item__title-req {
  padding: 0.1rem 0.7rem;
  color: #fff;
  font-size: 1.1rem;
  background-color: #b09841;
  border-radius: 0.5rem;
}

.contact-item__title-nini {
  padding: 0.1rem 0.7rem;
  font-size: 1.1rem;
  background-color: #fff;
  border-radius: 0.5rem;
}

.contact-item__form input,
.contact-item__form textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 1.3rem 1.5rem;
  background: #fff;
  border-radius: 0.5rem;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact-item__form textarea {
  height: 30rem;
  resize: vertical;
}

.contact-item__select {
  position: relative;
}
.contact-item__select::before {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  display: block;
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-right: #000 solid 2px;
  border-bottom: #000 solid 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 2;
}
.contact-item__select select {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 1.3rem 1.5rem;
  background: #fff;
  border-radius: 0.5rem;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  z-index: 1;
  cursor: pointer;
}

.contact-agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3rem;
}
.contact-agree .wpcf7-list-item {
  margin: 0;
}
.contact-agree label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
}
.contact-agree input {
  margin: 0.6rem 0.5rem 0 0;
}

.contact-send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3rem;
}
.contact-send .contact-send__btn {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 23.5rem;
  height: 6rem;
  background-color: #b09841;
  border: #b09841 solid 2px;
  border-radius: 10rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .contact-send .contact-send__btn:hover {
    background-color: #fff;
  }
  .contact-send .contact-send__btn:hover::before {
    opacity: 0;
  }
  .contact-send .contact-send__btn:hover::after {
    opacity: 1;
  }
  .contact-send .contact-send__btn:hover input {
    color: #b09841;
  }
}
.contact-send .contact-send__btn::before, .contact-send .contact-send__btn::after {
  position: absolute;
  top: 50%;
  right: 1.7rem;
  display: block;
  content: "";
  width: 1rem;
  height: 100%;
  background: url(../images/common/arw_02_w.svg) no-repeat center center/1rem auto;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 1;
}
.contact-send .contact-send__btn::after {
  background-image: url(../images/common/arw_02_gold.svg);
  opacity: 0;
  z-index: 2;
}
.contact-send input {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  padding-right: 1rem;
  color: #fff;
  font-weight: 700;
  border: none;
  background: none;
  text-align: center;
  border-radius: 10rem;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  z-index: 2;
}
.contact-send .wpcf7-spinner {
  display: none;
  opacity: 0;
}