@charset "UTF-8";
/*===================================
  
  フォーム設定

===================================*/
.formBlk-lead {
  margin-bottom: 20px;
  line-height: 2;
}

@media screen and (max-width: 991px) {
  .formBlk-lead {
    font-size: 1.3rem;
  }
}

.formBlk-privacy {
  display: table;
  margin: 60px auto 0;
}

@media screen and (max-width: 991px) {
  .formBlk-privacy {
    margin-top: 50px;
    font-size: 1.2rem;
  }
}

/* input設定 */
input, textarea {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio],
input[type=checkbox] {
  display: none;
}

input[type=submit], button {
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}

.input_text {
  width: 60%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* input */
input.input_text {
  height: 40px;
}

/* textarea */
textarea.input_text {
  width: 100%;
  height: 200px;
  font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* select設定 */
.select {
  position: relative;
  border: 1px solid #ccc;
  overflow: hidden;
  width: 40%;
  height: 40px;
  text-align: center;
}

.select > select {
  width: 100%;
  height: 100%;
  padding-right: 1em;
  color: #333 !important;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 8px 38px 8px 8px;
}

.select::after {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #2465b9;
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  .input_text, .select, .select > select {
    font-size: 16px;
    width: 100%;
  }
}

/* プレースフォルダ設定 */
::-webkit-input-placeholder {
  color: #9f9f9f;
}

:-ms-input-placeholder {
  color: #9f9f9f;
}

::placeholder {
  color: #9f9f9f;
}

input:focus::placeholder {
  color: transparent !important;
  transition: .1s;
}

input:focus::-webkit-input-placeholder {
  color: transparent !important;
  transition: .1s;
}

input:focus:-moz-placeholder {
  color: transparent !important;
  transition: .1s;
}

input:focus::-moz-placeholder {
  color: transparent !important;
  transition: .1s;
}

/* table設定 */
.form_tbl {
  padding: 0;
  width: 100%;
  border-top: 1px solid #ccc;
  table-layout: fixed;
  word-wrap: break-word;
}

.form_tbl + .form_tbl {
  margin-top: 50px;
}

.form_tbl th, .form_tbl td {
  font-size: 1.5rem;
  vertical-align: middle;
  border-bottom: 1px solid #ccc;
  padding: 25px;
  line-height: 1.6;
  color: #333;
}

.form_tbl th {
  width: 300px;
  background: #f7f7f7;
  color: #2465b9;
  padding-right: 15px;
}

.form_tbl_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form_tbl_item > span {
  font-weight: bold;
}

.form_tbl_item > span > b {
  font-weight: normal;
  display: block;
}

.form_tbl_hisu {
  color: #767676;
  font-size: 1.2rem;
  line-height: 1;
  background: #ffe113;
  display: inline-block;
  padding: 5px 8px;
  border-radius: 5px;
}

.form_tbl_caution {
  font-size: 1.2rem;
  padding-left: 10px;
}

.form_tbl_date dl + dl {
  margin-top: 15px;
}

.form_tbl_date dl dt {
  font-size: 1.5rem;
  color: #2465b9;
  margin-bottom: 5px;
}

@media screen and (max-width: 991px) {
  .form_tbl_date dl dt {
    font-size: 1.3rem;
  }
}

.form_tbl_date p {
  margin-top: 20px;
  position: relative;
  padding-left: 1.3em;
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  .form_tbl_date p {
    font-size: 1.2rem;
  }
}

.form_tbl_date p::before {
  content: '※';
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
}

.form_tbl_address .select {
  margin: 20px 0;
}

.form_tbl_zip {
  display: flex;
  align-items: center;
}

.form_tbl_zip > input {
  width: 30%;
}

.form_tbl_zip > button {
  font-size: 1.4rem;
  height: 40px;
  padding: 0 10px;
  margin-left: 10px;
  border-radius: 4px;
  border: 1px solid #999;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
  cursor: pointer;
  color: #333 !important;
}

.form_tbl_zip > button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.form_tbl_text {
  margin-top: 10px;
}

.form_tbl_question > p {
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .form_tbl_caption {
    font-size: 1.3rem;
  }
  .form_tbl {
    border: none;
  }
  .form_tbl th, .form_tbl td {
    font-size: 1.3rem;
    display: block;
    padding: 20px;
  }
  .form_tbl td {
    border-bottom: none;
    padding-bottom: 30px;
  }
  .form_tbl th {
    width: 100% !important;
    border-bottom: none;
    padding: 15px 20px;
    border-top: 1px solid #ccc;
    font-size: 1.4rem;
  }
  .form_tbl p {
    font-size: 1.2rem;
  }
  .form_tbl_item > span > b {
    font-size: 1.1rem;
    padding-left: 5px;
    display: inline-block;
  }
  .form_tbl_hisu {
    font-size: 1.1rem;
  }
  .form_tbl_zip {
    flex-wrap: wrap;
  }
  .form_tbl_zip > input {
    width: 60%;
  }
  .form_tbl_zip > button {
    font-size: 1.1rem;
    height: 40px;
    line-height: 1.3;
    width: calc(40% - 10px);
  }
  .form_tbl_caution {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding-left: 0;
  }
}

/* checkbox01 */
@media screen and (max-width: 991px) {
  .online_txt {
    letter-spacing: 0.03em;
  }
}

/* checkbox01 */
.check_list01 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 15px;
}

@media screen and (max-width: 991px) {
  .check_list01 {
    justify-content: space-between;
    margin-top: 10px;
    width: 100%;
  }
  .check_list01 label {
    width: 100%;
  }
}

.check_list01 label > input {
  position: absolute;
}

.check_list01 label > span {
  margin: 0;
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 13px 15px 13px 50px;
  display: inline-block;
  position: relative;
  font-weight: bold;
  color: #444;
  letter-spacing: 0.05em;
  width: 210px;
}

@media screen and (max-width: 991px) {
  .check_list01 label > span {
    width: 50%;
    max-width: 210px;
  }
}

.check_list01 label > span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #cccccc;
}

.check_list01 label > span::after {
  content: '';
  position: absolute;
  opacity: 0;
  width: 7px;
  height: 11px;
  top: 50%;
  margin-top: -2px;
  left: 21px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #bf0005;
  border-bottom: 2px solid #bf0005;
}

.check_list01 label > input:checked + span {
  background: #EEFBFE;
}

.check_list01 label > input:checked + span::after {
  opacity: 1;
}

.check_list01 label > input:focus + span::before {
  outline: 0;
  box-shadow: 0 0 0 3px #ffe3e3;
}

/* radio01 */
.radio_list01 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 15px;
}

@media screen and (max-width: 991px) {
  .radio_list01 {
    justify-content: space-between;
    margin-top: 10px;
  }
}

.radio_list01 label > input {
  position: absolute;
}

@media screen and (max-width: 991px) {
  .radio_list01 label {
    width: 47%;
  }
}

@media screen and (min-width: 992px) {
  .radio_list01 label + label {
    margin-left: 20px;
  }
}

.radio_list01 label > span {
  margin: 0;
  border: 1px solid #959595;
  border-radius: 4px;
  padding: 13px 15px 13px 40px;
  display: inline-block;
  position: relative;
  font-weight: bold;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 992px) {
  .radio_list01 label > span {
    min-width: 140px;
  }
}

@media screen and (max-width: 991px) {
  .radio_list01 label > span {
    font-size: 1.3rem;
    width: 100%;
  }
}

.radio_list01 label > span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #959595;
}

.radio_list01 label > span::after {
  content: '';
  position: absolute;
  opacity: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 15px;
  background: #FF0000;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.radio_list01 label > input:checked + span {
  background: #EEFBFE;
}

.radio_list01 label > input:checked + span::after {
  opacity: 1;
}

.radio_list01 label > input:focus + span::before {
  outline: 0;
  box-shadow: 0 0 0 3px #ffe3e3;
}

/* 送信 */
.form_send {
  margin-top: 40px;
}

.form_send_text {
  text-align: center;
}

.form_send_btn {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
  margin: auto;
}

.form_send_btn > li {
  width: 48%;
}

.form_send_btn > li > input {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .form_send {
    margin-top: 30px;
    padding-bottom: 30px;
  }
}

/* btn */
.btn_confirm,
.btn_back,
.btn_top {
  font-size: 2rem;
  font-family: "Noto Sans JP","メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: block;
  font-weight: 700;
  color: #fff !important;
  margin: 50px auto 0;
  padding: 10px 0 12px;
  border-radius: 5px;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
  max-width: 240px;
  height: 55px;
  width: 80%;
  background: #fc4f00;
  box-shadow: 0 3px 0 0 #eec4b0;
}

.btn_back {
  background: #aaa;
  box-shadow: 0 3px 0 0 #ccc;
}

@media screen and (max-width: 991px) {
  .btn_confirm,
  .btn_back,
  .btn_top {
    margin: 20px auto 0;
    font-size: 1.6rem;
  }
}

/* error */
.error {
  color: #cc0000;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 10px 0 0;
}

.error2 {
  color: #fff;
  background: #f00;
  padding: 0.8% 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
  margin: 20px auto;
  width: 100%;
}

.form_block_thanks {
  display: table;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .form_block_thanks {
    padding-bottom: 20px;
  }
}
