/* 背景 - デコレーション操作 */
.circle-wrap::after {
  top: 25%;
}
.circle-wrap::before {
  top: 49.5%;
}
@media screen and (max-width: 449px) {
  .circle-wrap::after {
    top: 29%;
  }
  .circle-wrap::before {
    top: 48.5%;
  }
}


