.list-caution li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
@media screen and (max-width:1744px) and (min-width:1025px) {
  .list-caution li {
    padding-left: calc(18 / 1744 * 100vw);
    font-size: clamp(14px, calc(14 / 1744 * 100vw), 14px)
  }
}
@media screen and (max-width:1024px) {
  .list-caution li {
    padding-left: calc(18 / 1024 * 100vw);
    font-size: clamp(14px, calc(14 / 1024 * 100vw), 14px)
  }
}
@media screen and (max-width:750px) {
  .list-caution li {
    padding-left: calc(28 / 750 * 100vw);
    font-size: clamp(14px, calc(28 / 750 * 100vw), 28px)
  }
}
.list-caution li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0
}
.list-caution li:nth-of-type(n+2) {
  margin-top: 12px
}
@media screen and (max-width:1744px) and (min-width:1025px) {
  .list-caution li:nth-of-type(n+2) {
    margin-top: calc(12 / 1744 * 100vw)
  }
}
@media screen and (max-width:1024px) {
  .list-caution li:nth-of-type(n+2) {
    margin-top: calc(12 / 1024 * 100vw)
  }
}
@media screen and (max-width:750px) {
  .list-caution li:nth-of-type(n+2) {
    margin-top: calc(22 / 750 * 100vw)
  }
}