@charset "utf-8";


/*--------------------------
大規模成長投資補助金 とは
/*--------------------------


/* 既存のCSSとの干渉を防ぐため、独自のプレフィックス（sp-subsidy-）を付与しています */
.sp-subsidy-container {
  width: 100%;
  box-sizing: border-box;
  margin: 30px 0;
}

.sp-subsidy-container * {
  box-sizing: border-box;
}

.sp-subsidy-item {
  background-color: #00a0e9; /* 画像を基にした鮮やかな水色 */
  margin-bottom: 16px;       /* ブロック間の余白 */
  padding: 18px 30px;        /* 上下左右の余白（レスポンシブで調整されます） */
  display: flex;
  align-items: center;
}

.sp-subsidy-item:last-child {
  margin-bottom: 0;          /* 最後の要素の余白をリセット */
}

.sp-subsidy-text {
  color: #ffffff;            /* 文字色：白 */
  margin: 0;                 /* デフォルトのマージンをリセット */
  padding: 0;
  line-height: 1.5;
  text-align: left;
  font-weight: bold;
}

/* 画面幅が狭いスマホ環境用のレスポンシブ調整 */
@media screen and (max-width: 768px) {
  .sp-subsidy-item {
    padding: 16px 20px;      /* スマホに合わせてパディングを少し縮小 */
    margin-bottom: 12px;
  }
}


/*--------------------------
大規模成長投資補助金 申請支援コンサルティング とは
/*--------------------------

/* ==========================================================================
   実績セクション（既存CSSとの干渉を防ぐためすべて独自クラスで定義）
   ========================================================================== */

.sh-achieve-section {
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
}

.sh-achieve-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.sh-achieve-card {
  flex: 1;
  max-width: 360px; /* 円の最大幅 */
  min-width: 280px;
  box-sizing: border-box;
}

/* 正円を作るための設定 */
.sh-achieve-circle {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* 縦横比を1:1に固定 */
  border-radius: 50%;
  background: radial-gradient(circle at center, #ffffff 0%, #e0f7fc 100%); /* 淡い水色のグラデーション */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

/* 円の中にテキスを収めるためのインナークッション */
.sh-achieve-circle-inner {
  width: 88%; /* 円の縁から文字がはみ出ないように制限 */
  padding: 10px;
  box-sizing: border-box;
}

/* 数字部分 */
.sh-achieve-num-wrap {
  margin: 0 0 4px 0;
  line-height: 1.1;
  color: #000000;
}
.sh-achieve-num {
  font-size: 4.5rem; /* PC基準のサイズ */
  font-weight: bold;
}
.sh-achieve-unit {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 2px;
}

/* 数字の下の補足テキスト */
.sh-achieve-sub-text {
  margin: 0 0 16px 0;
  font-weight: bold;
  color: #000000;
  line-height: 1.4;
  font-size: 80%;;
}

/* タイトル（h3） */
.sh-achieve-title {
  margin: 0 0 8px 0;
  font-weight: bold;
  color: #000000;
  line-height: 1.3;
  white-space: nowrap; /* タイトルの意図しない改行を防ぐ */
}

/* 青色ハイライト */
.sh-achieve-highlight {
  color: #0077c2; /* 画像に合わせた鮮やかな青 */
}

/* 説明文 */
.sh-achieve-desc {
  margin: 0;
  font-weight: bold;
  color: #000000;
  line-height: 1.4;
  font-size: 80%;
}

/* ==========================================================================
   レスポンシブ対応
   ========================================================================== */

/* タブレット〜小型PC環境（円が縮むのに合わせて文字サイズを流動的に調整） */
@media screen and (max-width: 1024px) {
  .sh-achieve-container {
    gap: 16px;
  }
  .sh-achieve-num {
    font-size: 6.5vw; /* 画面幅に応じて縮小 */
  }
}

/* スマートフォン環境（横並びから縦並びに切り替え） */
@media screen and (max-width: 768px) {
  .sh-achieve-container {
    flex-direction: column;
    align-items: center;
    gap: 32px; /* 縦並び時のカード間の余白 */
  }

  .sh-achieve-card {
    width: 85%; /* スマホ画面内での円の大きさ（適宜調整してください） */
    max-width: 340px;
  }

  /* スマホ時はvwでの縮小を解除し、固定の最適サイズに固定 */
  .sh-achieve-num {
    font-size: 4.2rem;
  }
}


/*----------------------------
ご支援イメージ
/*----------------------------


/* --- 全体コンテナ --- */
.support-flow-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.support-flow-section *,
.support-flow-section *::before,
.support-flow-section *::after {
  box-sizing: border-box;
}

/* --- メインタイトル（矢印形状のリボンレスポンシブ） --- */
.sf-main-title {
  position: relative;
  background-color: #2b549a;
  color: #ffffff;
  text-align: center;
  padding: 15px 30px;
  font-weight: bold;
  margin-bottom: 25px;
  overflow: hidden;
}
@media (min-width: 769px) {
  .sf-main-title {
    padding-right: 40px;
  }
  .sf-main-title::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 20px solid #ffffff; /* 背景色に合わせて切り欠きを表現 */
  }
}

/* --- フローレイアウト --- */
.sf-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 769px) {
  .sf-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
}

/* --- カラム --- */
.sf-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (min-width: 769px) {
  .sf-column.sf-flex-stretch {
    align-self: stretch;
  }
}

/* --- ヘッダー（グラデーション/色分け用矢印デザイン） --- */
.sf-column-header {
  position: relative;
  width: 100%;
  color: #ffffff;
  text-align: center;
  padding: 12px 10px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media (min-width: 769px) {
  .sf-column-header::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    z-index: 2;
  }
  /* 各カラムの色と右矢印のカラー調整 */
  .sf-bg-blue1 { background-color: #00a0dc; }
  .sf-bg-blue1::after { border-left: 15px solid #00a0dc; }
  
  .sf-bg-blue2 { background-color: #009adb; }
  .sf-bg-blue2::after { border-left: 15px solid #009adb; }
  
  .sf-bg-blue3 { background-color: #0082c3; }
  .sf-bg-blue3::after { border-left: 15px solid #0082c3; }
  
  .sf-bg-blue4 { background-color: #0071bc; }
  .sf-bg-blue4::after { border-left: 15px solid #0071bc; }
}
@media (max-width: 768px) {
  .sf-bg-blue1 { background-color: #00a0dc; }
  .sf-bg-blue2 { background-color: #009adb; }
  .sf-bg-blue3 { background-color: #0082c3; }
  .sf-bg-blue4 { background-color: #0071bc; }
}

/* --- ステップボックス --- */
.sf-box {
  width: 100%;
  max-width: 340px;
  background-color: #ffffff;
  border: 1px dotted #999999;
  text-align: center;
  padding: 10px;
  color: #333333;
}

/* 強調（面接対策） */
.sf-box.sf-highlight {
  background-color: #b30000;
  border: none;
  color: #ffffff;
  font-weight: bold;
}

/* 矢印 */
.sf-arrow {
  color: #999999;
  margin: 6px 0;
  font-size: 12px;
}

/* --- 面接対策ラッパーと吹き出し --- */
.sf-interview-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sf-balloon {
  background-color: #ffffcc;
  border: 1px solid #cccccc;
  border-radius: 15px;
  padding: 15px;
  color: #333333;
  margin-top: 15px;
  position: relative;
}

@media (min-width: 769px) {
  .sf-balloon {
    position: absolute;
    right: 105%;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    margin-top: 0;
  }
  /* 左向きの突起 */
  .sf-balloon::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #ffffcc;
    z-index: 2;
  }
  .sf-balloon::before {
    content: "";
    position: absolute;
    right: -11px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #cccccc;
    z-index: 1;
  }
}
@media (max-width: 768px) {
  /* スマホ時は上に突起 */
  .sf-balloon::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffffcc;
    z-index: 2;
  }
  .sf-balloon::before {
    content: "";
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #cccccc;
    z-index: 1;
  }
}

/* --- 右側：長期縦長ボックス --- */
.sf-long-box {
  width: 100%;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  padding: 30px 20px;
  color: #333333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  min-height: 200px;
}
.sf-long-box p {
  margin: 0 0 1em 0;
  line-height: 1.6;
}
.sf-long-box p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   課題・解決策セクション専用スタイル（クラスの競合を防ぐため一意の接頭辞を付与）
   ========================================================================== */

/* ベースコンテナ */
.sol-issue-section {
  width: 100%;
  box-sizing: border-box;
}

.sol-issue-section *,
.sol-issue-section *::before,
.sol-issue-section *::after {
  box-sizing: border-box;
}

.sol-issue-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1200px; /* 必要に応じて調整してください */
  margin: 0 auto;
  padding-top: 70px;
}

/* 各カード（列） */
.sol-issue-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* 課題ヘッダー（青背景） */
.sol-issue-header {
  background-color: #2b579a;
  padding: 8px;
  text-align: center;
}

.sol-issue-title {
  color: #ffffff;
  margin: 0;
  font-weight: bold;
}

/* 課題内容（青文字） */
.sol-issue-problem {
  padding-top: 15px;
  flex-grow: 0;
  min-height: 111px;
}

.sol-issue-problem p {
  color: #0066cc;
  margin: 0;
  line-height: 1.5;
}

/* 下向き矢印（CSS三角形） */
.sol-issue-arrow {
  width: 0;
  height: 0;
  margin: 15px auto;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #0066cc;
}

/* 解決策内容（黒文字） */
.sol-issue-solution {
  flex-grow: 1;
}

.sol-issue-solution p {
  color: #333333;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

/* ==========================================================================
   レスポンシブ（タブレット・PCサイズ：768px以上）
   ========================================================================== */
@media screen and (min-width: 768px) {
  .sol-issue-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 4%; /* カラム間の余白 */
  }

  .sol-issue-card {
    width: 30.66%; /* 3カラム均等配置 */
  }
}


  @media (max-width: 768px) {
  .sol-issue-problem {
  min-height: auto;
  }


}


/*------------------------------
ご支援実績（一例）　
/*------------------------------


/* 全体コンテナ */
.ms-sub-container {
  width: 100%;
  box-sizing: border-box;
}

.ms-sub-container *, 
.ms-sub-container *::before, 
.ms-sub-container *::after {
  box-sizing: border-box;
}

/* ヘッダータイトル（青背景） */
.ms-sub-main-header {
  background-color: #2b579a;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  padding: 15px 10px;
  margin-bottom: 15px;
  font-size: 120%;
}

/* 採択率・累計金額エリア */
.ms-sub-summary-box {
  border: 1px solid #7f7f7f;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 10px;
  margin-bottom: 25px;
  background-color: #ffffff;
}

.ms-sub-summary-col {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* バッジ（紺背景） */
.ms-sub-badge {
  background-color: #2b579a;
  color: #ffffff;
  padding: 6px 40px;
  text-align: center;
  margin-bottom: 15px;
  width: 100%;
  max-width: 400px;
}

.ms-sub-small-note {
  font-size: 0.75em;
  font-weight: normal;
  margin-left: 5px;
  display: inline-block;
}

/* サマリーテキスト */
.ms-sub-summary-text {
  text-align: center;
  color: #333333;
}

.ms-sub-underline {
  text-decoration: underline;
  font-size: 120%;
}

.ms-sub-bold {
  font-weight: bold;
}

/* 各セクション見出し */
.ms-sub-section-title {
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

/* テーブルグリッド */
.ms-sub-table-grid {
  display: flex;
  gap: 15px;
}

.ms-sub-triple-grid > * {
  flex: 1;
  min-width: 0;
}

.ms-sub-double-grid > * {
  flex: 1;
  min-width: 0;
}

/* テーブルスタイル */
.ms-sub-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.ms-sub-table th, 
.ms-sub-table td {
  border: 1px solid #7f7f7f;
  padding: 8px 5px;
}

.ms-sub-table th {
  background-color: #7f7f7f;
  color: #ffffff;
  font-weight: normal;
}

.ms-sub-table td {
  background-color: #ffffff;
  color: #333333;
}

/* レスポンシブ対応（タブレット・スマホ向け） */
@media screen and (max-width: 768px) {
  .ms-sub-summary-box {
    flex-direction: column;
    gap: 20px;
  }
  
  .ms-sub-summary-col {
    width: 100%;
    min-width: 100%;
  }

  .ms-sub-table-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* コンテナ全体のスタイル（横並び・レスポンシブ対応） */
.sol-subsidy-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1000px; /* 必要に応じて調整してください */
  margin: 0 auto;
  box-sizing: border-box;
  padding: 40px 0 25px 0;
}

.sol-subsidy-container *,
.sol-subsidy-container *::before,
.sol-subsidy-container *::after {
  box-sizing: border-box;
}

/* カード全体のスタイル */
.sol-subsidy-card {
  width: 100%;
  border: 1px solid #707070;
  background-color: #ffffff;
}

/* ヘッダー部分（青背景・白文字） */
.sol-subsidy-header {
  background-color: #2b579a;
  color: #ffffff;
  text-align: center;
  padding: 12px 8px;
  font-weight: bold;
}

/* カード内部のコンテンツエリア */
.sol-subsidy-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* 「採択率」ラベル部分 */
.sol-subsidy-label {
  background-color: #2b579a;
  color: #ffffff;
  text-align: center;
  width: 100%;
  max-width: 320px;
  padding: 6px 8px;
}

/* 結果表示エリア（下線含む） */
.sol-subsidy-result {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  text-decoration: underline;
}

/* 実績数字（100%） */
.sol-subsidy-number {
  font-weight: bold;
  line-height: 1;
}

/* 注記（※ 2026年5月時点） */
.sol-subsidy-note {
  line-height: 1;
}

/* 実績テキスト（高採択率を維持） */
.sol-subsidy-text {
  font-weight: bold;
  line-height: 1.2;
}

/* 画面幅が768px以上の場合（PC・タブレット向けの横並び設定） */
@media screen and (min-width: 768px) {
  .sol-subsidy-container {
    flex-direction: row;
  }
  
  .sol-subsidy-card {
    flex: 1;
  }
}


/*-------------------------
お客様の声
/*-------------------------

/* コンテナ全体の設定 */
.vo-container {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #ffffff;
  padding-bottom: 50px;
}

.vo-container:last-child {
  padding-bottom: 0;
}

.vo-container *,
.vo-container *::before,
.vo-container *::after {
  box-sizing: border-box;
}

/* ヘッダーブロック（ご指定色 #315b9d ベース） */
.vo-header {
  background-color: #315b9d;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: 0 4px 12px rgba(49, 91, 157, 0.12);
}

.vo-catch-box {
  text-align: center;
  margin-bottom: 30px;
}

/*
.vo-catch-label {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
  */

.vo-catch-text {
  color: #ffffff;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
  font-size: 140%;
}

/* 属性・実績グリッド */
.vo-meta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
}

.vo-meta-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* 採択金額を上品に強調するシックな枠線 */
.vo-meta-card.vo-meta-highlight {
  border: 1px solid #c9bca9;
}

.vo-meta-label {
  color: #718096;
  font-weight: bold;
}

.vo-meta-value {
  color: #315b9d; /* ご指定のブルー */
  font-weight: bold;
  text-align: center;
}

/* 金額強調用の落ち着いたブロンズ */
.vo-meta-highlight .vo-meta-value {
  color: #a07e56; 
}

/* Q&Aリスト */
.vo-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vo-qa-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* 質問エリア */
.vo-question {
  background-color: #f7fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Qバッジ：ご指定色 #315b9d */
.vo-q-badge {
  background-color: #315b9d;
  color: #ffffff;
  font-weight: bold;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.vo-q-text {
  color: #2d3748;
  font-weight: bold;
  margin: 2px 0 0 0;
  line-height: 1.5;
}

/* 回答エリア */
.vo-answer {
  background-color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Aバッジ：ブロンズコッパー */
.vo-a-badge {
  background-color: #a07e56; 
  color: #ffffff;
  font-weight: bold;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.vo-a-text {
  color: #4a5568;
  margin: 2px 0 0 0;
  line-height: 1.6;
}

.vo-a-text p {
  margin: 0 0 8px 0;
}

.vo-a-text p:last-child {
  margin-bottom: 0;
}

/* 回答内の強調文言（コッパーゴールド系で落ち着いて目立たせる） */
.vo-status-highlight {
  font-weight: bold;
  color: #a07e56;
}

/* ==========================================
  レスポンシブ対応（ブレイクポイント: 600px）
=========================================== */
@media (max-width: 600px) {
  .vo-header {
    padding: 16px;
    margin-bottom: 24px;
  }
  
  .vo-meta-grid {
    grid-template-columns: 1fr; /* スマホ時は1カラムに縦並び */
    gap: 8px;
  }
  
  .vo-meta-card {
    padding: 8px 12px;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .vo-meta-label {
    margin-bottom: 0;
  }

  .vo-question,
  .vo-answer {
    padding: 12px 16px;
    gap: 10px;
  }

  .vo-q-badge,
  .vo-a-badge {
    width: 24px;
    height: 24px;
  }
  
  .vo-body {
    gap: 16px;
  }

  .vo-catch-text{
    font-size: 120%;
  }
}
