@charset "utf-8";


/*------------------------------------
MA・SFA導入・運用支援とは
------------------------------------*/



/* 全体コンテナの基本設定 */
.ma-sol-section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 20px 0;
  color: #333333;
  line-height: 1.6;
}
.ma-sol-section *,
.ma-sol-section *::before,
.ma-sol-section *::after {
  box-sizing: border-box;
}

/* レスポンシブ用制御クラス */
.ma-sol-sp-only { display: none; }

/* メインタイトル */
.ma-sol-main-title-wrap {
  border: 4px solid #4a3c31;
  border-radius: 25px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
.ma-sol-title-badge {
  position: absolute;
  top: -15px;
  left: 30px;
  background-color: #ffffff;
  padding: 0 15px;
  font-weight: bold;
}
.ma-sol-main-title {
  font-weight: bold;
  font-size: 120%;
}

/* サブタイトル */
.ma-sol-sub-title {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 10px;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* ステップ・機能紹介エリア */
.ma-sol-step-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.ma-sol-step-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ma-sol-arrow-step {
  background-color: #1a4169;
  color: #ffffff;
  text-align: center;
  padding: 12px 10px;
  font-weight: bold;
  position: relative;
  margin-bottom: 15px;
  clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%);
}

/* ★ステップ間の区切り線を「実線1本」に修正★ */
.ma-sol-step-content {
  padding: 0 15px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* 2番目・3番目の列の左側にだけ実線を入れることで、列同士の間に1本だけ線を配置 */
.ma-sol-step-col + .ma-sol-step-col .ma-sol-step-content {
  border-left: 1px solid #777777; /* 原稿に合わせたシックなグレー（濃さはお好みで調整してください） */
}

.ma-sol-step-lead {
  margin: 0 0 15px 0;
  min-height: 3.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ma-sol-step-img {
  width: 100%;
  /*aspect-ratio: 16 / 9;*/
  display: flex;
  align-items: center;
  justify-content: center;
}
.ma-sol-step-img img {
  width: 80%;
  height: auto;
  object-fit: cover;
}

/* キャッチコピー */
.ma-sol-catchphrase {
  font-weight: bold;
  margin-bottom: 30px;
}

/* 詳細説明エリア */
.ma-sol-detail-row-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.ma-sol-arrow-step-mini {
  flex: 1;
  background-color: #1a4169;
  color: #ffffff;
  text-align: center;
  padding: 8px 10px;
  font-weight: bold;
  clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%, 8% 50%);
}
.ma-sol-detail-row-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.ma-sol-detail-col {
  flex: 1;
  border-right: 1px solid #333333;
  padding-right: 20px;
}
.ma-sol-detail-col:last-child {
  border-right: none;
  padding-right: 0;
}
.ma-sol-detail-title {
  font-weight: bold;
  margin-bottom: 15px;
}
.ma-sol-detail-text p {
  margin: 0 0 1em 0;
}
.ma-sol-detail-text p:last-child {
  margin-bottom: 0;
}

/* 下部フッター（矢印バナー） */
.ma-sol-banner-arrow {
  position: relative;
  background-color: #000000;
  color: #fffb00;
  font-weight: bold;
  margin-top: 40px;
  margin-right: 35px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.ma-sol-banner-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -34px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 45px solid transparent;
  border-bottom: 45px solid transparent;
  border-left: 35px solid #000000;
}

.ma-sol-banner-content {
  text-align: center;
  line-height: 1.4;
  width: 100%;
}

/* -------------------------------------------
  スマートフォン用レイアウト (768px以下)
------------------------------------------- */
@media screen and (max-width: 768px) {
  .ma-sol-sp-only { display: inline; }
  
  .ma-sol-main-title-wrap {
    padding: 25px 15px;
  }
  .ma-sol-title-badge {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  /* ステップ紹介スマホ対応 */
  .ma-sol-step-row {
    flex-direction: column;
    gap: 30px;
  }
  .ma-sol-arrow-step {
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%);
    padding-bottom: 20px;
  }
  
  /* スマホ時は横の線をリセットし、下部に薄い区切り線を設定 */
  .ma-sol-step-content {
    border-left: none;
    border-right: none;
    border-bottom: 1px dashed #cccccc;
    padding: 0 0 20px 0;
  }
  .ma-sol-step-col + .ma-sol-step-col .ma-sol-step-content {
    border-left: none; /* スマホではPC用の実線を消す */
  }
  .ma-sol-step-col:last-child .ma-sol-step-content {
    border-bottom: none;
  }
  
  .ma-sol-step-lead {
    min-height: auto;
  }

  /* 詳細エリアスマホ対応 */
  .ma-sol-detail-row-header {
    display: none;
  }
  .ma-sol-detail-row-content {
    flex-direction: column;
    gap: 35px;
  }
  .ma-sol-detail-col {
    border-right: none;
    border-bottom: 1px solid #dddddd;
    padding-right: 0;
    padding-bottom: 25px;
  }
  .ma-sol-detail-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* 矢印バナー（スマホ用調整） */
  .ma-sol-banner-arrow {
    margin-right: 0;
    height: auto;
    padding: 20px 15px;
  }
  .ma-sol-banner-arrow::after {
    display: none;
  }
  .ma-sol-banner-content {
    text-align: center;
    line-height: 1.6;
  }
}



/* 全体コンテナの基本設定 */
.sfa-sol-section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 80px 0 0;
  color: #333333;
  line-height: 1.6;
}
.sfa-sol-section *,
.sfa-sol-section *::before,
.sfa-sol-section *::after {
  box-sizing: border-box;
}

/* レスポンシブ用制御クラス */
.sfa-sol-sp-only { display: none; }
.sfa-sol-pc-only { display: block; }

/* 赤文字強調用クラス */
.sfa-sol-text-red {
  color: #dd2c00;
  font-weight: bold;
}

/* メインタイトルラッパー（バッジ改行対策版） */
.sfa-sol-main-title-wrap {
  border: 4px solid #4a3c31;
  border-radius: 25px;
  padding: 15px 20px 30px 20px; /* 上余白を調整して全体のバランスを維持 */
  text-align: center;
  margin-bottom: 40px;
  font-size: 120%;
}

/* バナー枠線の真上にバッジを乗せるためのコンテナ */
.sfa-sol-badge-container {
  display: flex;
  justify-content: flex-start; /* PCは左寄せ */
  margin-top: -30px;          /* 枠線の真上に持ち上げるネガティブマージン */
  margin-bottom: 15px;        /* 下のタイトルとの間隔を確保 */
}

/* バッジ本体（absoluteを廃止して改行時に下の文字を押し下げる仕様に） */
.sfa-sol-title-badge {
  background-color: #ffffff;
  padding: 0 15px;
  font-weight: bold;
  display: inline-block;
  margin-left: 10px;          /* PCの左位置調整 */
}

.sfa-sol-main-title {
  font-weight: bold;
  line-height: 1.5;
  clear: both;
}

/* サブタイトル */
.sfa-sol-sub-title {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 10px;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* ステップ・機能紹介エリア */
.sfa-sol-step-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 40px;
}
.sfa-sol-step-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sfa-sol-arrow-step {
  background-color: #1a4169;
  color: #ffffff;
  text-align: center;
  padding: 12px 10px;
  font-weight: bold;
  position: relative;
  margin-bottom: 15px;
  clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%);
}

/* 列同士の区切り線（実線1本） */
.sfa-sol-step-content {
  padding: 0 15px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sfa-sol-step-col + .sfa-sol-step-col .sfa-sol-step-content {
  border-left: 1px solid #777777;
}

.sfa-sol-step-lead {
  margin: 0 0 15px 0;
  min-height: 4.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
.sfa-sol-step-img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sfa-sol-step-img img {
  width: 80%;
  height: auto;
  object-fit: cover;
}

/* 下部フッター（矢印バナー） */
.sfa-sol-banner-arrow {
  position: relative;
  background-color: #000000;
  color: #fffb00;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-right: 35px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.sfa-sol-banner-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -34px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 45px solid transparent;
  border-bottom: 45px solid transparent;
  border-left: 35px solid #000000;
}
.sfa-sol-banner-content {
  text-align: center;
  line-height: 1.4;
  width: 100%;
}

/* 詳細説明エリア（テキスト＋大型画像） */
.sfa-sol-detail-container {
  width: 100%;
}
.sfa-sol-detail-text {
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 20px;
}

.sfa-sol-large-img-scroll {
  width: 100%;
}
.sfa-sol-large-img {
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sfa-sol-large-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* -------------------------------------------
  スマートフォン用レイアウト (768px以下)
------------------------------------------- */
@media screen and (max-width: 768px) {
  .sfa-sol-sp-only { display: inline; }
  .sfa-sol-pc-only { display: none; }
  
  /* スマホ時はバッジを中央寄せに */
  .sfa-sol-badge-container {
    justify-content: center;
    margin-top: -28px; /* 線の太さやスマホフォントを考慮した調整 */
  }
  .sfa-sol-title-badge {
    margin-left: 0;
  }

  /* ステップ紹介スマホ対応 */
  .sfa-sol-step-row {
    flex-direction: column;
    gap: 30px;
  }
  .sfa-sol-arrow-step {
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%);
    padding-bottom: 20px;
  }
  
  .sfa-sol-step-content {
    border-left: none;
    border-right: none;
    border-bottom: 1px dashed #cccccc;
    padding: 0 0 20px 0;
  }
  .sfa-sol-step-col + .sfa-sol-step-col .sfa-sol-step-content {
    border-left: none;
  }
  .sfa-sol-step-col:last-child .sfa-sol-step-content {
    border-bottom: none;
  }
  
  .sfa-sol-step-lead {
    min-height: auto;
  }

  /* 矢印バナー（スマホ調整） */
  .sfa-sol-banner-arrow {
    margin-right: 0;
    height: auto;
    padding: 20px 15px;
  }
  .sfa-sol-banner-arrow::after {
    display: none;
  }
  .sfa-sol-banner-content {
    text-align: center;
    line-height: 1.5;
  }

  /* 大型画像のスマホ向け横スクロール設定 */
  .sfa-sol-large-img-scroll {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  
  .sfa-sol-large-img {
    width: auto;
    min-width: 800px;
    min-height: 240px;
  }
}



/*------------------------------------
MA・SFA導入・運用支援のご支援概要
------------------------------------*/
/* 全体コンテナの基本設定 */
.sys-sol-section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-top: 20px;
  color: #333333;
  line-height: 1.6;
}
.sys-sol-section *,
.sys-sol-section *::before,
.sys-sol-section *::after {
  box-sizing: border-box;
}

/* 画面幅制御用 */
.sys-sol-pc-only { display: block; }

/* 共通強調色 */
.sys-sol-text-red {
  color: #e50012;
  font-weight: bold;
}

/* 2カラムレイアウトベース */
.sys-sol-container {
  display: flex;
  justify-content: space-between;
  gap: 42px;
}
.sys-sol-left-col {
  width: 40%;
  display: flex;
  flex-direction: column;
}
.sys-sol-right-col {
  width: 60%;
  display: flex;
  flex-direction: column;
}

/* ブロックヘッダー（グレー背景の帯） */
.sys-sol-block-header {
  background-color: #666666;
  color: #ffffff;
  text-align: center;
  padding: 8px 10px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* リードテキスト共通 */
.sys-sol-body-text {
  margin-bottom: 20px;
}

/* -------------------------------------------
  左側カラム（エンジニア体制）独自の装飾
------------------------------------------- */
.sys-sol-badge-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.sys-sol-count-badge {
  background-color: #f2f2f2;
  border: 1.5px solid #999999;
  border-radius: 20px;
  padding: 15px;
  text-align: center;
}
.sys-sol-badge-title {
  font-weight: bold;
  text-decoration: underline;
  margin: 0 0 5px 0;
}
.sys-sol-badge-num {
  font-weight: bold;
  color: #1a4169;
  margin: 0;
}
.sys-sol-badge-num.sys-sol-blue {
  color: #0b3161;
}
.sys-sol-badge-num span {
  line-height: 1;
  margin: 0 2px;
  font-size: 200%;
}
.sys-sol-footer-lead {
  text-align: center;
  font-weight: bold;
  color: #1a4169;
  text-decoration: underline;
  line-height: 1.4;
  /*margin-top: auto; /* 下揃え */
}

/* -------------------------------------------
  右側カラム（対応範囲）独自の装飾
------------------------------------------- */
/* ステップ矢印（PC時は4並び） */
.sys-sol-step-row {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 15px;
}
.sys-sol-arrow-step {
  flex: 1;
  background-color: #1a4169;
  color: #ffffff;
  text-align: center;
  padding: 15px 5px;
  font-weight: bold;
  clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%);
}
.sys-sol-arrow-step:first-child {
  clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}

/* 右下：吹き出し風コンテンツボックス */
.sys-sol-balloon-box {
  position: relative;
  background-color: #ffffff;
  border: 1.5px solid #cccccc;
  border-radius: 30px;
  padding: 25px 20px;
  margin-top: 15px;
}
/* 吹き出しの突起部分 */
.sys-sol-balloon-box::before {
  content: "";
  position: absolute;
  top: -15px;
  right: 12%;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #cccccc;
}
.sys-sol-balloon-box::after {
  content: "";
  position: absolute;
  top: -13px;
  right: 12%;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #ffffff;
}

.sys-sol-balloon-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
/* 緑の画像枠 */
.sys-sol-img-area {
  width: 35%;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}
.sys-sol-img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sys-sol-balloon-text {
  line-height: 1.5;
}

/* -------------------------------------------
  スマートフォン用レイアウト (768px以下)
------------------------------------------- */
@media screen and (max-width: 768px) {
  .sys-sol-pc-only { display: none; }
  
  /* 縦1列に変更 */
  .sys-sol-container {
    flex-direction: column;
    gap: 40px;
  }
  .sys-sol-left-col,
  .sys-sol-right-col {
    width: 100%;
  }

  /* スマホ時はステップを縦に積む */
  .sys-sol-step-row {
    flex-direction: column;
    gap: 10px;
  }
  .sys-sol-arrow-step {
    padding: 12px 10px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%) !important;
  }
  .sys-sol-arrow-step:last-child {
    clip-path: none !important; /* 最後のステップはフラットな長方形に */
  }

  /* 吹き出しのスマホ調整（突起を中央寄りに、中身を縦並びに） */
  .sys-sol-balloon-box {
    margin-top: 25px;
    padding: 20px 15px;
    border-radius: 20px;
  }
  .sys-sol-balloon-box::before { right: 48%; }
  .sys-sol-balloon-box::after { right: 48%; }

  .sys-sol-balloon-content {
    flex-direction: column;
    gap: 15px;
  }
  .sys-sol-img-area {
    width: 60%; /* スマホでは少し大きめに表示 */
  }
  .sys-sol-balloon-text {
    text-align: center;
  }
}



/*-------------------------
よくあるご相談内容
/*-------------------------


/* 全体コンテナの基本設定 */
.chk-sol-section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  color: #000000;
  line-height: 1.6;
}
.chk-sol-section *,
.chk-sol-section *::before,
.chk-sol-section *::after {
  box-sizing: border-box;
}

/* リスト全体のスタイル設定（既存のリストマーカーをリセット） */
.chk-sol-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px; /* リスト項目間の縦の隙間調整 */
}

/* リスト項目（テキスト位置とチェックマークの余白確保） */
.chk-sol-item {
  position: relative;
  padding-left: 35px; /* 左側にチェックマークを置くスペースを確保 */
  margin: 0;
}

/* CSSでシャープなチェックマークを描画 */
.chk-sol-item::before {
  content: "";
  position: absolute;
  left: 5px;
  width: 12px;
  height: 22px;
  border-right: 3px solid #000000; /* チェックマークの太さ */
  border-bottom: 3px solid #000000;
  transform: rotate(40deg); /* 傾きをあててチェック型にする */
}

/* 最後の赤文字強調用装飾 */
.chk-sol-text-red {
  color: #e50012;
  font-weight: bold;
}
/* 赤文字の項目は、チェックマークの色も赤に変更 */
.chk-sol-text-red::before {
  border-right-color: #e50012;
  border-bottom-color: #e50012;
}

/* -------------------------------------------
  スマートフォン用レイアウト (768px以下)
------------------------------------------- */
@media screen and (max-width: 768px) {
  .chk-sol-list {
    gap: 12px; /* スマホ時は少し項目間をタイトに */
  }
  .chk-sol-item {
    padding-left: 28px; /* スマホ幅に合わせて左余白を微調整 */
  }
  .chk-sol-item::before {
    left: 2px;
    top: 2px;
    width: 10px;
    height: 18px;
    border-right-width: 2.5px;
    border-bottom-width: 2.5px;
  }
}



/*------------------
MA・SFA導入・運用支援で押さえるポイント
/*------------------

/* 全体コンテナの基本設定 */
.flow-sol-section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}
.flow-sol-section *,
.flow-sol-section *::before,
.flow-sol-section *::after {
  box-sizing: border-box;
}

/* 画像スクロール用の親ラッパー（PCの時はスクロールさせない） */
.flow-sol-img-scroll-wrap {
  width: 100%;
}

/* 画像を格納するコンテナ */
.flow-sol-img-container {
  width: 100%;
}

/* 画像自体のレスポンシブ基本設定（PCでは幅100%） */
.flow-sol-img-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* -------------------------------------------
  スマートフォン用レイアウト (768px以下)
------------------------------------------- */
@media screen and (max-width: 768px) {
  /* スマホの時は、はみ出た画像を横スクロール可能にする */
  .flow-sol-img-scroll-wrap {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch; /* iOSでのスクロールを滑らかにする設定 */
    padding-bottom: 15px; /* スクロールバーが画像に被らないための下部余白 */
  }

  /* 画像コンテナに最低横幅を設定し、これ以上縮まないようにする */
  .flow-sol-img-container {
    width: auto;
    min-width: 900px; /* 文字やアイコンがスマホでも綺麗に読める横幅に固定 */
  }

  .flow-sol-img-container img {
    width: 100%; /* 固定された900pxに対して100%ではめ込む */
  }
}