/* フロー */
.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: 52%;
  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: 30px;
  margin-right: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .flow-list .list-item {
    padding-top: 0.25em;
  }
}
.flow-list .list-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 10px;
  border-color: transparent transparent transparent #F1F1F1;
}
.flow-list .list-item:last-child {
  width: 48%;
  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: 15px;
  font-weight: bold;
  color: #666;
}
.flow-list .list-item .num {
  font-family: "arial";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 7px;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  color: #666;
  background-color: #fff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .flow-list .list-item .num {
    margin-top: -0.25em;
  }
}
.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;
}
