/*----------------------------------------------------------------------------
******************************************************************************

******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
     Base
******************************************************************************
----------------------------------------------------------------------------*/
/* h */
.editor h2 {
  font-size: 1.6rem;
  padding-bottom: 0.2em;
}
.editor h3 {
  font-size: 1.4em;
  margin: 1.4rem 0 1em;
  position: relative;
  border-bottom: 3px solid #eef8ff;
  padding: 0 0.2em 0.2em;
}
.editor h3::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 4em;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.3);
}
.editor h4 {
  font-size: 1.3em;
  margin: 1.2rem 0 0.6em;
}
.editor h5 {
  font-size: 1.2em;
  margin: 10px 0;
}
/* ol,ul */
.editor ol,
.editor ul {
  margin: 1em 0;
  padding-left: 1em;
}
.editor ul {
  list-style-type: disc;
}
.editor ol li,
.editor ul li {
  margin: 0 0 0.4em;
}
/* table */
.editor table {
  margin-bottom: 10px;
}
.editor table th,
.editor table td {
  padding: 5px;
}
/* dl */
.editor dl {
  margin-bottom: 10px;
}
.editor dl dt,
.editor dl dt {
  margin-bottom: 5px;
}
/* img */
.editor img {
  max-width: 100%;
}
.editor a img:hover {
  opacity: 0.5;
  filter: alpha(Opacity=50);
}
