@charset "utf-8";
/* CSS Document */

form .box .text{
  text-align: left;
}
/*----------------------------------------------------------
 FORM / form Input field
---------------------------------------------------------- */

.rec::after{
  content: "*";
  color: #FF0004;
  display: inline;
}

/* ----- next button ----- */
#stepBtn {
  text-align: center;
}

#stepBtn p.ban{
  padding: 0;
  cursor: pointer;
}

#stepBtn a.ban{
  padding: 14px 39px 14px 30px;
}

#stepBtn input{
  padding: 15px 39px 15px 30px;
  background: transparent;
  color: #fff;
  display: block;
  width: 100%;
	border: 0;
	margin: 0;
  cursor: pointer;
}

#stepBtn input:hover{
	border: 0;
	margin: 0;
}

/* back */
#stepBtn #back{
  padding: 14px 30px 14px 39px;
  
}
#stepBtn #back::after{
   left: 10px;
   right: auto;
    -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

/*---- PC ----*/
@media (min-width: 769px) {
  #stepBtn p{
    display: inline-block;
    vertical-align: top;
  }
  
  #stepBtn .ban{
    min-width: 300px;
  }
}

/*---- SP ----*/
@media (max-width: 768px) {
  input[type="text"]{
		width: 100%;
	}
  
  input.w_auto[type="text"]{
		width: auto;
	}
  #stepBtn p{
    margin-bottom: 10px;
  }
  #stepBtn p:last-of-type{
    margin-bottom: 0;
  }
}

/*----------------------------------------------------------
 FORM / form con
---------------------------------------------------------- */
.form_con dl{
  border-bottom: 1px solid #ccc;
  margin-bottom: 60px;
  padding-bottom: 60px;
}

/*---- PC ----*/
@media (min-width: 769px) {


  .form_con dl::after{
    content: "."; 
    display: block; 
    height: 0; 
    font-size:0;	
    clear: both; 
    visibility:hidden;
  }

  .form_con dt{
    float: left;
    width: 150px;
  }

  .form_con dd{
    float: right;
    width: 100%;
    box-sizing: border-box;
    padding-left: 180px;
    margin-left: -150px;
  }
}

/*---- SP ----*/
@media (max-width: 768px) {
  .form_con dl{
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .form_con dt{
    margin-bottom: 10px;
  }
}



/*----------------------------------------------------------
 FORM / テキストエリア
---------------------------------------------------------- */

textarea{
  resize: vertical;
  width: 100%;
}


/*----------------------------------------------------------
 FORM / エラーテキスト
---------------------------------------------------------- */
.error_txt{
  color: #ff0000;
  font-size: 90%;
}

/*----------------------------------------------------------
 フォームflow図
---------------------------------------------------------- */
#form_flow ul::after{
  content: "."; 
  display: block; 
  height: 0; 
  font-size:0;	
  clear: both; 
  visibility:hidden;
}

#form_flow > ul{
  background-color: #efefef;
}

#form_flow > ul > li{
  font-size: 90%;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
}

#form_flow > ul > li::before{
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  background-color: #ccc;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
}

#form_flow li .att{
  color: #666;
}

/*---- PC ----*/
@media (min-width: 769px) {
  #form_flow > ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  
  #form_flow > ul > li{
    width: 34%;
    border-top: 4px solid #ccc;
  }
  
  #form_flow > ul > li::before{
    top: -10px;
  }
}

/*---- SP ----*/
@media (max-width: 768px) {
    #form_flow > ul > li{
      border-left: 4px solid #ccc;
    }
    #form_flow > ul > li::before{
      left: -12px;
    }
}