.editor-content h1:not([class]) {
  --color-header: var(--text-color);
  display: inline-block;
  padding: 0.625rem 0.625rem 0.5rem;
  font-size: 3.4375rem;
  font-weight: 900;
  line-height: 1.45;
  color: var(--color-header);
  border-bottom: 0.125rem solid currentcolor;
}
@media only screen and (max-width: 767px) {
  .editor-content h1:not([class]) {
    font-size: 1.875rem;
    line-height: 1.4;
  }
}
.editor-content h2:not([class]) {
  --color-header: var(--text-color);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
  color: var(--color-header);
}
@media only screen and (max-width: 767px) {
  .editor-content h2:not([class]) {
    font-size: 1.75rem;
    line-height: 1.4;
  }
}
.editor-content h3:not([class]) {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-main);
}
@media only screen and (max-width: 767px) {
  .editor-content h3:not([class]) {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.editor-content h4:not([class]) {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--color-text-main);
}
@media only screen and (max-width: 767px) {
  .editor-content h4:not([class]) {
    font-size: 1.3125rem;
    line-height: 1.5;
  }
}
.editor-content h5:not([class]) {
  font-size: 1.3125rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--color-text-main);
}
@media only screen and (max-width: 767px) {
  .editor-content h5:not([class]) {
    font-size: 1.1875rem;
    line-height: 1.5;
  }
}
.editor-content h6:not([class]) {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--color-text-main);
}
@media only screen and (max-width: 767px) {
  .editor-content h6:not([class]) {
    font-size: 1.0625rem;
  }
}
.editor-content blockquote {
  padding-left: 1rem;
  margin-left: 1.5rem;
  border-left: 2px solid #ccc;
}
.editor-content ul:not([class]) {
  --color-list: var(--bg-color);
  font-size: 1.125rem;
  list-style: none;
}
.editor-content ul:not([class]) li:not([class]) {
  position: relative;
  padding-left: 1.6875rem;
}
.editor-content ul:not([class]) li:not([class])::before {
  position: absolute;
  top: 0.75em;
  left: 0.53125rem;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  background-color: var(--color-list);
  transform: translateY(-50%);
}
.editor-content ul:not([class]) li:not([class]):not(:first-child) {
  margin-top: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .editor-content ul:not([class]) li:not([class]) {
    font-size: 0.9375rem;
  }
}
.editor-content ol:not([class]) {
  font-size: 1.125rem;
  list-style: none;
  counter-reset: item;
}
.editor-content ol:not([class]) li:not([class]) {
  position: relative;
  padding-left: 2.125rem;
  --color-ol-number: var(--text-color);
}
@media only screen and (max-width: 767px) {
  .editor-content ol:not([class]) li:not([class]) {
    padding-left: 2rem;
    font-size: 0.9375rem;
  }
}
.editor-content ol:not([class]) li:not([class])::before {
  position: absolute;
  top: calc(0.75em - 0.875rem);
  left: 0rem;
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  font-family: Inter;
  font-size: 1em;
  font-weight: 900;
  line-height: 1.5;
  color: var(--color-ol-number);
  content: "0" counter(item) ".";
  counter-increment: item;
}
@media only screen and (max-width: 767px) {
  .editor-content ol:not([class]) li:not([class])::before {
    top: calc(0.75em - 0.75rem);
    width: 1.5rem;
    height: 1.5rem;
  }
}
.editor-content ol:not([class]) li:not([class]):not(:first-child) {
  margin-top: 0.4375rem;
}
.editor-content a:not([class]) {
  --color-text-link: var(--text-color);
  --icon-size: 1.5rem;
  --icon-color: currentcolor;
  display: inline-flex;
  gap: 0.625rem;
  align-items: center;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--color-text-link);
  text-decoration: underline;
  text-underline-position: under;
}
@media (hover: hover) {
  .editor-content a:not([class]) {
    transition: var(--animation-normal);
  }
  .editor-content a:not([class]):hover {
    opacity: var(--opacity-main);
  }
}
@media only screen and (max-width: 767px) {
  .editor-content a:not([class]) {
    font-size: 0.9375rem;
  }
}
.editor-content a:not([class])[target=_blank]::after {
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  content: "";
  background: var(--icon-color);
  -webkit-mask-image: var(--icon-blank);
          mask-image: var(--icon-blank);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.editor-content a:not([class])[href$=pdf]::after {
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  content: "";
  background: var(--icon-pdf-02) no-repeat center/contain;
  -webkit-mask-image: none;
          mask-image: none;
}
.editor-content a:not([class])[href$=docx]::after {
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  content: "";
  background: var(--icon-word-02) no-repeat center/contain;
  -webkit-mask-image: none;
          mask-image: none;
}
.editor-content a:not([class])[href$=".xlsx"]::after {
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  content: "";
  background: var(--icon-excel-02) no-repeat center/contain;
  -webkit-mask-image: none;
          mask-image: none;
}
.editor-content table:not([class]) {
  --color-table: var(--text-color);
  width: 100%;
  table-layout: fixed;
}
.editor-content table:not([class]) th,
.editor-content table:not([class]) td {
  padding: 1.5rem;
  font-family: var(--font-family-main);
  font-size: 1.125rem;
  line-height: 1.5;
  vertical-align: middle;
  background: var(--color-bg-white);
  border: 0.0625rem solid var(--color-border-main-xxx-light);
}
@media only screen and (max-width: 767px) {
  .editor-content table:not([class]) th,
  .editor-content table:not([class]) td {
    font-size: 0.9375rem;
  }
}
.editor-content table:not([class]) th {
  font-weight: bold;
  color: var(--color-text-white);
  text-align: center;
  background-color: var(--color-table);
}
@media only screen and (max-width: 767px) {
  .editor-content table:not([class]) th {
    padding: 1rem 1.25rem;
  }
}
.editor-content table:not([class]) td {
  font-weight: 500;
  vertical-align: top;
}
@media only screen and (max-width: 767px) {
  .editor-content table:not([class]) td {
    padding: 1rem;
  }
}