@charset "utf-8";
/* ==========================================================================
   全業種・形態のコンタクトセンターに適応可能なCX向上フレームワーク
   ========================================================================== */

/* 全体コンテナ */
.certification-section-container {
  width: 100%;
  max-width: 1000px; /* 既存のサイト幅に合わせて調整してください */
  margin: 0 auto;
  padding: 40px 0px;
  box-sizing: border-box;
}

/* メイン見出し */
.certification-section-main-title {
  text-align: center;
  color: #2b365e; /* 濃いネイビー */
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: bold;
  padding-top:20px;
}

/* カードリスト */
.certification-section-list {
  display: flex;
  flex-direction: column;
  gap: 20px; /* カード間の余白 */
}

/* 個々のカード */
.certification-section-card {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* 柔らかな影 */
  box-sizing: border-box;
}

/* アイコンエリア */
.certification-section-icon-wrap {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background-color: #f5f5f8; /* 薄いグレーパープルの背景 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}

.certification-section-icon {
  width: 60%;
  height: auto;
  object-fit: contain;
}

/* テキストコンテンツエリア */
.certification-section-content {
  flex-grow: 1;
}

/* カード内見出し */
.certification-section-card-title {
  color: #2b365e;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
}

/* 箇条書きリスト */
.certification-section-badge-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.certification-section-badge-list li {
  position: relative;
  padding-left: 15px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 8px;
}

.certification-section-badge-list li:last-child {
  margin-bottom: 0;
}

/* 箇条書きの「・」を再現 */
.certification-section-badge-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #333333;
}


/* ==========================================================================
   レスポンシブ（タブレット・スマホ対応）
   ========================================================================== */
@media screen and (max-width: 768px) {
  .certification-section-card {
    flex-direction: column; /* 縦並びにする */
    align-items: center;
    text-align: left; /* テキストは左寄りのまま */
    padding: 24px;
  }

  .certification-section-icon-wrap {
    margin-right: 0;
    margin-bottom: 20px; /* 下に余白を設ける */
    width: 100px;
    height: 100px;
  }
  
  .certification-section-card-title {
    text-align: center; /* スマホ時は見出しを中央寄せにすると綺麗です（お好みで） */
  }
}

/* ==========================================================================
  ご支援概要と成果物
   ========================================================================== */

   /* ==========================================================================
   Support Phase Section
   ========================================================================== */

/* 全体コンテナ */
.support-phase-container {
  width: 100%;
  max-width: 1100px; /* 既存サイトのコンテンツ幅に合わせて調整してください */
  margin: 0 auto;
  padding: 40px 0px;
  box-sizing: border-box;
}

/* メイン見出し */
.support-phase-main-title {
  text-align: center;
  color: #2b365e; /* 画像の濃いネイビー/パープル系 */
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

/* 注記テキスト */
.support-phase-note {
  text-align: center;
  color: #2b365e;
  margin-top: 0;
  margin-bottom: 40px;
  font-weight: bold;
}

/* 横並びラッパー */
.support-phase-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

/* 個々のカード */
.support-phase-card {
  flex: 1;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #eef2f6;
  box-sizing: border-box;
}

/* カードヘッダー（紺背景エリア） */
.support-phase-header {
  background-color: #313962; /* 濃いグラファイトブルー */
  padding: 20px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px; /* タイトル行数の違いによる高さズレを防止 */
  box-sizing: border-box;
}

/* アイコン円形エリア */
.support-phase-icon-wrap {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-phase-icon {
  width: 60%;
  height: auto;
  object-fit: contain;
}

/* タイトルエリア */
.support-phase-title-wrap {
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.support-phase-card-title {
  font-weight: bold;
  line-height: 1.3;
}

.support-phase-card-sub {
  font-size: 0.85em; /* 相対指定 */
  margin-top: 2px;
}

/* カードボディ（白背景エリア） */
.support-phase-body {
  padding: 25px 20px;
}

/* 小見出し（概要・成果物） */
.support-phase-section-title {
  color: #000000;
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: bold;
}

.support-phase-section-title:not(:first-of-type) {
  margin-top: 25px; /* 2つ目の小見出し（成果物）の上の余白 */
}

/* 箇条書きリスト */
.support-phase-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-phase-list li {
  position: relative;
  padding-left: 15px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 8px;
}

.support-phase-list li:last-child {
  margin-bottom: 0;
}

/* 箇条書きの「・」を再現 */
.support-phase-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #333333;
}

/* 各カード間の矢印（CSSで表現） */
.support-phase-arrow {
  flex-shrink: 0;
  align-self: center;
  width: 0;
  height: 0;
  border-style: solid;
  /* PC時は右向きの矢印 */
  border-width: 12px 0 12px 14px;
  border-color: transparent transparent transparent #4b547c;
  margin: 0 5px;
}


/* ==========================================================================
   レスポンシブ（タブレット・スマホ対応）
   ========================================================================== */
@media screen and (max-width: 900px) {
  /* 縦並びに変更 */
  .support-phase-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 0; /* 矢印のmarginで調整するため0に */
  }

  .support-phase-card {
    width: 100%;
    max-width: 500px; /* スマホ・タブレットで広がりすぎないよう制限 */
  }

  /* スマホ時は下向きの矢印に変更 */
  .support-phase-arrow {
    border-width: 14px 12px 0 12px;
    border-color: #4b547c transparent transparent transparent;
    margin: 20px 0;
  }
  
  .support-phase-header {
    min-height: auto; /* スマホ時は高さ自動に */
  }
}

/* ==========================================================================
   ご支援実績
   ========================================================================== */
   /* ==========================================================================
   Cases Section (業界・種別・導入事例)
   ========================================================================== */

/* 全体コンテナ（ご要望により背景を白に設定） */
.cases-section-container {
  width: 100%;
  max-width: 1100px; /* 既存サイトの幅に合わせて調整してください */
  margin: 0 auto;
  padding: 40px 0px;
  background-color: #ffffff; /* 背景色：白 */
  box-sizing: border-box;
}

/* メイン見出し */
.cases-section-main-title {
  text-align: center;
  color: #2b365e; /* 既存に合わせた濃紺 */
  margin-top: 0;
  margin-bottom: 40px;
  font-weight: bold;
}

/* 3カラムラッパー */
.cases-section-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

/* 各カード（シャドウ付きの白いボックス） */
.cases-section-card {
  flex: 1;
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid #e2e8f0; /* 白背景でも映えるよう、ごく薄い境界線を追加 */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* ご要望のシャドウ効果 */
  padding: 35px 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* カード内見出しエリア */
.cases-section-card-header {
  position: relative;
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

/* 見出し下の矢印付き区切り線をCSSで再現 */
.cases-section-card-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #94a3b8; /* 線。元の青みがかったグレー */
}

.cases-section-card-header::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 7px 0 7px;
  border-color: #94a3b8 transparent transparent transparent; /* 線の色と同じ突起 */
}

/* 見出しテキスト */
.cases-section-card-title {
  color: #2b365e;
  font-size: 1.35em;
  font-weight: bold;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* 導入事例（順不同）の補足テキスト */
.cases-section-title-sub {
  font-size: 0.65em;
  color: #2b365e;
  font-weight: normal;
}

/* カードボディ */
.cases-section-card-body {
  flex-grow: 1;
}

/* 箇条書きリスト */
.cases-section-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cases-section-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 12px;
}

.cases-section-list li:last-child {
  margin-bottom: 0;
}

/* 箇条書きの「・」の再現 */
.cases-section-list li::before {
  content: "•";
  position: absolute;
  left: 3px;
  top: 0;
  color: #333333;
  font-size: 1.1em;
}

/* 導入事例（リンク）のスタイル */
.cases-section-list-links li a {
  color: #333333;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cases-section-list-links li a:hover {
  color: #4f46e5; /* ホバー時のカラー。サイトに合わせて変更してください */
}


/* ==========================================================================
   レスポンシブ（タブレット・スマホ対応）
   ========================================================================== */
@media screen and (max-width: 850px) {
  /* タブレット・スマホで縦並びにする */
  .cases-section-wrapper {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .cases-section-card {
    width: 100%;
    max-width: 480px; /* 横に広がりすぎないように制限 */
    padding: 30px 24px;
  }
}


/* ==========================================================================
   ダウンロードバナー（PC/SP切り替え）
   ========================================================================== */

/* バナー全体のコンテナ */
.download-banner-container {
  width: 100%;
  max-width: 1000px; /* 既存のサイト幅（コンテンツ幅）に合わせて調整してください */
  margin: 40px auto; /* 上下に余白を持たせて中央寄せ */
  padding: 0 20px;   /* スマホ表示時に画面の端にぴったりくっつくのを防ぐ余白 */
  box-sizing: border-box;
}

/* リンクエリアをブロック化 */
.download-banner-container a {
  display: block;
  overflow: hidden;
  border-radius: 8px; /* 好みに応じて角を少し丸める場合（不要なら削除） */
}

/* 画像のレスポンシブ設定 */
.download-banner-img {
  width: 100%;
  height: auto;
  display: block; /* 画像の下にできる謎の隙間を消す設定 */
  transition: opacity 0.2s ease;
}

/* （オプション）マウスホバー時に少し透明にするエフェクト */
.download-banner-container a:hover .download-banner-img {
  opacity: 0.9;
}

/* --- 1. 初期状態（PC表示）の設定 --- */
/* PCのときは改行させない */
.sp {
    display: none;
}


/* --- 2. スマホ表示（画面幅768px以下）の設定 --- */
@media screen and (max-width: 768px) {
    /* スマホのときだけ改行を有効にする */
    .sp {
        display: inline;
    }
}