@charset "utf-8";

.ribbon {
  display: inline-block;
  position: relative;
  height: 3.6rem;
  line-height: 3.6rem;
  text-align: center;
  padding: 0.45rem 0;
  font-size: 1rem;
  background: #FF7575;
  color: #FFF !important;
  box-sizing: border-box;
}

.ribbon h3 {
  margin: 0;
  padding: 0 2rem;
  border-top: dashed 2px rgba(255, 255, 255, 0.5);
  border-bottom: dashed 2px rgba(255, 255, 255, 0.5);
  line-height: 2.4rem;
  color: inherit !important;
  text-shadow: 0.01rem 0.01rem 0.01rem #ccc !important;
}

.ribbon:before, .ribbon:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.ribbon--cutL:before {
  /*左の山形*/
  top: 0;
  left: 0;
  border-width: 1.75rem 0px 1.75rem 0.9rem;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}

.ribbon--cutR:after {
  /*右の山形*/
  top: 0;
  right: 0;
  border-width: 1.75rem 0.9rem 1.75rem 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}