@charset "utf-8";

body {
  overflow-y: scroll;
}

div#confirm_field {
  margin: 0 auto 100px;
}

div#confirm_field {
  display: none;
}

div#confirm_field h3 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: #222;
  margin-bottom: 20px;
}

div#confirm_field dl {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  border: 1px solid #222;
}

div#confirm_field dl dt:first-child,
div#confirm_field dl dt:first-child + dd {
  border-top: none;
}

div#confirm_field dl dt {
  clear: both;
  width: 35%;
  float: left;
  border-top: 1px solid #222;
  padding: 15px 20px;
  text-align: left;
  overflow: hidden;
  background-color: #d3cbc5;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

div#confirm_field dl dd {
  width: 65%;
  float: right;
  border-top: 1px solid #222;
  border-left: 1px solid #222;
  padding: 15px 20px;
  text-align: left;
  background-color: #fff;
}

div#confirm_field p#confirm_submit {
  margin: 50px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

div#confirm_field input[type="button"] {
  padding: 9px 15px;
  vertical-align: middle;
  line-height: 1;
  border-radius: 3px;
  color: #ffffff;
  font-family: inherit;
  -webkit-appearance: none;
  font-size: 100%;
}

div#confirm_field input#confirm_submit_button,
div#confirm_field input#confirm_cancel_button {
  background: transparent;
  background-size: cover;
  background-repeat: no-repeat;
  width: 428px;
  height: 83px;
  border: none;
  cursor: pointer;
  text-indent: -9999px;
}

div#confirm_field input#confirm_submit_button {
  background-image: url("../../img/form_inquiry-btn_submit.svg");
}

div#confirm_field input#confirm_cancel_button {
  background-image: url("../../img/form_inquiry-btn_cancel.svg");
}

div#confirm_field input#confirm_submit_button:hover,
div#confirm_field input#confirm_cancel_button:hover {
  cursor: pointer;
}

/* --responsive----------------------------------------------------------------------------------------------------------------- */

/* 640pixel start */
@media screen and (max-width: 640px) {
  div#confirm_field h3 {
    font-size: 4vw;
	margin-bottom: 0.7em;
  }

  div#confirm_field {
    width: 95%;
  }

  div#confirm_field h2 {
    text-align: left;
  }

  div#confirm_field dl {
    overflow: visible;
  }

  div#confirm_field dl dt {
    width: 100%;
    float: none;
    text-align: left;
    padding: 10px 5px;
    font-weight: bold;
    display: block;
  }

  div#confirm_field dl dt:before {
    content: "【";
  }

  div#confirm_field dl dt:after {
    content: "】";
  }

  div#confirm_field dl dd {
    width: 100%;
    float: none;
    border-top: none;
    border-left: none;
    padding: 10px 5px;
  }

  div#confirm_field p#confirm_submit {
    margin: 30px auto 0;
  }

  div#confirm_field input#confirm_submit_button,
  div#confirm_field input#confirm_cancel_button {
    width: 304px;
    height: 59px;
  }
}
/* 640pixel end */
