:root {
  --bg: #fff5ec;
  --surface: #ffffff;
  --line: #f0d3b5;
  --text: #3a2413;
  --muted: #775843;
  --brand: #d97a23;
  --brand-strong: #a95a13;
  --chip: #fbe6d1;
  --shadow: 0 10px 26px rgba(107, 61, 26, 0.12);
  --radius-lg: 16px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 2%, rgba(217, 122, 35, 0.16), transparent 38%),
    linear-gradient(170deg, #fff2e5 0%, #fff9f2 45%, #fff5ec 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.brand-text {
  font-size: 18px;
  font-weight: 800;
}

.wiki-container {
  max-width: 1080px;
  margin: 20px auto 32px;
  padding: 0 16px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #8a6b4f;
  margin-bottom: 12px;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.wiki-hero,
.wiki-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.wiki-hero {
  padding: 22px;
}

.hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero-tag {
  margin: 0;
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--chip);
  color: #8f4a12;
  font-size: 12px;
  font-weight: 700;
}

.hero-updated {
  margin: 0;
  font-size: 11px;
  color: #957458;
  line-height: 1.4;
}

.wiki-hero h1 {
  margin: 12px 0 8px;
  font-size: 30px;
  line-height: 1.25;
}

.wiki-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.wiki-block {
  margin-top: 14px;
  padding: 18px;
}

.wiki-block h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.article-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.article-copy p + p {
  margin-top: 10px;
}

.article-copy a {
  color: #9a5118;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.update-list {
  margin: 0;
  padding-left: 1.4rem;
  color: var(--muted);
  line-height: 1.8;
}

.update-list time {
  color: #7c512f;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
  background: #fffdf9;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(135, 78, 29, 0.16);
}

.article-card.active {
  border-color: #e3b98f;
  background: linear-gradient(155deg, #fffbf6 0%, #fff3e8 100%);
}

.article-card h2,
.article-card h3 {
  margin: 8px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.article-label {
  margin: 0;
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f8e2ca;
  color: #8a4a14;
  font-size: 11px;
  font-weight: 700;
}

.article-label.soon {
  background: #f7ece2;
  color: #906f53;
}

.minecraft-tag {
  background: #e3f0dc;
  color: #3f7b31;
}

.guide-article .wiki-block h3 {
  margin: 18px 0 8px;
}

.update-summary-block {
  display: grid;
  gap: 14px;
}

.version-stat strong {
  font-size: 18px;
  line-height: 1.35;
}

.guide-callout {
  border: 1px solid #bdd9b0;
  border-radius: var(--radius-md);
  background: #f2f9ef;
  padding: 12px 14px;
}

.guide-callout p {
  margin: 0;
  color: #385f2d;
  font-size: 13px;
  line-height: 1.8;
}

.guide-callout--warning {
  border-color: #e3c16b;
  background: #fff9e8;
}

.guide-callout--warning p {
  color: #715212;
}

.reference-block {
  border-left: 4px solid #79a968;
}

.reference-block .guide-note {
  margin-bottom: 10px;
}

.reference-link {
  color: #4c7d3c;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.minecraft-notice {
  border-left: 4px solid #4f8f3a;
  background: #f5f8f3;
}

.minecraft-notice p {
  margin: 0;
  color: #34402f;
  font-size: 13px;
  line-height: 1.8;
}

.minecraft-notice p + p {
  margin-top: 6px;
}

.minecraft-notice a {
  color: #3f7132;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.minecraft-notice-en {
  font-size: 11px !important;
  font-weight: 700;
}

.update-card-grid .article-card h3 {
  min-height: 2.7em;
}

.update-card-grid {
  margin-bottom: 12px;
}

.update-version-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  isolation: isolate;
}

.update-version-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--update-card-bg, linear-gradient(135deg, #f8e7ca, #d7e7c4));
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.update-version-card::after {
  display: none;
}

.update-version-card h3,
.update-version-card p {
  position: relative;
}

.update-card--bedrock-26-30 {
  --update-card-bg:
    url("./minecraft/update/assets/bedrock-26-30-hero.jpg");
}

.update-card--bedrock-26-50 {
  --update-card-bg:
    url("./minecraft/update/assets/next-update-hero.jpg");
}

.update-card--bedrock-preview-26-60-21 {
  --update-card-bg:
    url("./minecraft/update/assets/preview-key-art.webp");
}

.update-card--java-26-2 {
  --update-card-bg:
    url("./minecraft/update/assets/java-26-2-hero.jpg");
}

.update-card--java-26-3 {
  --update-card-bg:
    url("./minecraft/update/assets/next-update-hero.jpg");
}

.update-card--java-26-3-pre-release-1 {
  --update-card-bg:
    url("./minecraft/update/assets/preview-key-art.webp");
}

.edition-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.edition-column {
  min-width: 0;
}

.guide-details :target {
  scroll-margin-top: 88px;
}

.guide-details tr:target {
  scroll-margin-top: 88px;
}

.guide-details :target .guide-subtitle,
.guide-details h3:target {
  color: #b8500f;
}

.guide-details tr:target td {
  background: #fff1d6;
}

.toc-list {
  margin: 0;
  padding-left: 1.4rem;
  color: var(--muted);
  line-height: 1.9;
}

.toc-list a {
  color: #6a5422;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.guide-subtitle {
  font-size: 16px;
  color: #5b3a20;
}

.guide-steps {
  margin: 10px 0 0;
  padding-left: 1.4rem;
  color: var(--muted);
  line-height: 1.8;
}

.guide-details {
  margin-top: 12px;
  border: 1px solid #e7c9a8;
  border-radius: var(--radius-md);
  background: #fffdf9;
  padding: 12px 14px;
}

.guide-details > summary {
  cursor: pointer;
  color: #6b4526;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.more-details {
  margin-top: 10px;
}

.more-details > summary {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid #e7c9a8;
  border-radius: 999px;
  background: #fff8ef;
  color: #8a4b14;
}

.guide-details-body {
  padding-top: 10px;
}

.guide-details-body h3 {
  margin: 14px 0 8px;
  font-size: 15px;
  color: #5b3a20;
}

.guide-details-body h3:first-child {
  margin-top: 0;
}

.image-placeholder {
  margin: 14px 0;
  border: 1px dashed #97b98d;
  border-radius: var(--radius-md);
  background: #fbfef8;
  padding: 16px;
}

.image-placeholder-title {
  margin: 0 0 6px;
  color: #3f7b31;
  font-weight: 800;
}

.image-placeholder p:last-child {
  margin: 0;
  color: #64775d;
  font-size: 13px;
  line-height: 1.7;
}

.guide-main-image {
  margin: 16px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fffdf9;
}

.guide-main-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1170 / 500;
  object-fit: cover;
}

.guide-main-image figcaption {
  margin: 0;
  padding: 8px 10px;
  color: #74563c;
  font-size: 12px;
  line-height: 1.6;
}

.item-image {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 78px;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(84, 63, 43, 0.22);
  border-radius: 8px;
  background: #ece8df;
}

.item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-image--pixel img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  image-rendering: pixelated;
}

.item-image--pair {
  grid-auto-flow: column;
  grid-template-columns: repeat(2, 64px);
  gap: 6px;
}

.item-image--pair img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  image-rendering: pixelated;
}

.guide-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0;
}

.guide-content-image {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f1e9;
}

.guide-content-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.guide-content-image--pixel img {
  object-fit: contain;
  image-rendering: pixelated;
  padding: 26px;
}

.guide-content-image--item img {
  object-fit: contain;
  image-rendering: pixelated;
  padding: 34px;
}

.guide-content-image figcaption {
  padding: 8px 10px;
  color: #74563c;
  font-size: 12px;
  line-height: 1.55;
}

.change-entry {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.8fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.change-entry:first-of-type {
  padding-top: 2px;
  border-top: 0;
}

.guide-article .change-entry h3 {
  margin: 0 0 7px;
  font-size: 17px;
}

.change-entry p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.change-entry p + p {
  margin-top: 8px;
}

.change-entry .image-placeholder {
  align-self: start;
  min-height: 142px;
  margin: 0;
}

.table-image-slot {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 72px;
  aspect-ratio: 16 / 10;
  border: 1px dashed #78a66b;
  border-radius: 8px;
  background: #f7fbf5;
  color: #4e7d42;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 720px) {
  .guide-media-grid,
  .change-entry {
    grid-template-columns: 1fr;
  }

  .change-entry {
    gap: 12px;
  }

  .change-entry .image-placeholder {
    min-height: 0;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stats-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px;
  background: #fffbf6;
}

.stat-box p {
  margin: 0;
  font-size: 12px;
  color: #8a6b4f;
}

.stat-box strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}

.search-box {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-input {
  flex: 1;
  min-width: 240px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.search-input:focus {
  outline: none;
  border-color: #d9a778;
  box-shadow: 0 0 0 3px rgba(217, 122, 35, 0.12);
}

.search-clear-button {
  border: 1px solid #ecc8a7;
  border-radius: 10px;
  padding: 10px 14px;
  background: #fff5ec;
  color: #8a4b14;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.search-clear-button:hover {
  background: #fde9d4;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.filter-select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.filter-select:focus {
  outline: none;
  border-color: #d9a778;
  box-shadow: 0 0 0 3px rgba(217, 122, 35, 0.12);
}

.filter-actions {
  margin-top: 10px;
}

.chip-filter-wrap {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.chip-filter-group {
  display: grid;
  gap: 6px;
}

.chip-filter-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #8b623f;
}

.chip-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-filter {
  border: 1px solid #f0d4b8;
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff7ef;
  color: #7a4b27;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.chip-filter:hover {
  background: #ffefdb;
}

.chip-filter.active {
  border-color: #d97a23;
  background: linear-gradient(160deg, #de7f27 0%, #b86417 100%);
  color: #fff;
}

.chip-filter-empty {
  margin: 0;
  font-size: 12px;
  color: #8b623f;
}

.monster-group-remaining {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: #b8500f;
}

.monster-group-remaining[hidden] {
  display: none;
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: auto;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
}

thead {
  background: #f9e7d3;
}

th,
td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #f4dfca;
  font-size: 13px;
  vertical-align: top;
}

th.sortable-header {
  user-select: none;
  cursor: pointer;
  position: relative;
  padding-right: 24px;
}

th.sortable-header::after {
  content: "↕";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #9b7a58;
}

th.sortable-header.sort-asc::after {
  content: "▲";
  color: #d97a23;
}

th.sortable-header.sort-desc::after {
  content: "▼";
  color: #d97a23;
}

th.sortable-header:focus-visible {
  outline: 2px solid #d09f71;
  outline-offset: -2px;
}

.multiline-cell {
  line-height: 1.55;
}

.equipment-item {
  display: grid;
  gap: 4px;
}

.equipment-item-name {
  margin: 0;
  font-weight: 700;
  color: #4b2d16;
}

.equipment-item-abilities {
  display: grid;
  gap: 2px;
}

.equipment-item-ability {
  display: block;
  color: #8a6a4f;
  font-size: 12px;
  line-height: 1.45;
}

.weapon-skill-item + .weapon-skill-item {
  margin-top: 5px;
}

.weapon-skill-effect {
  margin: 2px 0 0;
  color: #5f5146;
  font-size: 12px;
  line-height: 1.65;
}

.weapon-name-cell {
  display: grid;
  gap: 4px;
  min-width: 9rem;
  font-weight: 700;
}

.weapon-motif {
  color: #8a6a4f;
  font-size: 11px;
  font-weight: 400;
}

.equipment-set-table td:first-child {
  min-width: 7rem;
  font-weight: 700;
  color: #4b2d16;
}

.equipment-ability-block {
  display: grid;
  gap: 6px;
}

.equipment-ability-group {
  display: grid;
  gap: 2px;
}

.equipment-ability-group-title {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  color: #8f5a30;
}

tr:hover td {
  background: #fffbf6;
}

.guide-note {
  margin: 0;
  color: var(--muted);
}

.guide-note code {
  padding: 2px 6px;
  border: 1px solid #f5dcc2;
  border-radius: 6px;
  background: #fff4ea;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
}

.table-wrap a {
  color: var(--brand-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.minecraft-table-block {
  margin-top: 10px;
  overflow: hidden;
}

.minecraft-table-block table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.minecraft-table-block th:nth-child(1),
.minecraft-table-block td:nth-child(1) {
  width: 22%;
}

.minecraft-table-block th:nth-child(2),
.minecraft-table-block td:nth-child(2) {
  width: 34%;
}

.minecraft-table-block th:nth-child(3),
.minecraft-table-block td:nth-child(3) {
  width: 44%;
}

.minecraft-table-block--four th:nth-child(1),
.minecraft-table-block--four td:nth-child(1) {
  width: 18%;
}

.minecraft-table-block--four th:nth-child(2),
.minecraft-table-block--four td:nth-child(2) {
  width: 18%;
}

.minecraft-table-block--four th:nth-child(3),
.minecraft-table-block--four td:nth-child(3) {
  width: 24%;
}

.minecraft-table-block--four th:nth-child(4),
.minecraft-table-block--four td:nth-child(4) {
  width: 40%;
}

.minecraft-table-block--two th:nth-child(1),
.minecraft-table-block--two td:nth-child(1) {
  width: 34%;
}

.minecraft-table-block--two th:nth-child(2),
.minecraft-table-block--two td:nth-child(2) {
  width: 66%;
}

.minecraft-table-block--visual th:nth-child(1),
.minecraft-table-block--visual td:nth-child(1) {
  width: 20%;
}

.minecraft-table-block--visual th:nth-child(2),
.minecraft-table-block--visual td:nth-child(2) {
  width: 16%;
}

.minecraft-table-block--visual th:nth-child(3),
.minecraft-table-block--visual td:nth-child(3) {
  width: 22%;
}

.minecraft-table-block--visual th:nth-child(4),
.minecraft-table-block--visual td:nth-child(4) {
  width: 42%;
}

.minecraft-table-block td {
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.65;
}

.item-thumb {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 78px;
  aspect-ratio: 16 / 10;
  padding: 8px;
  border: 1px dashed #78a66b;
  border-radius: 8px;
  background: #f7fbf5;
  color: #4e7d42;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.item-thumb::before {
  content: "画像準備枠";
  display: block;
  margin-bottom: 4px;
  color: #79a06f;
  font-size: 9px;
  font-weight: 600;
}

.endfield-basic-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.endfield-basic-table th:nth-child(1),
.endfield-basic-table td:nth-child(1) {
  width: 35%;
}

.endfield-basic-table th:nth-child(2),
.endfield-basic-table td:nth-child(2) {
  width: 20%;
}

.endfield-basic-table th:nth-child(3),
.endfield-basic-table td:nth-child(3) {
  width: 20%;
}

.endfield-basic-table th:nth-child(4),
.endfield-basic-table td:nth-child(4) {
  width: 25%;
}

.endfield-basic-table th:nth-child(-n + 3),
.endfield-basic-table td:nth-child(-n + 3) {
  text-align: center;
}

.endfield-char-cell,
.endfield-type-cell {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.endfield-char-icon {
  width: 78px;
  height: 78px;
  border-radius: 8px;
  border: 1px solid #e7c5a4;
  background: #fff8f1;
  object-fit: cover;
}

.endfield-basic-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid #e7c5a4;
  background: #fff8f1;
  object-fit: contain;
}

.endfield-icon-fallback {
  display: inline-grid;
  place-items: center;
  color: #8d6b4f;
  font-weight: 700;
}

.endfield-char-name,
.endfield-type-label {
  display: block;
  line-height: 1.35;
}

.reward-list {
  margin: 0;
  padding-left: 18px;
}

.reward-list li {
  margin: 0 0 4px;
}

.reward-list li:last-child {
  margin-bottom: 0;
}

.monster-group-title {
  margin: 16px 0 8px;
  font-size: 17px;
}

.monster-group-period {
  margin: -2px 0 10px;
  font-size: 12px;
  color: #7d5b42;
}

.monster-group-period.is-inactive {
  color: #9b7a61;
}

.monster-table-block {
  margin-bottom: 10px;
  overflow: hidden;
}

.promotion-code-table-block {
  margin-bottom: 10px;
  overflow: hidden;
}

.monster-table-block table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.promotion-code-table-block table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.monster-table-block th:nth-child(1),
.monster-table-block td:nth-child(1) {
  width: 40%;
  text-align: center;
}

.promotion-code-table-block th:nth-child(1),
.promotion-code-table-block td:nth-child(1) {
  width: 30%;
}

.monster-table-block th:nth-child(2),
.monster-table-block td:nth-child(2) {
  width: 20%;
}

.promotion-code-table-block th:nth-child(2),
.promotion-code-table-block td:nth-child(2) {
  width: 50%;
}

.monster-table-block th:nth-child(3),
.monster-table-block td:nth-child(3) {
  width: 40%;
}

.promotion-code-table-block th:nth-child(3),
.promotion-code-table-block td:nth-child(3) {
  width: 20%;
}

.monster-table-block td {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.promotion-code-table-block td {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.monster-table-block .reward-list {
  list-style: disc;
  padding-left: 18px;
}

.monster-name-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.monster-name-image {
  width: 100%;
  max-width: 88px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #e7c5a4;
  background: #fff8f1;
  padding: 4px;
}

.monster-table-block .weak-point-list {
  list-style: none;
  padding-left: 0 !important;
  margin: 0;
}

.monster-table-block .weak-point-list li {
  display: flex;
  align-items: center;
  gap: 4px;
}

.weak-point-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  object-fit: contain;
}

.weak-point-icon--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b4a2c;
  font-size: 10px;
  line-height: 1;
}

.monster-name-image--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9a7a60;
  font-size: 10px;
  font-weight: 700;
}

.monster-name-text {
  display: block;
  width: 100%;
  font-weight: 800;
  color: #4d2f18;
}

.monster-table-block .reward-list li.recommended-part,
.monster-table-block .recommended-part {
  color: #c32525 !important;
  font-weight: 800;
}

@media (max-width: 920px) {
  .article-grid {
    grid-template-columns: 1fr;
  }

  .edition-columns {
    grid-template-columns: 1fr;
  }

  .wiki-hero h1 {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .brand-text {
    font-size: 16px;
  }

  .wiki-container {
    margin-top: 14px;
  }

  .wiki-hero,
  .wiki-block {
    padding: 14px;
  }

  .hero-updated {
    font-size: 10px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid-3 {
    grid-template-columns: 1fr;
  }

  .search-box {
    flex-direction: column;
    align-items: stretch;
  }

  .endfield-basic-table th,
  .endfield-basic-table td {
    padding: 6px 6px;
    font-size: 11px;
  }

  .endfield-char-icon {
    width: 56px;
    height: 56px;
  }

  .endfield-basic-icon {
    width: 18px;
    height: 18px;
  }

  .monster-table-block {
    border-radius: 12px;
  }

  .promotion-code-table-block {
    border-radius: 12px;
  }

  .minecraft-table-block {
    border-radius: 12px;
  }

  .monster-table-block table {
    min-width: 0;
  }

  .promotion-code-table-block table {
    min-width: 0;
  }

  .minecraft-table-block table {
    min-width: 0;
  }

  .monster-table-block th,
  .monster-table-block td {
    padding: 6px 6px;
    font-size: 11px;
  }

  .promotion-code-table-block th,
  .promotion-code-table-block td {
    padding: 6px 6px;
    font-size: 11px;
  }

  .minecraft-table-block th,
  .minecraft-table-block td {
    padding: 7px 6px;
    font-size: 11px;
  }

  .version-stat strong {
    font-size: 16px;
  }

  .guide-callout,
  .image-placeholder {
    padding: 12px;
  }

  .monster-table-block .reward-list {
    padding-left: 12px;
  }

  .monster-table-block .weak-point-list {
    padding-left: 0 !important;
  }

  .promotion-code-table-block .reward-list {
    padding-left: 12px;
  }

  .monster-table-block .reward-list li {
    margin-bottom: 2px;
  }

  .promotion-code-table-block .reward-list li {
    margin-bottom: 2px;
  }

  .monster-name-cell {
    gap: 4px;
  }

  .monster-name-image {
    max-width: 64px;
  }

  .weak-point-icon {
    width: 10px;
    height: 10px;
    flex-basis: 10px;
  }

  .monster-name-text {
    font-size: 11px;
  }

  .promotion-code-table-block td:nth-child(1) {
    font-weight: 800;
    color: #4d2f18;
  }

  .monster-table-block td.monster-empty-cell {
    padding: 8px 6px;
    color: #775843;
  }
}

/* ===== ダメージ計算ページ ===== */

.formula-title {
  margin: 22px 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: #7a4b27;
}

.formula-block {
  border: 1px solid #f0d4b8;
  border-radius: 10px;
  background: #fff7ef;
  padding: 14px 16px;
  overflow-x: auto;
}

.formula-line {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.9;
  color: #5c3a1e;
  white-space: nowrap;
}

.formula-steps {
  margin: 10px 0 0;
  padding-left: 22px;
  font-size: 13px;
  line-height: 1.9;
  color: #6b4526;
}

.formula-steps strong {
  color: #b8500f;
}

.formula-note {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: #6b4526;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.result-card {
  border: 1px solid #f0d4b8;
  border-radius: 12px;
  background: #fff7ef;
  padding: 14px 16px;
}

.result-card--primary {
  border-color: #d97a23;
  background: linear-gradient(160deg, #de7f27 0%, #b86417 100%);
}

.result-card--primary .result-label,
.result-card--primary .result-value {
  color: #fff;
}

.result-label {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  color: #8b623f;
}

.result-value {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  color: #5c3a1e;
  font-variant-numeric: tabular-nums;
}

.calc-details {
  margin-top: 18px;
  border: 1px solid #f0d4b8;
  border-radius: 12px;
  background: #fffdfa;
  padding: 12px 14px;
}

.calc-details > summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: #7a4b27;
}

.calc-columns {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.calc-column-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  color: #7a4b27;
}

.calc-step-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.calc-step {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 10px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff7ef;
  font-size: 12px;
  color: #6b4526;
}

.calc-step-label {
  font-weight: 700;
}

.calc-step-expression {
  grid-column: 1 / 2;
  font-size: 11px;
  color: #99714a;
  word-break: break-all;
}

.calc-step-value {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
  align-self: center;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #5c3a1e;
}

.calc-step.step-floor,
.calc-step.step-ceil {
  background: #ffeeda;
  border: 1px solid #f0d4b8;
}

.calc-step.step-ceil .calc-step-value,
.calc-step.step-floor .calc-step-value {
  color: #b8500f;
}

.input-group-title {
  margin: 20px 0 10px;
  font-size: 14px;
  font-weight: 800;
  color: #7a4b27;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.input-group-hint {
  font-size: 11px;
  font-weight: 500;
  color: #99714a;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}

.input-field {
  display: grid;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #7a4b27;
}

.input-field input {
  border: 1px solid #f0d4b8;
  border-radius: 8px;
  padding: 8px 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #5c3a1e;
  background: #fffdfa;
  font-variant-numeric: tabular-nums;
}

.input-field input:focus {
  outline: 2px solid #d97a23;
  outline-offset: 1px;
}

.revert-button {
  justify-self: start;
  border: 1px solid #f0d4b8;
  border-radius: 999px;
  padding: 3px 10px;
  background: #fff7ef;
  color: #b8500f;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.skill-layout {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.skill-list-wrap {
  display: grid;
  gap: 6px;
  max-height: 620px;
  overflow-y: auto;
  padding-right: 4px;
}

.skill-row {
  border: 1px solid #f0d4b8;
  border-radius: 10px;
  background: #fffdfa;
  padding: 8px 12px;
}

.skill-row.is-selected {
  border-color: #d97a23;
  background: #fff3e4;
}

.skill-row-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.skill-category-tag {
  border-radius: 999px;
  padding: 2px 8px;
  background: #f6e3d0;
  color: #8b623f;
  font-size: 11px;
  font-weight: 700;
}

.skill-name {
  flex: 1 1 auto;
  font-size: 13px;
  font-weight: 700;
  color: #5c3a1e;
}

.skill-note-tag {
  border-radius: 999px;
  padding: 2px 8px;
  background: #eee;
  color: #777;
  font-size: 10px;
  font-weight: 700;
}

.skill-level-select {
  border: 1px solid #f0d4b8;
  border-radius: 8px;
  padding: 4px 8px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  color: #5c3a1e;
  background: #fff;
}

.skill-effect-text {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: #6b4526;
}

.skill-empty {
  margin: 0;
  padding: 12px;
  font-size: 12px;
  color: #8b623f;
}

.skill-summary {
  border: 1px solid #f0d4b8;
  border-radius: 12px;
  background: #fffdfa;
  padding: 4px 14px 14px;
  position: sticky;
  top: 12px;
}

.contribution-group {
  margin-top: 10px;
}

.contribution-slot {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 800;
  color: #b8500f;
}

.contribution-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 3px;
}

.contribution-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  font-size: 12px;
  color: #6b4526;
}

.contribution-value {
  margin-left: auto;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #5c3a1e;
}

.contribution-note {
  flex-basis: 100%;
  font-size: 11px;
  color: #99714a;
}

.unmapped-title {
  margin: 16px 0 6px;
  font-size: 12px;
  font-weight: 800;
  color: #8b623f;
}

.unmapped-list {
  margin: 0;
  padding-left: 18px;
  font-size: 12px;
  line-height: 1.8;
  color: #6b4526;
}

.unmapped-note {
  margin: 6px 0 0;
  font-size: 11px;
  line-height: 1.7;
  color: #99714a;
}

.assumption-list {
  margin: 0;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.9;
  color: #6b4526;
}

.assumption-list strong {
  color: #b8500f;
}

@media (max-width: 720px) {
  .skill-layout {
    grid-template-columns: 1fr;
  }

  .skill-summary {
    position: static;
  }

  .formula-line {
    white-space: normal;
    word-break: break-word;
  }
}

/* 結果を常に見えるようにする追従バー */
.result-bar {
  position: sticky;
  top: 61px;
  z-index: 9;
  background: rgba(255, 247, 239, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f0d4b8;
}

.result-bar-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: baseline;
}

.result-bar-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.result-bar-label {
  font-size: 11px;
  font-weight: 700;
  color: #8b623f;
}

.result-bar-value {
  font-size: 18px;
  font-weight: 800;
  color: #5c3a1e;
  font-variant-numeric: tabular-nums;
}

.result-bar-item--primary .result-bar-label {
  color: #b8500f;
}

.result-bar-item--primary .result-bar-value {
  font-size: 24px;
  color: #b8500f;
}

.result-bar-item--sub .result-bar-value {
  font-size: 14px;
  color: #7a4b27;
}

.skill-note-tag--crit {
  background: #ffe0c4;
  color: #b8500f;
}

.skill-note-tag--cond {
  background: #e2eefb;
  color: #35618f;
}

.contribution-tag {
  border-radius: 999px;
  padding: 1px 6px;
  background: #ffe0c4;
  color: #b8500f;
  font-size: 10px;
  font-weight: 700;
}

.input-field select + input {
  margin-top: 4px;
}

@media (max-width: 720px) {
  .result-bar {
    top: 57px;
  }

  .result-bar-item--sub {
    display: none;
  }
}

/* 詳細設定・場合分け・スキル展開 */
.advanced-details {
  margin-top: 18px;
  border: 1px solid #f0d4b8;
  border-radius: 12px;
  background: #fffdfa;
  padding: 12px 14px;
}

.advanced-details > summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  color: #7a4b27;
}

.advanced-body {
  padding-top: 4px;
}

.scenario-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.scenario-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: baseline;
  padding: 7px 12px;
  border-radius: 8px;
  background: #fff7ef;
  font-size: 12px;
  color: #6b4526;
}

.scenario-label {
  font-weight: 700;
}

.scenario-probability {
  font-variant-numeric: tabular-nums;
  color: #99714a;
}

.scenario-damage {
  min-width: 60px;
  text-align: right;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #5c3a1e;
}

.skill-toggle {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 0;
  background: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.skill-toggle-mark {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  background: #f6e3d0;
  color: #8b623f;
  font-size: 12px;
  font-weight: 800;
}

.skill-level-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
  border-top: 1px dashed #f0d4b8;
  padding-top: 8px;
}

.skill-level-list li {
  display: flex;
  gap: 8px;
  font-size: 12px;
  line-height: 1.7;
  color: #6b4526;
}

.skill-level-list li.is-current {
  font-weight: 700;
  color: #b8500f;
}

.skill-level-tag {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 1px 8px;
  height: fit-content;
  background: #f6e3d0;
  color: #8b623f;
  font-size: 10px;
  font-weight: 700;
}

.skill-level-source a {
  font-size: 11px;
  color: #b8500f;
  text-decoration: underline;
}

/* ===== スケジュール（カレンダー） ===== */


.schedule-sub-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  color: #7a4b27;
}






/* 分類ごとの色 */
.cat-period { background: #6b7c93; }
.cat-event { background: #d97a23; }
.cat-surge { background: #c0392b; }
.cat-siege { background: #7d5ba6; }
.cat-milestone { background: #2e8b8b; }

.cat-border-period { border-left-color: #6b7c93 !important; }
.cat-border-event { border-left-color: #d97a23 !important; }
.cat-border-surge { border-left-color: #c0392b !important; }
.cat-border-siege { border-left-color: #7d5ba6 !important; }
.cat-border-milestone { border-left-color: #2e8b8b !important; }

.calendar-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.calendar-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.calendar-nav-button {
  width: 34px;
  height: 34px;
  border: 1px solid #f0d4b8;
  border-radius: 8px;
  background: #fff7ef;
  color: #7a4b27;
  font: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.calendar-nav-button:hover {
  background: #ffefdb;
}

.calendar-month {
  margin: 0;
  min-width: 8em;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  color: #5c3a1e;
  font-variant-numeric: tabular-nums;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #6b4526;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend-swatch {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.calendar-grid {
  border: 1px solid #f0d4b8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.cal-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #f9e7d3;
}

.cal-weekday {
  padding: 7px 4px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #7a4b27;
}

.cal-weekday--0 { color: #c0392b; }
.cal-weekday--6 { color: #2b6cb0; }

.cal-week {
  border-top: 1px solid #f4dfca;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.cal-day {
  border: 0;
  border-right: 1px solid #f7e8d9;
  padding: 6px 0 2px;
  background: #fff;
  font: inherit;
  text-align: center;
  cursor: pointer;
  min-height: 30px;
}

.cal-day:last-child {
  border-right: 0;
}

.cal-day.is-outside .cal-daynum {
  color: #cbb9a7;
}

.cal-day--0 .cal-daynum { color: #c0392b; }
.cal-day--6 .cal-daynum { color: #2b6cb0; }

.cal-daynum {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: #5c3a1e;
  font-variant-numeric: tabular-nums;
}

.cal-day.is-today .cal-daynum {
  background: linear-gradient(160deg, #de7f27 0%, #b86417 100%);
  color: #fff;
}

.cal-day.is-selected {
  background: #fff3e4;
}

.cal-day.is-selected .cal-daynum {
  outline: 2px solid #d97a23;
  outline-offset: 1px;
}

.cal-day.is-today.is-selected .cal-daynum {
  outline-color: #8a4a14;
}

.cal-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 0 2px 6px;
}

.cal-bar {
  min-width: 0;
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cal-bar.is-continued {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.cal-bar.is-continuing {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.cal-bar.is-point {
  border-radius: 999px;
}




.day-detail-empty {
  margin: 0;
  font-size: 12px;
  color: #8b623f;
}


.day-detail-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}



.entry-chip {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 2px 9px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.entry-list {
  display: grid;
  gap: 10px;
}

.entry-card {
  border: 1px solid #f0d4b8;
  border-left: 3px solid #d97a23;
  border-radius: 10px;
  background: #fffdfa;
  padding: 13px 15px;
}

.entry-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.entry-title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: #5c3a1e;
}

.entry-period {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: #b8500f;
  font-variant-numeric: tabular-nums;
}

.entry-summary {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: #6b4526;
}

.entry-meta-row {
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.entry-meta {
  font-size: 12px;
  color: #6b4526;
}

.entry-meta > span {
  margin-right: 6px;
  font-weight: 700;
  color: #8b623f;
}

.entry-notes {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 12px;
  line-height: 1.8;
  color: #8b623f;
}



.schedule-note {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.8;
  color: #8b623f;
}


@media (max-width: 640px) {
  .cal-bar {
    font-size: 0;
    padding: 3px 0;
  }

  .cal-bar::before {
    content: "";
    display: block;
    height: 4px;
  }

  .calendar-month {
    font-size: 15px;
  }
}

/* ===== 日付の詳細モーダル ===== */

.day-dialog {
  width: min(560px, calc(100vw - 32px));
  max-height: min(80vh, 720px);
  padding: 0;
  border: 1px solid #f0d4b8;
  border-radius: 14px;
  background: #fffdfa;
  color: #3a2413;
  box-shadow: 0 24px 60px rgba(107, 61, 26, 0.28);
}

.day-dialog::backdrop {
  background: rgba(58, 36, 19, 0.45);
}

.day-dialog-head {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #f0d4b8;
  background: #fff7ef;
}

.day-dialog-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #5c3a1e;
}

.day-dialog-close {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid #f0d4b8;
  border-radius: 8px;
  background: #fff;
  color: #7a4b27;
  font: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.day-dialog-close:hover {
  background: #ffefdb;
}

.day-dialog-body {
  padding: 14px 16px 18px;
  display: grid;
  gap: 10px;
  overflow-y: auto;
}

.day-detail-empty {
  margin: 0;
  font-size: 13px;
  color: #8b623f;
}

/* 公式ページがあるカードはリンクになる */
a.entry-card.is-linked {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

a.entry-card.is-linked:hover {
  background: #fff5ea;
  box-shadow: 0 6px 18px rgba(135, 78, 29, 0.12);
}

.entry-official {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: #b8500f;
}

.entry-official span {
  margin-left: 4px;
}

.entry-official.is-pending {
  color: #9c8878;
  font-weight: 500;
}

/* 広告枠。本文の下に置く */
.ad-slot {
  margin: 28px 0 0;
  overflow: hidden;
}

.ad-slot ins {
  display: block;
}

/* 説明文のブロック */
.schedule-body {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.95;
  color: #5c3a1e;
}

.schedule-body strong {
  color: #b8500f;
}

.schedule-body-list {
  margin: 0 0 18px;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.95;
  color: #5c3a1e;
}

.schedule-body-list strong {
  color: #b8500f;
}

.article-card.is-disabled {
  opacity: 0.62;
  cursor: default;
}

.article-card.is-disabled:hover {
  transform: none;
  box-shadow: none;
}

/* 番号付きの手順リスト */
ol.schedule-body-list {
  list-style: decimal;
}
