@charset "UTF-8";
/*
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template: cocoon-master
Version: 1.1.3
*/

/* ==================================================
  スロッターの道具箱 共通デザイン
================================================== */

:root {
  --slot-main: #1E3A5F;
  --slot-accent: #D6A84F;
  --slot-bg: #F7F8FA;
  --slot-text: #222222;
  --slot-border: #DDE3EA;
  --slot-notice-bg: #FFF7E6;
  --slot-notice-accent: #E0A12B;
  --slot-white: #FFFFFF;
  --slot-muted: #667085;
}

/* 全体 */
body {
  background: var(--slot-bg);
  color: var(--slot-text);
}

/* リンク */
a {
  color: var(--slot-main);
}

a:hover {
  color: var(--slot-accent);
}

/* ==================================================
  ヘッダー・グローバルナビ
================================================== */

/* ヘッダー背景 */
.header-container,
#header {
  background: var(--slot-white);
}

/* ロゴ周辺 */
.logo-header {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* ヘッダーロゴ画像 */
.logo-image {
  max-height: 58px;
  width: auto;
}

/* グローバルナビ */
.navi,
#navi,
.navi-in {
  background: var(--slot-white);
}

.navi-in > ul > li > a {
  color: var(--slot-main);
  font-weight: 700;
}

.navi-in > ul > li > a:hover {
  color: var(--slot-accent);
  background: transparent;
}

/* ==================================================
  フッター
================================================== */

.footer,
.footer-container {
  background: var(--slot-main);
  color: var(--slot-white);
}

.footer a,
.footer-container a {
  color: var(--slot-white);
}

.footer a:hover,
.footer-container a:hover {
  color: var(--slot-accent);
}

/* フッターロゴを少し控えめに */
.footer .logo-image {
  max-height: 48px;
  width: auto;
}

/* ==================================================
  記事本文 共通
================================================== */

.article {
  color: var(--slot-text);
}

/* H2 */
.article h2 {
  border-left: 6px solid var(--slot-accent);
  border-bottom: 1px solid var(--slot-border);
  background: var(--slot-white);
  color: var(--slot-main);
  padding: 14px 16px;
  border-radius: 6px;
}

/* H3 */
.article h3 {
  border-left: 4px solid var(--slot-main);
  color: var(--slot-main);
  padding-left: 10px;
}

/* H4 */
.article h4 {
  color: var(--slot-main);
}

/* 表 */
.article table {
  width: 100%;
  border-collapse: collapse;
  background: var(--slot-white);
  border: 1px solid var(--slot-border);
}

.article th {
  background: var(--slot-main);
  color: var(--slot-white);
  border: 1px solid var(--slot-border);
  font-weight: 700;
}

.article td {
  border: 1px solid var(--slot-border);
  color: var(--slot-text);
}

.article th,
.article td {
  padding: 10px 12px;
}

/* 表の横スクロール対策 */
.wp-block-table,
.table-scroll {
  overflow-x: auto;
}

/* ==================================================
  機種記事テンプレ用ボックス
================================================== */

.slot-machine-article {
  color: var(--slot-text);
}

/* 冒頭の要点ボックス */
.machine-summary-box {
  background: var(--slot-white);
  border: 1px solid var(--slot-border);
  border-top: 5px solid var(--slot-main);
  border-radius: 12px;
  padding: 16px;
  margin: 24px 0;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.06);
}

.machine-summary-box > p:first-child {
  margin-top: 0;
  color: var(--slot-main);
  font-size: 1.1em;
}

/* ポイントボックス */
.point-box {
  background: var(--slot-white);
  border: 1px solid var(--slot-border);
  border-left: 5px solid var(--slot-accent);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 20px 0;
}

/* 注意事項ボックス */
.notice-box {
  background: var(--slot-notice-bg);
  border: 1px solid var(--slot-notice-accent);
  border-left: 5px solid var(--slot-notice-accent);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 20px 0;
}

.notice-box p:last-child,
.point-box p:last-child {
  margin-bottom: 0;
}

/* ツール設置エリア */
.tool-placeholder {
  background: var(--slot-white);
  border: 2px dashed var(--slot-border);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}

.tool-placeholder strong {
  color: var(--slot-main);
}

/* ==================================================
  FAQ
================================================== */

.rank-math-faq.faq-container {
  margin: 24px 0;
}

.faq-item {
  background: var(--slot-white);
  border: 1px solid var(--slot-border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  background: var(--slot-main);
  color: var(--slot-white);
  font-weight: 700;
  padding: 12px 14px;
}

.faq-answer {
  padding: 14px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ==================================================
  ボタン・CTA
================================================== */

.slot-button,
.article .slot-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--slot-main);
  color: var(--slot-white) !important;
  border-radius: 999px;
  padding: 10px 18px;
  margin: 8px 0 12px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none !important;
  box-shadow: 0 2px 6px rgba(30, 58, 95, 0.16);
}

.slot-button:hover,
.article .slot-button:hover {
  background: var(--slot-accent);
  color: var(--slot-white) !important;
  text-decoration: none !important;
}

/* スマホでは少し余裕を持たせる */
@media screen and (max-width: 834px) {
  .slot-button,
  .article .slot-button {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    font-size: 0.95em;
    text-align: center;
  }
}

/* ==================================================
  カード系
================================================== */

.entry-card-wrap,
.related-entry-card-wrap {
  border-radius: 12px;
}

.entry-card-wrap:hover,
.related-entry-card-wrap:hover {
  box-shadow: 0 4px 14px rgba(30, 58, 95, 0.12);
}

/* ==================================================
  スマホ調整
================================================== */

@media screen and (max-width: 834px) {
  .logo-image {
    max-height: 44px;
    width: auto;
  }

  .article h2 {
    padding: 12px 14px;
    font-size: 1.15em;
  }

  .article th,
  .article td {
    padding: 8px 10px;
    font-size: 0.92em;
  }

  .machine-summary-box,
  .notice-box,
  .point-box {
    padding: 12px;
    border-radius: 10px;
  }
}

/* ==================================================
  設定差チェックツール一覧
================================================== */

.tool-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.tool-list-card {
  background: var(--slot-white);
  border: 1px solid var(--slot-border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.06);
}

.tool-list-card h3 {
  margin-top: 8px;
}

.tool-status {
  display: inline-block;
  margin: 0 0 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.82em;
  font-weight: 700;
}

.status-ready {
  background: var(--slot-notice-bg);
  color: var(--slot-notice-accent);
  border: 1px solid var(--slot-notice-accent);
}

.status-planned {
  background: #EEF2F6;
  color: var(--slot-main);
  border: 1px solid var(--slot-border);
}

@media screen and (max-width: 834px) {
  .tool-list-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tool-list-card {
    padding: 14px;
  }
}

/* ==================================================
  固定ページ：ページタイトル・日付を非表示
================================================== */

body.page .article-header,
body.page .entry-header,
body.page .entry-title,
body.page .date-tags,
body.page .post-date,
body.page .post-update {
  display: none !important;
}

/* ==================================================
  ヘッダーメニュー：カテゴリー説明文を非表示
================================================== */

#navi .item-description,
#navi .caption-wrap .item-description,
.header-container .item-description {
  display: none !important;
}

/* ==================================================
  ヘッダーメニュー：PC表示を1行に整える
================================================== */

@media screen and (min-width: 1024px) {
  #navi .navi-in > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
  }

  #navi .navi-in > ul > li {
    width: auto !important;
    flex: 0 0 auto;
  }

  #navi .navi-in > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    white-space: nowrap;
    min-width: auto;
  }

  #navi .item-label {
    white-space: nowrap;
    font-size: 0.95em;
    font-weight: 700;
  }
}

/* ==================================================
  記事・固定ページ：H2見出しの余白調整
================================================== */

.article h2 {
  margin-top: 30px;
  margin-bottom: 14px;
}

/* H2直後の要素との間隔を少し自然に */
.article h2 + p,
.article h2 + div,
.article h2 + table,
.article h2 + ul {
  margin-top: 0;
}

/* スマホではさらに少しだけ詰める */
@media screen and (max-width: 834px) {
  .article h2 {
    margin-top: 26px;
    margin-bottom: 12px;
  }
}


/* ==================================================
  トップページ：セクション・H2余白を少しコンパクトに
================================================== */

.slot-home-page .home-section {
  margin: 26px 0 !important;
}

.slot-home-page .home-section > h2 {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}

/* H2直後のボックス・グリッドとの余白を詰める */
.slot-home-page .home-section > h2 + .home-profile-box,
.slot-home-page .home-section > h2 + .home-card-grid,
.slot-home-page .home-section > h2 + .home-tool-area,
.slot-home-page .home-section > h2 + .home-new-list {
  margin-top: 0 !important;
}

/* スマホではさらに少しだけ詰める */
@media screen and (max-width: 834px) {
  .slot-home-page .home-section {
    margin: 22px 0 !important;
  }

  .slot-home-page .home-section > h2 {
    margin-bottom: 8px !important;
  }
}


/* ==================================================
  共通：注意・免責メッセージボックス
================================================== */

.slot-common-notice {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  background: #fffaf0;
  border: 1px solid var(--slot-notice-accent);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 28px 0;
  box-shadow: none;
}

.slot-common-notice-icon {
  display: flex;
  justify-content: center;
  color: var(--slot-notice-accent);
  font-size: 28px;
  line-height: 1;
  padding-top: 4px;
}

/* タイトルは現状維持 */
.slot-common-notice-title {
  margin: 0 0 4px;
  color: var(--slot-main);
  font-size: 1.08em;
  font-weight: 700;
  line-height: 1.4;
}


/* 共通注意ボックスの本文 */
.slot-common-notice-text p {
  margin: 0 0 4px;
  font-size: 0.88em;
  line-height: 1.7;
}

.slot-common-notice-text p:last-child {
  margin-bottom: 0;
}

.slot-common-notice-text strong {
  color: #b7791f;
}

/* トップページや固定ページで少し横長に見せる場合 */
.site-about-notice {
  margin-top: 30px;
}

/* スマホ */
@media screen and (max-width: 834px) {
  .slot-common-notice {
    grid-template-columns: 32px 1fr;
    gap: 10px;
    padding: 12px 13px;
    margin: 24px 0;
  }

  .slot-common-notice-icon {
    font-size: 23px;
    padding-top: 3px;
  }

  .slot-common-notice-title {
    font-size: 1.02em;
  }

  .slot-common-notice-text p {
    font-size: 0.86em;
    line-height: 1.65;
  }
}


/* ==================================================
  画像引用元表記
================================================== */

.image-source {
  margin: 6px 0 18px;
  color: var(--slot-muted);
  font-size: 0.82em;
  line-height: 1.5;
}

.image-source a {
  color: var(--slot-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.image-source a:hover {
  color: var(--slot-accent);
}

/* ==================================================
  アイキャッチ画像：キャプションを画像下に表示
================================================== */

.article .eye-catch-wrap figcaption,
.article .eye-catch-wrap .wp-caption-text,
.eye-catch-wrap .eye-catch-caption {
  position: static !important;
  display: block !important;
  background: transparent !important;
  color: var(--slot-muted) !important;
  text-shadow: none !important;
  font-size: 0.82em;
  line-height: 1.5;
  padding: 6px 0 0 !important;
  margin: 0 0 16px !important;
  text-align: left;
}

/* キャプション付きでも画像自体は通常表示 */
.article .eye-catch-wrap {
  overflow: visible !important;
}


/* ==================================================
  期待値表
================================================== */

.ev-table th,
.ev-table td {
  white-space: nowrap;
  text-align: right;
}

.ev-table th:first-child,
.ev-table td:first-child {
  text-align: center;
  font-weight: 700;
}

.ev-table .ev-negative {
  color: #d93025;
  font-weight: 700;
}

.ev-table .ev-hourly-good {
  color: #1e5bb8;
  font-weight: 700;
}

.ev-table-note {
  margin: 8px 0 18px;
  color: var(--slot-muted);
  font-size: 0.86em;
  line-height: 1.6;
}

/* ==================================================
  期待値表：文字サイズ調整
================================================== */

.ev-table {
  font-size: 0.92em;
}

.ev-table th,
.ev-table td {
  padding: 8px 10px;
  white-space: nowrap;
  text-align: right;
}

.ev-table th:first-child,
.ev-table td:first-child {
  text-align: center;
  font-weight: 700;
}

@media screen and (max-width: 834px) {
  .ev-table {
    font-size: 0.86em;
  }

  .ev-table th,
  .ev-table td {
    padding: 7px 8px;
  }
}

/* ==================================================
  FAQ：下段開閉式アコーディオン
================================================== */

.faq-container {
  margin: 22px 0;
}

.faq-container .faq-item {
  display: block !important;
  width: 100% !important;
  border: 1px solid var(--slot-border);
  border-radius: 10px;
  background: var(--slot-white);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-container .faq-question {
  display: block !important;
  width: 100% !important;
  position: relative;
  box-sizing: border-box;
  padding: 13px 44px 13px 44px;
  color: var(--slot-main);
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  background: #f8fafc;
}

.faq-container .faq-question::before {
  content: "Q";
  position: absolute;
  top: 13px;
  left: 16px;
  color: var(--slot-accent);
  font-weight: 700;
}

.faq-container .faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: var(--slot-accent);
  font-size: 1.35em;
  font-weight: 700;
  line-height: 1;
}

.faq-container .faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-container .faq-answer {
  display: none !important;
  width: 100% !important;
  box-sizing: border-box;
  padding: 14px 16px 16px 44px;
  border-top: 1px solid var(--slot-border);
  background: #fff;
  position: relative;
}

.faq-container .faq-item.is-open .faq-answer {
  display: block !important;
}

.faq-container .faq-answer::before {
  content: "A";
  position: absolute;
  top: 14px;
  left: 16px;
  color: var(--slot-main);
  font-weight: 700;
}

.faq-container .faq-answer p {
  margin: 0;
  line-height: 1.75;
}

@media screen and (max-width: 834px) {
  .faq-container .faq-question {
    padding: 12px 40px 12px 40px;
    font-size: 0.95em;
  }

  .faq-container .faq-question::before {
    top: 12px;
    left: 14px;
  }

  .faq-container .faq-answer {
    padding: 12px 13px 14px 40px;
    font-size: 0.92em;
  }

  .faq-container .faq-answer::before {
    top: 12px;
    left: 14px;
  }
}

/* ==================================================
  記事内の軽い装飾パーツ
================================================== */

.section-guide-box {
  margin: 16px 0 22px;
  padding: 13px 15px;
  border: 1px solid var(--slot-border);
  border-left: 5px solid var(--slot-accent);
  border-radius: 10px;
  background: #f8fafc;
}

.section-guide-title {
  margin: 0 0 7px;
  color: var(--slot-main);
  font-weight: 700;
  line-height: 1.5;
}

.section-guide-title i {
  color: var(--slot-accent);
  margin-right: 5px;
}

.section-guide-box ul {
  margin: 0;
  padding-left: 1.2em;
  font-size: 0.9em;
  line-height: 1.7;
}

.section-guide-box li {
  margin-bottom: 3px;
}

.section-guide-box li:last-child {
  margin-bottom: 0;
}

.ev-condition-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 10px 0 12px;
}

.ev-condition-badges span {
  display: inline-block;
  padding: 4px 9px;
  border: 1px solid var(--slot-border);
  border-radius: 999px;
  background: #fff;
  color: var(--slot-main);
  font-size: 0.8em;
  font-weight: 700;
  line-height: 1.4;
}

.official-data-box {
  margin: 16px 0 22px;
  padding: 14px 16px;
  border: 1px solid rgba(214, 168, 79, 0.45);
  border-radius: 10px;
  background: #fffaf0;
}

.official-data-title {
  margin: 0 0 6px;
  color: var(--slot-main);
  font-weight: 700;
  line-height: 1.5;
}

.official-data-title i {
  color: var(--slot-accent);
  margin-right: 5px;
}

.official-data-box p {
  margin: 0;
  font-size: 0.9em;
  line-height: 1.75;
}

@media screen and (max-width: 834px) {
  .section-guide-box,
  .official-data-box {
    padding: 12px 13px;
  }

  .section-guide-box ul,
  .official-data-box p {
    font-size: 0.86em;
  }

  .ev-condition-badges span {
    font-size: 0.76em;
  }
}

/* ==================================================
  設定差チェックツール
================================================== */

.slot-setting-checker {
  margin: 24px 0 32px;
}

.setting-checker-box {
  padding: 18px;
  border: 1px solid var(--slot-border);
  border-radius: 14px;
  background: var(--slot-white, #fff);
  box-shadow: 0 6px 18px rgba(30, 58, 95, 0.06);
}

.setting-checker-head {
  margin-bottom: 14px;
}

.setting-checker-kicker {
  display: inline-block;
  margin: 0 0 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(214, 168, 79, 0.14);
  color: var(--slot-main);
  font-size: 0.78em;
  font-weight: 700;
  line-height: 1.4;
}

.setting-checker-title {
  margin: 0 0 6px;
  color: var(--slot-main);
  font-size: 1.18em;
  font-weight: 800;
  line-height: 1.45;
}

.setting-checker-lead {
  margin: 0;
  color: var(--slot-text, #222);
  font-size: 0.93em;
  line-height: 1.75;
}

.setting-checker-notice {
  margin: 14px 0 16px;
  padding: 11px 13px;
  border-left: 4px solid var(--slot-accent);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--slot-text, #222);
  font-size: 0.88em;
  line-height: 1.7;
}

.setting-checker-notice p {
  margin: 0;
}

.setting-checker-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.setting-checker-input-box {
  padding: 12px;
  border: 1px solid var(--slot-border);
  border-radius: 12px;
  background: #f8fafc;
}

.setting-checker-input-box label {
  display: block;
  margin-bottom: 6px;
  color: var(--slot-main);
  font-size: 0.9em;
  font-weight: 700;
  line-height: 1.4;
}

.setting-checker-input-box input,
.setting-checker-input-box select {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  background: #fff;
  font-size: 16px;
  line-height: 1.4;
}

.setting-checker-help {
  margin: 6px 0 0;
  color: var(--slot-muted);
  font-size: 0.78em;
  line-height: 1.5;
}

.setting-checker-button-row {
  display: flex;
  gap: 10px;
  margin: 16px 0 0;
}

.setting-checker-button,
.setting-checker-reset {
  flex: 1;
  padding: 11px 14px;
  border: none;
  border-radius: 999px;
  font-size: 0.95em;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.setting-checker-button {
  background: var(--slot-main);
  color: #fff;
}

.setting-checker-reset {
  background: #e8edf3;
  color: var(--slot-main);
}

.setting-checker-button:hover,
.setting-checker-reset:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.setting-checker-error {
  display: none;
  margin: 14px 0 0;
  padding: 10px 12px;
  border: 1px solid #fecdd3;
  border-radius: 10px;
  background: #fff1f2;
  color: #b42318;
  font-size: 0.9em;
  font-weight: 700;
  line-height: 1.6;
}

.setting-checker-result {
  display: none;
  margin-top: 18px;
}

.setting-checker-result-box {
  padding-top: 2px;
}

.setting-checker-judgement {
  margin-bottom: 14px;
  padding: 15px;
  border: 1px solid rgba(214, 168, 79, 0.45);
  border-radius: 12px;
  background: #fffaf0;
}

.setting-checker-judgement-label {
  margin: 0 0 5px;
  color: var(--slot-muted);
  font-size: 0.82em;
  font-weight: 700;
}

.setting-checker-judgement-title {
  margin: 0 0 6px;
  color: var(--slot-main);
  font-size: 1.25em;
  font-weight: 800;
  line-height: 1.4;
}

.setting-checker-judgement-text {
  margin: 0;
  color: var(--slot-text, #222);
  font-size: 0.92em;
  line-height: 1.75;
}

.setting-checker-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 0 0 14px;
}

.setting-checker-summary div,
.setting-checker-plate-summary div {
  padding: 10px 11px;
  border: 1px solid var(--slot-border);
  border-radius: 10px;
  background: #f8fafc;
}

.setting-checker-summary span,
.setting-checker-plate-summary span {
  display: block;
  margin-bottom: 4px;
  color: var(--slot-muted);
  font-size: 0.78em;
  line-height: 1.4;
}

.setting-checker-summary strong,
.setting-checker-plate-summary strong {
  display: block;
  color: var(--slot-main);
  font-size: 1em;
  line-height: 1.45;
}

.setting-checker-card {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--slot-border);
  border-radius: 12px;
  background: #fff;
}

.setting-checker-card-title {
  margin: 0 0 10px;
  color: var(--slot-main);
  font-size: 1em;
  font-weight: 800;
  line-height: 1.5;
}

.setting-checker-dist-head {
  display: grid;
  grid-template-columns: 52px 80px 1fr 58px;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
  color: var(--slot-muted);
  font-size: 0.76em;
  font-weight: 700;
}

.setting-checker-dist-row {
  display: grid;
  grid-template-columns: 52px 80px 1fr 58px;
  gap: 8px;
  align-items: center;
  padding: 7px 0;
  border-top: 1px solid #eef2f7;
}

.setting-checker-dist-row:first-child {
  border-top: none;
}

.setting-checker-dist-label {
  color: var(--slot-main);
  font-weight: 700;
  line-height: 1.4;
}

.setting-checker-dist-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--slot-muted);
  font-size: 0.78em;
  line-height: 1.3;
}

.setting-checker-bar-wrap {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8edf3;
}

.setting-checker-bar {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: var(--slot-accent);
  transition: width 0.25s ease;
}

.setting-checker-dist-value {
  text-align: right;
  color: var(--slot-main);
  font-size: 0.86em;
  font-weight: 700;
  line-height: 1.4;
}

.setting-checker-dist-row.is-excluded {
  opacity: 0.52;
}

.setting-checker-dist-row.is-excluded .setting-checker-bar {
  width: 0 !important;
}

.setting-checker-plate-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.setting-checker-comments {
  margin: 0;
  padding-left: 1.2em;
  color: var(--slot-text, #222);
  font-size: 0.9em;
  line-height: 1.75;
}

.setting-checker-comments li {
  margin-bottom: 4px;
}

.setting-checker-comments li:last-child {
  margin-bottom: 0;
}

.setting-checker-disclaimer,
.setting-checker-footnote {
  margin: 12px 0 0;
  color: var(--slot-muted);
  font-size: 0.84em;
  line-height: 1.75;
}

.setting-checker-footnote {
  padding-top: 12px;
  border-top: 1px dashed var(--slot-border);
}

.setting-checker-footnote p {
  margin: 0;
}

@media screen and (max-width: 834px) {
  .setting-checker-box {
    padding: 14px;
    border-radius: 12px;
  }

  .setting-checker-title {
    font-size: 1.08em;
  }

  .setting-checker-lead,
  .setting-checker-notice {
    font-size: 0.86em;
  }

  .setting-checker-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .setting-checker-button-row {
    flex-direction: column;
  }

  .setting-checker-summary {
    grid-template-columns: 1fr 1fr;
  }

  .setting-checker-summary div:first-child {
    grid-column: 1 / -1;
  }

  .setting-checker-card {
    padding: 12px;
  }

  .setting-checker-dist-head,
  .setting-checker-dist-row {
    grid-template-columns: 46px 68px minmax(90px, 1fr) 54px;
    gap: 6px;
  }

  .setting-checker-dist-head {
    font-size: 0.7em;
  }

  .setting-checker-dist-label {
    font-size: 0.84em;
  }

  .setting-checker-dist-meta {
    font-size: 0.7em;
  }

  .setting-checker-dist-value {
    font-size: 0.78em;
  }

  .setting-checker-plate-summary {
    grid-template-columns: 1fr;
  }

  .setting-checker-comments {
    font-size: 0.84em;
  }
}
