@charset "UTF-8";
.editor {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.editor h4 {
  font-size: 2.2rem;
  font-weight: normal;
  margin-bottom: 15px;
  border-left: 6px solid #978475;
  border-bottom: 1px solid #978475;
  padding: 0 0 5px 15px;
}

.editor h5 {
  font-size: 1.8rem;
  font-weight: normal;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  background-color: #978475;
  padding: 12px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.editor h5::before {
  content: "●";
  position: relative;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  color: #fff;
  margin-right: 5px;
}

.editor h6 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #111;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid #978475;
}

.editor ul {
  list-style-type: disc !important;
  padding-left: 1.5em;
  font-size: 1.3rem;
}

.editor ol {
  list-style-type: decimal !important;
  padding-left: 1.5em;
  font-size: 1.3rem;
}

.editor a {
  color: #111;
  text-decoration: underline;
}

.editor p {
  line-height: 1.7;
  font-family: 'YuGothic', 'Yu Gothic', '游ゴシック', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
}

.editor table {
  border-top: 1px solid #CCC;
  border-left: 1px solid #CCC;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-family: 'YuGothic', 'Yu Gothic', '游ゴシック', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
}

.editor table th, .editor table td {
  background-color: #FFF;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  line-height: 1.4;
  padding: 15px;
  text-align: left;
}

.editor table th {
  background-color: #e4e4e4;
  letter-spacing: 2px;
  text-align: center;
  width: 50%;
}

.editor table td {
  width: 50%;
}

.editor img {
  max-width: 100%;
  height: auto !important;
  text-align: center;
}
.editor .scrollTbl {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

/*デバイスの横幅が760px以下の場合*/

@media only screen and (max-width: 760px) {
  .editor h4 {
    font-size: 1.6rem;
  }
  .editor h5 {
    font-size: 1.4rem;
  }
  .editor h6 {
    font-size: 1.4rem;
  }
  .editor table {
    width: 100% !important;
    max-width: 100% !important;
  }
  .editor table td, .editor table th {
    padding: 2%;
  }
}