.entry .table-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 50px 0 0;
}
.entry .tableWrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.entry .tableWrap table {
  min-width: 1000px;
  width: auto;
}
.entry table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #C0C0C0;
  margin: 1rem auto;
}
.entry table th {
  color: #fff;
  background-color: #2A8C44;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  vertical-align: top;
  padding: 1rem;
}
.entry table th:last-child {
  border-right: none;
}
.entry table td {
  border: 1px solid #C0C0C0;
  padding: 1rem;
  vertical-align: top;
}
.entry table tr:first-child th {
  border-top: none;
}
.entry table thead th {
  border-bottom: 1px solid #fff;
}
.entry .borderGray {
  width: 100%;
  border: 1px solid #C0C0C0;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem auto;
}
.entry .borderGray h5 {
  margin-top: 0;
}
.entry .borderGray p {
  margin-top: 1rem;
}
.entry :not(.cite-box) > ul {
  list-style: none;
  margin: 1rem 0;
}
.entry :not(.cite-box) > ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 1rem;
  line-height: 1.5;
}
.entry :not(.cite-box) > ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background-color: #333;
  border-radius: 50%;
}

.top-sec01__item-title,
.page-nav__title {
  align-items: center;
  display: flex;
  gap: 6px;
  padding-block: 10px;
}
.top-sec01__item-title em,
.page-nav__title em {
  display: inline-block;
  flex-shrink: 0;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

ol.countMath {
  counter-reset: countMath;
  list-style: none;
  margin: 1rem 0;
}
ol.countMath li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 1.5rem;
  line-height: 1.5;
}
ol.countMath li::before {
  content: counter(countMath) ")";
  counter-increment: countMath;
  position: absolute;
  left: 0;
  top: 0;
}

ol.countAlfa {
  counter-reset: countAlfa;
  list-style: none;
  margin: 1rem 0;
}
ol.countAlfa li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 1.5rem;
  line-height: 1.5;
}
ol.countAlfa li::before {
  content: counter(countAlfa, lower-alpha) ")";
  counter-increment: countAlfa;
  position: absolute;
  left: 0;
  top: 0;
}

img.alignnone {
  margin: 1.5rem auto;
}

img.widthHalf {
  width: 50%;
  margin: 1.5rem auto;
}