/* --- 商品価格（税抜・税込）の表示調整 --- */

/* 価格表示全体 */
.ec-productRole__price {
    margin-bottom: 20px;
}

/* 税抜価格のスタイル（大きく・太字に） */
.ec-productRole__price .price-main {
    font-size: 2.0rem; /* 文字をさらに大きく */
    font-weight: bold; /* 太字 */
    color: #333;
    line-height: 1.2;
}

/* 税込価格のスタイル */
.ec-productRole__price .price-sub {
    font-size: 1.6rem;
    color: #888;
    line-height: 1.2;
    margin-top: 4px;
}

/* (税込)ラベルのスタイル */
.ec-productRole__price .price-sub .price-label {
    font-size: 1.3rem;
    font-weight: normal;
}
/* ===== Histoire B2B スタイル強制上書き ===== */

/* ページタイトル */
.page-title {
  font-size: 28px !important;
  font-weight: 700 !important;
  margin: 40px 0 20px !important;
  color: #2C3E50 !important;
  text-align: center !important;
}

/* セクションカード */
.section-card {
  background: #fff !important;
  padding: 30px 25px !important;
  margin: 25px auto !important;
  border-radius: 10px !important;
  max-width: 1000px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
  border: 1px solid #eaeaea !important;
}

/* セクション見出し */
.section-title {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #2C3E50 !important;
  border-left: 5px solid #8B5CF6 !important;
  padding-left: 10px !important;
  margin-bottom: 15px !important;
}

/* サブ見出し */
.subsection-title {
  font-size: 20px !important;
  font-weight: 600 !important;
  margin: 25px 0 10px !important;
  color: #333 !important;
}

/* キャッチコピー */
.histoire-tagline {
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #444 !important;
  line-height: 1.6 !important;
  margin-bottom: 20px !important;
  text-align: center !important;
}

/* 表 */
.info-table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin-top: 15px !important;
  font-size: 15px !important;
}
.info-table th, .info-table td {
  padding: 12px 10px !important;
  border-bottom: 1px solid #e5e5e5 !important;
  text-align: left !important;
}
.info-table th {
  background: #f0f0f0 !important;
  font-weight: 600 !important;
}
.info-table tr:nth-child(even) {
  background: #fafafa !important;
}
/* --- 会社概要テーブル専用 強制上書き --- */
.ec-helpRole .cms-page-content table.info-table.company-info {
  width: 400px !important;      /* ← ここを600px等に調整可能 */
  max-width: 90% !important;
  margin: 0 auto 30px auto !important;
  display: table !important;
  border: 1px solid #ddd !important;
}

/* 左カラム固定幅 */
.ec-helpRole .cms-page-content table.info-table.company-info th {
  width: 120px !important;
  white-space: nowrap !important;
}

/* 強みカード */
.strength-card {
  background: #f9f9ff !important;
  border-left: 5px solid #8B5CF6 !important;
  padding: 15px 20px !important;
  border-radius: 6px !important;
  margin: 15px 0 !important;
}
.strength-card h3 {
  font-size: 18px !important;
  margin-bottom: 8px !important;
  color: #2C3E50 !important;
}
.strength-card li {
  line-height: 1.5 !important;
  margin-bottom: 5px !important;
}
/* 3つの強みカード用コンテナ */
.strength-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap; /* スマホで自動縦並び */
}

/* 各カード */
.strength-card {
  flex: 1;
  min-width: 280px;
  background: var(--card-bg);
  border-left: 5px solid var(--brand-gold);
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 高さ統一用 */
}

/* 見出し */
.strength-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2C3E50;
  font-weight: 600;
}

/* リスト */
.strength-card ul {
  padding-left: 18px;
  margin: 0;
}

.strength-card li {
  margin-bottom: 5px;
  line-height: 1.5;
}

/* スマホ表示（1列） */
@media (max-width: 768px) {
  .strength-card {
    flex: 1 1 100% !important;
  }
}

/* リスト */
.issue-list, .solution-list {
  padding-left: 20px !important;
  margin: 10px 0 !important;
}
.issue-list li, .solution-list li {
  margin-bottom: 6px !important;
}

/* ▼アイコン */
.arrow-down {
  font-size: 28px !important;
  text-align: center !important;
  color: #8B5CF6 !important;
  margin: 10px 0 !important;
}

/* CTAボタン */
.cta-button {
  display: inline-block !important;
  background: #8B5CF6 !important;
  color: #fff !important;
  padding: 14px 28px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: background 0.3s !important;
}
.cta-button:hover {
  background: #6D28D9 !important;
}

/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
  .strength-grid {
    flex-direction: column;
  }    
  .section-card {
    padding: 20px 15px !important;
    margin: 15px !important;
  }
  .page-title {
    font-size: 22px !important;
  }
  .section-title {
    font-size: 20px !important;
  }
  .info-table th, .info-table td {
    font-size: 14px !important;
    padding: 8px !important;
  }
  .cta-button {
    width: 100% !important;
    text-align: center !important;
  }
}
/* ===== Histoire B2B 強制上書き（3カラム対応版） ===== */

/* === 3つの強みカード用コンテナ === */
.strength-grid {
  display: flex !important;
  justify-content: space-between !important;
  align-items: stretch !important;   /* 高さを揃える */
  gap: 20px !important;
  margin-top: 15px !important;
  flex-wrap: wrap !important;        /* スマホで縦並び */
}

/* === 各強みカード === */
.strength-card {
  flex: 1 1 calc(33.3% - 20px) !important;
  min-width: 280px !important;
  background: var(--card-bg) !important;
  border-left: 5px solid var(--brand-gold) !important;
  padding: 15px 20px !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  margin: 0 !important; /* ← これで縦積みの余白を除去 */
}

/* ホバー時の演出 */
.strength-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

/* === 見出し === */
.strength-card h3 {
  font-size: 18px !important;
  margin-bottom: 8px !important;
  color: #2C3E50 !important;
  font-weight: 600 !important;
}

/* === リスト === */
.strength-card ul {
  padding-left: 18px !important;
  margin: 0 !important;
}
.strength-card li {
  margin-bottom: 5px !important;
  line-height: 1.5 !important;
}

/* === スマホ（1列表示） === */
@media (max-width: 768px) {
  .strength-grid {
    flex-direction: column !important;
  }

}