/* CSS Document */

/* マウスカーソル */

.cursor-link {cursor:pointer;}
.inlineBlock {display: inline-block;}
.margin-bottom2em{margin-bottom:2em;}

* {
	font-size:12pt;
	color:#444444;
}

/* navbar分の高さのマージンを設定 */
body {
}

/*画面サイズxs(~767px)の場合*/
	@media screen and (max-width:767px) {
		body {}
	}


/* ページタイトル */

.pageTitle {
	background-image: url("../images/h1-bg-2px.png");
	background-repeat: repeat;
	background-color: rgba(173,217,255,1.00);
	border-top:1px solid #6AC4FF;
	margin-bottom:1em;
}

	h1 {
		text-shadow: 0.05em 0.05em 0.02em rgba(0,0,0,0.20);
		letter-spacing: 0.05em;
		margin-top:10px;
		font-size:22pt;
		
	}
		/*画面サイズxs(~767px)の場合*/
		@media screen and (max-width:767px) {
			h1 {text-align:center;}
		}

.hosokuText {color:rgba(0,0,0,0.79); font-size:9pt; margin-left:0.50em;}

/* ステップ表示 */
.step3 li {
width:calc(100% / 3); /* 3分割する場合 */
}
.step4 li {
width:calc(100% / 4); /* 4分割する場合 */
}
.step5 li {
width:calc(100% / 5); /* 5分割する場合 */
}

.step{
  list-style-type: none;
  display:table;
  width:100%;
  padding:0;
  margin:0em 0 2em 0;
  overflow:hidden;
}
.step li{
  display:table-cell;
  position:relative;
  background: #CECECE;
  /* padding: auto 0.5em auto 2em; */
  padding: 1em 0.5em 1em 2em;
  color: #888888;
	font-weight:normal;
	font-size:11pt; /* 分割する数や文字数によりこの値は調整 */
}
	
	/*画面サイズsm(768px～991px)の場合*/
	@media screen and (min-width:768px) and (max-width:991px) {
		.step3 li{
			font-size:10pt; /* 分割する数や文字数によりこの値は調整 */
		}
		.step4 li{
			font-size:8pt; /* 分割する数や文字数によりこの値は調整 */
		}
	}	

	 /*画面サイズmd(992px～1199px)の場合*/
	@media screen and (min-width:992px) and (max-width:1199px) {
		.step4 li{
			font-size:10pt; /* 分割する数や文字数によりこの値は調整 */
		}
	}
	
.step li:last-child{
  padding-right: 1em;
}
.step li:last-child:before,
.step li:last-child:after{
  display:none;
}
.step li:before,
.step li:after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.step li:before{
  top:-15px;
  right:-1em;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 40px 0 40px 1em;
  z-index: 1;
}
.step li:after{
  top:-15px;
  right:-.8em;
  border-style: solid;
  border-color: transparent transparent transparent #CECECE;
  border-width: 40px 0 40px 1em;
  z-index: 1;
}
.step li.is-current{
  background: #3230bb;
  font-weight: bold;
	color:#ffffff;
}
.step li.is-current:after{
  border-color: transparent transparent transparent #3230bb;
}

/* /ステップ表示 */
