.c-page {
  overflow: hidden;
}

.sp-only {
  display: none;
}

.delivery .c-heading {
  margin-bottom: 64px;
}
.delivery .annotation {
  text-align: center;
}

.delivery-map__img {
  text-align: center;
  margin-bottom: 64px;
}
.delivery-map__img img {
  max-width: 400px;
  width: 100%;
}

.area .c-heading {
  margin-bottom: 64px;
}

.area-wrap {
  background-color: var(--v-color-bg);
  padding: 40px;
  border-radius: 40px;
  position: relative;
}
.area-wrap::after {
  content: "";
  display: block;
  width: 109px;
  height: 95px;
  position: absolute;
  right: 35px;
  bottom: -39px;
  background: url("./img-area02.png") no-repeat center/contain;
}

.area-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 23px;
}
.area-list li {
  min-width: 88px;
}
.area-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background-color: var(--v-color-orange);
  border-radius: 100%;
  position: relative;
  top: -2px;
}

@media screen and (max-width: 750px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .delivery .c-heading {
    margin-bottom: 56px;
  }
  .delivery-map__img {
    margin-bottom: 56px;
  }
  .delivery-map__img img {
    max-width: 335px;
  }
  .area .c-heading {
    margin-bottom: 56px;
  }
  .area-wrap {
    padding: 32px;
    border-radius: 32px;
  }
  .area-wrap::after {
    right: 12px;
    bottom: -24px;
    width: 72px;
    height: 62px;
  }
  .area-list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px 10px;
  }
  .area-list li {
    min-width: 72px;
  }
  .area-list li::before {
    width: 6px;
    height: 6px;
  }
}