button,
input[type=text],
input[type=tel],
input[type=email] {
  width: 100%;
}
@media (min-width: 1240px) {
  button,
  input[type=text],
  input[type=tel],
  input[type=email] {
    width: 32.375rem;
  }
}
button::placeholder,
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder {
  color: #c1c1c1;
}

textarea {
  width: 100%;
  height: 4.375rem;
}
@media (min-width: 1240px) {
  textarea {
    width: 39.0625rem;
    height: 5.5rem;
  }
}
textarea::placeholder {
  color: #c1c1c1;
}

input[type=text],
input[type=tel],
input[type=email],
textarea,
select {
  border-radius: 0.25rem;
  border: 1px solid #d9d9d9;
  padding: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.7;
  color: #283445;
  margin: 0;
}
@media (min-width: 1240px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea,
  select {
    padding: 0.65rem 1rem;
  }
}

select {
  width: 100%;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}
select.is-selected {
  color: #283445;
  -webkit-text-fill-color: #283445;
}
select option {
  color: #283445;
  font-family: inherit;
  font-weight: normal;
}

input[type=radio] {
  appearance: none;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  border-radius: 50%;
}

input[type=radio]:checked::after {
  content: "";
  background: #1092d3;
  width: 0.625rem;
  height: 0.625rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

input[type=checkbox] {
  appearance: none;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
}
input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

input[type=checkbox]:checked::after {
  width: 1.375rem;
  height: 0.875rem;
  background: url("../img/icon/icon-check-blue.png") no-repeat center center/cover;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
}

.wp-block-paragraph,
.wpcf7-response-output {
  display: none;
}

.wpcf7-not-valid-tip {
  font-size: 0.875rem;
}
@media (min-width: 1240px) {
  .wpcf7-not-valid-tip {
    font-size: 1rem;
  }
}

.form__progress {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  margin: 1rem 0;
  gap: 2rem;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
@media (min-width: 1240px) {
  .form__progress {
    padding: 2rem 0;
    margin: 2rem 0;
    gap: 3rem;
  }
}
.form__is--current {
  background-color: #1092d3;
  color: #ffffff;
}
.form__is--required {
  color: #ffffff;
  font-size: 0.75rem;
  text-align: center;
  display: inline-block;
  background: #ed5e49;
  padding: 0 0.5rem;
  border-radius: 3.125rem;
  font-weight: normal;
  line-height: 1.7;
}
@media (min-width: 1240px) {
  .form__is--required {
    font-size: 0.875rem;
  }
}
.form__wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.form__wrap--select {
  width: 100%;
}
@media (min-width: 1240px) {
  .form__wrap--select {
    width: 20rem;
  }
}
.form__wrap--select .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  z-index: 1;
}
.form__wrap--select .wpcf7-form-control-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #1092d3;
  border-bottom: 0;
  z-index: -1;
}
.form__wrap--select .wpcf7-form-control-wrap select {
  appearance: none;
  z-index: 0;
  position: relative;
  background: transparent;
}
.form__wrap--return .wpcf7-list-item {
  margin: 0;
}
.form__wrap--return .wpcf7-list-item.first {
  margin-right: 2.25rem;
}
.form__wrap--return label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form__item {
  margin: 0;
  padding: 0 0 1rem;
  margin: 0 0 1rem;
  border-bottom: 1px solid #d9d9d9;
}
@media (min-width: 1240px) {
  .form__item {
    display: flex;
    align-items: center;
    margin: 0 0 1.5rem;
    padding: 0 0 1.5rem;
  }
}
.form__item dt {
  background: #f8faff;
  font-size: 1rem;
  color: #0c2d6b;
  font-weight: bold;
  padding: 1rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
}
@media (min-width: 1240px) {
  .form__item dt {
    width: 20rem;
    font-size: 1.125rem;
    padding: 2.5rem 1.5rem;
  }
}
.form__item dd {
  padding: 0.5rem 0.5rem 0;
  margin: 0;
  position: relative;
}
@media (min-width: 1240px) {
  .form__item dd {
    padding: 0 1.5rem;
    width: calc(100% - 320px);
  }
}
.form__item dd small {
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.125rem;
}
.form__item--progress {
  border: 1px solid #d9d9d9;
  width: 5.5rem;
  text-align: center;
  padding: 0.5rem 0;
  position: relative;
  font-size: 1rem;
  margin: 0;
}
.form__item--progress::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -25%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.375rem solid transparent;
  border-bottom: 0.375rem solid transparent;
  border-left: 0.375rem solid #1092d3;
  border-right: 0;
}
@media (min-width: 1240px) {
  .form__item--progress::after {
    right: -13%;
  }
}
.form__item--progress:last-child::after {
  content: none;
}
@media (min-width: 1240px) {
  .form__item--progress {
    width: 13.75rem;
  }
}
.form__auto-fill-message, .form__postal-not-found-message {
  align-items: center;
  display: none;
  gap: 0.25rem;
  line-height: 1.5;
}
.form__auto-fill-message.is-show, .form__postal-not-found-message.is-show {
  display: inline-flex;
}
.form__auto-fill-message {
  color: #14b44f;
  position: absolute;
  top: 59%;
  right: 7.5%;
  font-size: 0.875rem;
}
@media (min-width: 1240px) {
  .form__auto-fill-message {
    font-size: 0.75rem;
    top: 55%;
    right: 24.4%;
  }
}
.form__auto-fill-message::before {
  align-items: center;
  content: "";
  background: url("../img/icon/icon-check-green.png") no-repeat center center/cover;
  width: 0.875rem;
  height: 0.875rem;
  display: block;
}
.form__postal-not-found-message {
  color: #cf341e;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
@media (min-width: 1240px) {
  .form__postal-not-found-message {
    font-size: 1rem;
  }
}
.form__submit {
  border-radius: 0.375rem;
  border: 1px solid #d9d9d9;
  padding: 1.5rem 0.5rem;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 2rem;
}
@media (min-width: 1240px) {
  .form__submit {
    padding: 1.5rem;
    text-align: center;
    gap: 0 4rem;
  }
}
.form__submit--confirm {
  border: none;
  padding: 0.5rem 0 2rem;
}
.form__submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.form__submit .wpcf7-submit {
  border-radius: 0.5rem;
  border: none;
  color: #ffffff;
  cursor: not-allowed;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: bold;
  margin: 0 auto;
  padding: 1rem 0;
  width: 10.625rem;
}
@media (min-width: 1240px) {
  .form__submit .wpcf7-submit {
    width: 13.75rem;
  }
}
.form__submit .wpcf7-submit:disabled {
  background: #d0d0d0;
  cursor: not-allowed;
}
.form__submit .wpcf7-submit:hover {
  opacity: 0.85;
}
.form__submit.is-ready .wpcf7-submit:not(:disabled) {
  background: #ed832e;
  cursor: pointer;
}
.form__note {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  width: 100%;
}
@media (min-width: 1240px) {
  .form__note {
    font-size: 1rem;
    margin: 0 0 1.5rem;
  }
}
.form__note .wpcf7-list-item label {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
@media (min-width: 1240px) {
  .form__note .wpcf7-list-item label {
    justify-content: center;
  }
}
.form__note .wpcf7-list-item-label {
  flex: 1;
}
.form__note label {
  cursor: pointer;
}
.form__confirm {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 1240px) {
  .form__confirm {
    gap: 4rem;
  }
}
.form__confirm .wpcf7-submit {
  width: 7.5rem;
}
@media (min-width: 1240px) {
  .form__confirm .wpcf7-submit {
    width: 14rem;
  }
}
.form__confirm .wpcf7-previous {
  border-radius: 0.5rem;
  border: none;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: bold;
  margin: 0 auto;
  padding: 1rem 0;
  background: #d0d0d0;
  cursor: pointer;
  width: 7.5rem;
}
@media (min-width: 1240px) {
  .form__confirm .wpcf7-previous {
    width: 14rem;
  }
}
.form__confirm .wpcf7-previous:hover {
  background: #dadada;
}
.form__link--top {
  display: block;
  margin: 1rem 0 0;
  text-decoration: underline;
}

.h1__form {
  color: #0369a1;
  font-size: 1.25rem;
  text-align: center;
  margin: 0.625rem 0 1.75rem;
  position: relative;
}
@media (min-width: 1240px) {
  .h1__form {
    font-size: 1.75rem;
    margin: 0 0 2.875rem;
  }
}
.h1__form::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 0.1875rem;
  background: linear-gradient(-90deg, #37bbf6 0%, #056ca4 100%);
}
@media (min-width: 1240px) {
  .h1__form::after {
    bottom: -1.25rem;
  }
}

.h2__form {
  color: #0c2d6b;
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0 auto 1rem;
  border-top: none;
  max-width: 800px;
}

.text__form {
  margin: 0;
  font-size: 1rem;
  text-align: center;
}
.text__form--complete {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 9.5rem;
}
@media (min-width: 1240px) {
  .text__form--complete {
    padding-bottom: 15.5rem;
  }
}

@media (min-width: 1240px) {
  .confirm .form__item dt {
    padding: 1rem 1.5rem;
  }
}
.confirm .form__item:last-of-type {
  align-items: initial;
}

/*# sourceMappingURL=entry.css.map */
