@charset "UTF-8";

.errtop {
  position: relative;
  margin-top: 20px;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  color: #c33;
  background: #fcc;
}
.errtop::after {
  position: absolute;
  left: 50%;
  bottom: -30px;
  width: 0;
  height: 0;
  margin-left: -15px;
  content: "";
  border: solid 15px transparent;
  border-top: solid 15px #fcc;
}
.errmsg span {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  font-weight: bold;
  color: #c33;
  background: #fcc;
}
.errmsg span::after {
  position: absolute;
  left: 30px;
  top: -20px;
  width: 0;
  height: 0;
  content: "";
  border: solid 10px transparent;
  border-bottom: solid 10px #fcc;
}

