@charset "UTF-8";
:root {
  --main-color: #1a1a1a;
  --base-color: #f8f8f8;
  --accent-color: #3a3a3a;
  --font-color: #1a1a1a;
}
html :where(.wp-block) {
  max-width: 45em;
}
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none !important;
}
.editor-styles-wrapper {
  font-size: clamp(0px,(100vw / 80), 16px) !important;
	font-family: YakuHanJP,'Ubuntu','Noto Sans JP',sans-serif;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: .025em;
	color: #1a1a1a;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
}
.editor-styles-wrapper :where(.wp-block) {
  max-width: 740px;
}
@media (max-width: 769px) {
  .editor-styles-wrapper {
    font-size: clamp(0px,(100vw / 25), 16px) !important;
  }
}
/* h1,h2,h3,h4,h5,h6 */
.editor-styles-wrapper h1 {
  font-size: 1.75em;
}
.editor-styles-wrapper h2 {
  margin: 2em auto 1em;
  padding: .5em .75em;
  font-size: 1.25em;
  color: #fff;
  background-color: var(--accent-color);
  border-radius: 4px;
}
.editor-styles-wrapper h3 {
  margin: 2em auto 1em;
  padding: .5em .5em .5em 1em;
  font-size: 1.125em;
  background-color: var(--base-color);;
  border-left: 5px solid var(--main-color);
}
.editor-styles-wrapper h4 {
  padding: .5em;
  font-size: 1em;
  border-top: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
}
.editor-styles-wrapper h5 {
  font-size: 1em;
}
.editor-styles-wrapper h6 {
  font-size: 1em;
}

/*p*/
.editor-styles-wrapper p {
  margin: 1.25em auto;
  line-height: 1.8;
}
.editor-styles-wrapper p code {
  margin: 0 .3em;
  padding: .2em .4em;
  background-color: #f5f5f5;
  border-radius: 3px;
}






/*table*/
.wp-block-table {
  margin: 0;
}
.wp-block-table table {
  width: 100%;
  font-size: .875em;
  border-collapse: collapse;
}
.wp-block-table table tbody {
  width: 100%; 
}
.wp-block-table table tbody tr {
  width: 100%;
}
.wp-block-table table tbody tr td {
  padding: .75em .5em;
  border: none;
  border-bottom: .0625em solid #ddd;
}
.wp-block-table table tbody tr td:first-child {
  padding: .75em .75em .75em 0;
}
.wp-block-table table tbody tr:last-child td {
  border: none;
}

/*.text-**/
.text-size-big {
  font-size: 1.25em;
}
.text-size-small {
  font-size: .875em;
}
.text-highlight-yellow {
  background-color: #fff19c;
}
.text-highlight-red {
  background: linear-gradient(transparent 70%, #ea505c 70%);
}

/*.block-dl*/
.editor-styles-wrapper .block-dl {
	margin: 1em 0;
}
.editor-styles-wrapper .block-dl dl {
  display: flex;
}
.editor-styles-wrapper .block-dl dl dd {
  display: flex;
  margin: 0;
  padding: 1.25em 1em 1.25em 1.5em;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  background-color: #f9f9f9;
  border-radius: 8px 0 0 8px;
  flex-grow: 0;
}
.editor-styles-wrapper .block-dl dl dt {
  margin: 0;
  padding: 1.25em 1.5em 1.25em 0;
  background-color: #f9f9f9;
  border-radius: 0 8px 8px 0;
  flex-grow: 1;
}
.editor-styles-wrapper .block-dl dl dt ul {
  margin: 0;
  padding: 0 0 0 1.5em;
}
.editor-styles-wrapper .block-dl dl dt ul li {
  margin: 0;
}



/* .block-checklist */
.editor-styles-wrapper .block-checklist {
  margin: 2em 0;
  background-color: var(--base-color);;
  border-radius: 3px;
}
.editor-styles-wrapper .block-checklist .label {
  padding: .75em;
  font-weight: bold;
  text-align: center;
  color: var(--base-color);
  background-color: var(--accent-color);
  border-radius: 10px 10px 0 0;
}
.editor-styles-wrapper .block-checklist ul {
  margin: 0 auto;
  padding: 1.5em 2em;
  list-style-type: none;
}
.editor-styles-wrapper .block-checklist ul li {
  margin: 0;
  padding: 0;
}
.editor-styles-wrapper .block-checklist ul li:before {
  display: none;
}
.editor-styles-wrapper .block-checklist ul li input[type=checkbox] {
  display: none;
}
.editor-styles-wrapper .block-checklist ul li label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 35px;
  position: relative;
  width: auto;
}
.editor-styles-wrapper .block-checklist ul li label::before {
  background: var(--main-color);
  border: 2px solid var(--main-color);
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
  border-radius: 2px;
}
.editor-styles-wrapper .block-checklist ul li label::after {
  border-right: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  content: '';
  display: block;
  height: 12px;
  left: 11px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}
.editor-styles-wrapper .block-checklist ul li input[type=checkbox]:checked + label::after {
  opacity: 1;
}


/*.block-dictionary*/
.editor-styles-wrapper .block-dictionary {

}
.editor-styles-wrapper .block-dictionary dl.list {

}
.editor-styles-wrapper .block-dictionary dl.list dt {
  position: relative;
  margin: .75em 0 .25em;
  padding: 0 0 0 2em;
  font-size: .9375em;
  font-weight: bold;
}
.editor-styles-wrapper .block-dictionary dl.list dt::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  background-color: var(--base-color);
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.editor-styles-wrapper .block-dictionary dl.list dt::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  background-color: var(--accent-color);
  border-radius: 50%;
  -webkit-transform: translateY(-50%) scale(0.25);
  transform: translateY(-50%) scale(0.25);
}
.editor-styles-wrapper .block-dictionary dl.list dd {
  margin: 0;
}
.editor-styles-wrapper .block-dictionary dl.table {
  display: flex;
  flex-wrap: wrap;
  font-size: .9375em;
}
.editor-styles-wrapper .block-dictionary dl.table dt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  width: 12em;
  font-weight: bold;
  background-color: var(--base-color);
  border-bottom: .125em solid #fff;
}
.editor-styles-wrapper .block-dictionary dl.table dd {
  margin: 0;
  padding: 1em 0 1em 1em;
  width: calc(100% - 12em);
}



