/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

@charset "utf-8";
/*
    Common 
*/
/* Accessibility */
.wizard > .steps {
  display: none;
}
.wizard > .steps .current-info {
  display: none;
}
.wizard > .content > .title {
  display: none;
}
/*
    Wizard
*/
.wizard > .steps > .step_title {
  display: none;
}
.wizard > .steps .number {
  display: none;
}
.wizard > .steps > ul {
  background-color: transparent;
  text-align: center;
}
.wizard > .steps > ul > li,
.wizard > .actions > ul > li {
  display: inline-block;
  margin: 0 6px;
}
/* .wizard > .actions > ul > li:first-child {
    display: none;
} */
.wizard > .steps > ul > li {
  position: relative;
}
.wizard > .steps > ul > li::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #bab8b8;
  position: absolute;
  top: 50%;
  right: -16px;
}
.wizard > .steps > ul > li:last-child::after {
  display: none;
}
.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active {
  display: block;
  margin: 0 3px 0;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  background-color: #bab8b8;
  width: 32px;
  height: 32px;
  padding-top: 8px;
  border-radius: 50px; /* CSS3草案 */
  -webkit-border-radius: 50px; /* Safari,Google Chrome用 */
  -moz-border-radius: 50px; /* Firefox用 */
  color: #fff;
}
.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active {
  cursor: default;
}
.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active {
  background-color: #7ec9c1;
  cursor: default;
}
.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active {
  background-color: #bbe2de;
}
/* .wizard > .steps .done a::before,
.wizard > .steps .done a:hover::before,
.wizard > .steps .done a:active::before {
    content: "ok";
} */
.wizard > .steps .done::after,
.wizard > .steps .done::after,
.wizard > .steps .done::after {
  background-color: #bbe2de;
}

.wizard > .actions {
  display: block;
  text-align: center;
  width: 100%;
}
.wizard.vertical > .actions {
  display: inline;
  margin: 0 2.5%;
}
.wizard > .actions > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* text-align: right; */
  padding-top: 0px;
  padding-bottom: 0px;
}
.wizard.vertical > .actions > ul > li {
  margin: 0 0 0 1em;
}
.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}
.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active {
  background: #eee;
  color: #aaa;
}
.wizard > .actions .disabled {
  display: none !important;
}
@media screen and (min-width: 1020px) {
  .wizard > .steps > ul {
    /* background-color: #eee; */
    padding: 10px 0;
  }
  /* .wizard > .actions > ul > li:first-child {
        display: inline-block;
    } */
}

/* ---------- wrapper ---------- */
#wrapper {
  width: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: auto;
  margin-left: auto;
}
/* ---------- header ---------- */
header {
  padding: 5px 0;
  margin: 0px;
}
/* ---------- wizard-container ---------- */
#wizard-container {
  margin: 0px;
  border-radius: 10px;
  padding: 0 0 35px 0;
  position: relative;
  border: 3px solid #e49595;
  background-color: white;
  box-shadow: 0 0 8px rgb(0 0 0 / 20%);
}
h2.touroku {
  background: #e49595;
  margin-bottom: 20px;
  color: #fffea9;
  font-size: 1.2em;
  padding: 6px 0;
  line-height: 1.2;
  font-weight: lighter;
}

.step_title {
  float: left;
  line-height: 20px;
  padding-right: 20px;
  font-size: 90%;
  padding-left: 30px;
  font-weight: bold;
  color: #e7e7e7;
}
.hand {
  position: absolute;
  width: 4rem;
  z-index: 999;
  opacity: 0;
  -webkit-animation-duration: 8s;
  animation-duration: 8s;
}
.hand.show {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@keyframes shake {
  0%,
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes moveX {
  0%,
  100% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate(-15px, 0) scale(1.08);
    transform: translate(-15px, 0) scale(1.08);
  }
}
@-webkit-keyframes moveX /* Safari and Chrome */ {
  0%,
  100% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate(-15px, 0) scale(1.08);
    transform: translate(-15px, 0) scale(1.08);
  }
}
.stepimg {
  margin: 0 auto;
  width: 200px;
}
.stepimg img {
  width: 100%;
}
.required {
  background-color: #eb354c;
  color: #fff;
  font-size: 12px;
  border-radius: 2px;
  padding: 3px 6px;
  margin-left: 10px;
  font-weight: normal;
}
.optional {
  background-color: #ccc;
  color: #fff;
  font-size: 12px;
  border-radius: 2px;
  padding: 3px 6px;
  margin-left: 10px;
  font-weight: normal;
}
.cvtext2 {
  font-size: 12px;
  margin-right: 5px;
}
#loader {
  margin: 100px auto;
  font-size: 25px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
  animation: load5 1.1s infinite ease;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@-webkit-keyframes load5 {
  0%,
  100% {
    -webkit-box-shadow: 0em -2.6em 0em 0em #cccccc,
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.5),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.7);
    box-shadow: 0em -2.6em 0em 0em #cccccc,
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.5),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.7);
  }
  12.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.7),
      1.8em -1.8em 0 0em #cccccc, 2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.5);
    box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.7),
      1.8em -1.8em 0 0em #cccccc, 2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.5);
  }
  25% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.5),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.7), 2.5em 0em 0 0em #cccccc,
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
    box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.5),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.7), 2.5em 0em 0 0em #cccccc,
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
  }
  37.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.5),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.7), 1.75em 1.75em 0 0em #cccccc,
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
    box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.5),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.7), 1.75em 1.75em 0 0em #cccccc,
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
  }
  50% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.5),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.7), 0em 2.5em 0 0em #cccccc,
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
    box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.5),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.7), 0em 2.5em 0 0em #cccccc,
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
  }
  62.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.5),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.7), -1.8em 1.8em 0 0em #cccccc,
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
    box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.5),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.7), -1.8em 1.8em 0 0em #cccccc,
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
  }
  75% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.5),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.7), -2.6em 0em 0 0em #cccccc,
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
    box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.5),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.7), -2.6em 0em 0 0em #cccccc,
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
  }
  87.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.5),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.7), -1.8em -1.8em 0 0em #cccccc;
    box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.5),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.7), -1.8em -1.8em 0 0em #cccccc;
  }
}
@keyframes load5 {
  0%,
  100% {
    -webkit-box-shadow: 0em -2.6em 0em 0em #cccccc,
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.5),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.7);
    box-shadow: 0em -2.6em 0em 0em #cccccc,
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.5),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.7);
  }
  12.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.7),
      1.8em -1.8em 0 0em #cccccc, 2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.5);
    box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.7),
      1.8em -1.8em 0 0em #cccccc, 2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.5);
  }
  25% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.5),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.7), 2.5em 0em 0 0em #cccccc,
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
    box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.5),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.7), 2.5em 0em 0 0em #cccccc,
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
  }
  37.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.5),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.7), 1.75em 1.75em 0 0em #cccccc,
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
    box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.5),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.7), 1.75em 1.75em 0 0em #cccccc,
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
  }
  50% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.5),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.7), 0em 2.5em 0 0em #cccccc,
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
    box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.5),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.7), 0em 2.5em 0 0em #cccccc,
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.2),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
  }
  62.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.5),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.7), -1.8em 1.8em 0 0em #cccccc,
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
    box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.5),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.7), -1.8em 1.8em 0 0em #cccccc,
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
  }
  75% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.5),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.7), -2.6em 0em 0 0em #cccccc,
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
    box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.5),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.7), -2.6em 0em 0 0em #cccccc,
      -1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2);
  }
  87.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.5),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.7), -1.8em -1.8em 0 0em #cccccc;
    box-shadow: 0em -2.6em 0em 0em rgba(204, 204, 204, 0.2),
      1.8em -1.8em 0 0em rgba(204, 204, 204, 0.2),
      2.5em 0em 0 0em rgba(204, 204, 204, 0.2),
      1.75em 1.75em 0 0em rgba(204, 204, 204, 0.2),
      0em 2.5em 0 0em rgba(204, 204, 204, 0.2),
      -1.8em 1.8em 0 0em rgba(204, 204, 204, 0.5),
      -2.6em 0em 0 0em rgba(204, 204, 204, 0.7), -1.8em -1.8em 0 0em #cccccc;
  }
}
/* ---------- step1 ---------- */
#step1 {
  margin: 0px;
  padding: 0px 0px 15px 0px;
  width: 100%;
  margin: auto;
}
#step1 h2 {
  font-size: 100%;
  color: #6b6b6b;
  text-align: center;
  line-height: 1.3;
  padding: 14px 0;
}
#step1 h2 span {
  font-size: 13px;
}
#step1 ul.button-check {
  margin: 0 auto;
  text-align: center;
}
#step1 ul.button-check li {
  margin: 1%;
  text-align: center;
  display: inline-block;
}
#step1 ul.button-check li input[type="checkbox"] {
  display: none;
}
#step1 ul.button-check li label {
  margin: auto;
  border: solid 3px #e49595;
  display: inline-block;
  width: 130px;
  height: 130px;
  border-radius: 10px;
  text-align: center;
  vertical-align: middle;
  background-color: #fff;
  position: relative;
}
#step1 ul.button-check li label p {
  font-size: 16px;
  text-align: center;
  font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3";
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #e49595;
  padding: 7px;
  position: absolute;
  bottom: 10px;
  width: 100%;
}
#step1 ul.button-check li.btn-1 label {
  background-image: url(../img/wizard/step1_icon_01.png);
  background-repeat: no-repeat;
  background-size: 83%;
  background-position: 48% 18%;
}
#step1 ul.button-check li.btn-2 label {
  background-image: url(../img/wizard/step1_icon_02.png);
  background-repeat: no-repeat;
  background-size: 83%;
  background-position: 65% 15%;
}
#step1 ul.button-check li.btn-3 label {
  background-image: url(../img/wizard/step1_icon_03.png);
  background-repeat: no-repeat;
  background-size: 46%;
  background-position: 50% 10%;
}
#step1 ul.button-check li.btn-4 label {
  background-image: url(../img/wizard/step1_icon_04.png);
  background-repeat: no-repeat;
  background-size: 81%;
  background-position: 52% 21%;
}
#step1 ul.button-check input[type="checkbox"]:checked + label {
  background-color: #f06072;
  border-color: #fff;
}

/* ---------- step2 ---------- */
#step2 {
  margin: 0px;
  padding: 0px 0px 15px 0px;
  width: 100%;
  margin: auto;
}
#step2 h2 {
  font-size: 100%;
  color: #6b6b6b;
  text-align: center;
  padding: 17px 0;
}
#step2 ul.button-check {
  margin: 0 auto;
  text-align: center;
}
#step2 ul.button-check li {
  margin: 1%;
  text-align: center;
  display: inline-block;
  /* width: 46%; */
}
#step2 ul.button-check li input[type="checkbox"] {
  display: none;
}
#step2 ul.button-check li label {
  margin: auto;
  border: solid 3px #e49595;
  display: inline-block;
  width: 130px;
  height: 130px;
  border-radius: 10px;
  text-align: center;
  vertical-align: middle;
  background-color: #fff;
  position: relative;
}
#step2 ul.button-check li label p {
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #e49595;
  padding: 7px;
  position: absolute;
  bottom: 10px;
  width: 100%;
}
#step2 ul.button-check li.btn-1 label {
  background-image: url(../img/wizard/step2_icon_01.png);
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: 50% 20%;
}
#step2 ul.button-check li.btn-2 label {
  background-image: url(../img/wizard/step2_icon_02.png);
  background-repeat: no-repeat;
  background-size: 58%;
  background-position: 50% 14%;
}
#step2 ul.button-check li.btn-3 label {
  background-image: url(../img/wizard/step2_icon_03.png);
  background-repeat: no-repeat;
  background-size: 48%;
  background-position: 50% 10%;
}
#step2 ul.button-check li.btn-4 label {
  background-image: url(../img/wizard/step2_icon_04.png);
  background-repeat: no-repeat;
  background-size: 27%;
  background-position: 50% 15%;
}
#step2 ul.button-check input[type="checkbox"]:checked + label {
  background-color: #f06072;
  border-color: #fff;
}

/* ---------- step3 ---------- */
#step3 {
  margin: 0px;
  padding: 0px 0px 15px 0px;
  width: 100%;
  margin: auto;
}
#step3 h2 {
  font-size: 100%;
  color: #6b6b6b;
  text-align: center;
  padding: 17px 0;
}
#step3 ul.button-check {
  margin: 0 auto;
  text-align: center;
}
#step3 ul.button-check li {
  margin: 1%;
  text-align: center;
  display: inline-block;
  /* width: 46%; */
}
#step3 ul.button-check li input[type="checkbox"] {
  display: none;
}
#step3 ul.button-check li label {
  margin: auto;
  border: solid 3px #e49595;
  display: inline-block;
  width: 130px;
  height: 130px;
  border-radius: 10px;
  text-align: center;
  vertical-align: middle;
  background-color: #fff;
  position: relative;
}
#step3 ul.button-check li label p {
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #e49595;
  padding: 7px;
  position: absolute;
  bottom: 10px;
  width: 100%;
}
#step3 ul.button-check li.btn-1 label {
  background-image: url(../img/wizard/step3_icon_01.png);
  background-repeat: no-repeat;
  background-size: 65%;
  background-position: 50% 20%;
}
#step3 ul.button-check li.btn-2 label {
  background-image: url(../img/wizard/step3_icon_02.png);
  background-repeat: no-repeat;
  background-size: 75%;
  background-position: 50% 15%;
}
#step3 ul.button-check li.btn-3 label {
  background-image: url(../img/wizard/step3_icon_03.png);
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: 60% 25%;
}
#step3 ul.button-check li.btn-4 label {
  background-image: url(../img/wizard/step3_icon_04.png);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: 50% 20%;
}
#step3 ul.button-check input[type="checkbox"]:checked + label {
  background-color: #f06072;
  border-color: #fff;
}

/* ---------- step4 ---------- */
#step4 {
  margin: auto;
  padding: 0px 0px 5px 0px;
  width: 82%;
}
#step4 h2 {
  font-size: 100%;
  color: #6b6b6b;
  padding-bottom: 0px;
  margin-bottom: 3px;
  text-align: center;
  height: 50px;
  line-height: 50px;
}
#step4 .add_contents {
  margin: 0px;
  padding-bottom: 0px;
}
#step4 .add_contents .text {
  color: #5b5b5b;
  text-align: center;
  width: 35%;
}
#step4 .add_contents .number {
  padding: 0px;
  margin: 0px;
}
#step4 .add_contents .addarea {
  margin: 0px;
  padding-bottom: 0px;
  display: none;
}
#step4 .add_contents .text2 {
  color: #5b5b5b;
  text-align: left;
  width: 100%;
}
#step4 .add_contents input[type="text"] {
  outline: none;
  font-size: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 1px solid #858585;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#step4 .add_contents input[type="text"]:focus {
  background-color: #ffeff2;
}
#step4 .add_contents input[type="text"]::-moz-placeholder {
  font-size: 80%;
  color: #999999;
  font-weight: normal;
}
#step4 .add_contents input[type="text"]::-webkit-input-placeholder {
  font-size: 80%;
  color: #999999;
  font-weight: normal;
}
#step4 .add_contents input[type="text"]:-ms-input-placeholder {
  font-size: 80%;
  color: #999999;
  font-weight: normal;
}
#step4 .add_contents input[type="tel"] {
  width: 80%;
  outline: none;
  font-size: 18px;
  padding: 10px;
  border: 1px solid #858585;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#step4 .add_contents input[type="tel"]:focus {
  background-color: #ffeff2;
}
#step4 .add_contents .number_no {
  color: #5b5b5b;
  font-size: 16px;
  display: block;
  background-image: none;
  border-style: none;
  background-color: rgba(255, 0, 0, 0);
  /* padding-left: 22px; */
  /* background: url(img/wizard/icon.svg); */
  /* background-size: 10% auto; */
  /* background-repeat: no-repeat; */
  /* background-position: 5px 1px; */
  text-align: center;
  margin-top: 0px;
  padding-top: 15px;
  padding-bottom: 15px;
}
#step4 .add_contents .number_no::after {
  content: "arrow_drop_down";
  display: block;
  font-size: 27px;
}
#step4 .add_contents select {
  color: #5b5b5b;
  font-size: 18px;
  width: 100%;
  border: 1px solid #858585;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 0.01px;
  -o-text-overflow: "";
  text-overflow: "";
  padding: 10px;
  margin-bottom: 10px;
}
#step4 .add_contents .addarea td {
  position: relative;
}

#step4 .add_contents .addarea td::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #b4b3b3;
  border-right: solid 2px #b4b3b3;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 34%;
  right: 10px;
  margin-top: -4px;
}
#step4 .add_contents input[type="text"] {
  width: 99%;
}
/* ---------- ステップ5 ---------- */
#step5 {
  margin: auto;
  padding: 0px 0px 15px 0px;
  width: 85%;
}
#step5 h2 {
  font-size: 100%;
  color: #6b6b6b;
  padding-bottom: 0px;
  text-align: center;
  height: 50px;
  line-height: 50px;
}
.step_5_contents {
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}
.step_5_contents .block {
  padding: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
  color: #73603a;
}
.step_5_contents input[type="text"] {
  outline: none;
  font-size: 18px;
  padding: 10px 20px;
  border: 1px solid #858585;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  width: 100%;
}
.step_5_contents input[type="text"]:focus {
  background-color: #ffeff2;
}
.step_5_contents select {
  font-size: 12pt;
  width: 100%;
  border: 1px solid #858585;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 0.01px;
  -o-text-overflow: "";
  text-overflow: "";
  background-color: #fff;
  padding-top: 12px;
  padding-bottom: 12px;
  background: url(img/wizard/arrow.svg);
  background-size: 7% auto;
  background-repeat: no-repeat;
  background-position: right;
}
.step_5_contents .midashi {
  font-size: 100%;
  color: #7a7a7a;
  font-weight: bold;
  padding: 0px 0px 10px 0px;
  margin: 0px 0px 0px 0px;
  text-align: left;
}
.step_5_contents input[type="tel"] {
  outline: none;
  font-size: 18px;
  /* padding-top: 8px;
    padding-bottom: 10px; */
  padding: 10px 20px;
  border: 1px solid #858585;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  width: 100%;
  background: white;
  /* background-image: url(../img/wizard/lock.svg); */
  background-size: 5% auto;
  background-repeat: no-repeat;
  background-position: right 8px bottom 13px;
}
.step_5_contents input[type="tel"]:focus {
  background-color: #ffeff2;
}
.step_5_contents input[type="email"] {
  outline: none;
  font-size: 18px;
  /* padding-top: 10px;
    padding-bottom: 13px; */
  padding: 10px 20px;
  border: 1px solid #858585;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  width: 100%;
}
.step_5_contents input[type="email"]:focus {
  background-color: #ffeff2;
}
.step_5_contents select {
  font-size: 12pt;
  width: 100%;
  border: 1px solid #858585;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 0.01px;
  -o-text-overflow: "";
  text-overflow: "";
  background-color: #fff;
  padding-top: 12px;
  padding-bottom: 12px;
  background: url(../img/wizard/arrow.svg);
  background-size: 7% auto;
  background-repeat: no-repeat;
  background-position: right;
}
/* ---------- エラー ---------- */
.error_message_0,
.error_message_1,
.error_message_2,
.error_message_4_1,
.error_message_4_2,
.error_message_4_3,
.error_message_4_4,
.error_message_4_5 {
  padding: 10px;
  background-color: #ffd7d7;
  color: #ff0004;
  /* font-size: 90%; */
  /* border-top: 1px solid #FF0004;
    border-bottom: 1px solid #FF0004; */
  /* border-radius: 5px; */
  text-align: center;
  /* margin-top: 15px; */
  margin-bottom: 10px;
  display: none;
  width: 88%;
  margin: 0 auto 10px;
}
.error_message_4_1,
.error_message_4_2,
.error_message_4_3,
.error_message_4_4,
.error_message_4_5 {
  width: 100%;
}
.error_message_3_0,
.error_message_3_1,
.error_message_3_2 {
  padding: 10px;
  background-color: #ffd7d7;
  color: #ff0004;
  /* font-size: 90%; */
  /* border-top: 1px solid #FF0004;
    border-bottom: 1px solid #FF0004; */
  /* border-radius: 5px; */
  text-align: center;
  /* margin-top: 5px; */
  margin-bottom: 0px;
  display: none;
  margin-bottom: 10px;
  font-weight: normal;
}
.error_message_3_0 {
  margin-top: 10px;
}
#step1,
#step2,
#step3,
#step4,
#step5 {
  position: relative;
}
/* ---------- ボタン（step） ---------- */
.next_step_0 a,
.next_step_1 a,
.next_step_2 a,
.next_step_3 a,
.next_step_4 a {
  font-size: 22px;
  background: linear-gradient(to bottom, #dce35b, #70b13e);
  border: solid 1px #fef5e2;
  border-radius: 5px;
  padding: 10px 5px 10px 45px;
  text-align: center;
  -webkit-box-shadow: 0px 0px 3px #999999;
  box-shadow: 0px 0px 3px #999999;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
}
.next_step_0 a i,
.next_step_1 a i,
.next_step_2 a i,
.next_step_3 a i,
.next_step_4 a i {
  margin-left: 25px;
}
.next_step_0 a,
.next_step_1 a,
.next_step_2 a,
.next_step_3 a,
.next_step_4 a {
  color: #fff;
}
/* ---------- 非アクティブ ---------- */
.next_step_0_off a,
.next_step_1_off a,
.next_step_2_off a,
.next_step_3_off a,
.next_step_4_off a {
  font-size: 22px;
  background-color: #bab8b8;
  border: solid 1px #fef5e2;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  padding: 10px 5px 10px 45px;
  text-align: center;
  -webkit-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
}
.next_step_0_off a i,
.next_step_1_off a i,
.next_step_2_off a i,
.next_step_3_off a i,
.next_step_4_off a i {
  margin-left: 25px;
}
.next_step_0_off a,
.next_step_1_off a,
.next_step_2_off a,
.next_step_3_off a,
.next_step_4_off a {
  color: #fff;
}
/* ---------- ボタン（step_最後） ---------- */
.finish_step_4 {
  /* width: 270px; */
  /* height: 63px; */
  /* line-height: 23px; */
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  background: -o-linear-gradient(#ffc600, #ff8d00);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ffc600),
    to(#ff8d00)
  );
  background: linear-gradient(#ffc600, #ff8d00);
  /* background: url(../img/wizard/arrow_btn.svg) linear-gradient(to bottom, #FFB626 16%, #FF9926 69%);
    background: url(../img/wizard/arrow_btn.svg), -webkit-linear-gradient(top, #FFB626 16%, #FF9926 69%);
    background: url(../img/wizard/arrow_btn.svg), -moz-linear-gradient(top, #FFB626 16%, #FF9926 69%);
    background-repeat: no-repeat;
    background-position: 105%; */
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border: solid 1px #fef5e2;
  /* text-shadow: 1px 1px 0 #fef5e2,  -1px 1px 0 #fef5e2,  1px -1px 0 #fef5e2,  -1px -1px 0 #fef5e2; */
  -webkit-box-shadow: 0px 0px 3px #999999;
  box-shadow: 0px 0px 3px #999999;
  padding: 10px 20px;
}
.finish_step_4 a {
  color: #fff;
}
/* ---------- 非アクティブ ---------- */
.finish_step_4_off {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  background: linear-gradient(to bottom, #dce35b, #70b13e);
  border: solid 1px #fef5e2;
  box-shadow: 0px 0px 3px #999999;
  -webkit-border-radius: 5px;
  padding: 10px 20px;
}
li.finish.finish_step_4_off a {
  color: #ffffff !important;
}
.finish_step_3_off a {
  color: #fff;
}
.cvtext {
  font-size: 60%;
  text-shadow: 0px 0px 0 #ffb626, 0px 0px 0 #ffb626, 0px 0px 0 #ffb626,
    0px 0px 0 #ffb626;
}
/* ---------- 戻るボタン ---------- */
.previous_step_1 a,
.previous_step_2 a,
.previous_step_3 a,
.previous_step_4 a,
.previous_step_5 a {
  font-size: 18px;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  background-color: #eee;
}
.previous_step_1 > a,
.previous_step_2 > a,
.previous_step_3 > a,
.previous_step_4 > a,
.previous_step_5 > a {
  color: #555555;
}
.previous_step_1_off,
.previous_step_2_off,
.previous_step_3_off,
.previous_step_4_off,
.previous_step_5_off {
  width: 36px;
}
.previous_step_1_off a,
.previous_step_2_off a,
.previous_step_3_off a,
.previous_step_4_off a,
.previous_step_5_off a {
  color: #a6a6a6;
}
/* ---------- 背景 ---------- */
/*.step_1bg {
    background-image: url(../img/wizard/bg_step_1_v1.jpg);
    background-position: center top;
    background-size: 100%;
}
.step_2bg {
    background-image: url(../img/wizard/bg_step_2_v1.jpg);
    background-position: center top;
    background-size: 100%;
}
.step_3bg {
    background-image: url(../img/wizard/bg_step_3_v1.jpg);
    background-position: center top;
    background-size: 100%;
}
.step_4bg {
    background-image: url(../img/wizard/bg_step_4_v1.jpg);
    background-position: center top;
    background-size: 100%;
}
.step_5bg {
    background-image: url(../img/wizard/bg_step_5_v1.jpg);
    background-position: center top;
    background-size: 100%;
}
*/
@media screen and (min-width: 650px) {
  #wizard-container {
    width: 650px;
    margin: auto;
  }
}

@media screen and (min-width: 1020px) {
  #wizard section h2 {
    font-size: 120%;
    font-weight: normal;
    padding-top: 15px;
    padding-bottom: 10px;
    height: auto;
    line-height: 1.4;
    margin: 0;
  }
  #step1 h2 span {
    display: inline-block;
    font-size: 100%;
  }
  #step2 h2 span {
    display: inline-block;
    font-size: 100%;
  }
  #step3 h2 span {
    display: inline-block;
    font-size: 100%;
  }
  #step4 {
    width: 70%;
  }
  #step4 .add_contents input[type="tel"] {
    font-size: 16px;
  }
}

/* .wizard .content {
    height: 400px;
} */
