@charset "UTF-8";
.form {
  box-sizing: border-box;
  max-width: 750px;
  margin: 0 auto;
}

.form_body {
  padding: 0 16px;
}

.form__head {
  background: #ebebeb;
  padding: 16px 16px 24px;
}

.form__title {
  font-size: 1.666rem;
  color: #333;
  margin-top: 8px;
  line-height: 1.5;
}

.form__content__text {
  font-size: 13px;
  color: #333;
  text-align: left;
}

.form__content__subText,
.form__content__text {
  line-height: 1.5;
  margin-top: 16px;
}

.form__content__note {
  color: #db4f43;
  font-size: 13px;
}

.form__category {
  overflow: hidden;
  margin-top: 32px;
}

.form__category__title {
  font-size: 17px;
}

.form__category__title span {
  font-size: inherit;
}

.form__category__title--sub {
  font-size: 13px;
  background: #ebebeb;
  display: inline-block;
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 2px;
  font-weight: 700;
}

.form__category__title--required {
  font-size: 17px;
}

.form__category__title--required:after {
  display: inline-block;
  content: "必須";
  font-size: 11px;
  vertical-align: middle;
  color: #fff;
  background-color: #db4f43;
  border-radius: 2px;
  line-height: 20px;
  width: 32px;
  text-align: center;
  box-sizing: border-box;
  margin-left: 8px;
}

.form__category__text {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  margin-top: 8px;
  word-break: break-word;
  white-space: pre-wrap;
}

.form__category__text--sub {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.form__input--checkbox > div,
.form__input--radio > div {
  font-size: 15px;
}

.form__category__text--note {
  font-size: 1.166rem;
  line-height: 1.4;
  text-align: justify;
  color: #c00;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 10px;
}

.form__category__text--note:before {
  content: "※";
}

.form__category__link {
  font-size: 1.25rem;
  line-height: 1.4;
  text-align: justify;
  text-decoration: none;
  color: #0042fb;
  margin-bottom: 10px;
}

.form__category__link[target=_blank]:after {
  display: inline-block;
  content: "";
  margin-left: 5px;
  width: 15px;
  height: 13px;
  background-image: url(../images/icon/blank.png);
  background-repeat: no-repeat;
  background-size: 15px;
}

.form__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  box-sizing: border-box;
  display: block;
  padding: 0;
  margin: 0 auto 10px;
  width: 280px;
  font-size: 1.416rem;
  font-weight: 700;
  text-align: center;
  line-height: 50px;
  color: #fff;
  background: linear-gradient(#fc9f44, #f46d00);
  border: 1px solid #f85d04;
  border-radius: 4px;
}

.form__button.disable {
  opacity: 0.4;
}

.form__button--next {
  -o-appearance: none;
  padding: 0 15px;
  margin: 0 auto 10px;
  width: 280px;
  font-size: 1.416rem;
  line-height: 50px;
  color: #fff;
  background: linear-gradient(#fc9f44, #f46d00);
  border: 1px solid #f85d04;
  border-radius: 4px;
}

.form__button--anchor,
.form__button--next {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  display: block;
  font-weight: 700;
  text-align: center;
}

.form__button--anchor {
  padding: 0;
  line-height: 42px;
  border-radius: 4px;
  margin: 40px auto 0;
  width: 250px;
  font-size: 14px;
}

.form__button--anchor.disable {
  opacity: 0.4;
}

input[type=text] {
  margin: 0 0 10px !important;
}

.form__input--text--required {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  display: inline;
  box-sizing: border-box;
  padding: 13px 10px 10px;
  margin: 0 10px 10px 0;
  width: 50%;
  height: 45px;
  font-size: 1.416rem;
  line-height: 1;
  background: #fff;
  border: 1px solid #ff7676;
  border-radius: 4px;
  box-shadow: inset 0 2px 3px 0 rgba(113, 135, 164, 0.2);
  ime-mode: disabled;
}

.form__input--text--required::-moz-placeholder {
  font-size: 1.25rem;
  line-height: 1.3;
  color: #aaa;
}

.form__input--text--required:-ms-input-placeholder {
  font-size: 1.25rem;
  line-height: 1.3;
  color: #aaa;
}

.form__input--text--required::placeholder {
  font-size: 1.25rem;
  line-height: 1.3;
  color: #aaa;
}

.form__input--radio {
  position: relative;
  display: block;
  margin-top: 8px;
  min-height: 32px;
}

.form__input--radio > input[type=radio] {
  position: absolute;
  left: 10px;
  z-index: 10;
  margin: 0;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  visibility: hidden;
}

.form__input--radio > input[type=radio] + * {
  z-index: 10;
  box-sizing: border-box;
  padding: 0 0 0 42px;
  font-size: 1.25rem;
  text-align: justify;
  border-radius: 4px;
  position: relative;
}

.form__input--radio > input[type=radio] + :before {
  content: "";
  position: absolute;
  z-index: 10;
  left: 0;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 20px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.form__input--radio > input[type=radio]:checked + :after {
  content: "";
  position: absolute;
  z-index: 11;
  bottom: 0;
  left: 2px;
  box-sizing: border-box;
  margin-bottom: auto;
  width: 28px;
  height: 28px;
  background-color: #76952f;
  border-radius: 16px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.form__input--checkbox {
  position: relative;
  display: block;
  margin-top: 8px;
  min-height: 32px;
}

.form__input--checkbox > input[type=checkbox] {
  position: absolute;
  left: 10px;
  top: 50%;
  z-index: 10;
  margin: 0;
  transform: translate3d(0, -50%, 0);
  visibility: hidden;
}

.form__input--checkbox > input[type=checkbox] + * {
  z-index: 10;
  box-sizing: border-box;
  padding: 0 0 0 42px;
  font-size: 1.25rem;
  text-align: justify;
  border-radius: 4px;
  position: relative;
}

.form__input--checkbox > input[type=checkbox] + :before {
  content: "";
  position: absolute;
  z-index: 10;
  left: 0;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.form__input--checkbox > input[type=checkbox]:checked + :before {
  background-color: #76952f;
}

.form__input--checkbox > input[type=checkbox]:checked + :after {
  content: "";
  position: absolute;
  z-index: 11;
  bottom: 0;
  top: 48%;
  left: 11px;
  width: 8px;
  height: 15px;
  transform: translate3d(0, -50%, 0) rotate(35deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.form__input--textarea {
  padding: 11px 9px;
  box-sizing: border-box;
  font-size: 1.25rem;
  line-height: 1.4;
  text-align: justify;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  margin-top: 8px;
}

.form__input--textarea::-moz-placeholder {
  color: #999;
}

.form__input--textarea:-ms-input-placeholder {
  color: #999;
}

.form__input--textarea::placeholder {
  color: #999;
}

.form__login__text {
  padding: 20px 0 0;
  text-align: center;
  font-size: 16px;
}

.form__category__btn {
  width: 250px;
  margin: 40px auto;
}

.form__content__expired {
  text-align: center;
  padding: 40px 0;
}

p.error {
  margin: 0;
  color: #c00;
  font-weight: 700;
  font-size: 14px;
  padding-bottom: 5px;
}

div.error textarea {
  background: #fcc !important;
}

div.error .form__input--checkbox {
  background: #fcc !important;
  padding: 5px;
}

div.error .form__input--text--required,
div.error select {
  background: #fcc !important;
}

div.error .form__input--radio > input[type=radio] + * {
  background-color: #fcc !important;
}

* + html div.error label,
* html div.error label {
  background: none;
}

.form__input--text,
.form__input--text--required {
  width: 50% !important;
  ime-mode: disabled;
  display: inline !important;
  margin-right: 10px;
}

#check_area01,
.nav-fix__price-area,
.shikiBnr {
  display: none;
}

.enq-finish-block {
  margin: 40px auto 0;
  text-align: center;
  max-width: 750px;
}

.enq-finish {
  width: 300px;
  margin: 0 auto;
  text-align: center;
  padding: 0 0 24px;
}

.enq-finish__main {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-top: 32px;
  line-height: 1.5;
}

.enq-finish__sub {
  margin: 24px 0 40px;
  font-size: 15px;
  line-height: 1.5;
}

.enq-finish__linkBtn {
  max-width: 420px;
  margin: 0 auto;
}

#copyright {
  color: #999;
}

.enq-finish-topLink {
  color: #333;
  margin: 16px 0 56px;
  display: inline-block;
  text-align: center;
}

.enq-finish-topLink:link,
.enq-finish-topLink:visited {
  color: #333;
}

.form__text {
  line-height: 1.6;
  min-height: 32px;
  display: flex;
  align-items: center;
}

.form__text,
.form__text span {
  font-size: 1.25rem;
}

.enq-contents-select {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 13px;
}

.enq-contents-select:before {
  right: 35px;
  width: 1px;
  height: 24px;
  background-color: #aaa;
}

.enq-contents-select:after,
.enq-contents-select:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}

.enq-contents-select:after {
  right: 11px;
  width: 0;
  height: 0;
  border-top: 10px solid #76952f;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}

.enq-contents-select__body {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  z-index: 10;
  box-sizing: border-box;
  display: inline-block;
  padding: 10px 51px 10px 16px;
  font-size: 15px;
  line-height: 19px;
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
}

@media screen and (min-width: 480px) {
  .footer-app-bnr {
    display: none;
  }
}
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  display: block;
  padding: 0;
  text-align: center;
  line-height: 48px;
  border-radius: 4px;
  margin: 10px 0 20px;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  border: none;
}

.c-btn,
.c-btn--arrow {
  position: relative;
}

.c-btn--arrow:after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -5px;
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.c-btn--arrow.c-btn-green-outline:after {
  border-color: #76952f;
}

.c-btn--arrow.c-btn-gray:after {
  border-color: #666;
}

.c-btn:link,
.c-btn:visited {
  color: #fff;
}

.c-btn-gray,
.c-btn-gray:link,
.c-btn-gray:visited {
  background-color: #ebebeb;
  color: #666;
  font-weight: 700;
  border: 1px solid #c7c7c7;
}

.c-btn-gray:hover {
  background-color: #ebebeb;
  color: #818181;
  text-decoration: none;
  border: 1px solid #818181;
}

.c-btn-green {
  background-color: #76952f;
  color: #fff;
  font-weight: 700;
}

.c-btn-green:hover {
  background-color: #91aa59;
  color: #fff;
  text-decoration: none;
}

.c-btn-orange {
  background-color: #f5a32d;
  color: #fff;
  font-weight: 700;
}

.c-btn-orange:hover {
  background-color: #f6b556;
  color: #fff;
  text-decoration: none;
}

.c-btn-green-outline {
  background: #fff;
  border: 1px solid #76952f;
  color: #76952f;
}

.c-btn-green-outline,
.c-btn-green-outline:link,
.c-btn-green-outline:visited {
  color: #76952f;
}

.c-btn-green-outline:hover {
  border-color: #91aa59;
  color: #91aa59;
}

.c-btn-blue,
.c-btn-blue:link,
.c-btn-blue:visited {
  background-color: #fff;
  color: #3996d0 !important;
  font-weight: 700;
  border: 1px solid #3996d0;
}

.c-btn-blue:hover {
  background-color: #fff;
  color: #3996d0;
  text-decoration: none;
}

.form__category__titletext {
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-top: 20px;
}

.form__content__deadline {
  border-radius: 4px;
  padding: 1rem;
  margin: 1rem 0;
  width: fit-content;
  background: #fff;
}
