@charset "UTF-8";

@-ms-viewport {
	width: device-width;
}

body {
	/*margin: 0;*/
	font-family: "游ゴシック","YuGothic","メイリオ","Hiragino Kaku Gothic Pro",sans-serif;
}

h2,h3 {
	font-family: "游ゴシック","YuGothic","メイリオ","Hiragino Kaku Gothic Pro",sans-serif;
}

table tr th {
	background-color: #DDD;
	text-align: center;
	height: 1.5rem;
	color: #000;
	font-size: 0.8rem;
	font-weight: normal;
}

table tr td {
	font-size: 0.8rem;
}

form label.header {
	font-weight: bold;
}

form label.header span {
	font-weight: normal;
	color: #C66;
}

form span.error_message {
	display: block;
	/*display: none;*/
	background-color: #F04124;
	color: #FFF;
	margin-bottom: 1.5rem;
	font-size: 0.66667rem;
	font-style: italic;
	padding-top: 0.33333rem;
	padding-right: 0.5rem;
	padding-bottom: 0.33333rem;
	padding-left: 0.5rem;
}

.message {
	font-size: 0.8rem;
	color: #F00;
}

#footer {
	margin-top: 36px;
	border-top: 1px solid #EEE;
	padding-top: 18px;
}

/*
##################################################
### 入力のステップを表示するバー
##################################################
*/

.stepBar {
  font-size: 0.8rem;
  position: relative;
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
  text-align: center;
  width: 100%;
  overflow: hidden;
  *zoom: 1;
}

.stepBar .step {
  position: relative;
  float: left;
  display: inline-block;
  line-height: 40px;
  padding: 0 25px 0 5px;
  background-color: #eee;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.stepBar .step:before, .stepBar .step:after {
  position: absolute;
  left: -15px;
  display: block;
  content: '';
  background-color: #eee;
  border-left: 4px solid #FFF;
  width: 20px;
  height: 20px;
}

.stepBar .step:after {
  top: 0;
  -moz-transform: skew(30deg);
  -ms-transform: skew(30deg);
  -webkit-transform: skew(30deg);
  transform: skew(30deg);
}

.stepBar .step:before {
  bottom: 0;
  -moz-transform: skew(-30deg);
  -ms-transform: skew(-30deg);
  -webkit-transform: skew(-30deg);
  transform: skew(-30deg);
}

.stepBar .step:first-child {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.stepBar .step:first-child:before, .stepBar .step:first-child:after {
  content: none;
}

.stepBar .step:last-child {
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.stepBar .step.current {
  color: #FFF;
  background-color: #26bfa1;
}
.stepBar .step.current:before, .stepBar .step.current:after {
  background-color: #26bfa1;
}
.stepBar.step2 .step {
  width: 50%;
}
.stepBar.step3 .step {
  width: 33.33333%;
}

.stepBar.step4 .step {
  width: 25%;
}

.stepBar.step5 .step {
  width: 20%;
}
