@charset "utf-8";

/* common
------------------------------- */
.formTbl01 * {
  box-sizing: border-box;
}
@media screen and (max-width:767px) {
  /*スマホのフォントは16px以上*/
  .formTbl01 input,
  .formTbl01 textarea,
  .formTbl01 select {
    font-size: 16px;
  }
}

/* form_flow
------------------------------- */
.form_flow {
  width: 100%;
  margin: 10px 0 25px;
  color: #555;
  font-size: 13px;
  display: table;
  table-layout: fixed;
}
.form_flow li {
  display: table-cell;
  vertical-align: middle;
  background:  no-repeat right center;
  text-align: center;
  position: relative;
}
.form_flow li:first-child {
  padding-left: 0;
}
.form_flow li div {
  background: #eaeaea;
  padding: 10px 10px 10px 10px;
  position: relative;
  line-height: 1.6;
}
.form_flow li div:before,
.form_flow li div:after {
  position: absolute;
  left: 0;
  display: block;
  content: '';
  background-color: #eaeaea;
  border-left: 2.5px solid #FFF;
  width: 20px;
  height: 50%;
}
.form_flow li div:after {
  top: 0;
  -moz-transform: skew(30deg);
  -ms-transform: skew(30deg);
  -webkit-transform: skew(30deg);
  transform: skew(30deg);
}
.form_flow li div:before {
  bottom: 0;
  -moz-transform: skew(-30deg);
  -ms-transform: skew(-30deg);
  -webkit-transform: skew(-30deg);
  transform: skew(-30deg);
}
.form_flow li:first-child div:before,
.form_flow li:first-child div:after {
  content: none;
}
.form_flow li span {
  display: block;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.form_flow li.active div {
  background: #80004d;
  color: #fff;
  padding-right: 27px;
}
.form_flow li.active + li div,
.form_flow li.active + li div {
  padding-right: 25px;
}
.form_flow li.active + li div:before,
.form_flow li.active + li div:after {
  left: -10px;
}
.form_flow li.active div:before,
.form_flow li.active div:after {
  background: #80004d;
  left: -10px;
  border-width: 3px;
}
@media screen and (max-width:767px) {
  .form_flow {
    font-size: 11px;
    margin-bottom: 15px;
  }
  .form_flow li div {
    padding: 10px 5px 10px 5px;
  }
  .form_flow li.active div {
    padding-right: 18px;
  }
  .form_flow li.active:first-child div {
    padding-right: 10px;
  }
  .form_flow li div:before,
  .form_flow li div:after {
    border-left-width: 2px;
    width: 15px;
  }
  .form_flow li div:after {
    -moz-transform: skew(20deg);
    -ms-transform: skew(20deg);
    -webkit-transform: skew(20deg);
    transform: skew(20deg);
  }
  .form_flow li div:before {
    -moz-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    -webkit-transform: skew(-20deg);
    transform: skew(-20deg);
  }
  .form_flow li:last-child div {
    padding-right: 15px;
    padding-left: 15px;
  }
  .form_flow li.active + li div,
  .form_flow li.active + li div {
    padding-right: 10px;
  }
  .form_flow li.active + li:last-child div,
  .form_flow li.active + li:last-child div {
    padding-right: 18px;
  }
  .form_flow li.active + li div:before,
  .form_flow li.active + li div:after {
    left: -5px;
  }
  .form_flow li.active:last-child div {
    padding-left: 11px;
  }
  .form_flow li.active:last-child div:before,
  .form_flow li.active:last-child div:after {
    left: -6px;
  }
}
@media screen and (max-width:320px) {
  .form_flow {
    table-layout: auto;
  }
}

/* form_tbl
------------------------------- */
.form_tbl {
  margin-bottom: 40px;
}
.form_tbl table {
  width: 100%;
  margin-bottom: 30px;
  table-layout: fixed;
}
.form_tbl table th,
.form_tbl table td {
  vertical-align: middle;
  padding: 13px 15px;
  border: 1px solid #e5e5e5;
  background-color: #fff;
}
.form_tbl table th {
  width: 35%;
  vertical-align: top;
  color: #4e4e4e;
  background-color: #fff;
  font-weight: 700;
}
.form_tbl table span.relative {
  position: relative;
  display: block;
}
@media screen and (max-width:767px) {
  .form_tbl {
    margin-bottom: 15px;
  }
  .form_tbl table {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 20px;
  }
  .form_tbl table th,
  .form_tbl table td {
    display: block;
    border-bottom: none;
  }
  .form_tbl table th {
    width: auto;
    padding: 7px 10px 6px;
  }
  .form_tbl table td {
    padding: 10px 10px 15px;
  }
}

/* 必須 and 任意
------------------------------- */
/*背景色*/
.form_tbl table .required {
  background: #fff0f0;
}
.form_tbl table .option {
  background: #f5f5f5;
}
/*アイコンのためだけのrelative*/
.form_tbl table span.relative {
  padding-right: 4.5rem;
}
/*擬似要素でのアイコンの設定*/
.form_tbl table span.relative:after {
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 0;
  line-height: 1.3;
  margin-left: 10px;
  padding: 2px 8px;
  border-radius: 12px;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
}
/*クラスでのアイコンの出し分け*/
.form_tbl table th.required span.relative:after {
  background: #ff6060;
  content: "Required";
}
/*.form_tbl table th.option span.relative:after {
  background: #a6a6a6;
  content: "任意";
}*/
@media screen and (max-width:767px) {
  .form_tbl table span.relative:after {
    top: 0;
  }
}

/* 横並びのリスト
------------------------------- */
.form_list li {
  float: left;
  margin: 1px 15px 4px 0;
}
.form_list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width:767px) {
  .form_list li {
    display: block;
    float: none;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* チェックボックス ラジオボタン
------------------------------- */
.form_label {
  position: relative;
  padding-left: 1.3em;
  display: inline-block;
  vertical-align: top;
}
.form_label input {
  position: absolute;
  left: 0;
  top: .35em;
}
@media screen and (max-width:767px) {
  .form_label input {
    top: .2em;
  }
}

/* キャプション
------------------------------- */
.form_cap_01 {
  color: #555;
  margin-left: 10px;
  font-size: 13px;
}
.form_cap_02 {
  margin-top: 7px;
  color: #555;
  font-size: 13px;
}
.form_cap_03 {
  margin-bottom: 3px;
}
@media screen and (max-width:767px) {
  .form_cap_01 {
    display: block;
    margin-left: 0;
    margin-top: 5px;
  }
}

/* 個人情報の取扱いについて
------------------------------- */
.form_privacy {
  border: 1px solid #ddd;
  text-align: center;
  padding: 22px 10px;
  line-height: 1.8;
  margin: 20px 0 30px;
}
@media screen and (max-width:767px) {
  .form_privacy {
    margin-bottom: 20px;
  }
}


/* 送信ボタン
------------------------------- */
.form_btn_wrap {
  text-align: center;
  margin-top: 40px;
  position: relative;
}
.form_inputbtn {
  background: #80004d;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
  min-width: 362px;
  border-radius: 6px;
  box-sizing: border-box;
  position: relative;
}
.form_inputbtn:hover {
  opacity: .7;
}
.form_inputbtn input {
  display: inline-block;
  width: 100%;
  padding: 25px 15px 17px;
  text-indent: -9999px;
  position: relative;
  z-index: 1;
}
.form_inputbtn img {
  margin-right: 8px;
  position: relative;
  top: -3px;
}
.form_inputbtn_inner {
  position: absolute;
  left: 0;
  top: 50%;
  text-align: center;
  width: 100%;
  line-height: 1.4;
  margin-top: -.6em;
}
@media screen and (max-width:768px){
  .form_btn_wrap {
    margin-top: 20px;
  }
  .form_inputbtn {
    min-width: 90%;
  }
}
.form_btn_back {
  position: absolute;
  left: 0;
  top: 2px;
}
.form_btn_back a,
.form_btn_back button {
  display: inline-block;
  vertical-align: top;
  background: #f2f2f2;
  padding: 15px 15px;
  min-width: 150px;
  box-sizing: border-box;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  letter-spacing: .1em;
  -webkit-box-shadow: 0 3px 5px rgba(0,0,0,.1);
  box-shadow: 0 3px 5px rgba(0,0,0,.1);
  text-decoration: none;
}
.form_btn_back a:hover,
.form_btn_back button:hover {
  background-color: #f6f6f6;
}
.form_btn_back_ico {
  margin-right: 6px;
  margin-left: -7px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
@media screen and (max-width:768px){
  .form_btn_back {
    position: relative;
    top: 0;
    margin: 25px auto 0;
    text-align: left;
  }
  .form_btn_back a,
  .form_btn_back button {
    text-align: center;
    min-width: 100px;
    font-size: 14px;
  }
}


/* メールアドレス補完
------------------------------- */
.eac-input-wrap {
  display: inline-block;
}
.eac-input-wrap.show {
  display: block;
}
.eac-input-wrap.show + .form_cap_01 {
  margin: 5px 0 0;
  display: inline-block;
}
.eac-sugg {
  background: #666 none repeat scroll 0 0;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  padding: 5px !important;
  position: static !important;
  text-align: center;
  margin-top: 10px;
}
.eac-sugg:hover {
  opacity: .7;
}
@media screen and (max-width:768px){
  .eac-input-wrap {
    display: block;
  }
}


/* 入力エラー表示
------------------------------- */
.form_err_txt {
  margin-top: 7px;
  color: #ff0000;
  line-height: 1.1;
}
.form_list.err {
  background-color: #fff0f0;
  display: inline-block;
  padding: 5px 5px 8px;
}


/* 完了画面
------------------------------- */
.form_comp {
  margin-top: 80px;
}
.form_comp_tit {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1px;
}
.form_comp_txt {
  margin-bottom: 20px;
}
@media screen and (max-width:768px){
  .form_comp {
    margin-top: 40px;
  }
  .form_comp_tit {
    margin-bottom: 5px;
  }
}



/* ----------------------------------------

clearfix

---------------------------------------- */

/* Modern Browsers
------------------------------- */
#xxxx:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: ".";
	line-height: 0;
}

/* Legacy IE
------------------------------- */
#xxxx {
	*zoom: 1;
}