@charset "UTF-8";
/* ------------------------------------------------------
変数
------------------------------------------------------ */
.contact-form {
  padding-top: 30px;
  padding-bottom: 100px;
}
@media (max-width: 428px) {
  .contact-form {
    padding-bottom: 50px;
  }
}

/* =======================================================

問い合わせ

======================================================= */
.form {
  max-width: 1000px;
  margin: 0 auto;
}
.form .error {
  color: #E03434 !important;
  font-size: 90% !important;
  padding-top: 0.5em;
  line-height: 1;
  font-weight: bold;
  min-width: 100%;
}

.form__item {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  border-bottom: #D1D1D8 1px solid;
}
.form__item:first-child {
  padding-top: 0;
}
@media (max-width: 768px) {
  .form__item {
    flex-direction: column;
  }
}
@media (max-width: 428px) {
  .form__item {
    padding: 25px 0;
  }
}

.form__label {
  font-weight: bold;
  min-width: 200px;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .form__label {
    margin-bottom: 10px;
    padding-top: 0;
  }
}

.form__label__ico {
  font-weight: bold;
  color: #fff;
  padding: 0 10px;
  border-radius: 4px;
  display: inline-block;
  margin-left: 10px;
  font-size: 12px;
  line-height: 2em;
}
.form__label__ico.required {
  background: #E03434;
}
.form__label__ico.nini {
  background: rgba(63, 70, 78, 0.6);
}

.form__input {
  width: calc(100% - 250px);
}
@media (max-width: 768px) {
  .form__input {
    width: 100%;
  }
}

.form__privacy {
  margin-top: 40px;
  text-align: center;
  font-weight: bold;
}
.form__privacy a {
  color: #2E60C6;
  text-decoration: underline;
}

input[type=text],
select,
textarea {
  display: block;
  width: 100%;
  padding: 0.6em;
  font-size: 16px;
  border: #F6F6F7 1px solid;
  outline: unset;
  background: #F6F6F7;
  border-radius: 5px;
  width: 100%;
  display: block;
}
input[type=text]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #ccc;
}
input[type=text]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #ccc;
}
input[type=text]:focus,
select:focus,
textarea:focus {
  border: #2E60C6 1px solid;
  box-shadow: 0 0 10px rgba(46, 96, 198, 0.3);
  background: #fff;
}

textarea {
  line-height: 1.6em;
}

.form__select-outer {
  position: relative;
}
.form__select-outer::after {
  position: absolute;
  right: 1.3em;
  top: 18px;
  transform: translateY(-50%);
  line-height: 1em;
  font-size: 12px;
  content: "▼";
  pointer-events: none;
}
.form__select-outer select {
  padding-right: 25px;
}

.form__ratios {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 10px;
}
@media (max-width: 428px) {
  .form__ratios {
    gap: 10px;
  }
}

.mwform-radio-field {
  min-width: 300px;
}
@media (max-width: 768px) {
  .mwform-radio-field {
    min-width: 100%;
  }
}
.mwform-radio-field label:hover {
  cursor: pointer;
}
.mwform-radio-field input[type=radio] {
  opacity: 0;
  width: 0;
  height: 0;
  display: block;
}
.mwform-radio-field .mwform-radio-field-text {
  padding-left: 25px;
  position: relative;
  line-height: 1.6em;
  display: block;
}
.mwform-radio-field .mwform-radio-field-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border: #ddd 1px solid;
  background: #fff;
  display: block;
  border-radius: 50%;
}
.mwform-radio-field .mwform-radio-field-text::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 12px;
  height: 12px;
  background: #2E60C6;
  display: block;
  border-radius: 50%;
  opacity: 0;
}
.mwform-radio-field input[type=radio]:checked + .mwform-radio-field-text {
  color: #2E60C6;
}
.mwform-radio-field input[type=radio]:checked + .mwform-radio-field-text::before {
  border-color: #2E60C6;
}
.mwform-radio-field input[type=radio]:checked + .mwform-radio-field-text::after {
  opacity: 1;
}

.mw_wp_form .vertical-item + .vertical-item {
  margin-top: 0 !important;
}

.form__files {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__attention {
  margin-top: 20px;
  font-size: 0.8em;
}

.btns--center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn--common {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.2em 1.2em;
  padding-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 50px;
  height: 60px;
  min-width: 230px;
  gap: 25px;
  transition: all 0.2s ease;
}

.btn--arrow.blue {
  background: linear-gradient(295deg, #975DE6 0%, #0461BE 100%);
}

.btn--arrow {
  height: 44px;
  width: 44px;
  display: inline-flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.form__btns {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media (max-width: 428px) {
  .form__btns {
    flex-direction: column-reverse;
    gap: 10px;
    margin-top: 20px;
  }
}

.form__submit-btn {
  background-color: #3F464E;
  border: 0;
  color: #fff;
  font-size: 1.8rem;
  min-width: 330px;
  height: 66px;
}
.form__submit-btn:hover {
  background-color: #4B7DE5;
}
@media (max-width: 428px) {
  .form__submit-btn {
    min-width: 300px;
    height: 50px;
    font-size: 1.5rem;
  }
}

.form__back-btn {
  color: #aaa;
  background: #fff;
  border: #D1D1D8 1px solid;
  min-width: 180px;
  justify-content: center;
}
.form__back-btn:hover {
  background: #F6F6F7;
}
@media (max-width: 428px) {
  .form__back-btn {
    min-width: 250px;
  }
}

.mw_wp_form_input .contact__disc.page-confirmation {
  display: none;
}

.mw_wp_form_confirm .contact__disc.page-input {
  display: none;
}
.mw_wp_form_confirm .form__label {
  padding-top: 0;
}
.mw_wp_form_confirm .form__select-outer::after {
  content: none;
}
.mw_wp_form_confirm .form__privacy {
  display: none;
}
.mw_wp_form_confirm .form__attention {
  display: none;
}

.form__complete__ttl {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.4em;
}
@media (max-width: 428px) {
  .form__complete__ttl {
    font-size: 2rem;
  }
}
.form__complete__ttl i {
  font-size: 4rem;
  color: #2E60C6;
  text-align: center;
  display: inline-block;
  transform: translateY(10px);
}
@media (max-width: 428px) {
  .form__complete__ttl i {
    width: 100%;
    transform: none;
    margin-bottom: 10px;
  }
}

.form__complete__txt {
  text-align: center;
  margin-bottom: 30px;
}

.form__complete__back-btn {
  font-weight: bold;
}