.area_kv .kv_decoration.connect {
  width: min(339 / 1320 * 100vw, 339px);
  bottom: -2.6em;
  right: 3.25em;
}
@media screen and (max-width: 768px) {
  .area_kv .kv_decoration.connect {
    width: min(421 / 750 * 100vw, 421px);
    right: 8.5%;
    bottom: 1.3em;
  }
}

.ol_flow {
  margin: min(10 / 1320 * 100vw, 10px) auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  gap: 0 min(80 / 1320 * 100vw, 80px);
}
.ol_flow li {
  width: min(130 / 1320 * 100vw, 130px);
  height: min(130 / 1320 * 100vw, 130px);
  color: #fff;
  background: #bbb;
  z-index: 1;
  line-height: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ol_flow li:nth-child(n+2)::before {
  content: "";
  background: url(../img/connect/deco_dotts.png) no-repeat center;
  background-size: min(48 / 1320 * 100vw, 48px);
  display: block;
  width: min(80 / 1320 * 100vw, 80px);
  aspect-ratio: 96/16;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(min(80 / 1320 * 100vw, 80px) * -1);
}
.ol_flow li .num {
  font-size: min(24 / 1320 * 100vw, 24px);
  font-family: "Tektur", "NotoSansJP", sans-serif;
  position: absolute;
  top: 0.3em;
  left: 0.45em;
}
.ol_flow li .txt {
  font-size: min(18 / 1320 * 100vw, 18px);
  font-weight: 700;
}
.ol_flow li.now {
  background: linear-gradient(135deg, #ec6400 0%, #f7ad09 100%);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .ol_flow {
    margin: 0.5em auto 0;
    gap: 0 min(80 / 750 * 100vw, 80px);
  }
  .ol_flow li {
    width: min(150 / 750 * 100vw, 150px);
    height: min(150 / 750 * 100vw, 150px);
  }
  .ol_flow li:nth-child(n+2)::before {
    background-size: min(48 / 750 * 100vw, 48px);
    width: min(80 / 750 * 100vw, 80px);
    left: calc(min(80 / 750 * 100vw, 80px) * -1);
  }
  .ol_flow li .num {
    left: 0.35em;
    font-size: min(30 / 750 * 100vw, 30px);
  }
  .ol_flow li .txt {
    font-size: min(32 / 750 * 100vw, 32px);
  }
}

.grecaptcha-badge {
  z-index: 10;
}

::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}

::-moz-placeholder {
  color: #999;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #999;
}

button,
select,
input,
textarea {
  font-family: "NotoSansJP", sans-serif;
}

.area_form button,
.area_form select,
.area_form input,
.area_form textarea {
  width: 100%;
  padding: 0.6em 0.8em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #f5f5f5;
  letter-spacing: 0.05em;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: min(16 / 1320 * 100vw, 16px);
  border: 1px solid #ddd;
  border-radius: 4px;
}
.area_form button:focus,
.area_form select:focus,
.area_form input:focus,
.area_form textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 1px rgba(255, 255, 255, 0.3) solid;
}
.area_form button:has(+ .error),
.area_form select:has(+ .error),
.area_form input:has(+ .error),
.area_form textarea:has(+ .error) {
  background: #ffefec !important;
  color: #f9c4bb;
  outline: 1px #f00 solid;
}
.area_form button:valid,
.area_form select:valid,
.area_form input:valid,
.area_form textarea:valid {
  color: #000;
  background: #f5f5f5;
}
.area_form .error {
  width: 100%;
  color: #f00;
  font-size: min(14 / 1320 * 100vw, 14px);
  display: block;
}
.area_form label + .error {
  margin-top: 0.4em;
}
.area_form input + .error {
  margin-top: 0.4em;
}
.area_form textarea {
  height: min(180 / 1320 * 100vw, 180px);
  resize: vertical;
  display: block;
}
@media screen and (max-width: 768px) {
  .area_form button,
  .area_form select,
  .area_form input,
  .area_form textarea {
    padding: 0.5em;
    font-size: min(32 / 750 * 100vw, 32px);
    color: #333;
  }
  .area_form input[type=text],
  .area_form input[type=email],
  .area_form input[type=tel] {
    min-height: 3.1em;
  }
  .area_form .error {
    font-size: min(28 / 750 * 100vw, 28px);
  }
  .area_form textarea {
    height: 12.7em;
    padding: 0.5em;
  }
  .area_form input[type=submit] {
    -webkit-appearance: none;
    border-radius: 0;
  }
}
.area_form input[type=checkbox],
.area_form input[type=radio] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}
.area_form input[type=checkbox] + label,
.area_form input[type=radio] + label {
  cursor: pointer;
}
.area_form .errorbox input[type=checkbox],
.area_form .errorbox input[type=radio] {
  border: 2px solid #f00;
  background: #ffefec;
}
.area_form .errorbox label {
  color: #222;
  font-family: "NotoSansJP", sans-serif;
}
.area_form input[type=radio] {
  width: min(24 / 1320 * 100vw, 24px);
  height: min(24 / 1320 * 100vw, 24px);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  background: #f5f5f5;
  border: 1px solid #ddd;
  top: min(2 / 1320 * 100vw, 2px);
}
.area_form input[type=radio]:checked {
  border: 1px solid #ddd;
}
.area_form input[type=radio]:checked:before {
  content: "";
  width: min(13.88 / 1320 * 100vw, 13.88px);
  height: min(13.88 / 1320 * 100vw, 13.88px);
  border-radius: 50%;
  background: #ec6400;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.area_form input[type=radio]:checked:before:hover {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .area_form input[type=radio] {
    width: min(48 / 750 * 100vw, 48px);
    height: min(48 / 750 * 100vw, 48px);
    top: min(8 / 750 * 100vw, 8px);
  }
  .area_form input[type=radio]:checked:before {
    width: min(28 / 750 * 100vw, 28px);
    height: min(28 / 750 * 100vw, 28px);
  }
}
.area_form .radio {
  padding-bottom: 0;
}
@media screen and (min-width: 769px) {
  .area_form .radio label {
    margin-left: 8px;
    margin-bottom: 10px;
    font-size: min(16 / 1320 * 100vw, 16px);
  }
  .area_form .radio label + input {
    margin-left: 4.7em;
  }
  .area_form .radio label:nth-of-type(3) + input {
    margin-left: 0;
  }
}
@media screen and (max-width: 1080px) {
  .area_form .radio label {
    width: calc(50% - min(54 / 1320 * 100vw, 54px));
    margin-right: 0;
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .area_form .radio label {
    width: calc(50% - 2.2em);
    width: calc(100% - 2.2em);
    margin: 0 0 0.4em 0.6em;
    display: inline-block;
  }
}
.area_form input[type=checkbox] {
  width: min(22 / 1320 * 100vw, 22px);
  height: min(22 / 1320 * 100vw, 22px);
  border-radius: 1px;
  position: relative;
  top: 0.5em;
  left: 0.2em;
  display: inline-block;
  background: #f5f5f5;
  border: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  .area_form input[type=checkbox] {
    width: min(26 / 750 * 100vw, 26px);
    height: min(26 / 750 * 100vw, 26px);
  }
}
.area_form input[type=checkbox]:checked::before {
  font: var(--fa-font-solid);
  content: "\f00c";
  display: inline-block;
  color: #ec6400;
  font-size: min(16 / 1320 * 100vw, 16px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  line-height: 1.3;
}
.area_form input[type=checkbox]:checked::before:hover {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .area_form input[type=checkbox]:checked::before {
    font-size: min(32 / 750 * 100vw, 32px);
    line-height: min(36 / 750 * 100vw, 36px);
  }
}
.area_form .checkbox label {
  display: inline-block;
}
.area_form .checkbox label:hover {
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .area_form .checkbox label {
    width: 51%;
    margin-left: 0.8em;
    margin-bottom: 0.5em;
    font-size: min(16 / 1320 * 100vw, 16px);
  }
  .area_form .checkbox label:nth-of-type(even) {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .area_form .checkbox label {
    width: calc(50% - 40px);
    display: inline-block;
  }
}
.area_form input[type=submit] {
  width: 100%;
  height: 100%;
  padding: 0;
  font-weight: 400;
  font-size: min(18 / 1320 * 100vw, 18px);
  color: #fff;
  background: transparent;
  border-radius: 50px;
  border: none;
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 0.04em;
  top: 0px;
}
.area_form input[type=submit]:hover {
  cursor: pointer;
}
.area_form input[type=submit]:disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .area_form input[type=submit] {
    line-height: 1.6;
    font-size: min(16 / 750 * 100vw, 16px);
  }
}
.area_form .box_btn {
  width: min(380 / 1320 * 100vw, 380px);
  height: min(96 / 1320 * 100vw, 96px);
  overflow: hidden;
}
.area_form .box_btn::before {
  content: "";
  display: block;
  width: 200%;
  height: 100%;
  background: linear-gradient(135deg, #ec6400 0%, #f7ad09 50%, #f7ad09 51%, #ec6400 100%);
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.area_form .box_btn::after {
  content: "\f054";
  font: var(--fa-font-solid);
  width: min(38 / 1320 * 100vw, 38px);
  height: min(38 / 1320 * 100vw, 38px);
  line-height: min(38 / 1320 * 100vw, 38px);
  font-size: min(16 / 1320 * 100vw, 16px);
  text-align: center;
  display: block;
  border-radius: 50%;
  background-color: #fff;
  color: #f7ad09;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: min(27 / 1320 * 100vw, 27px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}
.area_form .box_btn a span {
  position: relative;
  font-weight: 700;
}
.area_form .box_btn input[type=submit] {
  font-weight: 700;
}
@media (hover: hover) {
  .area_form .box_btn:hover::before {
    left: -100%;
  }
  .area_form .box_btn:hover::after {
    right: min(10 / 1320 * 100vw, 10px);
    color: #ec6400;
  }
}
@media screen and (max-width: 768px) {
  .area_form .box_btn {
    width: 100%;
    height: min(120 / 750 * 100vw, 120px);
    background: linear-gradient(135deg, #ec6400 0%, #f7ad09 100%);
  }
  .area_form .box_btn input[type=submit] {
    font-size: min(32 / 750 * 100vw, 32px);
  }
  .area_form .box_btn::before {
    content: none;
  }
  .area_form .box_btn::after {
    width: min(60 / 750 * 100vw, 60px);
    height: min(60 / 750 * 100vw, 60px);
    line-height: min(60 / 750 * 100vw, 60px);
    font-size: min(22 / 750 * 100vw, 22px);
    right: 1.3em;
  }
}

#input .pagetitle,
#confirm .pagetitle {
  font-size: min(32 / 1320 * 100vw, 32px);
  font-weight: 700;
  text-align: center;
}
#input .txtlead,
#confirm .txtlead {
  margin-top: 1.4em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #input .pagetitle,
  #confirm .pagetitle {
    font-size: min(28 / 750 * 100vw, 28px);
  }
  #input .txtlead,
  #confirm .txtlead {
    margin-top: 0.9em;
    text-align: left;
  }
}

#input .dl_input {
  margin: 3.05em auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5em 0;
}
#input .dl_input dt, #input .dl_input dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#input .dl_input dt {
  width: min(270 / 1320 * 100vw, 270px);
  padding-right: min(30 / 1320 * 100vw, 30px);
  padding-top: 0.8em;
  position: relative;
  font-size: min(16 / 1320 * 100vw, 16px);
  font-weight: 700;
  line-height: 1.4;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
#input .dl_input dt .mark {
  width: min(50 / 1320 * 100vw, 50px);
  height: min(26 / 1320 * 100vw, 26px);
  line-height: min(26 / 1320 * 100vw, 26px);
  display: inline-block;
  color: #fff;
  background: #ec6400;
  font-size: min(13 / 1320 * 100vw, 13px);
  text-align: center;
  border-radius: 20px;
}
#input .dl_input dt .mark.optional {
  background: #666;
}
#input .dl_input dt.radio {
  padding-top: 0.2em;
  padding-bottom: 0.5em;
}
#input .dl_input dt.message {
  padding-top: 1em;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#input .dl_input dd {
  width: calc(100% - min(270 / 1320 * 100vw, 270px));
}
@media screen and (max-width: 768px) {
  #input .dl_input {
    margin: 2.2em auto 0;
    gap: 0;
  }
  #input .dl_input dt {
    width: 100%;
    font-size: min(32 / 750 * 100vw, 32px);
  }
  #input .dl_input dt, #input .dl_input dt.radio, #input .dl_input dt.message {
    padding: 0;
  }
  #input .dl_input dt .mark {
    width: min(100 / 750 * 100vw, 100px);
    height: min(52 / 750 * 100vw, 52px);
    font-size: min(26 / 750 * 100vw, 26px);
    line-height: min(52 / 750 * 100vw, 52px);
  }
  #input .dl_input dd {
    width: 100%;
    margin-top: 1.1em;
    padding: 0;
    border-top: none;
  }
  #input .dl_input dd + dt {
    margin-top: 1.95em;
  }
  #input .dl_input dd.radio {
    margin-top: 0.6em;
  }
  #input .dl_input dd.radio + dt {
    margin-top: 1.2em;
  }
}
#input .box_agree {
  margin: 0.6em auto 0;
  text-align: center;
  position: relative;
  font-size: min(16 / 1320 * 100vw, 16px);
}
#input .box_agree label {
  margin-left: 10px;
}
#input .box_agree input[type=checkbox] {
  top: 0.4em;
  left: 0.3em;
}
#input .box_agree .label {
  position: relative;
}
#input .box_agree .go_privacy {
  width: 8em;
  height: 100%;
  display: block;
  position: absolute;
  top: -0.25em;
  right: 5em;
  color: #ec6400;
  padding-bottom: 1.8em;
  border-bottom: 1px solid #ec6400;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #input .box_agree {
    margin: 1.4em auto 0;
    font-size: min(32 / 750 * 100vw, 32px);
  }
  #input .box_agree label {
    margin-left: 0.8em;
  }
  #input .box_agree input[type=checkbox] {
    width: min(40 / 750 * 100vw, 40px);
    height: min(40 / 750 * 100vw, 40px);
    top: 0.4em;
    left: 0.3em;
  }
  #input .box_agree .label {
    position: relative;
  }
  #input .box_agree .go_privacy {
    width: 8em;
    height: 100%;
    display: block;
    position: absolute;
    top: -0.25em;
    right: 5em;
    color: #ec6400;
    padding-bottom: 1.8em;
    border-bottom: 1px solid #ec6400;
    background: #fff;
  }
}
#input .submit {
  margin: 2.5em auto 0;
}

#confirm .pagetitle {
  margin-top: 2em;
}
#confirm .txtlead {
  margin-top: 1.4em;
}
@media screen and (max-width: 768px) {
  #confirm .pagetitle {
    margin-top: 1em;
  }
  #confirm .txtlead {
    margin-top: 0.9em;
  }
}
#confirm .dl_input {
  margin: 3.2em auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#confirm .dl_input dt, #confirm .dl_input dd {
  margin-bottom: 2.45em;
  line-height: 2.5;
  font-size: min(16 / 1320 * 100vw, 16px);
}
#confirm .dl_input dt {
  width: min(270 / 1320 * 100vw, 270px);
  font-weight: 700;
}
#confirm .dl_input dt.agree, #confirm .dl_input dt.agree + dd {
  display: none;
}
#confirm .dl_input dd {
  width: calc(100% - min(270 / 1320 * 100vw, 270px));
}
@media screen and (max-width: 768px) {
  #confirm .dl_input {
    margin: 1.8em auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #confirm .dl_input dt, #confirm .dl_input dd {
    width: 100%;
    line-height: 2;
    font-size: min(32 / 750 * 100vw, 32px);
  }
  #confirm .dl_input dt {
    margin-bottom: 0.5em;
  }
  #confirm .dl_input dd {
    margin-bottom: 1.45em;
  }
}
#confirm .wrap_btn {
  width: min(800 / 1320 * 100vw, 800px);
  margin: 5em auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#confirm .wrap_btn .submit input {
  padding: 0;
  text-align: center;
}
#confirm .wrap_btn .back {
  text-align: center;
}
#confirm .wrap_btn .back::before {
  content: none;
}
#confirm .wrap_btn .back::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  right: auto;
  left: min(27 / 1320 * 100vw, 27px);
  color: #bbb;
}
#confirm .wrap_btn .back input {
  width: 100%;
  height: 100%;
  padding: 0;
  outline: none;
  border: none;
  border-radius: 0;
  color: #fff;
  background: #bbb;
  font-size: min(18 / 1320 * 100vw, 18px);
  font-weight: 700;
}
@media (hover: hover) {
  #confirm .wrap_btn .back:hover::after {
    left: min(10 / 1320 * 100vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  #confirm .wrap_btn {
    width: 100%;
    margin: 1.1em auto 0;
  }
  #confirm .wrap_btn .box_btn.submit, #confirm .wrap_btn .box_btn.back {
    width: 48%;
    height: min(120 / 750 * 100vw, 120px);
  }
  #confirm .wrap_btn .box_btn.submit input, #confirm .wrap_btn .box_btn.back input {
    font-size: min(32 / 750 * 100vw, 32px);
  }
  #confirm .wrap_btn .back::after {
    left: 1.3em;
  }
}

#complete .txt_complete {
  margin-top: min(50 / 1320 * 100vw, 50px);
}
#complete .txt_complete .title {
  font-weight: 700;
  font-size: min(30 / 1320 * 100vw, 30px);
  text-align: center;
}
#complete .txt_complete p {
  margin-top: min(8 / 1320 * 100vw, 8px);
  font-size: min(16 / 1320 * 100vw, 16px);
  text-align: center;
  line-height: 3;
}
#complete .box_btn {
  margin: min(45 / 1320 * 100vw, 45px) auto 0;
}
@media screen and (max-width: 768px) {
  #complete .txt_complete {
    margin-top: 2em;
  }
  #complete .txt_complete .title {
    font-size: min(38 / 750 * 100vw, 38px);
  }
  #complete .txt_complete p {
    margin-top: 0;
    font-size: min(30 / 750 * 100vw, 30px);
    line-height: 2;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 0.02em;
  }
  #complete .box_btn {
    margin: 2.2em auto 0;
  }
}