@charset "utf-8";

/* ==========================================================================
   船井総研グループのご紹介
   ========================================================================== */

/* ==========================================
   全体レイアウト・共通設定
   ========================================== */
.fsg-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
}

.fsg-container *,
.fsg-container *::before,
.fsg-container *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 改行コントロール */
.fsg-pc-only { display: block; }
.fsg-sp-only { display: none; }

/* ==========================================
   左側セクション（青背景・矢印形状）
   ========================================== */
.fsg-left-section {
  background-color: #217bb4;
  color: #ffffff;
  padding: 60px 20px;
  width: 100%;
  position: relative;
}

.fsg-left-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.fsg-main-title {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

/* パーパス囲み線（変形枠） */
.fsg-purpose-box {
  position: relative;
  padding: 20px;
  margin-bottom: 30px;
}
.fsg-purpose-box::before,
.fsg-purpose-box::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(255, 255, 255, 0.7);
  border-style: solid;
}
.fsg-purpose-box::before {
  top: 0; left: 0;
  border-width: 1px 0 0 1px;
}
.fsg-purpose-box::after {
  bottom: 0; right: 0;
  border-width: 0 1px 1px 0;
}

.fsg-badge {
  display: inline-block;
  background-color: #124c73;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.fsg-purpose-title {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
}

.fsg-purpose-sub {
  font-weight: 400;
  opacity: 0.9;
}

.fsg-lead-text {
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

/* イラスト部分 */
.fsg-visual-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.fsg-visual-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   右側セクション（各カード・装飾枠）
   ========================================== */
.fsg-right-section {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* L字装飾を持つカード構造 */
.fsg-card {
  position: relative;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 20px;
}
/* 左上のL字 */
.fsg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-top: 1px solid #333333;
  border-left: 1px solid #333333;
}
/* 右下のL字 */
.fsg-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-bottom: 1px solid #333333;
  border-right: 1px solid #333333;
}

.fsg-card-inner {
  text-align: center;
}

.fsg-card-label {
  display: block;
  color: #6da2d1;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.fsg-card-title {
  color: #333333;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

.fsg-card-desc {
  color: #555555;
  line-height: 1.8;
  font-size:1.3rem;
}

/* Funai Way 内のグリッドレイアウト */
.fsg-values-grid {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 30px;
  text-align: left;
}

.fsg-value-col {
  width: 100%;
}

.fsg-value-eng {
  color: #666666;
  font-weight: 600;
  margin-bottom: 4px;
}

.fsg-value-ja {
  color: #333333;
  font-weight: 700;
  margin-bottom: 2px;
}

.fsg-value-zh {
  color: #999999;
  margin-bottom: 12px;
}

.fsg-value-list {
  list-style: none;
}

.fsg-value-list li {
  position: relative;
  padding-left: 15px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 6px;
  font-size: 1.3rem;
}
/* リストの■の再現 */
.fsg-value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background-color: #b0c4de;
}


/* ==========================================
   メディアクエリ（PCサイズ：992px以上）
   ========================================== */
@media screen and (min-width: 992px) {
  .fsg-container {
    flex-direction: row;
    align-items: stretch;
  }

  .fsg-pc-only { display: block; }
  .fsg-sp-only { display: none; }

  /* 左側セクションを幅55%にし、右側へ突き出る矢印をclip-pathで表現 */
  .fsg-left-section {
    width: 55%;
    padding: 80px 60px 80px 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* 右側を尖らせる形状。不要な場合はpolygonを外してください */
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  }

  .fsg-left-content {
    width: 100%;
    max-width: 540px;
    margin-right: 8%; /* 矢印の先端の余白を考慮 */
    margin-left: auto;
  }

  /* 右側セクションを幅45%に */
  .fsg-right-section {
    width: 45%;
    padding: 80px 40px 80px 20px;
    justify-content: center;
    gap: 60px;
  }

  .fsg-card {
    max-width: 500px;
    margin: 0;
    padding: 30px 30px;
  }

  /* Funai Wayの3カラム横並び */
  .fsg-values-grid {
    flex-direction: row;
    gap: 20px;
  }

  .fsg-value-col {
    width: 33.333%;
  }
}

/* ==========================================================================
   船井総研グループのご紹介（2ページ目）
   ========================================================================== */

/* ==========================================
   全体レイアウト・共通設定
   ========================================== */
.fca-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.fca-container *,
.fca-container *::before,
.fca-container *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ==========================================
   上部テキストエリア
   ========================================== */
.fca-section-title {
  color: #333333;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.fca-lead-box {
  margin-bottom: 35px;
}

.fca-check-list {
  list-style: none;
}

.fca-check-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  line-height: 1.6;
}

.fca-check-icon {
  color: #333333;
  font-weight: 700;
  margin-right: 10px;
  flex-shrink: 0;
}

.fca-list-text {
  color: #333333;
  font-weight: 700;
}

/* 赤文字強調 */
.fca-highlight-red {
  color: #e60012;
  font-weight: 700;
}

/* ==========================================
   マトリクス画像エリア（レスポンシブ）
   ========================================== */
.fca-matrix-wrapper {
  width: 100%;
  margin-top: 20px;
  /* スマホ等で画面幅が狭い場合は横スクロールさせて図を損なわないようにする保険 */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.fca-matrix-img {
  display: block;
  width: 100%;
  height: auto;
  min-width: 680px; /* 図が潰れすぎないための最小幅（タブレット・スマホ対応） */
  margin: 0 auto;
}

/* ==========================================
   メディアクエリ（PCサイズ：768px以上）
   ========================================== */
@media screen and (min-width: 768px) {
  .fca-container {
    padding: 60px 40px;
  }

  .fca-section-title {
    margin-bottom: 25px;
  }

  .fca-check-list li {
    margin-bottom: 12px;
  }

  .fca-matrix-img {
    min-width: auto; /* PCサイズでは100%で綺麗に収まるため制限を解除 */
  }
}


/* ==========================================================================
   アメリカビジネス戦略策定および実行支援とは
   ========================================================================== */

/* ==========================================
   全体レイアウト・共通設定
   ========================================== */
.fus-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.fus-container *,
.fus-container *::before,
.fus-container *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ==========================================
   上部リードエリア
   ========================================== */
.fus-lead-area {
  margin-bottom: 40px;
}

.fus-lead-text {
  position: relative;
  padding-left: 20px;
  color: #000000;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* 先頭の■の再現 */
.fus-lead-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  background-color: #7f7f7f;
}

/* ==========================================
   メイングリッド（デフォルトはスマホ用1カラム）
   ========================================== */
.fus-content-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* コラムヘッダー・見出し */
.fus-column-header {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.fus-column-header::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #7f7f7f;
  margin-top: 10px;
}

.fus-column-title {
  color: #000000;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.fus-column-subtitle {
  color: #333333;
  margin-top: 4px;
}

/* リストアイテム構造 */
.fus-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fus-item {
  display: flex;
  align-items: stretch;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  min-height: 74px;
}

/* 左側アイコンブロック（擬似要素のベースとして position: relative を指定） */
.fus-item-icon {
  width: 54px;
  position: relative;
  flex-shrink: 0;
}

/* 【確実な白い丸の描写修正】擬似要素を真ん中に絶対配置 */
.fus-item-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: transparent;
  box-sizing: border-box;
}

/* 右側テキストブロック */
.fus-item-body {
  padding: 12px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* タイトルの文字サイズを相対的に大きく（フォントサイズ指定を排除し倍率で調整） */
.fus-item-title {
  font-size: 110%;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

/* 説明文の文字サイズを相対的に小さく（倍率で調整） */
.fus-item-desc {
  font-size: 0.85em;
  color: #555555;
  line-height: 1.4;
  letter-spacing: 0;
}

/* ==========================================
   カラーバリエーション（背景色と文字色の同期）
   ========================================== */
/* 1つ目：濃い青 */
.fus-color-blue .fus-item-icon { background-color: #1a529b; }
.fus-color-blue .fus-item-title { color: #1a529b; }

/* 2つ目：明るい青 */
.fus-color-blue2 .fus-item-icon { background-color: #0070c0; }
.fus-color-blue2 .fus-item-title { color: #0070c0; }

/* 3つ目：青緑 */
.fus-color-green .fus-item-icon { background-color: #00b08b; }
.fus-color-green .fus-item-title { color: #00b08b; }

/* 4つ目：明るい緑 */
.fus-color-green2 .fus-item-icon { background-color: #00b050; }
.fus-color-green2 .fus-item-title { color: #00b050; }

/* 5つ目：紫 */
.fus-color-purple .fus-item-icon { background-color: #7030a0; }
.fus-color-purple .fus-item-title { color: #7030a0; }


/* ==========================================
   メディアクエリ（PCサイズ：992px以上）
   ========================================== */
@media screen and (min-width: 992px) {

  .fus-content-grid {
    flex-direction: row;
    gap: 40px;
  }

  .fus-column {
    width: 50%;
  }

  .fus-item-icon {
    width: 64px;
  }

  .fus-item-body {
    padding: 12px 20px;
  }
}


/* ==========================================================================
   アメリカビジネスで船井総研が選ばれる理由
   ========================================================================== */

/* ==========================================
   全体レイアウト・共通設定
   ========================================== */
.fch-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.fch-container *,
.fch-container *::before,
.fch-container *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* グリッドコンテナ（デフォルト：スマホ用1カラム） */
.fch-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ==========================================
   カードの装飾・レイアウト
   ========================================== */
.fch-card {
  background-color: #ffffff;
  border: 1px solid #d3ccf3; /* 薄い紫・青系の丸みを帯びた枠線 */
  border-radius: 16px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(211, 204, 243, 0.2);
}

/* カードタイトル */
.fch-card-title {
  color: #1a529b; /* 濃い青色の文字色 */
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  text-indent: -1em;
  padding-left: 1em;
}

/* リスト（箇条書き）設定 */
.fch-card-list {
  list-style: none;
  margin-bottom: 20px;
}

.fch-card-list li {
  position: relative;
  padding-left: 15px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 12px;
}

.fch-card-list li:last-child {
  margin-bottom: 0;
}

/* 文頭の「・」をCSSで表現 */
.fch-card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #333333;
  font-weight: 700;
}

/* グラフィック表示エリア */
.fch-visual-area {
  margin-top: auto; /* テキストの量に関わらず、画像を常にカード最下部に固定 */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.fch-visual-img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   メディアクエリ（PCサイズ：992px以上）
   ========================================== */
@media screen and (min-width: 992px) {

  /* 2カラムのグリッド横並び */
  .fch-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }

  /* 各カードの幅を2カラム用に調整 */
  .fch-card {
    width: calc(50% - 15px);
    padding: 35px 30px;
  }
}


/* ==========================================================================
   よくあるご相談内容
   ========================================================================== */
   /* ==========================================
   全体レイアウト・共通設定
   ========================================== */
.fcn-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.fcn-container *,
.fcn-container *::before,
.fcn-container *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ==========================================
   上部リードタイトル
   ========================================== */
.fcn-lead-header {
  margin-bottom: 40px;
}

.fcn-lead-title {
  position: relative;
  padding-left: 20px;
  color: #000000;
  font-weight: 700;
  line-height: 1.5;
}

/* 行頭のグレーのスクエア（■）を再現 */
.fcn-lead-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 8px;
  height: 8px;
  background-color: #7f7f7f;
}

/* ==========================================
   相談内容リスト
   ========================================== */
.fcn-consult-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px; /* リスト間の縦の余白 */
}

.fcn-list-item {
  display: flex;
  align-items: flex-start;
}

/* 通常の黒いチェックマーク（太字表現） */
.fcn-check-icon {
  display: block;
  font-weight: 700;
  color: #000000;
  margin-right: 15px;
  line-height: 1.6;
  flex-shrink: 0;
}

/* テキストエリア */
.fcn-item-text {
  color: #000000;
  line-height: 1.75;
}

/* デザイン上の青文字強調部分 */
.fcn-text-blue {
  color: #1a529b;
}

/* ==========================================
   5番目のアイテム（チェックマークが青い行）の制御
   ========================================== */
.fcn-item-highlight .fcn-check-icon {
  color: #1a529b;
}


/* ==========================================
   メディアクエリ（PCサイズ：768px以上）
   ========================================== */
@media screen and (min-width: 768px) {
  /*.fcn-container {
    padding: 60px 40px;
  }*/

  .fcn-consult-list {
    gap: 15px;
  }
  
  .fcn-check-icon {
    margin-right: 20px;
  }
}

/* ==========================================================================
   ご支援イメージ
   ========================================================================== */
/* ==========================================
   全体レイアウト・共通設定
   ========================================== */
.frm-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.frm-container *,
.frm-container *::before,
.frm-container *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ==========================================
   上部リードエリア
   ========================================== */
.frm-lead-area {
  margin-bottom: 40px;
}

.frm-lead-bold {
  position: relative;
  padding-left: 20px;
  color: #000000;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* 先頭の■（正方形）の再現 */
.frm-lead-bold::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  background-color: #7f7f7f;
}

/* ==========================================
   ロードマップエリア
   ========================================== */
.frm-roadmap-block {
  width: 100%;
}

/* 青い帯の見出し（■付き） */
.frm-roadmap-title {
  background-color: #0086be;
  color: #ffffff;
  padding: 10px 15px;
  font-weight: 700;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

/* 白いスクエア（■）を行頭に配置 */
.frm-roadmap-title::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  margin-right: 10px;
  flex-shrink: 0;
}

/* 補足テキスト */
.frm-roadmap-desc {
  color: #333333;
  line-height: 1.6;
  margin: 15px 0 25px;
  padding-left: 5px;
}

/* ==========================================
   表の画像エリア（レスポンシブ・スクロール対応）
   ========================================== */
.frm-table-wrapper {
  width: 100%;
  overflow-x: auto; /* 横幅が足りない時はスクロール可能にする */
  -webkit-overflow-scrolling: touch; /* iOSでのスクロールを滑らかに */
  border: 1px solid #e0e0e0; /* 綺麗に見せるための軽い外枠 */
  padding: 5px;
}

.frm-table-img {
  display: block;
  width: 100%;
  height: auto;
  /* 画像内の文字を読ませるため、スマホ等の狭い画面でも
    最低900pxの幅をキープして綺麗に横スクロールさせます。
  */
  min-width: 900px; 
}

/* ==========================================
   メディアクエリ（PCサイズ：992px以上）
   ========================================== */
@media screen and (min-width: 992px) {
  .frm-container {
    padding: 20px 0px;
  }

  .frm-lead-area {
    margin-bottom: 50px;
  }

  .frm-roadmap-desc {
    margin: 20px 0 30px;
  }

  .frm-table-img {
    min-width: auto; /* PCなどの大画面ではスクロールを解除し、100%幅で綺麗に収める */
  }
}

/* ==========================================================================
   サービスメニューと対象業種（例）
   ========================================================================== */
   /* ==========================================
   全体レイアウト・共通設定
   ========================================== */
.fsm-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.fsm-container *,
.fsm-container *::before,
.fsm-container *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 上部リードエリア */
.fsm-lead-area {
  margin-bottom: 30px;
}

.fsm-lead-bold {
  position: relative;
  padding-left: 20px;
  color: #000000;
  font-weight: 700;
  line-height: 1.6;
}

/* 先頭の■（正方形）の再現 */
.fsm-lead-bold::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  background-color: #7f7f7f;
}

/* ==========================================
   テーブルコンテナ（レスポンス用の横スクロール設定）
   ========================================== */
.fsm-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.fsm-table {
  width: 100%;
  min-width: 950px; /* スマホでも表が崩れないための最低幅設定 */
  border-collapse: collapse;
  table-layout: fixed; /* 各列の横幅を固定にする */
}

/* 列幅の比率配分 */
.fsm-th-menu, .fsm-td-menu { width: 25%; }
.fsm-th-content, .fsm-td-content { width: 43%; }
.fsm-th-target, .fsm-td-target { width: 32%; }

/* ==========================================
   ヘッダー（TH）とセル（TD）の共通装飾
   ========================================== */
.fsm-table th {
  background-color: #0086be; /* 上部ヘッダーの鮮やかなブルー */
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  padding: 12px 10px;
  border: 1px solid #ffffff;
  line-height: 1.4;
}

.fsm-table td {
  padding: 15px;
  border: 1px solid #7f7f7f; /* 外枠・内枠のグレーの境界線 */
  background-color: #ffffff;
  vertical-align: top;
}

/* ==========================================
   左カラム：サービスメニュー構造
   ========================================== */
.fsm-menu-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fsm-menu-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.fsm-menu-text {
  font-weight: 700;
  line-height: 1.4;
}

/* テキストカラーバリエーション */
.fsm-color-green   { color: #548235; }
.fsm-color-teal    { color: #00b08b; }
.fsm-color-blue    { color: #1a529b; }
.fsm-color-purple  { color: #7030a0; }
.fsm-color-orange  { color: #e36c09; }
.fsm-color-pink    { color: #ff0066; }
.fsm-color-navy    { color: #002060; }
.fsm-color-gray    { color: #595959; }

/* ==========================================
   中央・右カラム：箇条書きリスト構造
   ========================================== */
.fsm-detail-list {
  list-style: none;
}

.fsm-detail-list li {
  position: relative;
  padding-left: 15px;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 8px;
}

.fsm-detail-list li:last-child {
  margin-bottom: 0;
}

/* リスト先頭の「・」をCSSで表現 */
.fsm-detail-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
}

/* ==========================================
   メディアクエリ（PCサイズ：768px以上）
   ========================================== */
@media screen and (min-width: 768px) {
  .fsm-container {
    padding: 20px 0px;
  }
  
  .fsm-table th {
    padding: 15px 10px;
  }

  .fsm-table td {
    padding: 20px 15px;
  }
}

/* ==========================================================================
   調査資料イメージ
   ========================================================================== */
   /* ==========================================
   全体レイアウト・共通設定
   ========================================== */
.fdi-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.fdi-container *,
.fdi-container *::before,
.fdi-container *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 上部リードエリア */
.fdi-lead-area {
  margin-bottom: 30px;
}

.fdi-lead-bold {
  position: relative;
  padding-left: 20px;
  color: #000000;
  font-weight: 700;
  line-height: 1.6;
}

/* 行頭のグレーのスクエア（■）を再現 */
.fdi-lead-bold::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  background-color: #7f7f7f;
}

/* ==========================================
   メインコンテンツ（デフォルトはスマホ用1カラム）
   ========================================== */
.fdi-grid {
  display: flex;
  flex-direction: column;
  gap: 40px; /* スマホ時：縦に並んだカラム同士の隙間 */
}

.fdi-column {
  width: 100%;
}

/* 各カラムの青い帯の見出し */
.fdi-column-title {
  background-color: #0086be; /* 鮮やかなブルー */
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  padding: 12px 10px;
  line-height: 1.4;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

/* 各資料画像のラッパー */
.fdi-image-box {
  width: 100%;
  background-color: #ffffff;
}

/* 資料画像本体のレスポンシブ制御 */
.fdi-doc-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================================
   メディアクエリ（PCサイズ：992px以上）
   ========================================== */
@media screen and (min-width: 992px) {
  .fdi-container {
    padding: 20px 0px;
  }

  /* PCでは横並び3カラムに切り替え */
  .fdi-grid {
    flex-direction: row;
    gap: 20px; /* カラム間の横の隙間 */
  }

  /* 3分割の等幅計算（gap分を差し引く） */
  .fdi-column {
    width: calc((100% - 40px) / 3);
  }

  .fdi-column-title {
    padding: 15px 10px;
    margin-bottom: 25px;
  }
}

/* ==========================================================================
   支援事例
   ========================================================================== */
   /* --- 支援事例全体コンテナ --- */
.case-study-section {
  width: 100%;
  box-sizing: border-box;
  margin: 20px 0;
}

/* メイン見出し（■ 以下に、担当〜） */
.case-study-main-title {
  display: flex;
  align-items: center;
  margin: 0 0 40px 0;
  font-weight: bold;
}
.case-study-main-title::before {
  content: "■";
  color: #7f7f7f; /* スクリーンショットのグレーに近い色 */
  margin-right: 8px;
}

/* レイアウトコンテナ（PC時は横並び、スマホ時は縦並び） */
.case-study-container {
  display: flex;
  flex-direction: column-reverse; /* スマホ時に画像を上にしたい場合は column-reverse、下にしたい場合は column */
  gap: 30px;
}

.case-study-container2 {
  display: flex;
  flex-direction: column-reverse; /* スマホ時に画像を上にしたい場合は column-reverse、下にしたい場合は column */
  gap: 30px;
  margin-top: 80px;
}


/* --- 左側：テキストエリア --- */
.case-study-content {
  flex: 1;
}

/* 事例タイトル（ペットメーカーの〜） */
.case-study-sub-title {
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #7f7f7f;
  font-weight: bold;
  text-align: center;
  max-width: 450px; /* 線が伸びすぎないよう調整 */
}

/* 各グループ（課題・内容・結果） */
.case-study-group {
  margin-bottom: 25px;
}
.case-study-group:last-child {
  margin-bottom: 0;
}

/* グループタイトル（■ ご支援開始前の課題） */
.case-study-group-title {
  display: flex;
  align-items: center;
  color: #1a5276; /* スクリーンショットの濃い青に近い色 */
  margin: 0 0 8px 0;
  font-weight: bold;
}
.case-study-group-title::before {
  content: "■";
  font-size: 0.8em;
  margin-right: 6px;
}

/* リストスタイル */
.case-study-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.case-study-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 6px;
  line-height: 1.5;
}
.case-study-list li:last-child {
  margin-bottom: 0;
}
/* 文頭のハイフン「- 」を疑似要素で再現 */
.case-study-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}

/* --- 右側：画像エリア --- */
.case-study-image-wrapper {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.case-study-image {
  width: 100%;
  max-width: 550px; /* 画像の最大サイズ */
  height: auto;
  object-fit: cover;
}

/* --- レンポンシブ対応（PCタブレット向け：768px以上） --- */
@media (min-width: 768px) {
  .case-study-container {
    flex-direction: row; /* 横並びに変更 */
    align-items: flex-start;
    gap: 40px;
  }
  
    .case-study-container2 {
    flex-direction: row; /* 横並びに変更 */
    align-items: flex-start;
    gap: 40px;
    margin-top: 80px;
  }

  .case-study-sub-title {
    text-align: left;
  }
}

/* ==========================================================================
   支援事例
   ========================================================================== */
   /* --- 全体コンテナ --- */
.gg-study-section {
  width: 100%;
  box-sizing: border-box;
  margin: 30px 0;
}

/* メインタイトル（■ 海外ビジネスの〜） */
.gg-study-main-title {
  display: flex;
  align-items: center;
  margin: 0 0 40px 0;
  font-weight: bold;
}
.gg-study-main-title::before {
  content: "■";
  color: #7f7f7f;
  margin-right: 8px;
}

/* 2カラムレイアウト用コンテナ（基本は縦並び、PCで横並び） */
.gg-study-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 各カラムのベース設定 */
.gg-study-col-left,
.gg-study-col-right {
  width: 100%;
}

/* 小見出し（■グローバルグローズ〜 / ■活用イメージ） */
.gg-study-sub-title {
  margin: 0 0 20px 0;
  font-weight: bold;
}

/* --- 左カラム：講座内容のスタイル --- */
/* 画像2枚の並び */
.gg-study-thumb-box {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.gg-study-thumb {
  flex: 1;
}
.gg-study-thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* テーブルスタイル */
.gg-study-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}
.gg-study-table th,
.gg-study-table td {
  border: 1px solid #7f7f7f;
  padding: 15px 10px;
  vertical-align: middle;
}
/* テーブルヘッダー（青背景） */
.gg-study-table th {
  background-color: #008cc9; /* スクリーンショットの鮮やかな青 */
  color: #ffffff;
  font-weight: bold;
}
.gg-table-th-short {
  width: 25%;
}
/* テーブルボディ */
.gg-study-table td {
  background-color: #ffffff;
}
.gg-table-label {
  background-color: #f2f2f2 !important; /* 左列の薄いグレー背景 */
  font-weight: bold;
}
.gg-table-text {
  text-align: center;
}

/* --- 右カラム：活用イメージのスタイル --- */
/* チェック（✓）リスト */
.gg-study-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.gg-study-check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: bold;
}
.gg-study-check-list li:last-child {
  margin-bottom: 0;
}
/* チェックマーク（✓）を疑似要素で再現 */
.gg-study-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  font-weight: bold;
}

/* ロードマップ画像エリア */
.gg-study-roadmap-box {
  width: 100%;
}
.gg-study-roadmap-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- レスポンシブ対応（PC・タブレット向け：992px以上で2カラム化） --- */
@media (min-width: 992px) {
  .gg-study-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
  }
  
  .gg-study-col-left {
    flex: 1.1; /* テーブル側をやや広めに設定 */
  }
  
  .gg-study-col-right {
    flex: 0.9;
  }
}
