@charset "UTF-8";
/*
contact
1. detail
3. form
4. confirm

- */
.parsley-required, .parsley-custom-error-message {
  font-size: 80%;
  color: red;
}

/*----- 1. detail -----*/
.detailWrap p {
  margin-bottom: 25px;
}
.detailWrap a {
  color: #ffaa00;
  font-weight: bold;
  text-decoration: underline;
}
.detailWrap .subText {
  margin-bottom: 50px;
}
.detailWrap strong {
  font-weight: bold;
  background-color: #FFEBCA;
  padding: 3px;
}

/*----- 3. form -----*/
.formWrap h3 {
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  background-color: #ffaa00;
  padding: 10px 0;
  text-align: center;
}

.formWrap .table {
  border-bottom: 1px solid #b3b3b3;
  background-color: #fff;
  padding: 0 20px;
}

.formWrap .table.end {
  margin-bottom: 30px;
}

.formWrap .table dl {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.formWrap .table dt {
  width: 25%;
}

.formWrap .table dd {
  width: 75%;
}

.formWrap select,
.formWrap input {
  border: 1px solid #ffaa00;
  border-radius: 7px;
  padding: 7px;
}

.formWrap input.formWide {
  width: 100%;
}

.formWrap input:not(.formWide) {
  margin: 0 10px;
}

.formWrap input:first-child {
  margin-left: 0;
}

.formWrap textarea {
  width: 100%;
  border: 1px solid #ffaa00;
  border-radius: 10px;
  padding: 10px;
}

.formWrap .radio {
  cursor: pointer;
  position: relative;
  margin-right: 15px;
  overflow: hidden;
  padding-left: 23px;
  display: inline-block;
  vertical-align: middle;
}

.formWrap .radio:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 19px;
  height: 19px;
  border: 1px solid #ffaa00;
  border-radius: 50%;
}

.formWrap .radio:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 15px;
  height: 15px;
  background: #ffaa00;
  border-radius: 50%;
}

.formWrap .radio input {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 17px;
  height: 17px;
  left: -23px;
  top: 1px;
  margin: 0px;
  box-shadow: 24px 0 #fff;
  border-radius: 50%;
}

.formWrap .radio input:checked {
  box-shadow: none;
}

.formWrap .radio input:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #FFF;
}

.formWrap .checkbox {
  cursor: pointer;
  margin-right: 20px;
  overflow: hidden;
  position: relative;
  padding-left: 25px;
  display: inline-block;
  box-sizing: border-box;
}

label.checkbox:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0px;
  top: 0;
  border: 1px solid #ffaa00;
  z-index: 3;
}

label.checkbox:after {
  content: '';
  position: absolute;
  top: 40%;
  left: 6px;
  display: block;
  margin-top: -8px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #ffaa00;
  border-bottom: 3px solid #ffaa00;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1;
}

label.checkbox input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #FFF;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

label.checkbox input[type="checkbox"]:checked {
  box-shadow: none;
}

label.checkbox input[type="checkbox"]:checked:focus {
  box-shadow: 40px 0px #fff;
  opacity: 0.1;
}

label.checkbox input[type="checkbox"]:focus {
  box-shadow: 41px 0px #fff;
}

.formWrap .telBox input {
  width: 25%;
  max-width: 120px;
}

.formWrap .dayBox input {
  width: 4em;
}

.formWrap .lCell {
  color: #ffaa00;
  padding-top: 10px;
  margin-bottom: 15px;
  font-weight: bold;
}

.formWrap .required:after {
  content: '[必須]';
  color: #f00;
  padding-left: 5px;
}

.formWrap .pt span {
  padding-right: 10px;
}

.btnWrap {
  width: 100%;
  max-width: 356px;
  margin: 0 auto;
}

.btnWrap input {
  width: 48%;
  max-width: 165px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 0;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  -webkit-appearance: none;
}

.btnWrap input:not(.forWide) {
  margin: 0;
}

.btnWrap .reset {
  background-color: #ffb012;
}

.btnWrap .conf {
  background-color: #ffaa00;
}

/*----- 4. after -----*/
.topRetrun a {
  display: block;
  width: 80%;
  max-width: 248px;
  padding: 10px 0;
  text-align: center;
  background-color: #ffaa00;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 0;
  margin: 0 auto 20px;
  text-decoration: none;
}

/*---------- pc ----------*/
@media screen and (min-width: 760px) {
  .modalBox {
    width: 950px;
    height: 70vh;
  }

  .formWrap textarea {
    height: 180px;
    overflow: auto;
  }
}
/*---------- タブレット ----------*/
/*---------- sp ----------*/
@media screen and (max-width: 760px) {
  section {
    padding: 20px 15px;
  }

  .modalBox {
    width: 90%;
    height: 70vh;
  }

  .formWrap textarea {
    height: 180px;
  }

  .topRetrun a {
    font-size: 18px;
  }
}
/*---------- モバイル縦長 ----------*/
@media screen and (max-width: 760px) and (orientation: portrait) {
  .modalBox .text {
    padding: 20px 10px;
  }

  .formWrap .table dt,
  .formWrap .table dd {
    width: 100%;
    margin-bottom: 5px;
  }

  .formWrap input:not(.forWide) {
    margin: 0;
  }

  footer.thx {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 39px;
  }
}
/*---------- モバイル横長 ----------*/
@media screen and (max-width: 760px) and (orientation: landscape) {
  .modalBox {
    height: 60vh;
  }

  .formWrap .table dt {
    width: 35%;
  }

  .formWrap .table dd {
    width: 65%;
  }
}
/*---------- pc ----------*/
@media screen and (min-width: 813px) {
  .detailWrap section {
    padding-bottom: 1px;
  }
  .detailWrap p {
    padding: 0 150px;
  }

  .formWrap .table {
    padding: 10px 100px;
  }
}

/*# sourceMappingURL=contact.css.map */
