@charset "utf-8";
/* CSS Document */
.flow-list{
 list-style:none;
 padding:0;
 margin:0;
}
.flow-list:after{  //clearfix
 height: 0;
 visibility: hidden;
 content: ".";
 display: block;
 clear: both;
}
.flow-list li{
 width:27%;  //stepの数に合わせてwidth指定
 box-sizing:border-box;  //padding,marginを含めて29%に指定
 -webkit-box-sizing:border-box;
 -moz-box-sizing:border-box;
 -ms-box-sizing:border-box;
 -o-box-sizing:border-box;
 float:left;
 padding:4px 20px;
 margin-right:3px;
 background:#333;
 color:#fff;
 position:relative;
 text-align:center;
}
.flow-list li:before{
 content:"";
 display:block;
 position:absolute;
 top:0;
 right:-24px;
 width:0;
 height:0;
 border-top:solid 14px transparent;
 border-right:solid 14px transparent;
 border-bottom:solid 14px transparent;
 border-left:solid 10px #333;
 z-index:10;  //黒が上に重なるように指定
}
.flow-list li:after{
 content:"";
 display:block;
 position:absolute;
 top:0;
 left:0;
 width:0;
 height:0;
 border-top:solid 14px transparent;
 border-right:solid 14px transparent;
 border-bottom:solid 14px transparent;
 border-left:solid 10px #fff;
}
.flow-list li:first-child:after{
 display:none;
}
.flow-list li.current {
	background-color:#E60012;
}
.flow-list li.current:before{
 border-left:solid 10px #E60012;
}
.formTbl {
	width:100%;
	margin:20px 0;
}
.formTbl th,
.formTbl td {
	/*padding:10px;*/
	text-align:left;
	border-bottom:1px #cccccc dotted;
}
.formTbl th {
	padding:10px;
	text-align:left;
	/*width:45%;*/
	font-weight:bold;
}
.formTbl .ex {
	font-size:11px;
}
.formBtn {
	text-align: center;
	padding:30px 0;
	width: 60%;
	margin: auto;
}
.formBtn input {
	width:300px;
	padding:15px;
	font: 20px Verdana, Roboto, "Droid Sans", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", Arial, Helvetica, sans-serif;
	font-weight:bold;
	border:none;
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
	behavior: url(css/PIE.htc);
	cursor: pointer;
}
.formBtn .submitBtn {
	background-color:#F2520D;
	color:#ffffff;
}
.formBtn .backBtn {
	background-color:#666666;
	color:#ffffff;
}
.formBtn .submitBtn:hover {
	background:rgba(230, 0, 18, 0.5);
}
.formBtn .backBtn:hover {
	background:rgba(102, 102, 102, 0.5);
}

form .txtarea {
	width: 100%;
}
.att {
	margin-bottom:15px;
}
.att li {
	list-style:outside circle;
	margin-left:15px;
	margin-bottom:10px;
}
.tx_red {
	color:#F2520D;
}
.access th {
    width: 180px;
    color: #333333;
    background-color: #F4F3EE;
    font-weight: bold;
    text-align: left;
    line-height: 1.4em;
    padding: 22px 20px 20px 20px;
}