.point-area {
  display: flex;
  justify-content: space-between;
}

.point-area .item {
  width: calc((100% - 40px) / 3);
  padding: 15px;
  background: #eb5504;
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .point-area {
    flex-wrap: wrap;
    margin: 0;
  }
  .point-area .item {
    width: 100%;
  }
  .point-area .item:not(:first-child) {
    margin-top: 10px;
  }
}
/*# sourceMappingURL=continuous-use.css.map */