@charset "UTF-8";

/*************

フォームガイド

***************/
#formGuide{
	text-align:center;
	width:90%;
	margin:0 auto;
} 
#formGuide li{
	position: relative;
	display: inline-block;
	padding:1em 0;
	background:#ccc;/*非アクティブカラー*/
}
#formGuide li:after{
	content: '';
	width: 36px;
	height: 36px;
	border: 0px;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: -18px;
	margin-top: -18px;
	background:#ccc;/*非アクティブカラー*/
	z-index:5;
}
#formGuide li.active{
	background:#000;/*アクティブカラー*/
	color:#fff;
}
#formGuide li.active:after{
	content: '';
	width: 36px;
	height: 36px;
	border: 0px;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right:  -18px;
	margin-top: -18px;
	background:#000;/*アクティブカラー*/
	z-index:5;
}
#formGuide li:last-child:after{
	display:none;
}

@media screen and (max-width: 767px) {
#formGuide li:after{
	display:none;
}
}

/*************

フォームベース

***************/

#form{
	display:block;
	width:60%;
	margin:0 auto 100px;
	padding-top:60px;
}
.zippad{
	padding-top:15px;
}

.formConfList{
	border-bottom:1px dotted #000;
	padding-bottom:15px;
	margin-bottom:30px;
}
.formConfList label{
	display:block;
}

.formThx{
	border-bottom:1px dotted #000;
	margin-bottom:20px;
	padding-bottom:30px;
}
.formThx .title{
	font-size:200%;
	margin-bottom:20px;
}
.formThx .inqdata{
	border-top:1px dotted #000;
	margin-top:50px;
	padding-top:30px;
}
@media screen and (max-width: 767px) {
#form{
	width:100%;
}
.zippad{
	padding-top:0;
}


}

/*************

フォームB
オリジナルバージョン

***************/
