@charset "UTF-8";


/* =====================================================
 * 入力ページ
 * ===================================================== */


main {
  position: relative;
  margin: 0;
  padding: 0;
}


@media screen AND (max-width:1125px) {
  main {
    position: relative;
    width: 90%;
    margin: 0 auto;
    padding: 50px 0;
  }
}


 /* -------------------------
  * 氏名
  * 配送先住所
  * 電話番号
  * メールアドレス
  * ------------------------- */
.parent {
  position: relative;
}


@media screen AND (min-width:1125.1px) {
  .parent {
    position: fixed;
    display: block;
    top: 50%;
    left: 50%;
    min-width: 768px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}


/* -------------------------
 * 入力ステップ
 * ------------------------- */
.progressbar {
  margin: 0 0 20px 0;
  padding: 0;
  counter-reset: step;
  z-index: 0;
  position: relative;
  overflow: hidden;
}


.progressbar li {
  list-style-type: none;
  width: 25%;
  float: left;
  font-size: 12px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #aaa;
}


.progressbar li:before {
  width: 30px;
  height: 30px;
  content: counter(step);
  counter-increment: step;
  line-height: 30px;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: #eee;
}


.progressbar li:after {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  background-color: #eee;
  top: 15px;
  left: -50%;
  z-index: -1;
}


.progressbar li:first-child:after {
  content: none;
}


.progressbar li.active {
  color: green;
}


.progressbar li.active:before {
  background-color: #55b776;
  color:#fff;
}


.progressbar li.active + li:after {
  background-color: #55b776;
}


.parent table {
  width: 100%;
}


/* -------------------------
 * 郵便番号・住所
 * ------------------------- */
.zip-wrap {
  position: relative;
  overflow: hidden;
}


.zip-code {
  float: left;
  width: 20px;
  font-size: 85%;
}


.zip {
  overflow:hidden;
  text-align: left;
  font-size: 85%;
}


input[type="text"],
input[type="email"] {
  font-size: 100%;
  border: none;
  outline: none;
  width: 100%;
}


.input_button {
  margin-top: 30px;
  vertical-align: middle;
  border-style: none;
  padding: 15px 40px;
  border-radius: 3px;
  -webkit-border-radius: 3px; /* Google,Chrome,Safari */
  -moz-border-radius: 3px; /* Firefox */
  -o-border-radius: 3px; /* Opera */
  -ms-border-radius: 3px; /* IE */
  background-color: #6495ed;
  color: #fff;
  font-weight: bold;
  font-size: 100%;
}


.input_button:hover {
  background-color: #add8e6;
  /* transitionを使ってゆっくり半透明にする設定 */
  -webkit-transition: 0.3s ease-in-out; /* Google,Chrome,Safari */
  -moz-transition: 0.3s ease-in-out; /* Firefox */
  -o-transition: 0.3s ease-in-out; /* Opera */
  -ms-transition: 0.3s ease-in-out; /* IE */
  transition: 0.3s ease-in-out;
}


/* -------------------------
 * 入力エラー
 * ------------------------- */
.error {
  margin: 0;
  font-size: 85%;
  color: red;
}


 /* -------------------------
  * メール送信完了
  * ------------------------- */
.result {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 2px solid #3cb371;
  padding: 10px;
}


.result p {
  text-align: center;
}


/* -------------------------
 * 完了マーク
 * ------------------------- */
.complete {
  margin: 0;
  text-align: center;
  font-weight: bold;
}


.complete:before {
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: 900;
  font-size: 120%;
  color: #3cb371;
  margin-right: 0.5em;
}
