.wysiwyg {
  padding-bottom: 4px;
  overflow-wrap: break-word;
  word-break: break-all;
}
.wysiwyg h3, .wysiwyg h4, .wysiwyg h5 {
  margin: 50px 0 18px;
  font-weight: 700;
  position: relative;
  line-height: 1.6;
}
.wysiwyg h3::before, .wysiwyg h4::before, .wysiwyg h5::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  .wysiwyg h3, .wysiwyg h4, .wysiwyg h5 {
    margin-top: 10vw;
  }
}
.wysiwyg h3 {
  margin-top: 60px;
  padding: 0 10px 12px 0;
  font-size: 28px;
  border-bottom: 3px solid #ccc;
}
.wysiwyg h3::before {
  content: "";
  display: block;
  width: 240px;
  height: 3px;
  background: #ba006d;
  position: absolute;
  bottom: -3px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .wysiwyg h3 {
    margin-top: 1.9em;
    font-size: min(5.3333333333vw, 20px);
  }
  .wysiwyg h3::before {
    width: 5em;
  }
}
.wysiwyg h4 {
  margin-top: 42px;
  padding-left: 20px;
  font-size: 24px;
}
.wysiwyg h4::before {
  content: "";
  display: block;
  width: 3px;
  height: 80%;
  background: #ba006d;
  position: absolute;
  top: 0.2em;
  left: 0;
}
@media screen and (max-width: 768px) {
  .wysiwyg h4 {
    margin-top: 1.9em;
    font-size: min(5.0666666667vw, 20px);
  }
}
.wysiwyg h5 {
  padding: 10px 0;
  font-size: 20px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .wysiwyg h5 {
    font-size: min(4.8vw, 20px);
  }
}
.wysiwyg p {
  font-size: 16px;
  line-height: 2.3;
}
.wysiwyg p + p {
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .wysiwyg p {
    font-size: min(4vw, 16px);
  }
  .wysiwyg p + p {
    margin-top: 1.5em;
  }
}
.wysiwyg p a, .wysiwyg li a {
  color: #ba006d;
  text-decoration: underline;
}
.wysiwyg p b,
.wysiwyg p strong, .wysiwyg li b,
.wysiwyg li strong {
  font-weight: 700;
}
.wysiwyg table {
  margin-top: 30px;
  background: #999;
}
.wysiwyg table th, .wysiwyg table td {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 1.5625rem;
  vertical-align: middle;
}
.wysiwyg table th p, .wysiwyg table td p {
  margin: 0;
}
.wysiwyg table th img, .wysiwyg table td img {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .wysiwyg table {
    margin-top: 7vw;
    background: #999;
  }
  .wysiwyg table th, .wysiwyg table td {
    padding: 2vw 3vw;
    font-size: min(1.7333333333vw, 16px);
  }
}
.wysiwyg ul,
.wysiwyg ol {
  margin-top: 30px;
}
.wysiwyg ul li,
.wysiwyg ol li {
  position: relative;
}
.wysiwyg ul li:nth-child(n+2),
.wysiwyg ol li:nth-child(n+2) {
  margin-top: 0.4em;
}
@media screen and (max-width: 768px) {
  .wysiwyg ul,
  .wysiwyg ol {
    margin-top: 5vw;
  }
  .wysiwyg ul li,
  .wysiwyg ol li {
    line-height: 1.8;
  }
  .wysiwyg ul li:nth-child(n+2),
  .wysiwyg ol li:nth-child(n+2) {
    margin-top: 1vw;
  }
}
.wysiwyg ul {
  margin-top: 1.2em;
}
.wysiwyg ul li {
  padding-left: 1em;
}
.wysiwyg ul li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #ba006d;
  position: absolute;
  border-radius: 50%;
  top: 0.6em;
  left: 0;
}
.wysiwyg ol {
  margin: 1.3em 0 0 1.4em;
  counter-reset: count 0;
}
.wysiwyg ol li {
  text-indent: -1.2em;
}
.wysiwyg ol li::before {
  content: counter(count) ". ";
  counter-increment: count 1;
  color: #ba006d;
  font-family: "RobotoCondensed", sans-serif;
  position: relative;
  left: -0.2em;
}
.wysiwyg img {
  margin-top: 26px;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .wysiwyg img {
    margin-top: 1em;
  }
}