/*------------------------------------*\
    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 1rem;
  border-radius: 0;
  background-color: #f9f8f5;
  border: 1px solid #f9f8f5;
  color: #333;
  font-family: inherit;
  font-size: 1.6rem;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  outline: 0;
}
.input {
  height: 3em;
  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: "";
}
::-webkit-input-placeholder {
  color: #b2b5b5;
  opacity: 1;
  font-weight: normal;
}
::-moz-placeholder {
  color: #b2b5b5;
  opacity: 1;
  font-weight: normal;
}
:-ms-input-placeholder {
  color: #b2b5b5;
  opacity: 1;
  font-weight: normal;
}
::-ms-input-placeholder {
  color: #b2b5b5;
  opacity: 1;
  font-weight: normal;
}
::placeholder {
  color: #b2b5b5;
  opacity: 1;
  font-weight: normal;
}
.checkbox,
.radio {
  display: inline-block;
  position: relative;
  z-index: 0;
  margin: 0.8rem 0;
  font-size: 1.6rem;
  line-height: 1.5
}
.checkbox input, .radio input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
  }
.checkbox .form__icon, .radio .form__icon {
    display: inline-block;
    position: relative;
    width: 2.2rem;
    height: 2.2rem;
    margin-right: 0.25em;
    border: 2px solid #999;
    color: transparent;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
    vertical-align: -0.4em;
  }
.checkbox input:not([disabled]) + .form__icon, .radio input:not([disabled]) + .form__icon {
    cursor: pointer;
  }
.checkbox .form__icon {
  border-radius: 0.4rem
}
.checkbox .form__icon:before {
    content: "";
    display: block;
    position: absolute;
    top: 0.2rem;
    left: 0.6rem;
    width: 0.7rem;
    height: 1.1rem;
    border-style: solid;
    border-width: 0 0.2rem 0.2rem 0;
    border-color: currentColor;
    -webkit-transform: rotate(48deg);
    transform: rotate(48deg);
  }
.radio .form__icon {
  border-radius: 50%
}
.radio .form__icon:before {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: currentColor;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "";
  }
.checkbox input:checked + .form__icon, .radio input:checked + .form__icon {
    background-color: #003da5;
    border-color: #003da5;
    color: #fff;
  }
.checkbox input:checked:focus + .form__icon, .radio input:checked:focus + .form__icon {
    background-color: rgb(0, 52, 140);
  }
.input:disabled,
.textarea:disabled,
.input[readonly],
.textarea[readonly],
.checkbox input:disabled + .form__icon,
.radio input[readonly] + .form__icon {
  background-color: #f5f5f7;
}
.input:focus,
.textarea:focus,
.select:focus,
.checkbox input:focus + .form__icon,
.radio input:focus + .form__icon {
  border-color: #003da5;
}
/* ステップ */
.form-step ol {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -20px;
    padding: 0;
  }
.form-step li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    padding: 0 20px;
  }
.form-step li:nth-of-type(n+2)::before {
    position: absolute;
    top: 50%;
    left: -4px;
    width: 0;
    height: 0;
    margin-top: -6px;
    border: 6px solid transparent;
    border-left: 10px solid #ccc;
    content: "";
  }
.form-step__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 46px;
  background: #ddd;
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center
}
.form-step__item[aria-current] {
    background: #003da5;
    color: #fff;
  }
/* フォームレイアウト */
.form-note {
  padding: 20px;
  background: #f4f1ee;
}
.tel {
  color: #003da5;
  font-weight: bold;
  font-size: 2.4rem
}
.tel a {
    font-size: 3.6rem;
  }
.form .btn {
    min-width: 280px;
  }
.label {
  display: inline-block;
  width: 5em;
  padding: 0 1em;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}
.label--required {
  background: #cc0000;
  color: #fff;
}
.label--gray {
  background: #ccc;
  color: #333;
}
.form-label {
  display: inline-block;
  position: relative;
  margin-top: 0.5rem;
  margin-bottom: 0.8rem;
  padding-right: 6rem;
  font-weight: bold
}
.form-label .label {
    position: absolute;
    top: 0.5em;
    right: 0;
  }
/* 資料ダウンロード カテゴリ別リスト */
.form-group {
  position: relative;
}
.form-group__header {
  position: relative
}
.form-group__header .link-pagetop {
    position: absolute;
    top: 0;
    right: 0;
  }
.doc-list {
  list-style: none;
  margin: 0 0 60px;
  padding: 0
}
.doc-list li {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dotted #bfbab4;
  }
.doc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.doc__thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px
}
.doc__thumb img {
    width: 100%;
  }
.doc__body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(100% - 80px);
  flex: 1 1 calc(100% - 80px);
  padding-left: 20px;
  font-size: 1.4rem
}
.doc__body strong {
    display: block;
    margin-bottom: 0.2em;
  }
.doc__check {
  display: block;
  line-height: 1;
  margin: 0.8rem 0;
  text-align: right;
}
@media (max-width: 45em) {
    .form-step ol {
      margin: 0 -10px;
    }
    .form-step li {
      padding: 0 10px;
    }
  .form-step__item {
    font-size: 1.1rem;
  }
  .doc {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 45.001em) {
  .form-note {
    padding: 25px 30px;
  }
  .form-label {
    width: 100%;
    margin-bottom: 0;
  }
  .doc {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .doc__thumb {
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
  }
  .doc__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 1.5rem;
  }
  .doc__check {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8em;
    flex: 0 0 8em;
    max-width: 8em;
  }
}
@media (min-width: 60.001em) {
  .doc-list {
    margin-bottom: 80px;
  }
}
/*# sourceMappingURL=maps/form.css.map */
