@charset "UTF-8";
/*-----------------------------------------------------

  Form common CSS

-----------------------------------------------------*/
/*----------input----------*/
input,
textarea {
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  background: none;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

input[type="submit"] {
  border: none;
  cursor: pointer;
}

input[type="radio"],
input[type="checkbox"] {
  border: none !important;
  background-color: transparent !important;
  position: absolute;
  width: 0 !important;
}

input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: none;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
  display: inline-block;
  line-height: 1;
  font-size: 1.6rem;
  padding-left: 2.25em;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  input[type="radio"] + label,
  input[type="checkbox"] + label {
    font-size: 0.95rem;
  }
}

@media only screen and (min-width: 320px) and (max-width: 374px) {
  input[type="radio"] + label,
  input[type="checkbox"] + label {
    font-size: 2.93333vw;
  }
}

input[type="radio"] + label:before,
input[type="checkbox"] + label:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #666666;
  border-radius: 0.3125em;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: -0.125em;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  input[type="radio"] + label:before,
  input[type="checkbox"] + label:before {
    margin-top: 0;
  }
}

input[type="radio"]:checked + label:after,
input[type="checkbox"]:checked + label:after {
  position: absolute;
  display: block;
  content: "";
  top: -0.125em;
  left: 0.25em;
  background: url(form_check_on.svg) no-repeat 0 0;
  background-size: contain;
  width: 1.375em;
  height: 0.9375em;
}

/*----------form----------*/
#form_status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 70px;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  #form_status {
    display: block;
    margin-top: 20px;
  }
}

#form_status #form_status_ttl {
  font-size: 2.0rem;
  font-weight: bold;
  color: #ff6041;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  #form_status #form_status_ttl {
    font-size: 1.0rem;
    text-align: center;
  }
}

#form_status #form_status_box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 80px;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  #form_status #form_status_box {
    margin: 15px 0 0 0;
  }
}

#form_status #form_status_box .err_mes {
  min-height: 0;
}

#form_status ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form_body {
  margin-top: 40px;
  background-color: #fff;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 30px 15px 0;
  }
}

.form_body dl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  overflow: hidden;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body dl {
    display: block;
    border-top: 1px solid #ff6041;
  }
}

.form_body dl:after {
  position: absolute;
  display: block;
  content: " ";
  background-color: #ff6041;
  width: calc( 100% - 30px);
  height: 1px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body dl:after {
    display: none;
  }
}

.form_body dl:first-of-type {
  border-top: 1px solid #ff6041;
}

.form_body dl:last-of-type {
  border-bottom: 1px solid #ff6041;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body dl:last-of-type {
    border-bottom: none;
  }
}

.form_body dl:last-of-type:after {
  display: none;
}

.form_body dl dt, .form_body dl dd {
  padding: 20px 40px 20px 30px;
  line-height: 1.4;
  min-height: 154px;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body dl dt, .form_body dl dd {
    padding: 10px 10px;
    min-height: 0;
  }
}

.form_body dl dt {
  position: relative;
  background-color: #d1efff;
  width: 357px;
  font-size: 2.0rem;
  color: #ff6041;
}

@media screen and (min-width: 768px) {
  .form_body dl dt {
    padding-top: 60px;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body dl dt {
    width: 100%;
    font-size: 1.3rem;
  }
}

.form_body dl dt span {
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .form_body dl dt span {
    padding-right: 10px;
  }
}

.form_body dl dt small {
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body dl dt small {
    font-size: 1.1rem;
  }
}

.form_body dl dt .form_txt {
  font-size: 1.6rem;
  font-weight: normal;
  color: #2A518A;
}

@media screen and (min-width: 768px) {
  .form_body dl dt .form_txt {
    margin-top: -1.5em;
    position: relative;
    top: -0.5em;
  }
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body dl dt .form_txt {
    font-size: 1.0rem;
  }
}

.form_body dl dt .form_ttl_note {
  font-size: 1.6rem;
  font-weight: normal;
  color: #2A518A;
  margin-top: 0.5em;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body dl dt .form_ttl_note {
    font-size: 1.0rem;
  }
}

@media screen and (min-width: 768px) {
  .form_body dl dt.al-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.form_body dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body dl dd {
    padding: 10px 0 30px;
  }
}

.form_body dl.required dt span {
  display: block;
}

.form_body dl.required dt span:after {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  float: right;
  display: inline-block;
  content: "Required";
  background-color: #ff6041;
  font-size: 1.7rem;
  color: #fff;
  text-align: center;
  line-height: 1.47059em;
  width: 6.23529em;
  height: 1.47059em;
  margin-top: 0.1em;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body dl.required dt span:after {
    float: none;
    font-size: 0.95rem;
    margin-left: 1.5em;
  }
}

.form_body.form_noline dl:after {
  display: none;
}

@media screen and (min-width: 768px) {
  .form_body.form_noline dl dt, .form_body.form_noline dl dd {
    min-height: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.form_body.form_noline dl dt {
  padding-right: 10px;
}

@media screen and (min-width: 768px) {
  .form_body.form_noline dl dt {
    padding-top: 30px;
  }
}

.form_body.form_noline dl dd .err_mes {
  min-height: 0;
}

@media screen and (min-width: 768px) {
  .form_body.form_noline dl:first-of-type dt {
    padding-top: 60px;
  }
  .form_body.form_noline dl:first-of-type dd {
    padding-top: 50px;
  }
  .form_body.form_noline dl:last-of-type dt, .form_body.form_noline dl:last-of-type dd {
    padding-bottom: 50px;
  }
}

.form_body.form_noline dl.required dt span:after {
  float: none;
  margin-left: 1em;
  vertical-align: top;
}

.form_body input,
.form_body textarea,
.form_body .form_email,
.form_body .form_select {
  font-size: 2.0rem;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, YuGothicM, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  background-color: #EFEFEF;
  border: 1px solid #2A518A;
  border-radius: 0.5em;
  width: 100%;
  padding: 0.45em 0.6em;
  color: #2A518A;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body input,
  .form_body textarea,
  .form_body .form_email,
  .form_body .form_select {
    font-size: 1.15rem;
  }
}

.form_body input.error,
.form_body textarea.error,
.form_body .form_email.error,
.form_body .form_select.error {
  border-color: #ff6041;
  background-color: #feeaea;
}

.form_body input::-webkit-input-placeholder {
  color: #999999;
}

.form_body input:-ms-input-placeholder {
  color: #999999;
}

.form_body input::-ms-input-placeholder {
  color: #999999;
}

.form_body input::placeholder {
  color: #999999;
}

.form_body textarea {
  resize: vertical;
  overflow: auto;
  min-height: 236px;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body textarea {
    min-height: 215px;
  }
}

.form_body .form_email {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}

.form_body .form_email:before {
  position: absolute;
  content: "@";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 280px;
  font-size: 2.8rem;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body .form_email:before {
    left: 52vw;
    font-size: 1.4rem;
  }
}

.form_body .form_email input {
  border: none;
  background-color: transparent;
}

.form_body .form_email input:first-child {
  width: 275px;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body .form_email input:first-child {
    width: 50.66667vw;
  }
}

.form_body .form_email input:last-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 35px;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body .form_email input:last-child {
    margin-left: 20px;
  }
}

.form_body .form_select {
  position: relative;
  background-color: #fff;
  padding: 0;
  height: 53px;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body .form_select {
    height: 32px;
  }
}

.form_body .form_select:before {
  position: absolute;
  display: block;
  content: " ";
  background: url(form_arrow_select.svg) no-repeat center center;
  background-size: contain;
  width: 14px;
  height: 100%;
  top: 0;
  right: 10px;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body .form_select:before {
    width: 10px;
    right: 5px;
  }
}

.form_body select {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 2.0rem;
  color: #959595;
  padding-left: 1em;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body select {
    font-size: 1.15rem;
  }
}

.form_body select::-ms-expand {
  display: none;
}

.form_body .form_prefecture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1.5em;
  padding-bottom: 30px;
}

.form_body .form_prefecture .form_select {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 1em;
}

.form_body ul.form_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form_body ul.form_name li {
  width: calc( (100% - 16px) / 2);
}

.form_body ul.form_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form_body ul.form_date li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form_body ul.form_date li .form_select {
  width: 146px;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body ul.form_date li .form_select {
    width: 23.46667vw;
  }
}

.form_body ul.form_date li .form_date_txt {
  font-size: 2.0rem;
  margin-left: 0.3em;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body ul.form_date li .form_date_txt {
    font-size: 1.15rem;
  }
}

.form_body ul.form_tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form_body ul.form_tel li {
  position: relative;
  width: calc( (100% - 2.4rem) / 3);
}

@media screen and (min-width: 768px) {
  .form_body ul.form_tel li {
    width: calc( (100% - 4.8rem) / 3);
  }
}

.form_body ul.form_tel li:nth-child(n+2):before {
  position: absolute;
  display: block;
  content: " ";
  background: #2A518A;
  width: 0.45rem;
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -0.85rem;
}

@media screen and (min-width: 768px) {
  .form_body ul.form_tel li:nth-child(n+2):before {
    width: 10px;
    left: -17px;
  }
}

.form_body ul.form_address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body ul.form_address {
    margin-bottom: 0;
  }
}

.form_body ul.form_address li {
  width: calc( (100% - 18px) /2);
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body ul.form_address li {
    width: 43.33333vw;
  }
}

.form_body ul.form_address li:last-child {
  width: 100%;
  margin-top: 40px;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body ul.form_address li:last-child {
    margin-top: 15px;
  }
}

.form_body ul.form_address li .form_address_ttl {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body ul.form_address li .form_address_ttl {
    font-size: 0.8rem;
  }
}

.form_body ul.form_address li .form_address_ttl:nth-of-type(n+2) {
  margin-top: 1em;
}

.form_body ul.form_check_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .form_body ul.form_check_list {
    margin-top: -15px;
    margin-bottom: -15px;
  }
}

.form_body ul.form_check_list li {
  width: 50%;
  margin: 15px 0;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body ul.form_check_list li {
    margin: 6px 0;
    letter-spacing: 0em;
  }
}

.form_body ul.form_check_list li label {
  padding-left: 2em;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body ul.form_check_list li label {
    font-size: 1.0rem;
  }
}

.form_body ul.form_check_list li.form_check_list_other {
  width: 100%;
  margin-bottom: 0;
}

.form_body .form_textarea dd {
  padding-bottom: 50px;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body .form_textarea dd {
    padding-bottom: 25px;
  }
}

.form_body .form_zip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body .form_zip {
    display: block;
  }
}

.form_body .form_zip input {
  width: 235px;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body .form_zip input {
    width: 49.33333vw;
  }
}

.form_body .form_zip .form_note {
  color: #ff6041;
  margin-left: 1em;
  font-size: 1.5rem;
  letter-spacing: 0;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body .form_zip .form_note {
    font-size: 1.0rem;
    margin-left: 0;
    letter-spacing: 0.1em;
  }
}

.form_body_ttl {
  font-size: 1.9rem;
  font-weight: bold;
  color: #ff6041;
  margin-bottom: 0.8em;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_body_ttl {
    font-size: 1.1rem;
  }
}

.form_note {
  font-size: 1.2rem;
  margin-top: 0.75em;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_note {
    font-size: 1.0rem;
    margin-top: 5px;
  }
}

.form_note_orange {
  font-size: 1.6rem;
  color: #ff6041;
  letter-spacing: 0.095em;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_note_orange {
    font-size: 1.0rem;
  }
}

.form_agree {
  margin-top: 40px;
  text-align: center;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_agree {
    margin-top: 20px;
  }
}

.form_agree .form_agree_box:nth-of-type(n+2) {
  margin-top: 50px;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_agree .form_agree_box:nth-of-type(n+2) {
    margin-top: 35px;
  }
}

.form_agree .form_agree_txt a {
  text-decoration: underline;
}

.form_agree .form_agree_check {
  margin-top: 25px;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_agree .form_agree_check {
    margin-top: 20px;
  }
}

.form_submit {
  margin-top: 50px;
  text-align: center;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_submit {
    margin-top: 25px;
  }
}

.form_submit .btn {
  border-width: 2px;
  border-radius: 100vw;
  width: 420px;
  height: 68px;
  font-size: 2.2rem;
  outline: none;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_submit .btn {
    border-width: 1px;
    width: 200px;
    height: 30px;
    font-size: 1.4rem;
  }
}

.form_submit .btn:focus {
  outline: none;
}

.form_submit.lock input[type="submit"] {
  background-color: #EFEFEF;
  border: none;
  color: #ccc;
  cursor: default;
}

.form_submit .form_gmo {
  width: 130px;
  margin: -65px 0 0 auto;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_submit .form_gmo {
    width: 103px;
    margin: 30px auto 0;
  }
}

.err_mes {
  margin-bottom: 8px;
  min-height: 22px;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .err_mes {
    min-height: 0;
    margin-bottom: 4px;
  }
}

.err_mes .error {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #ff6041;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .err_mes .error {
    font-size: 1.0rem;
  }
}

.err_mes.err_mes_select .error:nth-child(n+2) {
  display: none !important;
}

#wrapper.form_confirm .err_mes {
  display: none;
}

.mes_h0 .err_mes {
  min-height: 0;
}

.form_confirm #pagehd {
  padding-bottom: 0;
}

.form_confirm .sec_ttl {
  font-size: 2.4rem;
  letter-spacing: 0.11em;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_confirm .sec_ttl {
    font-size: 1.4rem;
  }
}

.form_confirm .form_body {
  margin-top: 80px;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_confirm .form_body {
    margin-top: 25px;
  }
}

.form_confirm .form_body dl dt {
  font-size: 2.2rem;
}

@media screen and (min-width: 768px) {
  .form_confirm .form_body dl dt {
    padding: 50px 20px 50px 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_confirm .form_body dl dt {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 768px) {
  .form_confirm .form_body dl dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 50px 60px 50px;
  }
}

.form_confirm .form_body dl dd p {
  font-size: 2.0rem;
  font-weight: bold;
  color: #2A518A;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_confirm .form_body dl dd p {
    font-size: 1.2rem;
    font-weight: normal;
    margin-left: 1em;
    margin-right: 1em;
  }
}

.form_confirm .form_body dl.form_textarea dt {
  display: block;
}

.form_confirm .form_body dl.form_textarea dd p {
  line-height: 1.5;
}

.form_confirm .form_submit {
  font-size: 0;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_confirm .form_submit {
    margin-top: 45px;
  }
}

.form_confirm .form_submit .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 20px;
}

.form_confirm .form_submit input[type="submit"] {
  background-color: #ff6041;
  color: #fff;
  display: inline-block;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_confirm .form_submit input[type="submit"] {
    margin-top: 25px;
  }
}

.form_confirm .form_submit input[type="submit"]:hover {
  background-color: #fff;
  color: #ff6041;
}

.form_thanks {
  width: 700px;
  margin: 140px auto 180px;
  padding: 60px 10px;
  background-color: #fff;
  font-size: 1.6rem;
  text-align: center;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_thanks {
    width: 275px;
    margin: 120px auto;
    padding: 45px 10px;
    font-size: 1.1rem;
  }
}

.form_thanks .form_thanks_txt {
  margin-bottom: 1em;
  font-size: 2.0rem;
}

@media only screen and (max-width: 767px), only screen and (max-width: 812px) and (orientation: landscape) {
  .form_thanks .form_thanks_txt {
    font-size: 1.3rem;
  }
}
