@charset "UTF-8";
/*--------------------------------------------------------

 business

--------------------------------------------------------*/
.contents-block.reverse:last-of-type {
  margin-bottom: 10rem;
}
.blue-area {
  padding: 3rem 0;
  background: var(--light-blue);
  position: relative;
}
.blue-heading {
  color: var(--main);
  font-size: var(--50px);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translateX(-50%);
}
.shape-wave::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--light-blue);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .blue-heading {
    font-size: 6.8vw;
  }
}