main {
}

h1 {
  background: var(--primary);
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: var(--scale-40, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: var(--scale-40);
}

article {
  line-height: 1.7;
  width: calc(100% - (var(--padding-inline) * 2));
  max-width: 640px;
  margin-inline: auto;
  font-size: min(100vw / 375 * 15, 18px);
  margin-block: var(--scale-56);
}
article h2 {
  border-bottom: 2px solid var(--primary);
  font-family: "Zen Maru Gothic";
  font-size: var(--scale-32, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  padding: 0 0 0.5em 0;
  margin: 2em 0 0 0;
}

article h3 {
  font-family: "Zen Maru Gothic";
  font-size: var(--scale-28, 28px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin: 1.5em 0 0 0;
  color: var(--primary);
}

article a {
  text-decoration: underline;
}
article p {
  margin-top: 1.5em;
}

article .wp-block-table table :is(th, td) {
  @media (width <= 834px) {
    display: block;
    border-bottom: 0;
  }
}
article .wp-block-table table :is(th, td:nth-child(1)) {
  min-width: 10em;
  @media (width <= 834px) {
  }
}
article .wp-block-table table {
  @media (width <= 834px) {
    border-bottom: 1px solid;
  }
}

article ol li {
  margin: 1em 0;
}

/*-------------------------------
テーブル
---------------------------------*/
tr {
  border-top: 1px solid var(--color-decoration);
  border-bottom: 1px solid var(--color-decoration);
}

table th {
  background-color: var(--bgcolor-secondary);
}

.wp-block-table table :is(th, td),
table :is(th, td) {
  border: none;
  padding: 1em 2em;
}
