/* sec04
======================================= */
.sec04__flow {
  margin-bottom: 90px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 35px;
  list-style: none;
}
.detail__panel__body ol {
  margin-left: 0;
}
.sec04__flow h3 {
  position: relative;
  padding: .6em .3em .5em;
  background: #1b4388;
  font-size: 18px;
  color: #fff;
  text-align: center;
}
.sec04__flow h3::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  border-top: 16px solid #1b4388;
  border-bottom: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
}
.sec04__flow > li {
  flex: 0 0 calc(1 / 3 * 100% - 23.333px);
}
.sec04__flow > li:nth-child(2) h3 {
  background: #1663b2;
}
.sec04__flow > li:nth-child(2) h3::after {
  border-top-color: #1663b2;
}
.sec04__flow > li:nth-child(3) h3 {
  background: #1a8cc5;
}
.sec04__flow > li:nth-child(3) h3::after {
  border-top-color: #1a8cc5;
}
.sec04__flow > li:nth-child(4) h3 {
  background: #31a2b7;
}
.sec04__flow > li:nth-child(4) h3::after {
  border-top-color: #31a2b7;
}
.sec04__flow > li:nth-child(5) h3 {
  background: #0e9a78;
}
.sec04__flow > li:nth-child(5) h3::after {
  border-top-color: #0e9a78;
}
.sec04__flow > li:nth-child(6) h3 {
  background: #016f69;
}
.sec04__flow > li:nth-child(6) h3::after {
  border-top-color: #016f69;
}
.sec04__movie__title {
  margin-bottom: 0.75em;
  font-size: 35px;
  text-align: center;
}
.sec04__movie__lead {
  margin-bottom: 1.5em;
  font-size: 18px;
  text-align: center;
}
.sec04__movie__thumb {
  max-width: 720px;
  margin: 0 auto;
}
.sec04__movie__thumb a {
  position: relative;
  display: block;
}
.sec04__movie__thumb a::after {
  content: "";
  display: block;
  width: 77px;
  height: 77px;
  background: url("/b_solution/office/workplace_office/images/sec2/icn_play.svg") no-repeat;
  background-size: 77px 77px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .sec04__flow {
    margin-bottom: 10.66667vw;
    gap: 5.33333vw 0;
  }
  .sec04__flow h3 {
    font-size: 4vw;
  }
  .sec04__flow > li {
    flex: 0 0 100%;
  }
  .sec04__movie__title {
    font-size: 5.33333vw;
  }
  .sec04__movie__lead {
    font-size: 4vw;
  }
  .sec04__movie__thumb a::after {
    width: 10.26667vw;
    height: 10.26667vw;
    background-size: 10.26667vw 10.26667vw;
  }
}
