/* codex-japanese-linebreak-v1:start */
html[lang="ja"] body {
  line-break: strict;
}

html[lang="ja"] main :is(h1, h2, h3, h4, h5, h6) {
  word-break: normal;
  word-break: auto-phrase;
  overflow-wrap: normal;
  text-wrap: balance;
}

html[lang="ja"] main :is(p, li, dt, dd, blockquote, figcaption, summary) {
  word-break: normal;
  word-break: auto-phrase;
  overflow-wrap: normal;
  text-wrap: pretty;
}

@media (max-width: 760px) {
  html[lang="ja"] main :is(h1, h2, h3, h4, blockquote) > br:not([class]),
  html[lang="ja"] main p:is([class*="lead"], [class*="copy"]) > br:not([class]) {
    display: none !important;
  }
}
/* codex-japanese-linebreak-v1:end */
