/*------------------------------------*\
    Form Element
\*------------------------------------*/
.input,
.textarea,
.select,
.select option {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.input,
.textarea,
.select {
  width: 100%;
  line-height: normal;
  margin: 0;
  padding: 0.5em 1em;
  border-radius: 0;
  background-color: #F4F4F4;
  border: 1px solid #F4F4F4;
  color: #333;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.1s;
  outline: 0;
}
.input {
  height: 2.5rem;
  line-height: 1;
  vertical-align: middle;
}
.textarea {
  height: auto;
  min-height: 100px;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  line-height: 1.4;
  vertical-align: top;
}
.select {
  display: block;
  height: 3em;
  padding: 0 24px 0 1rem;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjE0IiB2aWV3Qm94PSIwIDAgOSAxNCI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNLjUgNWw0LTQgNCA0TTguNSA5LjAxbC00IDQtNC00IiBzdHlsZT0iZmlsbDpub25lO3N0cm9rZTojNWU2Yzc1O3N0cm9rZS1taXRlcmxpbWl0OjEwO3N0cm9rZS13aWR0aDouOTNweCIvPjwvc3ZnPg==);
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  text-overflow: "";
}
::-moz-placeholder {
  color: #b2b5b5;
  opacity: 1;
  font-weight: normal;
}
::placeholder {
  color: #b2b5b5;
  opacity: 1;
  font-weight: normal;
}
.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  grid-gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem;
  line-height: 1.5;
  cursor: pointer;
}
.checkbox:has(input:disabled) {
    opacity: 0.4;
  }
.checkbox--btn {
  padding: 0.75em 1em 0.8em;
  border-radius: 6px;
  background: #fff;
}
.checkbox__input {
  position: relative;
  width: 1rem;
  height: 1rem;
  border-radius: 0;
  border: solid 1px var(--color-text);
  background: #FFF;
  box-shadow: 0 0 0 0 transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.checkbox__input::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -70%) rotate(-45deg);
    width: 0.7em;
    height: 0.4em;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    content: "";
  }
.checkbox__input:not(:checked)::before {
    opacity: 0;
  }
.checkbox__input:checked {
    background: var(--color-primary);
    border-color: var(--color-primary);
  }
.input:disabled,
.textarea:disabled,
.input[readonly],
.textarea[readonly] {
  background-color: #f5f5f7;
}
.input:focus,
.textarea:focus,
.select:focus {
  border-color: var(--color-primary);
}
/* フォームレイアウト */
.form-header {
  padding: 50px 0;
  border-top: 1px solid #EBEBEB;
}
.form-item {
  padding: 22px 0;
  border-top: 1px solid #EBEBEB;
}
.form-item--noborder {
  padding-top: 0;
  border-top: none;
}
.form-item--last {
  border-bottom: 1px solid #EBEBEB;
}
.form-item__label {
  display: inline-block;
  position: relative;
  margin-bottom: 0.5em;
  font-weight: 600;
}
.form-item__label:has(.label) {
    padding-right: 4.5rem;
  }
.form-item__label .label {
    position: absolute;
    top: 0.3em;
    right: 0;
  }
.label {
  display: inline-block;
  padding: 0 0.5em;
  border-radius: 3px;
  font-size: 0.75rem;
  background: var(--color-primary);
  color: #fff;
  font-weight: 400;
  text-align: center;
}
.btn--file {
  justify-content: center;
  width: 12.5em;
  height: 2.5em;
}
.btn--send {
  width: 22em;
  height: 4.625em;
  border-radius: 2.3125em;
  background: var(--color-primary);
  color: #fff;
}
.btn--send .circle-icon {
    background: #fff;
    color: var(--color-primary);
  }
.btn--send .text {
    flex: 1;
    font-weight: 600;
    text-align: center;
  }
.btn--send:hover {
    background: var(--color-text);
  }
/* 電話でのお問い合わせ */
.form-tel {
  display: flex;
  justify-content: center;
  margin: 100px auto 0;
}
.form-tel__inner {
  padding: 2rem 5%;
  border-radius: 6px;
  background: #F0F1FC;
  text-align: center;
  letter-spacing: 0.06em;
}
.form-tel__heading {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 600;
}
.form-tel__heading .icon-tel {
    margin-right: 0.2em;
    font-size: 1.3em;
    vertical-align: -0.1em;
  }
.form-tel__tel {
  margin: 1rem 0;
  background: #fff;
  font-family: var(--font-en);
  font-size: 1.5rem;
}
.form-tel__tel a {
    font-size: 1.24em;
  }
/* 資料ダウンロード */
.download-item {
  margin-bottom: 18px;
}
.download-item--box {
  padding: 20px;
  border-radius: 6px;
  background: var(--color-primary-light);
}
.download-item__thumb {
  width: 135px;
  margin: 0 auto;
}
.download-item__thumb img {
    border: 1px solid #999;
  }
.download-item__thumb.large {
    width: 200px;
  }
.download-item__content {
  padding-top: 14px;
}
.download-title {
  display: grid;
  grid-template-columns: 2px 1fr;
  align-items: center;
  grid-gap: 0.5em;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}
.download-title::before {
    height: 1em;
    background: var(--color-primary);
    content: "";
  }
.download-text {
  margin-bottom: 1em;
}
.download-back {
  padding-top: 20px;
  border-top: 1px solid #EBEBEB;
}
@media (max-width: 40em) {}
@media (min-width: 40.001em) {
  .form-tel__heading {
    font-size: 1.25rem;
  }
  .form-tel__tel {
    font-size: 1.8125rem;
  }
  .download-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 56px;
  }
  .download-item--box {
    padding: 44px;
    gap: 36px;
  }
  .download-item__content {
    display: flex;
    flex-direction: column;
  }
  .download-checkbox,
  .download-back {
    margin-top: auto;
  }}
@media (max-width: 48em) {}
@media (min-width: 48.001em) {
  .form-item {
    display: flex;
    justify-content: space-between;
    gap: 2.77%;
  }
  .form-item__label {
    flex: 0 0 25%;
  }
    .form-item__label .label {
      top: 0.5em;
    }
  .form-item__content {
    flex: 1 1 auto;
  }}
@media (max-width: 60em) {}
@media (min-width: 60.001em) {}
@media (max-width: 70em) {}
@media (min-width: 70.001em) {}
/*# sourceMappingURL=maps/form.css.map */
