h1 {
  position: relative;
  padding: 1rem .5rem;
}

h1:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  background-image: -webkit-gradient(linear, left top, right top, from(#fa709a), to(#fee140));
  background-image: -webkit-linear-gradient(left, #fa709a 0%, #fee140 100%);
  background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
}

/* 明朝体フォントにするCSS */
.font-mincho {
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "MS P明朝", serif;
}

/* ----------------------------------------------- */
/* Entry の Editor内に当たる CSS                   */
/* ----------------------------------------------- */
.contents h2{
  border-bottom: 1px solid black;
  padding: .5rem;
}
.contents h2:not(:first-child) {
  margin-top: 1em;
}

.contents h3{
  background: white;
  padding: .5rem;
  border-radius: 0.375rem;
}
.contents ol li::marker{
  font-size: 150%;
  color: #eb6100;
}

/* ----------------------------------------------- */
/* 特定のページに当たる CSS                        */
/* ----------------------------------------------- */
.company h2:first-letter {
  font-size: 150%;
  color: #eb6100;
}

/* ----------------------------------------------- */
/* トップページに当たる CSS                        */
/* ----------------------------------------------- */
#cover > div > div{
  background-color: rgba(255, 255, 255, 0.7);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
