@charset "UTF-8";

.box01 {
  background: #fff;
  padding: 140px 0;
  position: relative;
  z-index: 0;
  border-radius: 20px;
  overflow: hidden;
}

.box01 h2 {
  font-size: 32px;
  font-weight: 500;
}

.box01 p {
  font-size: 18px;
  margin-top: 25px;
}

.box01 h3 {
  margin-top: 95px;
  font-size: 24px;
  position: relative;
  padding-left: 1em;
}

.box01 h3::before {
  content: "●";
  display: inline-block;
  position: absolute;
  left: 0;
}

.box01 img {
  position: absolute;
  z-index: -1;
}

.box01 h3:first-of-type {
  margin-top: 73px;
}

@media screen and (max-width: 767px) {
  .box01 h3:first-of-type {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .box01 {
    padding: 70px 15px;
  }

  .box01 h2 {
    font-size: 24px;
  }

  .box01 p {
    margin-top: 20px;
    font-size: 16px;
  }

  .box01 h3 {
    margin-top: 47.5px;
    font-size: 20px;
  }

  .box01 img {
    width: 30%;
  }
}

.box01 img:nth-of-type(1) {
  right: 0;
  top: 0;
}

.box01 img:nth-of-type(2) {
  left: 0;
  top: 0;
}

.box01 img:nth-of-type(3) {
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .box01 img:nth-of-type(3) {
    width: 60%;
  }
}

.box01 img:nth-of-type(4) {
  right: 0;
  bottom: 11%;
}