@charset "UTF-8";
/*-------------------------------------------

=contact

-------------------------------------------*/
#contact-wrap {
  margin-top: 6.667vw;
  padding: var(--section-padding-base);
}
#contact-wrap .contact-inner {
  border-top: solid 1px #262626;
}
#contact-wrap .contact-inner .contact-body {
  width: min(100%, 80rem);
  padding-top: 6.667vw;
  margin: 0 auto;
}
#contact-wrap .contact-inner .contact-body sup {
  color: #ff0000;
  padding-left: 0.2rem;
}
#contact-wrap .contact-inner .contact-body form {
  border-top: solid 1px #262626;
  margin-top: 3rem;
}
#contact-wrap .contact-inner .contact-body .form-group {
  margin-top: 3rem;
}
#contact-wrap .contact-inner .contact-body .policy-group {
  margin-top: 4rem;
}
#contact-wrap .contact-inner .contact-body .policy-group .headline {
  font-weight: 600;
  margin-bottom: 1rem;
}
#contact-wrap .contact-inner .contact-body .agree-group {
  margin-top: 4rem;
}
#contact-wrap .contact-inner .contact-body .agree-group label {
  display: flex;
  align-items: center;
}
#contact-wrap .contact-inner .contact-body .tel-group {
  background: #141414;
  border-radius: 0.625rem;
  padding: 3rem;
  margin-top: 10vw;
  text-align: center;
}
#contact-wrap .contact-inner .contact-body .tel-group .tel {
  margin-top: 3rem;
  font-size: var(--font-size-xxl);
}
@media screen and (max-width: 599px) {
  #contact-wrap .contact-inner .contact-body p {
    font-size: 1.3rem;
  }
}
/*------------------------------------------------------
 =thanks
-------------------------------------------------------*/
#thanks-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
#thanks-wrap .thanks-inner {
  padding: var(--section-padding-base);
  padding-top: clamp(9rem, 14vw, 14vw);
}
#thanks-wrap .thanks-headline {
  font-size: var(--font-size-xxl);
  font-weight: 600;
  margin-bottom: 3rem;
}
#thanks-wrap .thanks-text {
  text-align: center;
}
@media screen and (max-width: 599px) {
  #thanks-wrap .thanks-text {
    text-align: left;
  }
}
/*------------------------------------------------------
 =form
-------------------------------------------------------*/
input, select, textarea, button {
  border: solid 1px transparent;
  box-shadow: none;
  outline: none;
  appearance: none;
  padding: 1.5rem;
  margin: 1rem 0;
  border-radius: 8px;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
}
select {
  color: #555;
}
select option {
  padding: 0.2rem 0;
}
label {
  cursor: pointer;
}
textarea {
  width: 100%;
}
input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: none;
  background-color: #fff;
  padding: 0;
  margin: 0 1rem 0 0;
  border-radius: 4px;
  position: relative;
  top: -2px;
}
input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: -6px;
  left: 50%;
  margin-left: -10px;
  font-size: 20px;
  color: #00799c;
}
input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
}
.submitBtn {
  display: block;
  border: solid 1px transparent;
  text-align: center;
  background-color: #fff;
  color: #000;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  padding: 15px 30px;
  margin: 30px auto 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.submitBtn:hover {
  background-color: #333333;
  border: solid 1px #333333;
  color: #fff !important;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.wpcf7-not-valid {
  border: solid 1px #ff0000;
}
::placeholder {
  color: #ccc;
  font-size: var(--font-size-sm);
  line-height: 1.6;
  font-family: sans-serif;
}
.input-w-full {
  width: 100%;
}
.input-w-narrow {
  width: 50%;
}
.form-error-txt {
  display: block;
  margin-top: 5px;
  color: #e7380d;
  font-size: var(--font-size-xs);
}
.wpcf7-not-valid-tip {
  display: block;
  margin-top: 5px;
  color: #ff0000;
  font-size: var(--font-size-xs);
}
input[type=radio], input[type=checkbox] {
  vertical-align: middle;
  margin-top: 3px;
}
input[type=file] {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.submitBtn-group {
  text-align: center;
  margin-top: 30px;
}
.submitBtn-group input {
  display: inline-block;
  margin: 0 10px;
}
.textarea_confirm p {
  white-space: pre-line;
}
@media screen and (max-width: 1024px) {
  input {
    padding: 15px 10px;
    margin: 5px 0;
  }
  select {
    padding: 15px 10px;
    margin: 5px 0;
  }
  textarea {
    padding: 15px 10px;
  }
}
@media screen and (max-width: 599px) {
  .submitBtn-group input.submitBtn {
    padding: 12px;
  }
  .input-w-narrow {
    width: 100%;
  }
}