.cms-entryWrap > .oneContentsType2 > *:first-child {
margin-top: 0!important;
}


.cms-entryWrap .table:not([class^="style"]):not([class*=" style"]) th {
  color: #FFF;
  background-color: #979797; /* 濃いグレー */
}

/* 768px 以上：PC・タブレット */
@media only screen and (min-width: 768px) {
  .cms-entryWrap h2:not([class]) {
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 0;
    padding-top: 8px;
    padding-right: 20px;
    padding-bottom: 8px;
  }
  .cms-entryWrap h3:not([class]) {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
    padding-top: 3px;
    padding-bottom: 6px;
  }
}
/* 767px 以下：スマホ */
@media only screen and (max-width: 767px) {
  .cms-entryWrap h2:not([class]) {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }
  .cms-entryWrap h3:not([class]) {
    font-size: 19px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
    padding-top: 3px;
    padding-right: 10px;
    padding-bottom: 6px;
  }
}

/* 番号付きリスト */
.cms-entryWrap ol:not([class]) {
  list-style: none;
  counter-reset: ol-default;
}
.cms-entryWrap ol:not([class]) > li {
  position: relative;
  counter-increment: ol-default;
  padding: 0 0 0 2.8em;
  margin-top: 7px;
  color: #333333;
}
.cms-entryWrap ol:not([class]) > li::before {
  content: "（" counter(ol-default) "）"; /* (number) を擬似要素として追加 */
  position: absolute;
  left: 0;
  top: 0;
}

/* 通常リスト */
.cms-entryWrap ul:not([class]) {
  list-style: none;
  padding-left: 0;
}
.cms-entryWrap ul:not([class]) > li {
  position: relative;
  padding: 0 0 0 1.2em;  /* 中黒(・)とテキストの間隔はここで調節する */
  margin-top: 7px;
  color: #333333;
}
.cms-entryWrap ul:not([class]) > li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* 区切り線 */
.cms-entryWrap hr:not([class]) {
  display: block;
  margin: 0;
  border-top:1px dotted #cccccc;
}

/* 引用 */
.cms-entryWrap blockquote:not([class]) {
  padding: 10px;
  border: 5px double #333333;
  margin-bottom: 10px;
}