@charset "utf-8";


/*---------------------------
テレアポ/アウトバウンド組織立ち上げ支援
---------------------------*/

/* ==========================================================================
   ソリューション課題解決セクション（ユニーククラス）
   ========================================================================== */

/* 全体のコンテナ */
.sp-issue-container {
  display: flex;
  flex-direction: column; /* スマホでは縦並び */
  gap: 30px; /* ブロック間の余白 */
  width: 100%;
  max-width: 1200px; /* 最大幅 */
  margin: 0 auto; /* 中央寄せ */
  box-sizing: border-box;
}

/* 各課題ブロック（PCでは3カラムの1つ） */
.sp-issue-block {
  flex: 1; /* 等幅 */
  display: flex;
  flex-direction: column;
  background-color: #fff; /* 背景色（白） */
  border: 1px solid #cdd6e0; /* 薄いグレーの枠線 */
  border-radius: 4px; /* 角丸（任意） */
  overflow: hidden; /* タイトルの背景を角丸に合わせる */
  box-sizing: border-box;
}

/* ブロックタイトル（青背景） */
.sp-issue-title {
  background-color: #2e446e; /* 紺色（デザイン準拠） */
  color: #fff; /* 文字色（白） */
  text-align: center;
  padding: 15px;
  margin: 0;
  font-weight: bold;
  font-size: 1.6rem;
}

/* 各ブロック内のコンテンツエリア */
.sp-issue-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px; /* 項目間の余白 */
}

/* 各項目（アイコン＋テキスト） */
.sp-issue-item {
  display: flex;
  align-items: flex-start; /* アイコンを上揃え */
  gap: 15px; /* アイコンとテキストの間隔 */
}

/* アイコン画像コンテナ */
.sp-issue-icon {
  flex-shrink: 0; /* アイコンが縮まないように */
  width: 60px; /* アイコンの幅 */
  height: auto; /* 高さは自動 */
}

/* アイコン画像自体のスタイル（赤枠を再現） */
.sp-issue-icon img {
  display: block;
  width: 100%;
  height: auto;
}

/* テキストエリア */
.sp-issue-text {
  flex: 1;
  margin: 0;
  padding: 0;
  color: #1a1a1a; /* 文字色 */
  line-height: 1.6; /* 行間 */
}


/* ==========================================================================
   レスポンシブ対応（PCサイズ）
   ========================================================================== */
@media screen and (min-width: 768px) {
  /* PCでは横並び3カラムに */
  .sp-issue-container {
    flex-direction: row;
    gap: 20px; /* PCでのブロック間の余白 */
  }

  /* アイコンサイズを少し大きく（必要であれば） */
  .sp-issue-icon {
    width: 65px;
  }
}

@media (max-width: 768px) {
  .sp-issue-title {
    font-size: 1.5rem;
  }
}


/*---------------------
よくあるご相談
---------------------*/

    /* ==========================================================================
       全体コンテナ
       ========================================================================== */
    .solution-container {
      width: 100%;
      max-width: 1060px; /* 既存コンテンツ領域に合わせて適宜調整してください */
      margin: 40px auto;
      box-sizing: border-box;
    }
    .solution-container *,
    .solution-container *::before,
    .solution-container *::after {
      box-sizing: border-box;
    }

    /* ==========================================================================
       タイトル部分 (PC時のみ表示)
       ========================================================================== */
    .solution-header {
      display: flex;
      justify-content: space-between;
      margin-bottom: 24px;
    }
    .solution-title-box {
      width: 46%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding-bottom: 12px;
    }
    /* 相談側（左）のタイトル */
    .solution-title-problem {
      border-bottom: 3px solid #b0c4de; /* 落ち着いたブルーグレー */
    }
    .solution-title-problem .solution-title-icon {
      background-color: #668bb2;
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      font-weight: bold;
    }
    .solution-title-problem .solution-section-title {
      color: #4a5568;
    }
    /* 解決策側（右）のタイトル */
    .solution-title-answer {
      border-bottom: 3px solid #336699; /* 基調色 */
    }
    .solution-title-answer .solution-title-icon-check {
      color: #336699;
      font-weight: bold;
      font-size: 1.2rem;
    }
    .solution-title-answer .solution-section-title {
      color: #336699;
    }

    .solution-section-title {
      margin: 0;
      font-weight: 700;
    }

    /* ==========================================================================
       コンテンツ・レイアウト
       ========================================================================== */
    .solution-content {
      display: flex;
      flex-direction: column;
      gap: 20px; /* 行と行の間の余白 */
    }
    .solution-row {
      display: flex;
      align-items: stretch; /* 左右のボックスの高さを自動的に合わせる */
      justify-content: space-between;
    }

    /* ==========================================================================
       共通ボックス・デザイン
       ========================================================================== */
    .solution-box {
      width: 46%;
      min-height: 110px;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      justify-content: center; /* 高さが広がってもテキストは常に上下中央配置 */
      align-items: center;     /* ボックス内の要素を左右中央配置 */
      padding: 20px 24px;
      position: relative;
      text-align: center;      /* テキストを中央寄せ */
    }
    .solution-box .solution-text {
      margin: 0;
      width: 100%;
      line-height: 1.6;
    }

    /* --- よくあるご相談 (左側) --- */
    .solution-problem {
      background-color: #f4f7fa; /* 優しいグレーブルー */
      border: 1px solid #d9e2ec;
      border-left: 5px solid #668bb2; /* 左端にアクセントライン */
      box-shadow: 0 2px 8px rgba(51, 102, 153, 0.04);
    }
    .solution-problem .solution-text {
      color: #334e68;
    }
    .solution-badge {
      display: none; /* PC版では非表示 */
    }

    /* --- 船井総研の対応内容 (右側) --- */
    .solution-answer {
      background-color: #ffffff;
      border: 1px solid #336699; /* 基調色のボーダー */
      border-left: 5px solid #336699; /* 左端に強調ライン */
      box-shadow: 0 4px 12px rgba(51, 102, 153, 0.08); /* 少し強めの影で対比を強調 */
    }
    .solution-answer .solution-text {
      color: #102a43;
    }
    .solution-answer strong {
      display: block;
      font-weight: 600;
      color: #336699; /* 基調色でテキスト強調 */
    }
    .solution-badge-solution {
      display: none; /* PC版では非表示 */
    }

    /* --- 注記(※)のスタイル --- */
    .solution-note {
      display: block;
      font-size: 80%;
      margin-top: 8px;
      color: #627d98;
      line-height: 1.4;
      text-align: center; /* 注記テキストも中央寄せに変更 */
    }

    /* --- 矢印のスタイル (PC) --- */
    .solution-arrow {
      position: relative;
      width: 4%;
      height: 2px;
      background: linear-gradient(to right, #668bb2, #336699); /* グラデーション */
      align-self: center; /* 親の stretch の影響を受けず、常に縦中央をキープ */
    }
    .solution-arrow::after {
      content: '';
      position: absolute;
      right: -1px;
      top: 50%;
      transform: translateY(-50%);
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
      border-left: 8px solid #336699; /* 右端の三角 */
    }

    /* ==========================================================================
       レスポンシブ (スマホ・タブレット対応)
       ========================================================================== */
    @media screen and (max-width: 768px) {
      /* PC用ヘッダーは不要 */
      .solution-header {
        display: none;
      }
      
      /* 行を縦並びに。1つのまとまりとして枠線で囲む */
      .solution-row {
        flex-direction: column;
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #d9e2ec;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 24px;
      }
      
      .solution-content {
        gap: 0;
      }

      /* ボックスを100%幅に落とし込み */
      .solution-box {
        width: 100%;
        border: none !important; /* PC用の枠線をリセット */
        border-radius: 0;
        min-height: auto;
        padding: 0;
        box-shadow: none;
        background-color: transparent;
      }

      /* --- スマホ時の課題表示 --- */
      .solution-problem {
        padding-bottom: 16px;
        border-bottom: 1px dashed #d9e2ec !important;
      }
      /* 課題用バッジ（相談 01など）を表示 */
      .solution-badge {
        display: inline-block;
        align-self: center; /* 左寄せから中央寄せに変更 */
        font-weight: bold;
        color: #668bb2;
        background-color: #e6f0fa;
        padding: 2px 8px;
        border-radius: 4px;
        margin-bottom: 8px;
      }
      .solution-problem .solution-text {
        font-weight: bold;
      }

      /* --- スマホ時の矢印 --- */
      .solution-arrow {
        width: 2px;
        height: 24px;
        background: linear-gradient(to bottom, #668bb2, #336699); /* 縦向きグラデーション */
        margin: 16px auto;
        position: relative;
      }
      .solution-arrow::after {
        /* PC用の配置・移動指定を完全にリセット */
        top: auto;
        right: auto;
        left: 50%;
        bottom: -6px; /* 縦線の最下部に接するように調整 */
        transform: translateX(-50%);
        
        /* PC用ボーダーの仕様をリセットし、完璧な下向き三角を描写 */
        border-top: 8px solid #336699;
        border-bottom: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
      }

      /* --- スマホ時の対応内容 --- */
      .solution-answer {
        padding-top: 8px;
      }
      /* 対応内容用バッジを表示 */
      .solution-badge-solution {
        display: inline-block;
        align-self: center; /* 左寄せから中央寄せに変更 */
        font-weight: bold;
        color: #ffffff;
        background-color: #336699; /* 基調色 */
        padding: 2px 8px;
        border-radius: 4px;
        margin-bottom: 12px;
      }
    }


/*-------------------------
センター立ち上げで押さえるポイント
--------------------------*/

/* 全体のレイアウト（レスポンシブ） */
.sol-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .sol-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* カード全体のスタイル */
.sol-card {
  background-color: #ffffff;
  border: 1px solid #b0b0b0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* カードのヘッダー（青背景部分） */
.sol-card-header {
  background-color: #2d659b;
  padding: 16px;
  text-align: center;
}

.sol-card-title {
  color: #ffffff;
  margin: 0;
  font-weight: bold;
}

/* カードのボディ（リスト部分） */
.sol-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.sol-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

/* チェックマーク付きのリストアイテム */
.sol-list-item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  line-height: 1.5;
  color: #000000;
}

.sol-list-item:last-child {
  margin-bottom: 0;
}

/* チェックマークの再現 */
.sol-list-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #000000;
}


/*---------------------------
ご支援の流れ
---------------------------*/

/* 全体コンテナ */
.wp-process-container {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-top: 20px;
}

.wp-process-container * {
  box-sizing: border-box;
}

/* PC用 左側ラベルエリア */
.wp-process-side-labels {
  display: flex;
  flex-direction: column;
  width: 40px;
  padding-top: 80px; /* ヘッダーの新しい高さ（実測約56px + gap:15px）に合わせて調整 */
  gap: 15px;
}

.wp-process-side-label {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #737373;
  color: #ffffff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.1em;
  padding: 15px 0;
  border-radius: 2px;
  font-size: 1.2rem; /* ① PCのみ1.2remに指定 */
}

/* 各行のPC時高さ固定用（左右の同期を取るため） */
.label-period, 
.wp-process-row.row-period {
  height: 90px;
}
.label-content, 
.wp-process-row.row-content {
  flex: 1;
}
.label-output, 
.wp-process-row.row-output {
  height: 110px;
}

/* メインコンテンツ（カード横並び） */
.wp-process-main {
  display: flex;
  gap: 15px;
  flex: 1;
}

/* フェーズカード個別 */
.wp-process-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* 青い矢印ヘッダー */
.wp-process-header {
  position: relative;
  background-color: #2c5a85;
  color: #ffffff;
  text-align: center;
  padding: 10px 0; /* ② 上下の余白を確保 */
  height: auto;    /* ② 高さを自動にして文字が潰れるのを防ぐ */
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* 右側の矢印突起をclip-pathで表現 */
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

.wp-process-phase-num {
  display: block;
  line-height: 1.3;
}

.wp-process-phase-title {
  margin: 0;
  font-weight: normal;
  line-height: 1.3;
}

/* カードボディ（白枠線内） */
.wp-process-body {
  border: 1px solid #333333;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* カード内の各行 */
.wp-process-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
}

/* 行間の区切り線 */
.wp-process-row:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 1px;
  background-color: #cccccc;
}

/* SP用ラベル（PC時は非表示） */
.wp-process-sp-label {
  display: none;
}

/* 値・テキストの調整 */
.wp-process-value {
  text-align: center;
  width: 100%;
}

.wp-process-row.row-content .wp-process-value {
  text-align: left;
}

/* 箇条書きリスト */
.wp-process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}

.wp-process-list li {
  position: relative;
  padding-left: 12px;
  line-height: 1.6;
}

.wp-process-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}


/* --- レスポンシブ（スマホ・タブレット対応） --- */
@media (max-width: 768px) {
  .wp-process-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
  }

  /* PC用ラベルを非表示 */
  .wp-process-side-labels {
    display: none;
  }

  /* ① スマホ時は元のフォントサイズ等に戻す（必要に応じて） */
  .wp-process-side-label {
    font-size: initial; 
  }

  .wp-process-main {
    flex-direction: column;
    gap: 30px;
  }

  /* ヘッダー矢印をスマホ時は通常の矩形に変更 */
  .wp-process-header {
    clip-path: none;
    padding: 12px 0;
    margin-bottom: 0;
  }

  /* 高さを自動解釈に変更 */
  .wp-process-row.row-period,
  .wp-process-row.row-content,
  .wp-process-row.row-output {
    height: auto;
    min-height: 0;
    padding: 15px;
    align-items: flex-start;
  }

  /* スマホ用ラベルを表示 */
  .wp-process-sp-label {
    display: block;
    background-color: #737373;
    color: #ffffff;
    padding: 2px 8px;
    margin-bottom: 10px;
    align-self: flex-start;
  }

  .wp-process-row.row-content .wp-process-value {
    display: flex;
    justify-content: flex-start;
  }
  
  .wp-process-value {
    text-align: left;
  }
}


/*-----------------------
導入事例：住宅業界向けインサイドセールス内製化・育成コンサルティング
-----------------------*/


/* 全体コンテナ */
.case-perf-container {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding-top: 20px;
}
.case-perf-container *,
.case-perf-container *::before,
.case-perf-container *::after {
  box-sizing: border-box;
}

/* ヘッダー部分 */
.case-perf-header {
  margin-bottom: 24px;
}
.case-perf-meta {
  margin: 0 0 12px 0;
  line-height: 1.6;
  font-weight: bold;
}
.case-perf-title {
  margin: 0;
  color: #2b78bc;
  font-weight: bold;
  line-height: 1.4;
  padding-top: 30px;
}

/* コンテンツボディ（PC時は横並び） */
.case-perf-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* 共通カードスタイル */
.case-perf-card {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 導入前の個別スタイル */
.case-perf-before {
  background-color: #f0f4f8;
  border-left: 6px solid #c6923c;
  border-top: 1px solid #f5ebd7;
  border-right: 1px solid #f5ebd7;
  border-bottom: 1px solid #f5ebd7;
}

/* 導入後の個別スタイル */
.case-perf-after {
  background-color: #fdf7ed;
  border-left: 6px solid #c6923c;
  border-top: 1px solid #f5ebd7;
  border-right: 1px solid #f5ebd7;
  border-bottom: 1px solid #f5ebd7;
}

/* カード内要素 */
.case-perf-label {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 1.5em; /* 今の1.5倍に指定 */
}
.case-perf-subject {
  font-weight: bold;
  font-size: 1.5em; /* 今の1.5倍に指定 */
}
.case-perf-value {
  font-weight: 900;
  margin-bottom: 4px;
  font-size: 3em; /* 今の2倍に指定 */
  line-height: 1;
}
.case-perf-unit {
  font-weight: bold;
  font-size: 0.5em; /* 親要素が2倍になっているため、その半分（等倍）に戻す指定 */
}
.case-perf-sub {
  display: block;
}

/* 共通カラークラス */
.case-perf-text-red {
  color: #b83823;
}
.case-perf-text-navy {
  color: #001f4d;
}
.case-perf-text-muted {
  color: #666666;
}

/* 矢印アイコン（CSSで表現） */
.case-perf-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
}
.case-perf-arrow-icon {
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #001f4d;
}

/* ------------------------------------------
   レスポンシブ対応（タブレット・スマホサイズ）
------------------------------------------ */
@media (max-width: 768px) {
  .case-perf-body {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .case-perf-arrow {
    padding: 8px 0;
  }
  
  .case-perf-arrow-icon {
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 24px solid #001f4d;
    border-bottom: 0;
  }
}





/* ==========================================================================
   画像設置エリア（干渉防止用プレフィックス: sl-）
   ========================================================================== */

/* 外枠（グレーのborder） */
.sl-image-wrapper {
  border: 1px solid #dcdcdc; /* グレーの枠線 */
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
}

/* スクロールを制御するコンテナ */
.sl-image-scroll-box {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* iOSでのスワイプを滑らかにする */
}

/* 画像自体の挙動（PCでは100%幅） */
.sl-responsive-img {
  display: block;
  max-width: none; /* SPで画像が縮小されるのを防ぐ */
  width: 100%;     /* PC環境では横幅いっぱいに表示 */
  height: auto;
}

/* ==========================================================================
   レスポンシブ対応（スマートフォン環境: 767px以下）
   ========================================================================== */
@media screen and (max-width: 767px) {
  /* SP時に画像を縮小せず、指定したサイズ（例: 800px）ではみ出させてスクロールさせる */
  .sl-responsive-img {
    width: 800px; /* スクロールさせたい画像の最低横幅（必要に応じて調整してください） */
  }
}



/*---------------------------
BPOの実績一覧（※一部ご紹介）
---------------------------*/

/* ==========================================================================
   業種別実績テーブル（Sol独自スタイル - 罫線強化＆SPカード型版）
   ========================================================================== */

/* テーブル全体の親要素 */
.sol-table-wrapper {
  width: 100%;
  margin: 1.5rem 0;
}

/* テーブル全体の基本設定 */
.sol-result-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  /* 左端の縦罫線（濃いめのグレー） */
  border-left: 1px solid #b3b3b3; 
}

/* PC用ヘッダー（単色塗り・テキスト中央揃え） */
.sol-result-table thead th {
  background-color: #195f9c;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  padding: 14px 16px;
  /* ヘッダー周囲の境界線を濃く設定 */
  border-top: 1px solid #155084;
  border-bottom: 1px solid #155084;
  border-right: 1px solid #155084;
  white-space: nowrap;
}

/* PC用セルの基本共通設定 */
.sol-result-table tbody td {
  padding: 10px 16px;
  /* 横の区切り（点線）と縦の区切り（実線）を少し濃いめのグレーに変更 */
  border-bottom: 1px dotted #b3b3b3;
  border-right: 1px solid #cccccc;
  color: #333333;
  vertical-align: middle;
}

/* PC用：テーブル最終行の境界線調整（枠の底線を濃いめのグレーに） */
.sol-result-table tbody tr:last-child td {
  border-bottom: 1px solid #b3b3b3;
}


/* --- PC用：各列の個別配置 --- */
.sol-col-no, .sol-cell-no {
  width: 70px;
  text-align: center;
}
.sol-col-industry, .sol-cell-industry {
  text-align: center;
}
.sol-col-calls, .sol-cell-calls,
.sol-col-appointments, .sol-cell-appointments,
.sol-col-rate, .sol-cell-rate {
  text-align: right;
}


/* ==========================================================================
   スマートフォン表示（767px以下）用のカードレイアウト設定
   ========================================================================== */
@media (max-width: 767px) {
  /* スクロール不要なため枠線と左罫線をリセット */
  .sol-table-wrapper {
    overflow-x: visible;
    border: none;
  }

  .sol-result-table {
    border-left: none; /* スマホ時は全体の左罫線をリセット */
  }

  /* テーブル要素をすべてブロック（カード）型に変換 */
  .sol-result-table,
  .sol-result-table tbody,
  .sol-result-table tr,
  .sol-result-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  /* PC用のヘッダー行を非表示に */
  .sol-result-table thead {
    display: none;
  }

  /* 各行（1レコード）を枠線のついた1枚の「カード」として装飾 */
  .sol-result-table tbody tr {
    border: 1px solid #cccccc; /* 枠線を少し濃く */
    border-radius: 6px;
    margin-bottom: 15px; /* カードとカードの間の隙間 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    background-color: #ffffff;
    overflow: hidden;
  }

  /* SP用の各データセルの設定 */
  .sol-result-table tbody td {
    display: flex;
    justify-content: space-between; /* 項目名と値を両端に寄せる */
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e6e6e6; /* 区切り線を少し濃く */
    border-right: none;
    text-align: right; /* データ値は右寄せ */
  }

  /* カード内の最後の項目は下線を消す */
  .sol-result-table tbody tr td:last-child {
    border-bottom: none;
  }

  /* HTMLのdata-labelから、セルの左側に項目名（ラベル）を自動挿入 */
  .sol-result-table tbody td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #444444;
    text-align: left;
    margin-right: 15px;
    white-space: nowrap;
  }

  /* NOと業種の背景設定 */
  .sol-cell-no {
    background-color: #f7fafc;
    border-bottom: 1px solid #e2e8f0 !important;
  }
}


/*--------------------------------
アウトプットイメージ
---------------------------------*/

/* 全体コンテナ */
.vi-sol-container {
  width: 100%;
  box-sizing: border-box;
  padding-top:20px;
}

.vi-sol-container *,
.vi-sol-container *::before,
.vi-sol-container *::after {
  box-sizing: border-box;
}

/* グリッドレイアウト（スマホ時は1列、タブレット時は2列、PC時は3列） */
.vi-sol-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

@media (min-width: 600px) {
  .vi-sol-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vi-sol-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* カード単体スタイル */
.vi-sol-card {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

/* カードタイトル（ヘッダー） */
.vi-sol-card-title {
  background-color: #2b6196;
  color: #ffffff;
  text-align: center;
  padding: 12px 10px;
  margin: 10px 15px 0 15px;
  font-weight: bold;
  letter-spacing: 0;
}

/* カードボディ */
.vi-sol-card-body {
  padding: 15px 25px 20px 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* チェックリスト */
.vi-sol-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1; /* リストの高さが異なっても画像の開始位置が揃うように調整 */
}

.vi-sol-card-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.vi-sol-card-list li:last-child {
  margin-bottom: 0;
}

/* チェックマーク再現 */
.vi-sol-card-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 5px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  transform: rotate(45deg);
}

/* 画像ラッパー */
.vi-sol-card-image {
  width: 100%;
  overflow: hidden;
}

.vi-sol-card-image img {
  width: 100%;
  height: auto;
  display: block;
}