@charset "UTF-8";
@font-face {
  font-family: "notoSans400";
  src: url("../font/NotoSansJP-Regular.woff");
}
@font-face {
  font-family: "notoSans500";
  src: url("../font/NotoSansJP-Medium.woff");
}
@font-face {
  font-family: "notoSans700";
  src: url("../font/NotoSansJP-Bold.woff");
}
@font-face {
  font-family: "roboto100";
  src: url("../font/Roboto-Thin.woff");
}
@font-face {
  font-family: "roboto400";
  src: url("../font/Roboto-Regular.woff");
}
@font-face {
  font-family: "roboto500";
  src: url("../font/Roboto-Medium.woff");
}
@media screen and (min-width: 881px) {
  .contact-section {
    padding: 100px 0;
  }
}
@media screen and (max-width: 880px) {
  .contact-section {
    padding: 40px 0 60px;
  }
}

.contact-section__inner {
  max-width: 950px;
  width: calc(100% - 30px);
  margin: 0 auto;
}

.contact-section__formWrap {
  position: relative;
}

.contact-section__item {
  font-size: 15px;
  font-family: notoSans400, sans-serif;
}
@media screen and (min-width: 881px) {
  .contact-section__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .contact-section__item:nth-child(n+2) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 880px) {
  .contact-section__item:nth-child(n+2) {
    margin-top: 30px;
  }
}

.contact-section__itemTitle:after {
  content: "任意";
  padding: 5px 8px;
  display: inline-block;
  font-size: 11px;
  border-radius: 4px;
  background-color: #F5F4F2;
}
.contact-section__itemTitle.--require:after {
  content: "※必須";
  color: #fff;
  background-color: #31D090;
}
@media screen and (min-width: 881px) {
  .contact-section__itemTitle {
    width: 210px;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  .contact-section__itemTitle:after {
    margin-left: 30px;
  }
}
@media screen and (max-width: 880px) {
  .contact-section__itemTitle:after {
    margin-left: 10px;
  }
}

@media screen and (min-width: 881px) {
  .contact-section__itemData {
    width: calc(95% - 210px);
  }
}
@media screen and (max-width: 880px) {
  .contact-section__itemData {
    margin-top: 12px;
  }
}
.contact-section__itemData ::-webkit-input-placeholder {
  color: #8B8B8B;
}
.contact-section__itemData ::-moz-placeholder {
  color: #8B8B8B;
}
.contact-section__itemData :-ms-input-placeholder {
  color: #8B8B8B;
}
.contact-section__itemData ::-ms-input-placeholder {
  color: #8B8B8B;
}
.contact-section__itemData ::placeholder {
  color: #8B8B8B;
}
.contact-section__itemData .wpcf7-not-valid-tip {
  margin-top: 5px;
}

.contact-section__selectWrap {
  position: relative;
}
.contact-section__selectWrap:after {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  position: absolute;
  top: 11px;
  right: 30px;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  pointer-events: none;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

.contact-section__input,
.contact-section__select {
  width: 100%;
  height: 50px;
  border: 1px solid #A7A7A7;
  border-radius: 2px;
}
@media screen and (min-width: 881px) {
  .contact-section__input,
  .contact-section__select {
    padding: 0 30px;
  }
}
@media screen and (max-width: 880px) {
  .contact-section__input,
  .contact-section__select {
    padding: 0 12px;
  }
}

.contact-section__select {
  cursor: pointer;
}

.contact-section__textarea {
  width: 100%;
  line-height: 1.5;
  border: 1px solid #A7A7A7;
  resize: none;
}
@media screen and (min-width: 881px) {
  .contact-section__textarea {
    height: 175px;
    padding: 15px 30px;
  }
}
@media screen and (max-width: 880px) {
  .contact-section__textarea {
    height: 220px;
    padding: 15px 12px;
  }
}

.contact-section__count {
  margin-top: 5px;
  text-align: right;
}

.contact-section__checkWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 881px) {
  .contact-section__checkWrap {
    margin-top: 50px;
  }
}
@media screen and (max-width: 880px) {
  .contact-section__checkWrap {
    margin-top: 40px;
  }
}
.contact-section__checkWrap input {
  display: none;
}
.contact-section__checkWrap input + span {
  position: relative;
  padding-left: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  width: auto;
}
.contact-section__checkWrap input + span:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 2px solid #31D090;
  background: #fff;
}
.contact-section__checkWrap input:checked + span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  width: auto;
}
.contact-section__checkWrap input:checked + span:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 2px solid #31D090;
  background: #31D090;
}
.contact-section__checkWrap input:checked + span:after {
  content: "";
  width: 7px;
  height: 13px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  display: block;
  left: 7px;
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.contact-section__checkWrap .wpcf7-not-valid-tip {
  margin-top: 10px;
  display: block;
  text-align: center;
}
.contact-section__checkWrap .wpcf7-list-item {
  margin: auto;
}

.contact-section__buttonWrap {
  max-width: 314px;
  text-align: center;
}
@media screen and (min-width: 881px) {
  .contact-section__buttonWrap {
    margin: 78px auto 0;
  }
}
@media screen and (max-width: 880px) {
  .contact-section__buttonWrap {
    margin: 30px auto 0;
  }
}
.contact-section__buttonWrap label {
  display: block;
  position: relative;
  position: relative;
  z-index: 0;
}
.contact-section__buttonWrap label:before {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  z-index: -1;
  background-color: #B1B1B1;
}
.contact-section__buttonWrap label:hover {
  color: #fff;
}
.contact-section__buttonWrap label:hover:before {
  width: 100%;
  height: 100%;
  -webkit-transition: width 0.25s, height 0.25s;
  transition: width 0.25s, height 0.25s;
  background-color: rgba(49, 208, 144, 0.9);
}
.contact-section__buttonWrap label:hover:after {
  background-color: #fff;
}
.contact-section__buttonWrap label:after {
  content: "";
  width: 20px;
  height: 6px;
  display: block;
  position: absolute;
  top: 50%;
  right: 26px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  -webkit-mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
          mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  background-color: #1E1E26;
}
.contact-section__buttonWrap .wpcf7-spinner {
  margin: 0;
  position: absolute;
  bottom: -100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contact-section__button {
  width: 100%;
  height: 60px;
}
.contact-section__button.--white {
  background-color: transparent;
}

.contact-section__note {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-section__flex {
  width: calc(95% - 210px);
}
@media screen and (max-width: 880px) {
  .contact-section__flex {
    width: 100%;
  }
}

.contact-section__comment {
  margin-top: 10px;
  font-size: 14px;
  color: darkred;
}