/* 標準ブロックへのスタイル適応のための追加CSS */

h2:not([class]) {
  margin-top: 100px;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-left: 2px solid #0099cc;
  padding-left: 20px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
    h2:not([class]) {
        font-size: 2.4rem;
        letter-spacing: 0.048em;
        padding-left: 15px;
        margin-bottom: 30px;
    }
}

h3:not([class]) {
  font-size: 2.8rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  border-bottom: 1px solid #0099cc;
  padding-bottom: 14px;
  margin-bottom: 25px;
  margin-top: 60px;
}

@media only screen and (max-width: 768px) {
    h3:not([class]) {
        font-size: 2rem;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
}

h4:not([class]) {
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  letter-spacing: 2.1;
  border-left: 2px solid #0099cc;
  padding-left: 15px;
  margin-bottom: 20px;
  margin-top: 40px;
}

p:not([class]) {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-top: 20px;
}

strong:not([class]) {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-top: 20px;
}

em:not([class]) {
  font-style: italic;
}

main ul:not([class]) > li {
  position: relative;
  font-size: 16px;
  letter-spacing: 0.032em;
  line-height: 1.5;
  padding-left: 20px;
}

main ul:not([class]) > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

main ul:not([class]) {
  margin-top: 25px;
}

main ul:not([class]) > li:not(:first-of-type) {
    margin-top: 12px;
}

main ul:not([class]) > li {
  position: relative;
  font-size: 16px;
  letter-spacing: 0.032em;
  line-height: 1.5;
  padding-left: 20px;
}

ol:not([class]) > li {
  position: relative;
  font-size: 16px;
  letter-spacing: 0.032em;
  line-height: 1.5;
  padding-left: 25px;
  counter-increment: num;
}

ol:not([class]) > li::before {
  content: counter(num) ".";
  position: absolute;
  top: 0;
  left: 0;
}

table {
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid #ddd;
  width: 100%;
  margin-top: 60px;
}

@media only screen and (max-width: 768px) {
    table {
        width: calc(100% + 20px) !important;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    }
}

@media only screen and (max-width: 768px) {
    thead,tbody {
        width: 922px !important;
    }
}

td {
  font-size: 2.2rem;
  text-align: center;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 25px;
  background: #fff;
}

th {
  min-width: 250px;
  padding: 20px;
  background: #d2e2ee;
  border-bottom: 1px solid #fff;
  text-align: left;
}

@media only screen and (max-width: 768px) {
    tbody > tr > th {
        min-width: 160px !important;
   }
}

thead > tr > th,
thead > tr > td {
  color: #fff;
  background: #465767;
  padding: 22px 25px 24px;
}

td[colspan],
th[colspan] {
  color: #fff;
  font-size: 1.6rem;
  padding: 14px 0;
  background: #2b78c1;
}

.mt-be-columns{
  justify-content: space-around;
}

.asset-image {
  width: revert-layer;
  margin: auto;
}

hr {
  margin:30px 0;
}

blockquote {
  background-color: #E3E3E3;
  padding: 20px 25px;
  border: 1px solid #E3E3E3;
  border-radius: 10px;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 1.8;
}

blockquote>*:first-child {
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
    blockquote {
        line-height: 1.5;
        letter-spacing: 0.032em;
    }
}