@charset "UTF-8";

.message-area {
  margin: 100px 0;
  color: #8f8f8f;
  line-height: 2;
  text-align: center;
}
.message-area h1 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-family: cursive;
}
.message-area .link-area {
  margin: 40px 0;
}
.message-area .link-area a {
  color: #5f5f5f;
  border: 1px solid #5f5f5f;
  border-radius: 30px;
  padding: 10px 20px;
}
.message-area .link-area a:hover {
  background: #8f8f8f;
  color: #fff;
}
.message-area .icon-oh-no {
  display: inline-block;
  position: relative;
  padding: 20px;
  width: 150px;
  height: 100px;
  line-height: 63px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.2em;
  font-size: 14px;
  background-color: #ff9800;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: cursive;
  margin-bottom: 35px;
}
.message-area .icon-oh-no:before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: 2px;
  bottom: 2px;
  border-left: 20px solid #ff9800;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: rotate(45deg);
}