@charset "UTF-8";
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes secondaryImageOverlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes secondaryImageOverlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes secondaryImageOverlayOut {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(102%);
            transform: translateX(102%);
  }
}
@keyframes secondaryImageOverlayOut {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(102%);
            transform: translateX(102%);
  }
}
.contents form .contact_tit {
  margin-bottom: 20px;
  width: 100%;
  /* 751- */
  margin-top: 0;
}
@media all and (min-width: 751px) {
  .contents form .contact_tit {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
.contents form .contact_tit > p {
  text-align: left;
  font-weight: bold;
  /* 751- */
}
@media all and (min-width: 751px) {
  .contents form .contact_tit > p {
    padding-top: 30px;
    width: 32%;
  }
}
.contents form .column {
  /* 751- */
}
@media all and (min-width: 751px) {
  .contents form .column {
    width: 68%;
  }
}
.contents form .column input, .contents form .column textarea {
  width: 100%;
  border: none;
  background: #f8f8f8;
  padding: 20px;
  font-size: 14px;
}
.contents form .radio_item:first-child {
  margin-bottom: 20px;
}
.contents form .radio_item .radio_name {
  margin-bottom: 10px;
}
.contents form .radio {
  /* 751- */
  /* -750 */
}
@media all and (min-width: 751px) {
  .contents form .radio {
    padding: 21px 0;
    width: 68%;
  }
}
@media all and (max-width: 750px) {
  .contents form .radio {
    margin-top: 20px;
  }
}
.contents form .wpcf7-checkbox {
  /* 751- */
}
@media all and (min-width: 751px) {
  .contents form .wpcf7-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
.contents form .wpcf7-checkbox span {
  margin: 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  .contents form .wpcf7-checkbox span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contents form .wpcf7-checkbox span:not(:last-child) {
    margin-bottom: 20px;
  }
}
.contents form input[type=checkbox] {
  background: #f8f8f8;
  padding: 20px;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.contents form input[type=checkbox]::after {
  position: absolute;
  content: "";
  border: none;
  width: 11px;
  height: 16px;
  left: 15px;
  opacity: 0;
  top: 9px;
  border-right: 3px solid #F28E44;
  border-bottom: 3px solid #F28E44;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.contents form input[type=checkbox]:checked::after {
  opacity: 1;
}

/*デフォルトのスタイルを無効化する*/
input[type=submit] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

span.wpcf7-spinner {
  display: none;
}

.wpcf7 input[type=submit] {
  position: relative;
  color: #fff;
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 100%;
  text-align: center;
  background: #272D31;
  text-decoration: none;
  padding: 10px;
  width: 83px;
  height: 83px;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
@media all and (min-width: 751px) {
  .wpcf7 input[type=submit] {
    width: 100px;
    height: 100px;
  }
}
.wpcf7 input[type=submit]:hover {
  top: 10px;
  left: 10px;
  -webkit-transform: unset;
          transform: unset;
}

.inquiry_btn {
  position: relative;
  margin: 20px auto 0;
  width: 83px;
  height: 83px;
  -webkit-box-shadow: 10px 10px 0 0 #ccc;
          box-shadow: 10px 10px 0 0 #ccc;
  /* 751- */
}
@media all and (min-width: 751px) {
  .inquiry_btn {
    margin: 20px 0 0 auto;
    width: 100px;
    height: 100px;
  }
}
.inquiry_btn::after {
  content: "";
  position: absolute;
  background-image: url(../../images/common/arrow_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 19/16;
  bottom: 14px;
  left: 36px;
  width: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  .inquiry_btn::after {
    bottom: 16px;
    left: 44px;
    width: 14px;
  }
}
.inquiry_btn:hover::after {
  bottom: 6px;
  left: 54px;
}

.attention ul {
  margin-top: 10px;
  padding-left: 1.2em;
}
.attention ul li {
  font-size: 14px;
  list-style: disc;
  line-height: 1.8;
}

.thanks_area {
  padding-top: 80px;
}
.thanks_area .thanks_txt {
  text-align: center;
  line-height: 2;
}
.thanks_area .square_btn {
  margin: 40px auto 0;
}
/*# sourceMappingURL=inquiry.css.map */