@charset "utf-8";

/*このようなご相談をいただいています*/

/* ========================================================
   パターン C: インラインテキスト型 CSS
   ======================================================== */
/* リセット・共通設定 */
.sol-table-wrapper *, 
.sol-table-wrapper *::before, 
.sol-table-wrapper *::after {
  box-sizing: border-box;
}

.sol-table-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* PC用レイアウト (デフォルト) */
.sol-table-header {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  text-align: center;
  font-weight: bold;
}

.sol-table-th-theme {
  width: 36%;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
}

.sol-table-th-content {
  width: 64%;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
}

.sol-table-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sol-table-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.sol-table-theme-box {
  width: 36%;
  background: #000;
  color: #fff;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.4;
}

.sol-table-content-box {
  width: 64%;
  border: 1px solid #ccc;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.sol-table-category {
  display: block;
  margin-bottom: 4px;
}

.sol-table-title {
  margin: 0;
  font-weight: bold;
}

.sol-table-text {
  margin: 0;
  line-height: 1.6;
  position: relative;
  padding-left: 1.2em;
}

.sol-table-text::before {
  content: "- ";
  position: absolute;
  left: 0;
  top: 0;
}

/* PC表示時はSP用ラベルを非表示 */
.sol-table-prefix {
  display: none;
}

/* --------------------------------------------------------
   SP用スタイル (画面幅 768px 以下)
   -------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .sol-table-header {
    display: none;
  }

  .sol-table-row {
    flex-direction: column;
    gap: 0;
  }

  .sol-table-theme-box {
    width: 100%;
    padding: 16px;
    text-align: left;
    align-items: flex-start;
  }

  .sol-table-content-box {
    width: 100%;
    border-top: none;
    padding: 16px;
  }

  /* SP表示時のみインラインラベルを表示 */
  .sol-table-prefix {
    display: block;
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-bottom: 6px;
  }
}



/*100億企業化ロードマップ構築プロジェクトとは*/

/* ルートコンテナ */
.sol-rm-section {
  width: 100%;
  box-sizing: border-box;
}

.sol-rm-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}

/* カラム比率の指定（左：右 ≒ 1：1.4） */
.sol-rm-column-left {
  flex: 0.9;
}

.sol-rm-column-right {
  flex: 1.5;
}

/* 見出しスタイル（■アイコン表現付き） */
.sol-rm-title {
  display: flex;
  align-items: center;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 8px 0;
  padding: 0;
}

.sol-rm-title::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background-color: #333333;
  margin-right: 8px;
  flex-shrink: 0;
}

/* リスト部分 */
.sol-rm-list {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0 0 0 1.2em;
}

.sol-rm-list li {
  position: relative;
  line-height: 1.5;
  margin-bottom: 4px;
}

/* リストの先頭「-」マーク */
.sol-rm-list li::before {
  content: "-";
  position: absolute;
  left: -1em;
}

/* 画像エリア */
.sol-rm-image-wrapper {
  width: 100%;
}

.sol-rm-image {
  width: 100%;
  height: auto;
  display: block;
}

/* レスポンシブ対応（スマホ・タブレット表示） */
@media screen and (max-width: 767px) {
  .sol-rm-container {
    flex-direction: column;
    gap: 40px;
  }

  .sol-rm-column-left,
  .sol-rm-column-right {
    flex: none;
    width: 100%;
  }
}



/*成長を阻む“4つの依存”から脱却し、次の経営ステージへ*/

/* =============================================================
   100億企業化® 課題対策メニュー コンポーネント用CSS
   ※ font-family, font-size の指定は含まれていません
   ※ border-radius（角丸）は使用していません
============================================================= */

.sol-tbl-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* PC用 ヘッダー行 */
.sol-tbl-header {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  gap: 16px;
  margin-bottom: 12px;
  align-items: end;
  text-align: center;
}

.sol-tbl-header-title {
  margin: 0;
  padding: 0 0 8px 0;
  font-weight: bold;
  color: #111827;
  line-height: 1.4;
  border-bottom: 2px solid #8c8c8c;
}

.sol-tbl-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sol-tbl-row {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  gap: 16px;
  align-items: stretch;
}

/* SP用ラベル（PC表示時は非表示） */
.sol-tbl-sp-label {
  display: none;
}

.sol-tbl-col {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.sol-tbl-theme {
  background: linear-gradient(90deg, #8198c0 0%, #e0ccce 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  font-weight: bold;
  box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  height: 100%;
  letter-spacing: -0.5px;
}

.sol-tbl-bg {
  border: 1px solid #71717a;
  padding: 16px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  line-height: 1.6;
  box-sizing: border-box;
  color: #18181b;
  height: 100%;
}

/* ぶら下げインデント */
.sol-tbl-bg-text {
  padding-left: 0.8em;
  text-indent: -0.8em;
}

.sol-tbl-solutions-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  height: 100%;
}

.sol-tbl-solution-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.sol-tbl-arrow {
  color: #71717a;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  font-weight: bold;
}

.sol-tbl-solution-box {
  flex: 1;
  height: 100%;
  background-color: #f4f4f5;
  border: 1px solid #d4d4d8;
  padding: 10px 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  color: #18181b;
  line-height: 1.4;
}

.sol-tbl-down-arrow-wrap {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  gap: 16px;
  margin: 16px 0 8px 0;
}

.sol-tbl-down-arrow {
  grid-column: 3;
  justify-self: center;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #71717a;
  margin-left: 28px;
}

.sol-tbl-footer-banner {
  background-color: #000000;
  color: #ffffff;
  padding: 14px 16px;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  box-sizing: border-box;
}

/* レスポンシブ表示設定 (タブレット・スマートフォン対応) */
@media (max-width: 860px) {
  .sol-tbl-header {
    display: none;
  }

  .sol-tbl-down-arrow-wrap {
    display: flex;
    justify-content: center;
  }

  .sol-tbl-down-arrow {
    grid-column: auto;
    margin-left: 0;
  }

  .sol-tbl-row {
    grid-template-columns: 1fr;
    gap: 16px;
    background-color: #ffffff;
    padding: 16px;
    border: 1px solid #e4e4e7;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  /* SP表示時に表示される各ラベル見出し */
  .sol-tbl-sp-label {
    display: block;
    font-weight: bold;
    color: #3f3f46;
    margin-bottom: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid #d4d4d8;
    line-height: 1.4;
    text-align: center;
  }

  .sol-tbl-theme {
    padding: 12px;
  }

  .sol-tbl-arrow {
    transform: rotate(90deg);
    width: auto;
    height: 20px;
    margin: 2px auto;
  }

  /* 2番目以降のソリューション行の矢印を非表示にし、最上部1つのみ残す */
  .sol-tbl-solution-row:nth-child(n+2) .sol-tbl-arrow {
    display: none;
  }

  .sol-tbl-solution-row {
    flex-direction: column;
  }

  .sol-tbl-solution-box {
    width: 100%;
    padding: 12px;
  }
}



/*ロードマップの内容*/

/* コンテナ領域 */
/* コンテナ（既存CSSの影響を受けないようリセット処理を同梱） */
.sys-sol-v2-container {
  display: block;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  box-sizing: border-box;
  color: #5e5a5a;;
}

/* 見出し */
.sys-sol-v2-title {
  display: block;
  padding: 0;
  border: none;
  background: none;
  line-height: 1.4;
}

/* リスト領域（既存のulスタイル・黒丸や■を強制リセット） */
ul.sys-sol-v2-list {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* リストアイテム */
ul.sys-sol-v2-list > li.sys-sol-v2-item {
  display: block;
  position: relative;
  list-style: none !important;
  padding: 0 0 0 1.5em;
  line-height: 1.6;
  color: #333333;
}

ul.sys-sol-v2-list > li.sys-sol-v2-item:last-child {
  margin-bottom: 0;
}

/* リストアイテムの頭記号（ハイフン「-」） */
ul.sys-sol-v2-list > li.sys-sol-v2-item::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: #333333;
  display: inline-block;
  margin: 0;
  padding: 0;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  
  
  ul.sys-sol-v2-list > li.sys-sol-v2-item {
    margin-bottom: 10px;
  }
}




.report-toc-section {
  width: 100%;
  box-sizing: border-box;
}

.report-toc-section *,
.report-toc-section *::before,
.report-toc-section *::after {
  box-sizing: border-box;
}

/* 縦並びコンテナ (上が目次、下が画像) */
.report-toc-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* 上側：目次部分 */
.report-toc-content {
  width: 100%;
  background-color: #eeeeee;
  padding: 0;
}

/* ヘッダータイトル */
.report-toc-title {
  background: linear-gradient(90deg, #9caec1 0%, #d2b2be 100%);
  color: #ffffff;
  padding: 12px 20px;
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

/* 目次本文エリア */
.report-toc-body {
  padding: 20px 24px 28px 24px;
}

/* 目次を2列に並べるコンテナ */
.report-toc-columns {
  display: flex;
  width: 100%;
}

/* 各カラム */
.report-toc-col {
  flex: 1;
  min-width: 0;
}

/* 左カラム（1〜5）：PC表示時のみ右側に縦の仕切り線を付与 */
.report-toc-col:first-child {
  border-right: 1px solid #bbbbbb;
  padding-right: 28px;
  margin-right: 28px;
}

/* 親リスト */
.report-toc-list {
  margin: 0;
  padding: 0;
  list-style: none !important;
  color: #222222;
}

.report-toc-item {
  margin-bottom: 12px;
}

.report-toc-item:last-child {
  margin-bottom: 0;
}

/* 親項目の番号＋テキスト */
.report-toc-item-header {
  display: flex !important;
  align-items: flex-start !important;
  line-height: 1.4;
  font-weight: 700;
}

.report-toc-num {
  flex-shrink: 0;
  margin-right: 0.4em;
}

.report-toc-item-title {
  flex: 1;
}

/* 子リスト（箇条書き） */
.report-toc-sublist {
  margin: 6px 0 8px 0;
  padding-left: 1.5em;
  list-style: none !important;
}

.report-toc-subitem {
  display: flex !important;
  align-items: flex-start !important;
  margin-bottom: 4px;
  line-height: 1.4;
  font-weight: 400;
  color: #333333;
}

.report-toc-subitem:last-child {
  margin-bottom: 0;
}

/* 「・」の表示設定 */
.report-toc-bullet {
  flex-shrink: 0;
  margin-right: 0.3em;
  font-weight: bold;
  user-select: none;
}

.report-toc-subtext {
  flex: 1;
}

/* 下側：画像領域（1枚画像用） */
.report-toc-media-pc {
  width: 100%;
  display: flex;
  justify-content: center;
}

.report-toc-media-sp {
  display: none;
}

.report-toc-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* レスポンシブ調整（スマホ対応：2列を1列化、仕切り線はなし） */
@media screen and (max-width: 768px) {
  .report-toc-container {
    gap: 16px;
  }

  .report-toc-body {
    padding: 16px 16px 20px 16px;
  }

  .report-toc-columns {
    flex-direction: column;
  }

  .report-toc-col:first-child {
    border-right: none;
    border-bottom: none;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 0;
    margin-bottom: 12px;
  }

.report-toc-media-sp {
  width: 100%;
  display: flex;
  justify-content: center;
}

.report-toc-media-pc {
  display: none;
}


}



/*支援実績（一例）*/

.sc-case-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-top: 20px;
}

.sc-case-container *,
.sc-case-container *::before,
.sc-case-container *::after {
  box-sizing: border-box;
}

.sc-case-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sc-case-header-spacer {
  width: 220px;
  flex-shrink: 0;
}

.sc-case-header-title {
  flex: 1;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  padding: 10px 16px;
  margin: 0;
}

.sc-case-header-bg {
  background: linear-gradient(90deg, #9caec1 0%, #d2b2be 100%);
}

.sc-case-header-content {
  background: linear-gradient(90deg, #9caec1 0%, #d2b2be 100%);
}

.sc-case-header-arrow-space {
  width: 24px;
  flex-shrink: 0;
}

.sc-case-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sc-case-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.sc-case-company {
  width: 220px;
  flex-shrink: 0;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 12px;
  font-weight: bold;
  line-height: 1.4;
}

.sc-case-box {
  flex: 1;
  background-color: #f4f4f4;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sc-case-sp-label {
  display: none;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 4px 8px;
  color: #ffffff;
  text-align: center;
}

.sc-case-sp-label-bg {
  background: linear-gradient(90deg, #8ba0c4 0%, #b8a6b5 100%);
}

.sc-case-sp-label-content {
  background-color: #8da4d0;
}

.sc-case-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sc-case-li {
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
  color: #111111;
}

.sc-case-li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #333333;
  font-weight: bold;
}

.sc-case-arrow {
  width: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-case-arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 14px;
  border-color: transparent transparent transparent #888888;
}

@media screen and (max-width: 820px) {
  .sc-case-header {
    display: none;
  }

  .sc-case-row {
    flex-direction: column;
    gap: 8px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px;
    border-radius: 6px;
  }

  .sc-case-company {
    width: 100%;
    padding: 10px;
  }

  .sc-case-arrow {
    width: 100%;
    height: 16px;
    margin: 2px 0;
  }

  .sc-case-arrow::after {
    border-width: 12px 10px 0 10px;
    border-color: #888888 transparent transparent transparent;
  }

  .sc-case-sp-label {
    display: block;
  }
}



/*支援事例*/

/* =======================================================
   会社概要・ご支援概要 スタイル
   接頭辞: cso- (干渉防止用)
   ※ font-size, font-family の指定は除外済み
   ======================================================= */

.cso-container {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding-top: 20px;
}

.cso-container *,
.cso-container *::before,
.cso-container *::after {
  box-sizing: border-box;
}

.cso-section {
  margin-bottom: 48px;
}

/* タイトル (下線付き) */
.cso-title {
  font-weight: bold;
  padding-bottom: 8px;
  border-bottom: 1px solid #666666;
  margin-top: 0;
  margin-bottom: 24px;
  line-height: 1.4;
}

/* 画像表示エリア */
.cso-image-wrap {
  width: 100%;
  margin-bottom: 24px;
}

.cso-img {
  width: 100%;
  height: auto;
  display: block;
}

/* 会社概要テーブル */
.cso-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 16px;
}

.cso-table th,
.cso-table td {
  border: 1px solid #b0b0b0;
  padding: 12px 16px;
  vertical-align: middle;
  text-align: left;
  line-height: 1.6;
}

.cso-table th {
  background-color: #000000;
  color: #ffffff;
  font-weight: bold;
  width: 25%;
  white-space: nowrap;
  text-align: center;
}

.cso-table td {
  background-color: #ffffff;
  color: #111111;
  width: 75%;
}

.cso-table td p {
  margin: 0 0 12px 0;
}

.cso-table td p:last-child {
  margin-bottom: 0;
}

/* ご支援概要リスト */
.cso-support {
  padding: 0 4px;
}

.cso-block {
  margin-bottom: 28px;
}

.cso-subheading {
  display: flex;
  align-items: center;
  color: #48729e;
  font-weight: bold;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.cso-subheading::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #48729e;
  margin-right: 8px;
  flex-shrink: 0;
}

.cso-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.cso-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.cso-list li::before {
  content: "-";
  position: absolute;
  left: 4px;
  top: 0;
  color: #333333;
}

/* レスポンシブ対応 (スマホ等) */
@media screen and (max-width: 640px) {
  .cso-table,
  .cso-table tbody,
  .cso-table tr,
  .cso-table th,
  .cso-table td {
    display: block;
    width: 100%;
  }

  .cso-table th {
    text-align: left;
    background-color: #000000;
    padding: 8px 12px;
  }

  .cso-table td {
    border-top: none;
    padding: 12px;
  }
  
  .cso-table tr {
    margin-bottom: 12px;
  }
}


/*船井総研の100億企業化コンサルティングが選ばれる理由*/

/* ==================================================
   ▼ [コピー用CSS] 既存のCSSファイルへ貼り付けてください
   ※ font-size, font-family の指定は含んでいません
================================================== */

/* コンテナ全体 */
.fn-reasons-block {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  box-sizing: border-box;
}

/* セクションタイトル（帯見出し） */
.fn-reasons-block__header {
  background: linear-gradient(90deg, #8198c0 0%, #e0ccce 100%);
  color: #ffffff;
  text-align: center;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.fn-reasons-block__title {
  margin: 0;
  padding: 0;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.4;
}

/* グリッドレイアウト（PC:2列, スマホ:1列） */
.fn-reasons-block__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* 各カード（四角枠） */
.fn-reasons-block__card {
  background-color: #f2f2f2;
  border: 1px solid #737373;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* カード内見出し */
.fn-reasons-block__card-title {
  margin: 0 0 12px 0;
  padding: 0;
  font-weight: bold;
  color: #111111;
  line-height: 1.4;
}

/* リスト領域 */
.fn-reasons-block__list {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}

.fn-reasons-block__list-item {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #222222;
}

.fn-reasons-block__list-item:last-child {
  margin-bottom: 0;
}

/* チェックマークアイコン */
.fn-reasons-block__list-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #222222;
}

/* 画像設置エリア */
.fn-reasons-block__image-wrap {
  width: 100%;
  margin-top: auto;
  padding-top: 10px;
}

.fn-reasons-block__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* レスポンシブ対応 (768px以下のモバイル設定) */
@media screen and (max-width: 768px) {
  .fn-reasons-block__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fn-reasons-block__card {
    padding: 16px;
  }
}


/*よくある質問*/

/* ========================================================
   パターン C: インラインテキスト型 CSS
   ======================================================== */
/* リセット・共通設定 */
.sol-table-wrapper *, 
.sol-table-wrapper *::before, 
.sol-table-wrapper *::after {
  box-sizing: border-box;
}

.sol-table-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* PC用レイアウト (デフォルト) */
.sol-table-header {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  text-align: center;
  font-weight: bold;
}

.sol-table-th-theme {
  width: 36%;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
}

.sol-table-th-content {
  width: 64%;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
}

.sol-table-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sol-table-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.sol-table-theme-box {
  width: 36%;
  background: #000;
  color: #fff;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.4;
}

.sol-table-content-box {
  width: 64%;
  border: 1px solid #ccc;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.sol-table-title {
  margin: 0;
  font-weight: bold;
}

.sol-table-text {
  margin: 0;
  line-height: 1.6;
  position: relative;
  padding-left: 1.2em;
}

.sol-table-text::before {
  content: "- ";
  position: absolute;
  left: 0;
  top: 0;
}

/* PC表示時はSP用ラベルを非表示 */
.sol-table-prefix {
  display: none;
}

/* --------------------------------------------------------
   SP用スタイル (画面幅 768px 以下)
   -------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .sol-table-header {
    display: none;
  }

  .sol-table-row {
    flex-direction: column;
    gap: 0;
  }

  .sol-table-theme-box {
    width: 100%;
    padding: 16px;
    text-align: left;
    align-items: flex-start;
  }

  .sol-table-content-box {
    width: 100%;
    border-top: none;
    padding: 16px;
  }

  /* SP表示時のみインラインラベルを表示 */
  .sol-table-prefix {
    display: block;
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-bottom: 6px;
  }
}