@charset "UTF-8";
.request, .contact {
  background: #FBFBFB;
}

.step_bar {
  background-color: #F7F7F7;
}

.step_bar_inner > p {
  display: block;
  text-align: center;
  padding-top: 56px;
  padding-bottom: 56px;
}
.step_bar_inner .policy_inner {
  padding: 0 15% 120px;
}
@media screen and (max-width: 750px) {
  .step_bar_inner .policy_inner {
    padding: 0 0 32px;
  }
}

.progressbar {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.progressbar li {
  position: relative;
  list-style-type: none;
  text-align: center;
  text-transform: uppercase;
  width: 33.333%;
  color: #8B8B8B;
  font-weight: bold;
}

.progressbar li:before {
  position: relative;
  display: block;
  z-index: 3;
  width: 18px;
  height: 18px;
  margin: 7px auto 20px auto;
  content: "";
  text-align: center;
  border-radius: 50%;
  background-color: #DBDBDB;
}

.progressbar li:after {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: -50%;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #DBDBDB;
}

.progressbar li:first-child:after {
  content: none;
}

.progressbar li.active,
.progressbar li.complete {
  color: #C60309;
}

.progressbar li.active:before,
.progressbar li.complete:before {
  background-color: #C60309;
}

.progressbar li.active:after,
.progressbar li.complete:after {
  background-color: #C60309;
}

.emb_privacy_policy {
  margin-top: 60px;
  margin-bottom: 70px;
}

.button_area {
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 70px 0 130px;
}
.button_area label {
  margin-bottom: 30px;
}
.button_area label > a {
  text-decoration: underline;
}
.button_area .btn_main {
  display: block;
  text-align: center;
}
.button_area .btn_main a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: min(300 / 750 * 100dvw, 300px);
  background-color: #121212;
  color: #FFFFFF;
  line-height: 4em;
}
.button_area .btn_main a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #C60309;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
  z-index: 0;
}
.button_area .btn_main a span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease-out;
}
.button_area .btn_main a:hover::before {
  transform: scaleX(1);
}
.button_area .btn_main a:hover span {
  color: #FFFFFF;
}

@media screen and (max-width: 750px) {
  .button_area {
    margin: 40px 0 64px;
  }
  .button_area .btn_main {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .button_area .btn_main a {
    width: 80%;
  }
}
/* チェックボックス */
input[type=checkbox] {
  display: none;
}

.checkbox {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}

.checkbox::before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}

.checkbox::after {
  background: #C60309;
  border-radius: 50%;
  content: "";
  display: block;
  height: 8px;
  left: 9px;
  margin-top: -4px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 8px;
}

input[type=checkbox]:checked + .checkbox::before {
  border-color: #666;
}

input[type=checkbox]:checked + .checkbox::after {
  opacity: 1;
}

label.checkbox {
  display: flex;
  align-items: center;
}

.wrap.form_wrap {
  padding: 0 0 120px;
}
@media screen and (max-width: 750px) {
  .wrap.form_wrap {
    padding: 0 0 2.5rem;
  }
}
.wrap.form_wrap .intro_text {
  text-align: center;
  margin-bottom: 24px;
}

.message_Ttl {
  font-size: 32px;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .message_Ttl {
    font-size: 18px;
    text-align: center;
  }
}

.wrap {
  padding: 70px 0 140px;
}
@media screen and (max-width: 750px) {
  .wrap {
    padding: 40px 0 90px;
  }
}

.wrap.thanks_message_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

p.intro_text {
  text-align: center;
}
@media screen and (max-width: 750px) {
  p.intro_text {
    font-size: 12px;
  }
}

.thanks_message .button_area {
  margin: 60px 0 0;
}

.thanks_message_inner > .wrap {
  padding: 70px 0 0;
}
@media screen and (max-width: 750px) {
  .thanks_message_inner > .wrap {
    padding: 40px 0 0;
  }
}

@media screen and (max-width: 750px) {
  .button_area .btn_main a {
    width: 94%;
  }
}
.contact_line {
  display: grid;
  gap: min(30 / 750 * 100dvw, 30px);
  text-align: center;
}
.contact_line .content_btns {
  display: flex;
  justify-content: center;
  gap: min(30 / 750 * 100dvw, 30px);
}
@media screen and (max-width: 750px) {
  .contact_line .content_btns {
    flex-direction: column;
    align-items: center;
  }
}
.contact_line .content_btns .btn_line {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: min(20 / 750 * 100dvw, 20px);
  width: min(100%, 370px);
  height: min(100 / 750 * 100dvw, 100px);
  background-color: #121212;
  color: #fff;
}
.contact_line .content_btns .btn_line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #06C755;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
  z-index: 0;
}
.contact_line .content_btns .btn_line span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease-out;
}
.contact_line .content_btns .btn_line:hover::before {
  transform: scaleX(1);
}
.contact_line .content_btns .btn_line:hover span {
  color: #FFFFFF;
}
@media screen and (max-width: 750px) {
  .contact_line .content_btns .btn_line {
    width: 100%;
    height: 64px;
  }
}
.contact_line .content_btns .btn_line img {
  width: min(41 / 750 * 100dvw, 41px);
  min-width: 30px;
  height: auto;
  position: relative;
  z-index: 1;
}
.contact_line .content_btns .btn_line span {
  position: relative;
  z-index: 1;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .contact_line .content_btns .btn_line span {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .contact_line .content_btns .btn_line span {
    font-size: clamp(14px, 28 / 750 * 100dvw, 28px);
  }
}/*# sourceMappingURL=form.css.map */