@charset "UTF-8";
/* -------------------------------------------- */
/* 全体 */
/* -------------------------------------------- */
/* -------------------------------------------- */
/* 見出し・パーツ */
/* -------------------------------------------- */
/* 全体 */
/* TOP */
/* 下層 */
.contact-mv {
  width: 100%;
  height: 330px;
  margin-top: 100px;
}
@media print, only screen and (max-width: 1080px) {
  .contact-mv {
    margin-top: 70px;
  }
}
@media print, only screen and (max-width: 850px) {
  .contact-mv {
    height: 160px;
  }
}
.contact-mv-inner {
  max-width: 1200px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media print, only screen and (max-width: 850px) {
  .contact-mv-inner {
    max-width: 90%;
    width: 100%;
  }
}
.contact-mv-inner {
  height: 100%;
}
.contact-mv-inner::before {
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0 50px 50px 0;
}
@media print, only screen and (max-width: 850px) {
  .contact-mv-inner::before {
    width: 110%;
    border-radius: 0 30px 30px 0;
  }
}
.contact-mv-inner::after {
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  bottom: -60px;
  background-color: #F40214;
  z-index: -1;
  border-radius: 50px 0 0 50px;
}
@media print, only screen and (max-width: 850px) {
  .contact-mv-inner::after {
    bottom: -30px;
  }
}
.contact-mv-inner::before {
  background-image: url(../img/contact/contact-mv.jpg);
}
.contact-mv-heading {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}
.contact-mv-heading__main {
  color: #fff;
  font-family: "Poppins";
  font-size: 70px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
@media print, only screen and (max-width: 850px) {
  .contact-mv-heading__main {
    font-size: 46px;
  }
}
.contact-mv-heading__sub {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.contact-inner {
  max-width: 1000px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media print, only screen and (max-width: 850px) {
  .contact-inner {
    max-width: 90%;
    width: 100%;
  }
}
.contact-inner {
  padding-top: 60px;
  padding-bottom: 170px;
}
@media print, only screen and (max-width: 850px) {
  .contact-inner {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}
.contact-text {
  color: #222;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.04em;
}
.contact-form {
  padding-top: 50px;
}
@media print, only screen and (max-width: 850px) {
  .contact-form {
    padding-top: 40px;
  }
}
.contact-form-table {
  width: 100%;
  margin-bottom: 30px;
}
@media print, only screen and (max-width: 850px) {
  .contact-form-table {
    margin-bottom: 20px;
  }
}
.contact-form-table-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media print, only screen and (max-width: 850px) {
  .contact-form-table-item {
    flex-direction: column;
    justify-content: unset;
    align-items: unset;
  }
}
.contact-form-table-item:nth-of-type(n + 2) {
  margin-top: 30px;
}
@media print, only screen and (max-width: 850px) {
  .contact-form-table-item:nth-of-type(n + 2) {
    margin-top: 20px;
  }
}
.contact-form-table-item:nth-of-type(5) .contact-form-table-item__th {
  padding-top: 0;
}
@media print, only screen and (min-width: 851px) {
  .contact-form-table-item:last-of-type .contact-form-table-item__th--required {
    margin-top: 7px;
  }
}
.contact-form-table-item__th {
  width: 22%;
  max-width: 218px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.04em;
  padding-top: 14px;
}
@media print, only screen and (max-width: 850px) {
  .contact-form-table-item__th {
    width: 100%;
    max-width: 100%;
    margin-bottom: 8px;
    padding-top: 0;
  }
}
.contact-form-table-item__th--required {
  display: inline-block;
  width: 45px;
  font-weight: 500;
  font-size: 13px;
  line-height: normal;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  background-color: #F40214;
  border-radius: 3px;
}
.contact-form-table-item__td {
  width: 75%;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 2em;
}
@media print, only screen and (max-width: 850px) {
  .contact-form-table-item__td {
    width: 100%;
  }
}
.contact-form-table-item__td textarea, .contact-form-table-item__td input {
  font-family: "Noto Sans JP";
  box-sizing: border-box;
  padding: 16px 20px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7em;
}
.contact-form-table-item__td textarea:not([type=radio]), .contact-form-table-item__td input:not([type=radio]) {
  width: 100%;
  background-color: #F5F5F5;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact-form-table-item__td input::-moz-placeholder {
  color: #999999;
}
.contact-form-table-item__td input::placeholder {
  color: #999999;
}
.contact-form-table-item__td input[type=text] {
  height: 60px;
}
.contact-form-table-item__td input[type=tel] {
  height: 60px;
}
.contact-form-table-item__td input[type=email] {
  height: 60px;
}
.contact-form-table-item__td input[type=checkbox] {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
}
.contact-form-table-item__td textarea {
  width: 100%;
  height: 150px;
}
.contact-form-table-item__td textarea::-moz-placeholder {
  color: #999999;
}
.contact-form-table-item__td textarea::placeholder {
  color: #999999;
}
.contact-form-table-item__td .wpcf7-list-item:first-of-type {
  margin-left: 0;
}
.contact-form-policy {
  text-align: center;
}
.contact-form-policy .wpcf7-list-item {
  margin-left: 0;
}
.contact-form-policy a {
  color: #222;
}
.contact-form-submit {
  text-align: center;
  margin-top: 50px;
}
@media print, only screen and (max-width: 850px) {
  .contact-form-submit {
    margin-top: 40px;
  }
}
.contact-form-submit p {
  text-align: center;
}
.contact-form-submit .wpcf7-spinner {
  display: none;
}
.contact-form-submit > p {
  display: inline-block;
  max-width: 320px;
  width: 100%;
  transition: 0.3s;
  position: relative;
}
.contact-form-submit > p::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  background-image: url(../img/common/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: 0.5s;
}
.contact-form-submit > p:hover::before {
  background-image: url(../img/common/icon-arrow-white.svg);
  transform: translateY(-50%) scale(1.2);
}
.contact-form-submit > p:hover input {
  color: #fff;
  background-color: #F40214;
}
.contact-form-submit > p input {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #F40214;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.04em;
  color: #F40214;
  border-radius: 30px;
  height: 60px;
  overflow: hidden;
}
.contact-thanks-btn {
  text-align: center;
  margin-top: 40px;
}
.contact-thanks-btn__link {
  display: inline-block;
  max-width: 320px;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.04em;
  color: #F40214;
  border: 1px solid #F40214;
  padding-top: 21px;
  padding-bottom: 21px;
  box-sizing: border-box;
  background-color: #fff;
  transition: 0.3s;
  border-radius: 30px;
  position: relative;
}
.contact-thanks-btn__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  background-image: url(../img/common/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: 0.5s;
}
.contact-thanks-btn__link:hover {
  color: #fff;
  background-color: #F40214;
}
.contact-thanks-btn__link:hover::before {
  background-image: url(../img/common/icon-arrow-white.svg);
  transform: translateY(-50%) scale(1.2);
}
.contact-thanks-btn__link::before {
  left: 20px;
  right: unset;
  transform: translateY(-50%) rotate(180deg);
}
.contact-thanks-btn__link:hover::before {
  transform: translateY(-50%) rotate(180deg) scale(1.2);
}/*# sourceMappingURL=contact.css.map */