@charset "utf-8";

/* 業務アプリ・ワークフロー導入支援とは */
.sp-issue-box {
  position: relative;
  padding: 32px 40px 32px 56px;
  background-color: #e8f1f9; /* 淡いブルーの背景色 */
  box-sizing: border-box;
  margin: 30px 0; /* 前後の余白（必要に応じて調整してください） */
}

/* 左側の濃紺アクセントライン */
.sp-issue-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px; /* ラインの太さ */
  height: 100%;
  background-color: #003366; /* 濃い紺色 */
}

/* 太字のリード文 */
.sp-issue-lead {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  line-height: 1.6;
  margin: 0 0 12px 0;
}

/* 補足の説明文 */
.sp-issue-text {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
  margin: 0;
}

/* レスポンシブ対応（スマートフォン表示時の調整） */
@media screen and (max-width: 768px) {
  .sp-issue-box {
    padding: 24px 20px 24px 36px;
  }
  .sp-issue-box::before {
    width: 12px;
  }
  .sp-issue-lead {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .sp-issue-text {
    font-size: 14px;
  }
}

/* 全体コンテナ */
.zc-service-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ---------------------------------
   セクションタイトル部分
--------------------------------- */
.zc-service-title-wrap {
  margin-bottom: 30px;
}

.zc-service-title {
  position: relative;
  margin: 0 0 15px 0;
  padding-bottom: 8px;
  color: #004071;
  font-weight: bold;
}

/* タイトル下部の青線 */
.zc-service-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px;
  height: 4px;
  background-color: #0073bb;
}

.zc-service-lead {
  margin: 0;
  line-height: 1.6;
  color: #333333;
}

/* PCのみ改行用の設定 */
.zc-service-pc-only {
  display: block;
}

/* ---------------------------------
   スコープカード（3カラム）
--------------------------------- */
.zc-service-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.zc-service-card-item {
  flex: 1;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* カードヘッダー共通 */
.zc-service-card-header {
  padding: 12px;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* カード個別の色指定 */
.zc-service-card-blue1 .zc-service-card-header {
  background-color: #003366; /* 濃い青 */
}
.zc-service-card-blue2 .zc-service-card-header {
  background-color: #005bb2; /* 明るい青 */
}
.zc-service-card-teal .zc-service-card-header {
  background-color: #00808b; /* 青緑 */
}

/* カードボディ */
.zc-service-card-body {
  padding: 25px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

.zc-service-card-title {
  margin: 0 0 20px 0;
  font-weight: bold;
  line-height: 1.4;
}

/* タイトルの文字色（ヘッダーの色と連動） */
.zc-service-card-blue1 .zc-service-card-title { color: #003366; }
.zc-service-card-blue2 .zc-service-card-title { color: #005bb2; }
.zc-service-card-teal .zc-service-card-title { color: #00808b; }

.zc-service-card-text {
  margin: 0;
  color: #666666;
  line-height: 1.5;
}

/* ---------------------------------
   下部注釈ボックス
--------------------------------- */
.zc-service-info-box {
  background-color: #fff9e6; /* 薄い黄色 */
  border: 1px solid #ffcc33; /* 黄色の枠線 */
  padding: 20px 25px;
  border-radius: 4px;
}

.zc-service-info-title {
  margin: 0 0 10px 0;
  color: #855c00;
  font-weight: bold;
}

.zc-service-info-text {
  margin: 0;
  color: #333333;
  line-height: 1.6;
}

/* ---------------------------------
   レスポンシブ（タブレット・スマホ対応）
--------------------------------- */
@media screen and (max-width: 768px) {
  .zc-service-pc-only {
    display: none; /* スマホ時はPC用の改行を無効化 */
  }
  
  .zc-service-cards {
    flex-direction: column; /* 縦並びに変更 */
    gap: 15px;
  }
  
  .zc-service-card-body {
    padding: 20px;
  }
  
  .zc-service-card-title {
    margin-bottom: 10px;
  }
  
  .zc-service-info-box {
    padding: 15px 20px;
  }
}


/*-------------------------------------*/
/*よくある質問*/

/* 全体コンテナ */
.zc-problem-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* 2カラムのグリッド配置（IE11等への互換性を広げるため、PCではFlexboxの2連並びでも対応可能な設計にしています） */
.zc-problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* カード1枚ずつのスタイル */
.zc-problem-card {
  flex: 1 1 calc(50% - 12px); /* 2カラム均等配置 */
  min-width: 300px; /* 崩れ防止の最小幅 */
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* カードの上部ヘッダー（数字部分） */
.zc-problem-card-header {
  background-color: #f0f6fa; /* 薄い青色 */
  padding: 8px 16px;
  color: #0073bb; /* 数字の青色 */
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* カードのテキストエリア */
.zc-problem-card-body {
  padding: 24px 20px;
  flex-grow: 1;
  display: flex;
  align-items: center; /* 縦方向の中央揃え */
  background-color: #ffffff;
}

.zc-problem-card-text {
  margin: 0;
  color: #333333;
  line-height: 1.6;
}

/* ---------------------------------
   レスポンシブ（スマホ対応）
--------------------------------- */
@media screen and (max-width: 768px) {
  .zc-problem-grid {
    gap: 16px; /* スマホ時はカードの間隔を少し狭める */
  }
  
  .zc-problem-card {
    flex: 1 1 100%; /* 1カラム（縦一列）に変更 */
  }

  .zc-problem-card-body {
    padding: 20px 16px; /* スマートフォン向けに余白を微調整 */
  }
}


/*---------------------------
導入で押さえる5つのポイント
---------------------------*/

/* 全体コンテナ */
.zc-step-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
  box-sizing: border-box;
}

/* 縦並びのリスト */
.zc-step-list {
  display: flex;
  flex-direction: column;
  gap: 16px; /* カード同士の間隔 */
}

/* 各ステップカードの共通構造 */
.zc-step-item {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-left-width: 8px; /* 左側の太線 */
  border-radius: 4px;
  padding: 20px 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

/* 丸数字のベース設定 */
.zc-step-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 24px;
}

.zc-step-number {
  color: #ffffff;
  font-weight: bold;
  line-height: 1;
}

/* テキストコンテンツエリア */
.zc-step-content {
  flex-grow: 1;
}

.zc-step-item-title {
  margin: 0 0 6px 0;
  color: #003366; /* 濃い紺色 */
  font-weight: bold;
  line-height: 1.4;
}

.zc-step-item-text {
  margin: 0;
  color: #555555;
  line-height: 1.5;
}

/* ---------------------------------
   各段の色指定（左線と丸数字のカラー連動）
--------------------------------- */
/* 01: 濃いネイビー */
.zc-step-color-01 { border-left-color: #003366; }
.zc-step-color-01 .zc-step-badge { background-color: #003366; }

/* 02: やや濃いブルー */
.zc-step-color-02 { border-left-color: #1a66b3; }
.zc-step-color-02 .zc-step-badge { background-color: #1a66b3; }

/* 03: 明るいブルー */
.zc-step-color-03 { border-left-color: #008cd6; }
.zc-step-color-03 .zc-step-badge { background-color: #008cd6; }

/* 04: 青緑（ティール） */
.zc-step-color-04 { border-left-color: #00808b; }
.zc-step-color-04 .zc-step-badge { background-color: #00808b; }

/* 05: ブルーグレー */
.zc-step-color-05 { border-left-color: #557799; }
.zc-step-color-05 .zc-step-badge { background-color: #557799; }


/* ---------------------------------
   レスポンシブ（スマホ対応）
--------------------------------- */
@media screen and (max-width: 640px) {
  .zc-step-item {
    padding: 16px;
    align-items: flex-start; /* スマホ時は上揃えにして崩れを防ぐ */
  }

  .zc-step-badge {
    width: 36px;
    height: 36px;
    margin-right: 16px;
  }

  .zc-step-item-title {
    margin-bottom: 8px;
  }
}


/*----------------------------
ご支援の流れ
----------------------------*/
/* 全体コンテナ */
.sp-proc-container {
  width: 100%;
  box-sizing: border-box;
}

.sp-proc-container *,
.sp-proc-container *::before,
.sp-proc-container *::after {
  box-sizing: border-box;
}

/* フレックスレイアウト（PC基準：横並び） */
.sp-proc-wrapper {
  display: flex;
  align-items: stretch;
  gap: 40px; /* 矢印が入るスペースを確保 */
  width: 100%;
  margin: 0 auto;
}

/* カードの基本スタイル */
.sp-proc-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  position: relative; /* 矢印配置の基準点 */
}

/* 矢印（PC用：カードの右側に絶対配置） */
.sp-proc-has-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px; /* gap（40px）の中央に配置 */
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 12px;
  border-color: transparent transparent transparent #1062b3;
  z-index: 2;
}

/* ヘッダー（フェーズバッジ） */
.sp-proc-badge {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  color: #ffffff;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.sp-proc-badge-p1 { background-color: #003366; } /* 濃い紺 */
.sp-proc-badge-p2 { background-color: #1062b3; } /* 青 */
.sp-proc-badge-p3 { background-color: #00808b; } /* 青緑 */

.sp-proc-phase-title {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 4px;
}
.sp-proc-phase-period {
  line-height: 1.2;
}

/* 高さ制御用インナークラス */
.sp-proc-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  overflow: hidden;
}

/* メインコンテンツエリア（ここを3つのBOXで完全に同期させて引き伸ばす） */
.sp-proc-body {
  flex: 1 0 auto;
  padding: 24px 20px;
  background-color: #ffffff;
}

.sp-proc-main-title {
  margin: 0 0 16px 0;
  color: #003366;
  font-weight: bold;
  line-height: 1.4;
}

/* 区切り線 */
.sp-proc-divider {
  border: none;
  border-top: 2px solid #cbd5e1;
  margin: 0 0 16px 0;
  width: 100%;
}

/* リストスタイル */
.sp-proc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-proc-list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #333333;
}
.sp-proc-list li:last-child {
  margin-bottom: 0;
}
.sp-proc-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #333333;
}

/* フッター（アウトプット例：文字量に応じて可変） */
.sp-proc-footer {
  flex: 0 0 auto; /* 必要以上に伸ばさず、テキストに追従 */
  background-color: #f1f5f9;
  padding: 20px;
  border-top: 1px solid #e2e8f0;
}

.sp-proc-output-label {
  display: block;
  color: #1062b3;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.2;
}

.sp-proc-output-text {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

/* PC用改行コントロール */
.sp-proc-pc-only {
  display: inline;
}

/* --------------------------------------------------
 * レスポンシブ（タブレット・スマホ対応）
 * -------------------------------------------------- */
@media (max-width: 960px) {
  .sp-proc-wrapper {
    flex-direction: column;
    gap: 40px; /* スマホ時は縦の隙間として機能 */
  }
  
  .sp-proc-card {
    width: 100%;
    flex: none;
  }
  
  /* スマホ時は矢印をカードの「下側（中央）」に変更 */
  .sp-proc-has-arrow::after {
    top: auto;
    bottom: -26px; /* gapの中央 */
    right: 50%;
    transform: translateX(50%);
    border-width: 12px 10px 0 10px;
    border-color: #1062b3 transparent transparent transparent;
  }
  
  .sp-proc-inner {
    flex: none;
  }
  
  .sp-proc-body {
    flex: none; /* スマホ時は縦並びのため高さ同期を解除 */
  }

  .sp-proc-pc-only {
    display: none;
  }
}



/*---------------------------
船井総研の支援の特長
---------------------------*/

/* 全体コンテナ */
.sp-feat-container {
  width: 100%;
  box-sizing: border-box;
}

.sp-feat-container *,
.sp-feat-container *::before,
.sp-feat-container *::after {
  box-sizing: border-box;
}

/* 縦並びのリスト（各カード間の隙間を16pxに設定） */
.sp-feat-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin: 0 auto;
}

/* カードの基本スタイル（PC基準：横並びレイアウト） */
.sp-feat-card {
  display: flex;
  align-items: stretch; /* 数字バッジと白い本体の高さを揃える */
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

/* 左側：数字バッジ（固定幅） */
.sp-feat-badge {
  flex: 0 0 128px; /* 幅を128pxに固定 */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.sp-feat-badge-01 { background-color: #003366; } /* 濃い紺 */
.sp-feat-badge-02 { background-color: #1062b3; } /* 青 */
.sp-feat-badge-03 { background-color: #00808b; } /* 青緑 */

.sp-feat-number {
  font-weight: bold;
  font-size: 3rem; /* 既存CSSに干渉せず適度に大きく見せるため相対単位を使用 */
  line-height: 1;
}

/* 右側：メインコンテンツエリア（白い背景部分） */
.sp-feat-body {
  flex: 1;
  padding: 24px 32px;
  background-color: #ffffff;
}

/* 各BOX内の見出し */
.sp-feat-main-title {
  margin: 0 0 16px 0;
  color: #003366;
  font-weight: bold;
  line-height: 1.4;
}

/* 青い区切り線 */
.sp-feat-divider {
  border: none;
  border-top: 2px solid #cbd5e1;
  margin: 0 0 16px 0;
  width: 100%;
}

/* 本文テキスト */
.sp-feat-text {
  margin: 0;
  color: #333333;
  line-height: 1.7;
}

/* --------------------------------------------------
 * レスポンシブ（タブレット・スマホ対応）
 * -------------------------------------------------- */
@media (max-width: 768px) {
  /* スマホ時はバッジが上の縦並びに変更 */
  .sp-feat-card {
    flex-direction: column;
    align-items: stretch;
  }

  /* 数字バッジを上部いっぱいの横長に */
  .sp-feat-badge {
    flex: none;
    width: 100%;
    padding: 16px;
  }

  .sp-feat-number {
    font-size: 2.5rem;
  }

  /* 白い本文エリアのパディングをスマホ用に微調整 */
  .sp-feat-body {
    padding: 20px;
  }
}


