@charset "utf-8";


.hidden {
  display: none;
}

.fc_red {
  color: #df0202;
}

.fw_bold {
  font-weight: bold;
}


.shadow_box {
  box-shadow: 0 0 5px 0 rgba(74,27,26,.11);
}

.shadow_btn {
  box-shadow: 0 3px 3px 0 rgba(0,0,0,.3);
}


.box_white {
  padding: 20px;
  background: #fff;
  border-radius: 6px;
}
.box_pink {
  padding: 40px 30px;
  background: #fde5e7;
  border-radius: 6px;
}

.box_line_brown {
  border: 6px solid #cec0a8;
}

.box_balloon {
  position: relative;
  margin-top: 13px;
  padding: 5px 10px;
  background: #f6d9d9;
  border-radius: 4px;
}
  .box_balloon:after {
    position: absolute;
    top: -9px;
    left: 15px;
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 4px 9px 4px;
    border-color: transparent transparent #f6d9d9 transparent;
  }


/* __________ btn __________ */
.confirm_btn_area {
  margin: 45px auto 0;
}

.confirm_btn_area p {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.confirm_btn_area ul {
  width: 635px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.confirm_btn_wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.formmail_btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  display: block;
  color: #fff !important;
  border-radius: 6px !important;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
  .formmail_btn:hover {
    text-decoration: underline;
  }

/*進む・次へ*/
.btn_next {
  position: relative;
  width: 540px;
  height: 80px;
  background: #ea2433;
  font-size: 26px;
  line-height: 80px;
}
  input.btn_next {
    background-image: url(../img/btn_arrow_wh.png);
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 10px 12px;
  }

.btn_back {
  position: relative;
  width: 320px;
  height: 60px;
  background: #c2a883;
  font-size: 20px;
  line-height: 60px;
}

.btn_arrowL:before {
  position: absolute;
  top: 50%;
  left: 20px;
  display: inline-block;
  content: '';
  width: 0;
  height: 0;
  margin-top: -5px;
  border-style: solid;
  border-width: 5.5px 10px 5.5px 0;
  border-color: transparent #fff transparent transparent;
}

.btn_arrowR:after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: -5px;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
}

/*トップページに戻る*/
.btn_back_top {
  position: relative;
  width: 300px;
  height: 48px;
  margin: 20px auto 0;
  background: #f47683;
  font-size: 20px;
  line-height: 48px;
}



/* __________ layout __________ */
/*#contents {
  padding-top: 20px;
}*/
#formmail {
  padding-bottom: 80px;
  font-size: 16px;
}
  #formmail .page-width.w950 {
    max-width: 990px;
  }
  #formmail .page-width.w1140 {
    max-width: 1180px;
  }

@media screen and ( min-width: 1320px ) {
  #formmail .page-width.w1140 {
    max-width: 1140px;
  }
}





/* __________ flexbox __________ */
.fluid {
  display: -webkit-box;/*Android4.3*/
  display: -moz-box;/*Firefox21*/
  display: -ms-flexbox;/*IE10*/
  display: -webkit-flex;
  display: flex;
}

@media screen and ( min-width: 1024px ) {
  .fluid_wide {
    display: -webkit-box;/*Android4.3*/
    display: -moz-box;/*Firefox21*/
    display: -ms-flexbox;/*IE10*/
    display: -webkit-flex;
    display: flex;
  }
}



/* ===============================================================
form周り
=============================================================== */
#formmail input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#formmail label {
  cursor: pointer;
}

.form_wrap input[type="text"],
.form_wrap input[type="number"],
.form_wrap textarea {
  display: inline-block;
  height: 50px;
  padding: 11px;
  border: 1px solid #a3937f;
  border-radius: 4px;
  font-size: 18px;
}

.form_wrap textarea {
  width: 100%;
  max-width: 100%;
  height: 200px;
}

.form_wrap input,
.form_wrap textarea {
  background-color: #fef1f2;
}
  .form_wrap input:focus,
  .form_wrap textarea:focus{
    background-color: #fff;
  }

.form_wrap input.w100 {
  width: 100%;
}
.form_item_SS {
  width: 168px;
}
.form_item_S {
  width: 200px;
}
.form_item_L {
  width: 90%;
  max-width: 500px;
}

.radio_btn {
  position: relative;
  display: inline-block;
  padding-left: 27px;
  background: #fff url(../img/radio_btn.png) no-repeat left top;
  background-size: 22px;
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
  vertical-align: middle;
}
  input[type="radio"]:checked + .radio_btn {
    background-image: url(../img/radio_btn_active.png);
  }

.list_radio_btn li + li {
  margin-top: 12px;
}

@media screen and ( min-width: 1024px ) {
  .form_item_SS {
    width: 36%;
    max-width: 200px;
  }
  .form_item_L {
    width: 500px;
  }
  .form_wrap textarea {
    max-width: 640px;
  }
}

@media screen and ( min-width: 1024px ) {
  input[type="text"] {
    font-size: 16px;
  }

}


/* ===============================================================
共通
=============================================================== */

/* __________ タイトル・見出し __________ */
.page_title {
  position: relative;
  margin-bottom: 20px;
  padding: 15px 0;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
  .page_title:before,
  .page_title:after {
    position: absolute;
    left: 0;
    right: 0;
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin: auto;
    border-top: 1px solid #d2c5b8;
    border-bottom: 1px solid #fff;
  }
    .page_title:before {
      top: 0;
    }
    .page_title:after {
      bottom: 0;
    }

.block_title {
  margin-bottom: 11px;
  font-size: 20px;
  font-weight: bold;
}


/* __________ 注釈 __________ */
.formmail_att {
  font-size: 14px;
  line-height: 1.5;
}
.formmail_att li {
    padding-left: 1em;
    text-indent: -1em;
  }

.formmail_att.fs_lg {
  font-size: 16px;
}




/* ===============================================================
入力画面
=============================================================== */
.formmail_user_info {
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px dashed #917651;
}

.form_wrap {
  padding: 25px 30px;
}
.form_wrap table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 18px;
}
  .form_wrap th,
  .form_wrap td {
    padding: 20px 0;
    border-bottom: 1px solid #ddd7cb;
    vertical-align: middle;
  }
  .form_wrap tr:last-child th,
  .form_wrap tr:last-child td {
    border-bottom: 0;
  }
  .form_wrap th {
    width: 22%;
    padding-right: 10px;
    padding-top: 35px;
    text-align: left;
  }
  .form_wrap td {
    width: 78%;
  }

    .form_wrap th,
    .form_wrap label {
      font-size: 14px;
      font-weight: bold;
    }
    .form_wrap td label {
      text-align: right;
      vertical-align: top;
    }


.form_item_wrap {
  display: -webkit-box;/*Android4.3*/
  display: -moz-box;/*Firefox21*/
  display: -ms-flexbox;/*IE10*/
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
}
  .form_item_wrap + .form_item_wrap {
    margin-top: 10px;
  }
    .form_item_wrap label {
      width: 60px;
      padding-right: 5px;
      text-align: right;
    }


.form_item_mail label {
  display: inline-block;
}

.formmail_inquriryarea {
  padding: 40px;
}

.formmail_inquriryarea p {
  max-width: 695px;
  margin: 0 auto;
}

.formmail_inquriry_btn_wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  max-width: 695px;
  margin: 30px auto 0;
}
.formmail_inquriry_btn_wrap a:last-of-type {
  width: 350px;
  min-width: 320px;
  margin-left: 25px;
}

th.formmail_mail_no_border,
td.formmail_mail_no_border {
  border-bottom: 0;
}

.formmail_mail_att_area td {
  width: 100%;
}

.formmail_mail_att_area__txt1 {
  font-size: 18px;
}

@media screen and ( min-width: 1024px ) {
  .form_wrap {
    padding: 25px 50px;
  }

  .form_wrap th {
    width: 25%;
    max-width: 240px;
  }
  .form_wrap th,
  .form_wrap label {
    font-size: 20px;
    font-weight: bold;
  }

  .form_wrap td {
    width: 75%;
  }

  .form_item_wrap label {
    width: 65px;
  }

}




/* ===============================================================
確認画面
=============================================================== */
.confirm_table {
  padding: 20px 40px;
}
.confirm_table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
  .confirm_table th,
  .confirm_table td {
    padding: 20px 0;
    border-bottom: 1px solid #ddd7cb;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    vertical-align: middle;
  }
  .confirm_table tr:last-child th,
  .confirm_table tr:last-child td {
    border-bottom: 0;
  }
    .confirm_table th {
      width: 28%;
    }
    .confirm_table td {
      width: 72%;
    }

@media screen and ( min-width: 1024px ) {
  .confirm_table th,
  .confirm_table td {
    font-size: 18px;
  }
}





/* ===============================================================
完了
=============================================================== */
.complete_img {
  width: 135px;
  height: 135px;
  margin-right: 20px;
}
.complete_msg h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}
.complete_msg {
  width: calc(100% - 135px);
  max-width: 922px;
}
  .complete_msg p {
  margin-bottom: 1em;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  }



/* よくある質問導線 */
.faq_area {
  background-color: #fffce4;
  border: 2px solid #f6d3af;
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 64px;
}
.faq_area .faq_tit {
  font-weight: bold;
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 24px;
}
.faq_area .faq_tit::before {
  content: "！";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 15%;
  top: 0;
  font-size: 28px;
}
.faq_area .faq_tit::after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 14.5%;
  top: 0;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #333;
  border-radius: 50px;
}
.faq_area ul {
  width: 65%;
  margin: 0 auto;
}
.faq_area ul li {
  margin-bottom: 16px;
}
.faq_area ul li a {
  font-size: 24px;
  text-decoration: underline;
  font-weight: normal;
}
.faq_area .c-btn {
  font-size: 24px !important;
  width: 80%;
  margin: 30px  auto 0 auto;
  --btn-height: auto;
}
.faq_area .c-btn:hover {
  text-decoration: underline !important;
}
#form2 {
  margin-top:-92px;
  padding-top:92px;
}
#form2 .fc_red {
  font-size: 14px;
  margin-bottom: 8px;
}
#form2 .fc_red span {
  text-decoration: underline;
}