/*form*/
/*-------------------------------------------------------------------------*/
/*form base*/
.form-custom {
  margin: 0 auto;
  padding: 5%;
  background: rgba(0, 0, 0, .5);
  /* background-size: 100% 100%; */
  /*border-radius: 5px;*/
}

.form-custom h2 {
  margin: 0;
  padding: 5% 0;
  /*font-size: 30px;*/
  font-size: 18px;
  text-align: left;
  color: #000;
}

.form-custom .form-custom-main {
  margin: 0 auto;
  width: 100%;
  border-radius: 5px;
}

.form-custom .form-custom-main .hint-text {
  margin: 0 auto;
  padding: 5% 0;
  width: 94%;
  text-align: center;
}

.form-custom dl {
  padding: 1% 0;
  margin-bottom: 3%;
  width: 100%;
  border-radius: 5px;
  text-align: left;

}

.form-custom dl:last-child {
  margin-bottom: 0;
}

.form-custom dl:hover,
.form-custom dl:focus,
.form-custom dl:active {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: skew(-2deg);
  transform: skew(-2deg);
  /*-webkit-animation-name: hvr-wobble-horizontal;*/
  /*animation-name: hvr-wobble-horizontal;*/
  /*-webkit-animation-duration: 1s;*/
  /*animation-duration: 1s;*/
  /*-webkit-animation-timing-function: ease-in-out;*/
  /*animation-timing-function: ease-in-out;*/
  /*-webkit-animation-iteration-count: 1;*/
  /*animation-iteration-count: 1;*/
}

/* Wobble Horizontal */
@-webkit-keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  33.3% {
    -webkit-transform: translateX(-1px);
    transform: translateX(-1px);
  }

  49.95% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  66.6% {
    -webkit-transform: translateX(-1px);
    transform: translateX(-1px);
  }

  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  33.3% {
    -webkit-transform: translateX(-1px);
    transform: translateX(-1px);
  }

  49.95% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  66.6% {
    -webkit-transform: translateX(-1px);
    transform: translateX(-1px);
  }

  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.form-custom dt {
  display: none;
  width: 70px;
  text-align: right;
  text-align: justify;
  text-justify: distribute-all-lines;
  text-align-last: justify;
  text-indent: 10px;
}

.form-custom dd {
  /* margin-top: -30px; */
  padding-left: 80px;
  text-align: left;
}

.form-list-box {
  position: relative;
  width: 100%;
  /* border: 1px solid #fff; */
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.form-list-box:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

.form-two .form-list-box {
  float: left;
  width: 47%;
}

.form-two .form-list-box:nth-child(2) {
  margin-right: 0;
  float: right;
}

.form-three .form-list-box {
  float: left;
  width: 47%;
  margin-bottom: 3%;
}

.form-three .form-list-box:nth-child(2) {
  margin-right: 0;
  float: right;
}

.form-custom dt,
.form-list-box-in,
.form-custom dd input[type="text"],
.form-custom dd input[type="tel"],
.form-custom dd input[type="number"],
.form-custom dd select,
.form-icons .form-icon {
  padding: 3px;
}

.form-custom dd select,
.form-custom dd textarea {
  padding: 3px 6px;
}

.form-custom dt,
.form-custom dd,
.form-custom dd input[type="text"],
.form-custom dd input[type="tel"],
.form-custom dd input[type="number"],
.form-custom dd select {
  line-height: 22px;
  font-size: 14px;
}


.form-custom dd input[type="text"],
.form-custom dd input[type="tel"],
.form-custom dd input[type="number"],
.form-custom dd select,
.form-custom dd textarea,
.form-custom dd .radio-text,
.form-custom .checkbox-text,
.hint,
.radio-text {
  /*height: 100%;*/
}

.form-custom,
.form-custom input,
.form-custom select,
.form-custom textarea,
.form-custom .form-custom-main .hint-text {
  color: #595757;
}

.reading,
.reading a {
  color: #fff;
}

input::placeholder,
textarea::placeholder,
input::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder,
textarea::-moz-placeholder,
input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
}

.form-custom dd select option {
  width: 100%;
  background: #eee;
  color: #333;
}

.form-custom dd input[type="text"],
.form-custom dd input[type="tel"],
.form-custom dd input[type="number"] {
  margin: 0 1.5%;
}

.form-custom dd input[type="text"],
.form-custom dd input[type="tel"],
.form-custom dd input[type="number"],
.form-custom dd select,
.form-custom dd textarea {
  width: 96%;
  border: 0;
  background: transparent;
  outline: none;
}

.form-custom .label {
  display: block;
  margin: 0 5px;
  width: 100%;
  position: relative;
}

.form-custom .label-sex {
  display: inline-block;
  width: 36%;
  margin: 0 5px;
  position: relative;
}

.form-custom .radio,
.form-custom .checkbox {
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
}

.form-custom input[type="checkbox"],
.form-custom input[type="radio"] {
  position: absolute;
  top: 3px;
  left: 8px;
  width: 14px;
  height: 14px;
  border: 1px solid #999
}

.form-custom .radio-text,
.form-custom .checkbox-text {
  line-height: 20px;
  text-indent: 2rem;
}

.hint {
  line-height: 20px;
}

.form-custom p.hint .checkbox {
  top: -2px;
  top: -4px \9;
  *top: 2px;
}

.form-custom .submit-box,
.form-custom .submit {
  background: #8eb9dc;
  color: #000;
}

.form-custom .submit-box {
  margin: 5% 1px;
  text-align: center;
}

.form-custom .submit-box,
.form-list-box {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.form-custom .submit-box:hover,
.form-custom .submit-box:focus,
.form-custom .submit-box:active {
  -webkit-animation-name: hvr-wobble-top;
  animation-name: hvr-wobble-top;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

@-webkit-keyframes hvr-wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }

  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }

  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }

  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }

  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }

  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}

@keyframes hvr-wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }

  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }

  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }

  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }

  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }

  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}

.form-custom .submit {
  display: block;
  padding: 3% 0;
  width: 100%;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 3px;
  outline: 0;
  background: transparent;
}

.form-custom .submit-box:hover,
.form-custom .submit-box:active {
  overflow: hidden;
  background: #abd3f3;
  text-decoration: none;
}

.form-point {
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -4px;
  margin-right: 8px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 8px solid #999;
}

/*form base end*/
/*++++++++++++++++++++++++++++++++++++++++++++*/
/*form top-bottom*/
.form-custom.form-tb dt {
  display: none;
  padding: 5px 0;
  height: 20px;
  line-height: 20px;
  text-align: left;
  text-justify: distribute-all-lines;
  text-align-last: auto;
  text-indent: 6px;
  text-indent: 0;
}

.form-custom.form-tb dd {
  margin-top: 0;
  padding: 0 0 5px;
}

.form-custom.form-tb dd.form-two select {
  width: 100%;
}

/*form top-bottom end*/
/*++++++++++++++++++++++++++++++++++++++++++++*/
/*form left-right*/
.form-custom.form-lr dl {
  float: left;
  margin: 5px 2%;
  width: 43%;
}

.form-custom.form-lr .submit {
  margin: 5px 0;
}

/*form left-right end*/
/*++++++++++++++++++++++++++++++++++++++++++++*/
/*form icons */
.form-icons .form-list-box-in {
  position: relative;
  margin-right: 25px;
}

.form-icons .form-icon {
  height: 100%;
  padding: 0 4px;
  width: 30px;
}

.form-custom.form-icons dt {
  width: 0;
  font-size: 0;
}

.form-custom.form-icons dd {
  padding-left: 0;
}

.form-icons .form-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  background: rgba(255, 255, 255, .3);
  width: 16px;
}

/*-------------------------------------------------------------------------*/
/*form end*/
/*-------------------------------------------------------------------------------------------------------------*/
/*form 重构*/
/*-------------------------------------------------------------------------*/
.form-link {
  margin: 0 auto;
  padding: 10px;
  width: 90%;
  background: #0F6AB9;
}

.form-link h2 {
  font-size: 30px;
  text-align: center;
  color: #eee;
}

.iframe-box {
  padding: 30px 0;
  display: block;
  background: #333;
}

.clue-code {
  padding: 0;
}

.img-box {
  text-align: center;
}

.reading {
  position: relative;
  margin: 3% 0;
  padding-left: 30px;
  line-height: 18px;
  text-align: left;
}

.reading p {
  margin-left: 25px;
}

.reading a {
  color: #ce1414;
}

.reading a:hover,
.reading a:active {
  text-decoration: none;
}

.hint-star {
  color: #f34142;
}

/*
.reading {
    padding: 3% 0;
    text-align: center;
}

.reading a {
    text-decoration: underline;
}

.reading,
.reading a {}

.reading a:hover,
.reading a:active {
    text-decoration: none;
}*/

/*nissan*/
.form-custom.nissan {
  background: #c70c2e;
  width: 80%;
}

.form-custom.nissan .form-custom-main {
  background: #c70c2e;
}

.form-custom.nissan .submit,
.form-custom.nissan .submit-box {
  background: #fff;
  color: #c70c2e;
}

/* pc */

.form-custom.form-custom-pc {
  float: right;
  width: 540px;
  padding: 50px 40px;
}

.form-custom.form-custom-pc dt,
.form-custom.form-custom-pc dd,
.form-custom.form-custom-pc dd input[type="text"],
.form-custom.form-custom-pc dd input[type="tel"],
.form-custom.form-custom-pc dd input[type="number"],
.form-custom.form-custom-pc dd select {
  line-height: 30px;
  font-size: 14px;
}

.form-custom.form-custom-pc .submit {
  padding: 6px 0;
  line-height: 32px;
}

.form-two {}

.form-custom.form-custom-pc dt.form-two,
.form-custom.form-custom-pc dd.form-two,
.form-custom.form-custom-pc dd.form-two input[type="text"],
.form-custom.form-custom-pc dd.form-two input[type="tel"],
.form-custom.form-custom-pc dd.form-two input[type="number"],
.form-custom.form-custom-pc dd.form-two select {
  line-height: 34px;
  font-size: 14px;
}

.form-custom.form-custom-pc.form-icons .form-icon {
  top: 0;
}