/* 背景 - デコレーション操作 */
.circle-wrap::before,
.circle-wrap::after {
  width: 45vw;
  height: 45vw;
}
.circle-wrap::after {
  top: 50%;
}
.circle-wrap::before {
  top: 100%;
}
@media screen and (max-width: 449px) {
  .circle-wrap::after {
    top: 60%;
  }
}


