<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

.l-content .flow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-content .flow .box {
  position: relative;
  display: flex;
  height: 82px;
}

.l-content .flow .box:not(:first-child) {
  margin-top: 30px;
}

.l-content .flow .box:not(:first-child)::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  border-top: 20px solid #666;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  transform: translateX(-50%);
}

.l-content .flow .box .box_l {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  background: #666;
  color: #fff;
  font-weight: bold;
}

.l-content .flow .box .box_r {
  box-sizing: border-box;
  width: 850px;
  padding: 10px 20px;
  background: #efefef;
}

.l-content .flow .box .num {
  font-size: 18px;
}

.l-content .flow .box .title {
  border-bottom: 1px dotted #999;
  font-size: 15px;
  font-weight: bold;
}
</pre></body></html>