@charset "utf-8";

.table01 tbody th {
  width: 240px;
}

.required {
  color: #fff;
  font-size: 80%;
  padding: 4px 8px;
  margin-left: 8px;
  background-color: #b28850;
  white-space: nowrap;
}

#btnForm {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#btnForm p {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

#btnForm button {
  padding: 15px 0;
  width: 200px;
  font-size: 130%;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#btnForm button:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 200%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to right, rgba(223,192,150,0.7) 0%,rgba(178,136,80,0.7) 50%,rgba(223,192,150,0.7) 100%);
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

#btnForm button:hover:before {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#btnForm .btnConfirm {
  width: 300px;
}

#btnForm .btnSend {
  margin-left: 30px;
}

#btnForm .btnBack:before {
  background: linear-gradient(to right, rgba(219,222,204,0.7) 0%,rgba(175,182,136,0.7) 50%,rgba(219,222,204,0.7) 100%);
}

/* フォームリセットCSS + ノーマライズ */

input,
textarea,
button,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  vertical-align: middle;
}

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

input:-webkit-autofill,
textarea:-webkit-autofill {
  transition: background-color 999999s;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
textarea,
select {
  padding: 8px 15px;
  background-color: #fff;
  border: solid 1px #dbc2a0;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Meiryo, "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  line-height: 1.5;
  font-size: 14px;
  width: 240px;
}

input[name^="email"],
input[name^="address"] {
  width: 480px;
}

textarea {
  width: 820px;
  max-width: 820px;
  min-width: 820px;
  min-height: 150px;
}

/* .radioBox {
    font-size: 0;
    margin-left: 20px;
}

.radioBox label {
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    padding: 5px 8px;
}

.radioBox input[type="radio"] {
    display: none;
}

.radioBox input[type="radio"]+span {
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    border: 2px solid #26ac75;
    padding: 2px;
    position: relative;
    vertical-align: -0.5em;
    margin-right: 0.5em;
}

.radioBox input[type="radio"]+span:after {
    content: "";
    display: block;
    position: absolute;
    left: 3px;
    top: 3px;
    width: 14px;
    height: 14px;
    background-color: #26ac75;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .2s;
    transition: all .2s;

}

.radioBox label:hover input[type="radio"]+span:after {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
}

.radioBox input[type="radio"]:checked+span:after {
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
} */

.selectWrap {
  display: inline-block;
  position: relative;
}

.selectWrap:after {
  content: "";
  display: block;
  position: absolute;
  right: 12px;
  top: 50%;
  border-style: solid;
  border-width: 11px 7px 0;
  margin-top: -5px;
  border-color: #b28850 transparent transparent;
  pointer-events: none;
}

/* parsleyのスタイル設定
------------------------------------- */

.parsley-errors-list {
  color: #dbc2a0;
  font-size: 90%;
  margin-top: 5px;
}

.parsley-errors-list.filled~ul {
  display: none;
}

@media screen and (max-width: 750px) {
  .table01,
  .table01 tbody,
  .table01 tbody tr,
  .table01 tbody th,
  .table01 tbody td {
    display: block;
  }

  .table01 tbody th,
  .table01 tbody td {
    width: 100%;
    padding: 20px 30px;
  }

  .table01 tbody td {
    padding-top: 0;
  }

  .required {
    padding: 5px 15px;
    margin-left: 15px;
  }

  #btnForm {
    margin-top: 50px;
  }

  #btnForm button {
    padding: 15px 0;
    width: 280px;
    font-size: 130%;
  }

  #btnForm .btnConfirm {
    width: 400px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="number"],
  textarea,
  select {
    padding: 16px 20px;
    border-width: 2px;
    font-size: 24px;
    width: 100%;
  }

  input+input {
    margin-top: 6px;
  }

  textarea {
    width: 630px;
    max-width: 630px;
    min-width: 630px;
    min-height: 320px;
  }

  /* .radioBox {
        display: block;
        margin: 15px 0 0;
    }

    .radioBox label {
        font-size: 24px;
        padding: 10px 30px 10px 0;
    }

    .radioBox input[type="radio"]+span {
        width: 40px;
        height: 40px;
        border: 3px solid #008ed5;
    }

    .radioBox input[type="radio"]+span:after {
        left: 6px;
        top: 6px;
        width: 22px;
        height: 22px;
    } */

  .selectWrap:after {
    right: 21px;
    top: 50%;
    border-width: 16px 10px 0;
    margin-top: -8px;
  }
}