@charset "UTF-8";
.lower {
  position: relative;
}
.lower::before {
  content: "";
  background: url(../../images/common/lower_bg.png) top left/contain no-repeat;
  width: 30vw;
  height: auto;
  aspect-ratio: 988/940;
  position: absolute;
  top: -40px;
  left: 0;
  z-index: -1;
}

.page_ttl {
  font-size: 4.07rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .page_ttl {
    font-size: 3.07rem;
    line-height: 1.25;
  }
}

.breadcrumb li {
  line-height: 1.4;
}
.breadcrumb li:not(:last-child)::after {
  content: "＞";
  margin: 0 0.5em 0 0.75em;
}
.breadcrumb li a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.breadcrumb li a:hover {
  text-decoration: none;
}

.section_ttl {
  font-size: 1.56rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  margin: 2em 0 1em;
}

.lead {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
}

.required {
  font-weight: 400;
  color: #fff;
  background-color: #e8380d;
  padding: 1px 10px 2px;
  border-radius: 100vmax;
  display: inline-block;
  line-height: 1.2;
}

.optional {
  font-weight: 400;
  background-color: #dcdddd;
  padding: 1px 10px 2px;
  border-radius: 100vmax;
  display: inline-block;
  line-height: 1.2;
}

.error {
  margin: 0;
  color: red;
  font-weight: 600;
}

.form_step {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  width: 100%;
  margin: 4.5rem auto 0;
}
@media (max-width: 767.98px) {
  .form_step {
    margin: 2.5rem auto 0;
  }
}
.form_step li {
  flex: 1;
  text-align: center;
  background-color: #efefef;
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding: 10px 0 10px 10px;
  font-weight: 400;
  position: relative;
}
@media (max-width: 767.98px) {
  .form_step li {
    font-size: 12px;
    padding: 6px 0 6px 10px;
  }
}
.form_step li::after {
  content: "";
  display: inline-block;
  background: url(../../images/contact/form_step_arrow.png) left center/20px no-repeat;
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -18px;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .form_step li::after {
    background-size: 16px;
  }
}
.form_step li.current {
  color: #fff;
  background-color: #000;
}
.form_step li.current::after {
  background-image: url(../../images/contact/form_step_arrow2.png);
}
.form_step li span {
  font-family: "Jost", sans-serif;
  margin-right: 1em;
}
@media (max-width: 767.98px) {
  .form_step li span {
    margin-right: 0.5em;
  }
}

.form_wrapper {
  margin: 4.5rem 0;
}
.form_wrapper#confirm form dl dd .caution {
  display: inline-block;
  line-height: 1.35;
}
@media (max-width: 767.98px) {
  .form_wrapper#confirm form dl dd .caution {
    display: block;
  }
}
.form_wrapper#confirm .btn_wrapper {
  margin-top: 4.375rem;
}
@media (max-width: 767.98px) {
  .form_wrapper#confirm .btn_wrapper {
    margin-top: 2rem;
  }
}
.form_wrapper .confirm_txt {
  font-weight: 400;
  margin-bottom: 3.5rem;
}
@media (max-width: 767.98px) {
  .form_wrapper .confirm_txt {
    margin-bottom: 2rem;
  }
}
.form_wrapper#thanks {
  margin: 4.5rem auto 0;
}
@media (max-width: 767.98px) {
  .form_wrapper#thanks {
    margin: 4.5rem 0;
  }
}
.form_wrapper .thanks_txt {
  font-weight: 400;
  line-height: 1.78;
  margin-bottom: 2em;
}
.form_wrapper .thanks_txt.red {
  color: #e8380d;
}

form {
  font-weight: 400;
}
form dl .box {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 767.98px) {
  form dl .box {
    gap: 10px;
    flex-direction: column;
  }
}
form dl .box.flex_top {
  align-items: flex-start;
}
form dl .box:not(:last-child) {
  margin-bottom: 2.18rem;
}
form dl dt {
  flex-basis: 20%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767.98px) {
  form dl dt {
    flex-basis: auto;
    width: 100%;
    justify-content: flex-start;
    gap: 1rem;
  }
}
form dl dd {
  flex-basis: 80%;
  flex-grow: 1;
  margin: 0;
}
@media (max-width: 767.98px) {
  form dl dd {
    flex-basis: auto;
    width: 100%;
  }
}
form dl dd .radio {
  display: inline-block;
  margin-right: 2em;
}
form dl dd .radio label {
  cursor: pointer;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 5px;
}
form dl dd input[type=text],
form dl dd input[type=email],
form dl dd input[type=tel],
form dl dd textarea {
  appearance: none;
  width: 100%;
  border-radius: 0;
  padding: 10px;
}
form dl dd input[type=text].w50,
form dl dd input[type=email].w50,
form dl dd input[type=tel].w50,
form dl dd textarea.w50 {
  width: 50%;
  margin-right: 1em;
}
@media (max-width: 767.98px) {
  form dl dd input[type=text].w50,
  form dl dd input[type=email].w50,
  form dl dd input[type=tel].w50,
  form dl dd textarea.w50 {
    width: 100%;
    margin: 0;
  }
}
form dl dd input[type=text].w30,
form dl dd input[type=email].w30,
form dl dd input[type=tel].w30,
form dl dd textarea.w30 {
  width: 30%;
  margin-right: 1em;
}
@media (max-width: 767.98px) {
  form dl dd input[type=text].w30,
  form dl dd input[type=email].w30,
  form dl dd input[type=tel].w30,
  form dl dd textarea.w30 {
    width: 100%;
    margin: 0;
  }
}
form dl dd input {
  border: 1px solid #727171;
}
form dl dd .caution {
  color: #e8380d;
  font-size: 12px;
  display: inline-block;
}
@media (max-width: 767.98px) {
  form dl dd .caution {
    display: block;
    line-height: 1.4;
    margin-top: 10px;
  }
}
form dl dd .btn_auto_address {
  appearance: none;
  border: none;
  background-color: #dcdddd;
  font-size: 14px;
  border-radius: 100vmax;
  padding: 5px 15px;
  line-height: 1.2;
  margin-right: 1em;
}
@media (max-width: 767.98px) {
  form dl dd .btn_auto_address {
    margin-top: 1em;
  }
}
form dl dd .btn_auto_address:hover {
  opacity: 0.75;
}
form dl dd .link_search_zipcode {
  color: inherit;
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 2px;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  form dl dd .link_search_zipcode {
    margin-top: 1em;
  }
}
form dl dd .link_search_zipcode:hover {
  text-decoration: none;
}
form dl dd .link_search_zipcode::after {
  content: "";
  display: inline-block;
  background: url(../../images/contact/icon_link_outside.svg) center/contain no-repeat;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-left: 4px;
}
form .privacy_check {
  margin-top: 4.375rem;
}
@media (max-width: 767.98px) {
  form .privacy_check {
    margin-top: 2.5rem;
  }
  form .privacy_check .txt {
    line-height: 1.55;
  }
}
form .privacy_check .privacy_txt_box {
  border: 1px solid #727171;
  padding: 1rem;
  max-height: 13.12rem;
  overflow-y: scroll;
}
@media (max-width: 767.98px) {
  form .privacy_check .privacy_txt_box > * {
    font-size: 13px;
  }
}
form .privacy_check .privacy_txt_box .name {
  text-align: right;
  line-height: 1.57;
}
form .privacy_check .privacy_txt_box h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 1em;
}
@media (max-width: 767.98px) {
  form .privacy_check .privacy_txt_box h3 {
    font-size: 1rem;
  }
}
form .privacy_check .privacy_txt_box h4 {
  font-size: 1.1em;
  line-height: 1.35;
  margin-top: 2em;
}
@media (max-width: 767.98px) {
  form .privacy_check .privacy_txt_box h4 {
    font-size: 1rem;
  }
}
form .privacy_check .privacy_txt_box p {
  line-height: 1.57;
}
@media (max-width: 767.98px) {
  form .privacy_check .privacy_txt_box p {
    line-height: 1.77;
  }
}
form .privacy_check .privacy_txt_box ol {
  counter-reset: number 0;
}
form .privacy_check .privacy_txt_box ol > li {
  margin-bottom: 1em;
  text-indent: -1.3em;
  padding-left: 1.5em;
  line-height: 1.57;
}
form .privacy_check .privacy_txt_box ol > li::before {
  content: counter(number) ".";
  counter-increment: number 1;
  margin-right: 0.5em;
}
form .privacy_check .privacy_txt_box ol ul {
  text-indent: 0;
}
form .btn_wrapper {
  margin-top: 2rem;
}
form .btn_wrapper .agree label {
  cursor: pointer;
  line-height: 1.25;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
form .btn_wrapper .error {
  text-align: center;
  margin-bottom: 1em;
}
form .btn_wrapper .btn_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.56rem;
}
@media (max-width: 767.98px) {
  form .btn_wrapper .btn_box {
    gap: 12px;
  }
}
form .btn_wrapper .btn_box .btn {
  background-color: #efefef;
  max-width: 250px;
  width: 100%;
  height: 50px;
  border-radius: 100vmax;
  border: 1px solid rgba(0, 0, 0, 0.5);
  display: grid;
  place-content: center;
  letter-spacing: 0.05em;
  padding-bottom: 8px;
  position: relative;
}
@media (max-width: 767.98px) {
  form .btn_wrapper .btn_box .btn {
    font-size: 1em;
    padding-bottom: 6px;
  }
}
form .btn_wrapper .btn_box .btn.confirm::after, form .btn_wrapper .btn_box .btn.submit::after {
  content: "";
  display: inline-block;
  background: url(../../images/contact/icon_btn_arrow.svg) center/contain no-repeat;
  width: 25px;
  height: 17px;
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
}
@media (max-width: 767.98px) {
  form .btn_wrapper .btn_box .btn.confirm::after, form .btn_wrapper .btn_box .btn.submit::after {
    width: 18px;
    height: 12px;
    right: 14px;
  }
}
form .btn_wrapper .btn_box .btn.back::after {
  content: "";
  display: inline-block;
  background: url(../../images/contact/icon_btn_arrow.svg) center/contain no-repeat;
  width: 25px;
  height: 17px;
  position: absolute;
  top: 50%;
  left: 20px;
  translate: 0 -50%;
  scale: -1 1;
}
@media (max-width: 767.98px) {
  form .btn_wrapper .btn_box .btn.back::after {
    width: 18px;
    height: 12px;
    left: 14px;
  }
}
form .btn_wrapper .btn_box .btn.submit {
  background-color: #f5b090;
}