.delivery__wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.delivery__alert {
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.1em;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.delivery__alert--top {
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.1em;
  width: 80%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.delivery__alert--topttl {
  font-size: 56px;
  color: #FFF;
  text-align: center;
  line-height: 1.3;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}
.delivery__alert--toptxt {
  font-size: 24px;
  color: #FFF;
  text-align: center;
  line-height: 1.4;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}
.delivery__alert p {
  color: #FFF;
  font-size: 24px;
  text-align: center;
  line-height: 1;
}
@media only screen and (max-width: 750px) {
  .delivery__alert--top {
    width: 90%;
    padding: 0 10%;
  }
  .delivery__alert--topttl {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .delivery__alert--toptxt {
    font-size: 14px;
    line-height: 1.6;
  }
  .delivery__alert--toptxt br {
    display: none;
  }
  .delivery__alert p {
    color: #FFF;
    font-size: 14px;
    text-align: center;
    line-height: 1;
  }
}