
/* フロー */
.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 35px;
}
.flow-list .list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 227px;
  background-color: #F1F1F1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
  margin-right: 14px;
}
.flow-list .list-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 10px;
  border-color: transparent transparent transparent #F1F1F1;
}
.flow-list .list-item:last-child {
  width: 237px;
  margin-right: 0;
}
.flow-list .list-item:last-child:before {
  content: none;
  display: none;
}
.flow-list .list-item .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-column-align: center;
  justify-self: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  line-height: 1.2;
  font-weight: bold;
  color: #666;
  text-align: center;
}
.flow-list .list-item .num {
  display: none;
}
.flow-list .list-item.is-current {
  background-color: #666;
}
.flow-list .list-item.is-current:before {
  border-color: transparent transparent transparent #666;
}
.flow-list .list-item.is-current .ttl {
  color: #fff;
}
.flow-list .list-item.is-current .num {
  background-color: #fff;
}
