@charset "utf-8";

/*100億企業化における「事業戦略」の重要性*/
.sol-cmp-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  color: #000000;
  line-height: 1.5;
  padding-top: 15px;
}

/* PC: テーブル形式 (769px以上) */
.sol-cmp-table-container {
  display: block;
  width: 100%;
  overflow: hidden;
  border: none;
  background-color: transparent;
}

.sol-cmp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.sol-cmp-table th,
.sol-cmp-table td {
  padding: 16px 14px;
  border: 1px solid #ffffff;
  vertical-align: middle;
  box-sizing: border-box;
  font-weight: 700;
}

.sol-cmp-thead th {
  background-color: #518ec8;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.sol-cmp-th-label {
  width: 22%;
}

.sol-cmp-th-mid {
  width: 39%;
}

.sol-cmp-th-road {
  width: 39%;
}

/* 奇数行（1, 3, 5, 7行目） */
.sol-cmp-table tbody tr:nth-child(odd) td {
  background-color: #dae6f4;
  color: #000000;
}

/* 偶数行（2, 4, 6, 8行目） */
.sol-cmp-table tbody tr:nth-child(even) td {
  background-color: #edf3fa;
  color: #000000;
}

.sol-cmp-subtext {
  display: block;
  font-weight: 700;
  margin-top: 3px;
}

/* SP: カード形式 (768px以下) */
.sol-cmp-cards-container {
  display: none;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.sol-cmp-card {
  background: #ffffff;
  border: 1px solid #c5d8ed;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.sol-cmp-card-header {
  background-color: #518ec8;
  color: #ffffff;
  padding: 10px 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sol-cmp-card-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 11px;
}

.sol-cmp-card-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 12px;
  background-color: #f7faff;
}

.sol-cmp-plan-box {
  border-radius: 6px;
  padding: 12px 14px;
  border: 1px solid #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.sol-cmp-plan-box.is-mid {
  background-color: #edf3fa;
  border-left: 4px solid #518ec8;
}

.sol-cmp-plan-box.is-road {
  background-color: #dae6f4;
  border-left: 4px solid #3b77b3;
}

.sol-cmp-plan-tag {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.sol-cmp-plan-box.is-mid .sol-cmp-plan-tag {
  background-color: #cde0f5;
  color: #1a4975;
}

.sol-cmp-plan-box.is-road .sol-cmp-plan-tag {
  background-color: #bdcee5;
  color: #113457;
}

.sol-cmp-plan-content {
  font-weight: 700;
  color: #000000;
  line-height: 1.5;
}

.sol-cmp-plan-content .sol-cmp-subtext {
  font-size: 0.9em;
  font-weight: 700;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .sol-cmp-table-container {
    display: none !important;
  }
  .sol-cmp-cards-container {
    display: flex !important;
  }
}




/*船井総研が定義する「事業戦略」の概念と構造*/

.sol-pyr-container {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 10px 24px;
  margin: 0 auto;
  padding: 20px 0;
  box-sizing: border-box;
  align-items: center;
}

/* --- 1. 左側：逆算矢印エリア（1〜4段目にまたがって配置） --- */
.sol-pyr-arrow-area {
  grid-column: 1;
  grid-row: 1 / 5;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sol-pyr-arrow-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-weight: bold;
  color: #1b365d;
  letter-spacing: 0.25em;
  margin-right: 8px;
  white-space: nowrap;
}

.sol-pyr-arrow-line-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 12px;
}

.sol-pyr-arrow-line {
  flex-grow: 1;
  width: 2px;
  background-color: #1b365d;
}

.sol-pyr-arrow-head {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 9px solid #1b365d;
}

/* --- 2. ピラミッド各段の共通スタイル（中央揃えラッパー） --- */
.sol-pyr-box-wrap {
  grid-column: 2;
  display: flex;
  justify-content: center;
  width: 100%;
}

.sol-pyr-box {
  padding: 12px 16px;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sol-pyr-box-title {
  font-weight: bold;
  line-height: 1.3;
}

.sol-pyr-box-sub {
  line-height: 1.4;
  margin-top: 4px;
}

/* 各段の個別幅（山型ピラミッド表現）・背景色 */
.sol-pyr-box-1 {
  width: 52%;
  background-color: #183358; /* 濃紺 */
  color: #ffffff;
}

.sol-pyr-box-2 {
  width: 68%;
  background-color: #2c75ba; /* ブルー */
  color: #ffffff;
}

.sol-pyr-box-3 {
  width: 84%;
  background-color: #92b5de; /* ライトブルー */
  color: #111111;
}

.sol-pyr-box-4 {
  width: 100%;
  background-color: #dce6f2; /* ごく薄いブルー */
  color: #111111;
}

/* --- 3. 右側：説明文スタイル --- */
.sol-pyr-desc {
  grid-column: 3;
  color: #333333;
  line-height: 1.5;
  white-space: nowrap;
}

/* --- 4. 最下段：戦術・戦闘（全幅で一番長くなるスタイル） --- */
.sol-pyr-bottom-row {
  grid-column: 1 / 4; /* 矢印から説明文エリアまで横断して全幅展開 */
  width: 705px;
  margin-top: 4px;
}

.sol-pyr-box-5 {
  width: 100%;
  background-color: #3d3d3d; /* ダークグレー */
  color: #ffffff;
  padding: 14px 16px;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- レスポンシブ対応 (スマホ・タブレット) --- */
@media (max-width: 768px) {
  .sol-pyr-container {
    grid-template-columns: 32px 1fr;
    gap: 8px 12px;
    padding: 10px 4px;
  }

  .sol-pyr-arrow-area {
    grid-column: 1;
    grid-row: 1 / 9; /* スマホ時の行数に合わせて伸縮 */
  }

  .sol-pyr-arrow-text {
    letter-spacing: 0.1em;
    margin-right: 4px;
  }

  .sol-pyr-box-wrap {
    grid-column: 2;
  }

  .sol-pyr-box-1 { width: 70%; }
  .sol-pyr-box-2 { width: 80%; }
  .sol-pyr-box-3 { width: 90%; }
  .sol-pyr-box-4 { width: 100%; }

  .sol-pyr-box {
    padding: 10px 8px;
  }

  .sol-pyr-desc {
    grid-column: 2;
    padding-left: 6px;
    margin-bottom: 15px;
    white-space: normal;
    text-align: center;
  }

  .sol-pyr-bottom-row {
    grid-column: 1 / 3;
    margin-top: 6px;
    width: 100%;
  }

  .sol-pyr-box-5 {
    padding: 12px 8px;
  }
}



/* 干渉を防ぐためのユニークなクラス名 (sol-perspective-*) */
.sol-perspective-section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.sol-perspective-heading {
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.5;
  font-weight: bold;
}

.sol-perspective-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sol-perspective-item {
  display: flex;
  align-items: baseline;
  line-height: 1.6;
}

.sol-perspective-item:last-child {
  margin-bottom: 0;
}

.sol-perspective-num {
  flex-shrink: 0;
  margin-right: 0.3em;
}

.sol-perspective-text {
  flex-grow: 1;
}




/*100億に到達する「良い事業戦略」のポイント*/

.sc-comp-container {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.sc-comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 6px;
  margin: 0;
  padding: 0;
}

/* ヘッダーセル */
.sc-comp-th {
  font-weight: bold;
  text-align: center;
  padding: 12px 16px;
  vertical-align: middle;
  box-sizing: border-box;
}

.sc-comp-th-label {
  width: 20%;
  color: #333333;
}

.sc-comp-th-type1 {
  width: 40%;
  color: #333333;
}

.sc-comp-th-type2 {
  width: 40%;
  color: #0d47a1;
}

/* ボディセル */
.sc-comp-td {
  box-sizing: border-box;
}

/* ①〜⑤ の項目名（黒背景・白文字） */
.sc-comp-cell-label {
  background-color: #000000;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 20px 16px;
  vertical-align: middle;
  border-radius: 2px;
  width: 20%;
}

/* 機会追随型（薄グレー背景） */
.sc-comp-cell-type1 {
  background-color: #f5f5f5;
  color: #222222;
  padding: 20px 10px;
  vertical-align: middle;
  border-radius: 2px;
  width: 40%;
}

/* バックキャスト型（青背景・青文字） */
.sc-comp-cell-type2 {
  background-color: #e6f0fa;
  color: #0d47a1;
  padding: 20px 10px;
  vertical-align: middle;
  border-radius: 2px;
  width: 40%;
}

/* リスト要素 */
.sc-comp-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sc-comp-list-item {
  position: relative;
  padding-left: 1.2em;
  line-height: 1.65;
  margin-bottom: 6px;
}

.sc-comp-list-item:last-child {
  margin-bottom: 0;
}

.sc-comp-list-item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* スマホ用バッジ */
.sc-comp-sp-badge {
  display: none;
}

/* ==========================================
   レスポンシブ対応 (768px以下: カード並び替え)
   ========================================== */
@media screen and (max-width: 768px) {
  .sc-comp-table,
  .sc-comp-thead,
  .sc-comp-tbody,
  .sc-comp-tr,
  .sc-comp-th,
  .sc-comp-td {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }

  .sc-comp-thead {
    display: none;
  }

  .sc-comp-tr {
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  }

  .sc-comp-tr:last-child {
    margin-bottom: 0;
  }

  .sc-comp-cell-label {
    text-align: left;
    padding: 14px 18px;
    border-radius: 0;
  }

  .sc-comp-cell-type1 {
    padding: 16px 18px;
    border-radius: 0;
    border-bottom: 1px dashed #e2e8f0;
  }

  .sc-comp-cell-type2 {
    padding: 16px 18px;
    border-radius: 0;
  }

  .sc-comp-sp-badge {
    display: inline-block;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .sc-comp-sp-badge-type1 {
    background-color: #e2e8f0;
    color: #475569;
  }

  .sc-comp-sp-badge-type2 {
    background-color: #cbe0f5;
    color: #0d47a1;
  }
}


/*事業戦略コンサルティングの特徴・強み*/

.sol-proc-container {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding-top: 20px;
}

/* ボックス共通スタイル */
.sol-proc-box {
    text-align: center;
    padding: 16px 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 84px;
}

.sol-proc-title {
    margin: 0;
    font-weight: bold;
    line-height: 1.35;
}

.sol-proc-desc {
    margin: 4px 0 0 0;
    line-height: 1.3;
}

/* テーマカラー */
.sol-proc-top-black {
    background-color: #000000;
    color: #ffffff;
}

.sol-proc-top-blue {
    background-color: #2c71b8;
    color: #ffffff;
}

.sol-proc-top-navy {
    background-color: #173b6c;
    color: #ffffff;
}

.sol-proc-bottom {
    background-color: #f2f2f2;
    color: #222222;
}

/* SP用レイアウト（767px以下） */
@media (max-width: 767px) {
    .sol-proc-section {
        width: 100%;
        box-sizing: border-box;
    }

    .sol-proc-section-bottom {
        margin-top: 28px;
        padding-top: 24px;
        border-top: 1px dashed #e2e8f0;
    }

    .sol-proc-flow-list,
    .sol-proc-strategy-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .sol-proc-flow-list .sol-proc-box,
    .sol-proc-strategy-list .sol-proc-box {
        width: 100%;
        max-width: 320px;
    }

    .sol-proc-strategy-list {
        gap: 12px;
    }

    /* 下向き矢印 */
    .sol-proc-arrow {
        width: 22px;
        height: 16px;
        margin: 10px auto;
        background-color: #d1d5db;
        clip-path: polygon(30% 0%, 70% 0%, 70% 50%, 100% 50%, 50% 100%, 0% 50%, 30% 50%);
        -webkit-clip-path: polygon(30% 0%, 70% 0%, 70% 50%, 100% 50%, 50% 100%, 0% 50%, 30% 50%);
        flex-shrink: 0;
    }
}

/* PC用レイアウト（768px以上） */
@media (min-width: 768px) {
    .sol-proc-section-top {
        margin-bottom: 27px;
    }

    .sol-proc-flow-list {
        display: grid;
        grid-template-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
        gap: 10px;
        align-items: stretch;
        width: 100%;
    }

    .sol-proc-flow-list .sol-proc-box {
        width: 100%;
    }

    /* 右向き矢印 */
    .sol-proc-arrow {
        width: 18px;
        height: 22px;
        background-color: #d1d5db;
        clip-path: polygon(0% 30%, 50% 30%, 50% 0%, 100% 50%, 50% 100%, 50% 70%, 0% 70%);
        -webkit-clip-path: polygon(0% 30%, 50% 30%, 50% 0%, 100% 50%, 50% 100%, 50% 70%, 0% 70%);
        align-self: center;
        justify-self: center;
    }

    .sol-proc-strategy-list {
        display: grid;
        grid-template-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
        gap: 10px;
        align-items: stretch;
        width: 100%;
    }

    .sol-proc-col-1 { grid-column: 1; }
    .sol-proc-col-2 { grid-column: 3; }
    .sol-proc-col-3 { grid-column: 5; }
    .sol-proc-col-4 { grid-column: 7; }
}


/* ソリューション特長セクション全体 */
.sol-feat-sec-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
  padding-top: 30px;
}

/* 各特長ブロック */
.sol-feat-sec-item {
  position: relative;
  padding-left: 20px;
}

/* 左側のアクセントバー */
.sol-feat-sec-item::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 6px;
  background-color: #0f3b68;
  border-radius: 1px;
}

/* タイトル見出し */
.sol-feat-sec-title {
  margin: 0 0 6px 0;
  color: #0f3b68;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* 説明本文 */
.sol-feat-sec-text {
  margin: 0;
  color: #1e293b;
  line-height: 1.7;
  letter-spacing: 0.01em;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

/* レスポンシブ対応（スマートフォン・タブレット向け調整） */
@media (max-width: 768px) {
  .sol-feat-sec-container {
    gap: 20px;
  }

  .sol-feat-sec-item {
    padding-left: 16px;
  }

  .sol-feat-sec-item::before {
    width: 5px;
  }

  .sol-feat-sec-title {
    margin-bottom: 4px;
  }

  .sol-feat-sec-text {
    line-height: 1.65;
  }
}


/*ご支援のフロー・ステップ*/

    .ap-10billion-bs-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
      padding-top: 20px;
    }

    .ap-10billion-bs-card {
      background-color: #f2f2f2;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .ap-10billion-bs-header {
      color: #ffffff;
      padding: 16px 10px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 110px;
      box-sizing: border-box;
    }

    .ap-10billion-bs-step-1 { background-color: #1b4d75; }
    .ap-10billion-bs-step-2 { background-color: #2b6ca3; }
    .ap-10billion-bs-step-3 { background-color: #5593d4; }
    .ap-10billion-bs-step-4 { background-color: #92b8de; }

    .ap-10billion-bs-num {
      line-height: 1;
      margin-bottom: 6px;
      display: block;
    }

    .ap-10billion-bs-title {
      margin: 0;
      padding: 0;
      font-weight: bold;
      line-height: 1.3;
    }

    .ap-10billion-bs-list {
      list-style: none;
      margin: 0;
      padding: 24px 16px 24px 32px;
      box-sizing: border-box;
      flex-grow: 1;
    }

    .ap-10billion-bs-list li {
      position: relative;
      margin-bottom: 20px;
      line-height: 1.6;
      color: #333333;
    }

    .ap-10billion-bs-list li:last-child {
      margin-bottom: 0;
    }

    .ap-10billion-bs-list li::before {
      content: "・";
      position: absolute;
      left: -1em;
      top: 0;
    }

    @media screen and (max-width: 768px) {
      .ap-10billion-bs-container {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .ap-10billion-bs-header {
        min-height: auto;
        padding: 14px 10px;
      }
    }