@charset "UTF-8";

/* =========================================
   business.css（業種別LP 専用の差分スタイル）
========================================= */

/* 共通セクションタイトル */
.ind-sec-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--color-accent);
}
.ind-sec-title span {
  display: block;
  font-size: 14px;
  color: var(--color-sub);
  margin-bottom: 8px;
  font-weight: normal;
}

/* =========================================
   Breadcrumbs (パンくずリスト共通)
========================================= */
.ind-breadcrumbs {
  background-color: transparent !important;
  padding: 24px 0 0;
}
.ind-breadcrumbs .container {
  padding-top: 0;
  padding-bottom: 0;
}
.ind-breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 12px;
  color: #666666;
}
.ind-breadcrumbs li { display: flex; align-items: center; }
.ind-breadcrumbs li:not(:last-child)::after {
  content: "";
  display: block;
  width: 5px; height: 5px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  transform: rotate(45deg);
  margin: 0 12px;
}
.ind-breadcrumbs a {
  color: var(--color-sub);
  text-decoration: none;
  font-weight: 700;
  transition: opacity var(--transition);
}
.ind-breadcrumbs a:hover { opacity: 0.7; text-decoration: underline; }

/* =========================================
   First View 背景ラッパー
========================================= */
.ind-top-bg {
  background-color: var(--mainbisual-color-base);
  margin-top: calc(-80px - var(--sp-3));
  padding-top: calc(80px + var(--sp-3));
}
@media (max-width: 1279px) {
  .ind-top-bg {
    margin-top: calc(-64px - var(--sp-2));
    padding-top: calc(64px + var(--sp-2));
  }
}
.ind-fv { background-color: transparent !important; padding: var(--sp-6) 0 var(--sp-8); overflow: hidden; }
.ind-fv-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.ind-fv-text { flex: 1; }
.ind-fv-text h1 { font-size: clamp(28px, 4vw, 40px); line-height: 1.4; margin-bottom: 20px; color: var(--color-accent); }

/* ▼▼▼ 修正：文字が白くなる問題と、ボタンが横に来る問題の解消 ▼▼▼ */
.ind-fv-text .hero-list-wrapper { 
  display: block; /* inline-blockを解除して、ボタンが横に回り込むのを防ぐ */
  margin-bottom: 32px; 
}
.ind-fv-text .hero-list li { 
  color: var(--color-text) !important; /* トップページ用の白色指定を上書き（黒文字に） */
}
.ind-fv-text .hero-list li::before { 
  color: var(--color-accent) !important; /* チェックマークを紺色に */
}
/* ▲▲▲ 修正 ここまで ▲▲▲ */

.ind-fv-image { flex: 1; background: #e0e6ed; border-radius: var(--rad-3); height: 350px; display: flex; align-items: center; justify-content: center; color: #999; }

/* =========================================
   課題解決フロー (Pain to Solution Grid)
========================================= */
.ind-ps-flow { padding: var(--sp-8) 0; background-color: var(--color-base); }
.ps-grid-3 { display: flex; flex-direction: column; gap: var(--sp-6); }
@media (min-width: 834px) { .ps-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); } }
.ps-col { display: flex; flex-direction: column; align-items: center; }

.ps-pain-card, .ps-sol-card {
  width: 100%; border-radius: var(--rad-2); padding: var(--sp-4) var(--sp-3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05); box-sizing: border-box; flex-grow: 1;
  display: flex; flex-direction: column;
}
.ps-pain-card { background-color: var(--color-white); border-top: 4px solid #e74c3c; }
.ps-pain-title { font-size: 18px; color: var(--color-text); margin-top: 0; margin-bottom: var(--sp-4); text-align: center; font-weight: 700; }
.ps-sol-card { background-color: var(--color-accent); color: var(--color-white); border-top: 4px solid var(--color-sub); }
.ps-sol-title { font-size: 18px; color: var(--color-white); margin-top: 0; margin-bottom: var(--sp-4); text-align: center; font-weight: 700; }

.ps-list { list-style: none; padding: 0; margin: 0; }
.ps-list li { position: relative; padding-left: 1.5em; margin-bottom: 12px; font-size: 14px; line-height: 1.5; }
.ps-list li:last-child { margin-bottom: 0; }
.pain-list li { color: #555; }
.pain-list li::before { content: "・"; position: absolute; left: 0; color: #e74c3c; font-weight: bold; }
.sol-list li { color: rgba(255, 255, 255, 0.9); }
.sol-list li::before { content: "✓"; position: absolute; left: 0; color: #4db8ff; font-weight: bold; }

.ps-arrow { margin: var(--sp-2) 0; display: flex; justify-content: center; align-items: center; }
.ps-arrow svg { width: 32px; height: 32px; fill: #bbb; }

/* =========================================
   Chat Flow (会話シナリオ / 動画エリア)
========================================= */
.ind-flow { padding: var(--sp-8) 0; text-align: center; }
.ind-video-container { max-width: 800px; margin: 0 auto; }
.ind-video-box { border-radius: var(--rad-3); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.ind-video-icon { width: 64px; height: 64px; fill: #aaa; margin-bottom: 8px; flex-shrink: 0; }
.ind-video-text { display: block; width: 100%; text-align: center; position: absolute; color: #aaaaaa; }
.ind-video-action { margin-top: 32px; }

/* =========================================
   ROI (導入効果)
========================================= */
.ind-roi-enhanced { padding: var(--sp-8) 0; background-color: var(--color-base); text-align: center; }
.ind-roi-grid { display: flex; justify-content: center; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
.ind-roi-card { background: var(--color-white); padding: 32px 24px; border-radius: var(--rad-3); box-shadow: 0 4px 16px rgba(0,0,0,0.05); flex: 1; min-width: 280px; max-width: 320px; text-align: center; }
.ind-graph-container { height: 160px; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; }
.ind-roi-card h4 { font-size: 20px; color: var(--color-accent); margin-bottom: 12px; margin-top: 0; }
.ind-roi-card p { font-size: 13px; color: var(--color-text); opacity: 0.8; text-align: left; line-height: 1.6; margin-bottom: 0; }

.ind-citation-area { max-width: 1024px; margin: 40px auto 0; background: var(--color-white); padding: 32px; border-radius: var(--rad-2); text-align: left; }
.ind-citation-area h5 { font-size: 15px; color: var(--color-text); margin-top: 0; margin-bottom: 16px; font-weight: bold; border-left: 4px solid var(--color-accent); padding-left: 10px; }
.ind-citation-list { list-style: none; padding: 0; margin: 0; }
.ind-citation-list li { margin-bottom: 16px; font-size: 13px; color: #444; line-height: 1.6; }
.ind-citation-list li strong { color: var(--color-accent); display: block; margin-bottom: 4px; font-size: 14px; }
.ind-citation-list li:last-child { margin-bottom: 0; }

/* =========================================
   業種別LP下部のCTAセクション調整
========================================= */
.ind-cta-section { background-color: var(--color-white); }
.ind-cta-section .ind-sec-title { margin-bottom: 0; }
.ind-cta-grid { margin-top: var(--sp-6); }
.ind-cta-btn-wrapper { text-align: center; margin-top: var(--sp-8); }

@media (max-width: 833px) {
  .ind-fv-inner { flex-direction: column; text-align: center; }
  .ind-fv-text p { text-align: center; }
  .ind-citation-area { padding: 24px 16px; }
}

/* =========================================
   資料ダウンロードページ専用レイアウト（260526）
========================================= */
/* ページタイトル */
.dl-page-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: bold;
  color: var(--color-accent);
  margin-bottom: 40px;
}

/* 2カラムグリッド */
.dl-bb-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* =================================
   左カラム（資料紹介カード）
================================= */
.dl-left-card {
  flex: 1;
  width: 100%;
  background-color: #f8f9fb; /* 本家風の薄いグレーブルー背景 */
  border-radius: 8px;
  padding: 0 0 40px 0;
  overflow: hidden;
}
/* 左カラム上部のオレンジバナー */
.dl-left-banner {
  background-color: #ffe8d6; /* 本家風の薄いオレンジ */
  color: #333;
  text-align: center;
  padding: 32px 16px;
  margin-bottom: 32px;
}
.dl-left-banner h3 {
  font-size: clamp(18px, 3vw, 22px);
  margin: 0 0 8px 0;
  font-weight: bold;
}
.dl-left-banner p {
  font-size: 13px;
  margin: 0;
  color: #555;
}
/* 左カラム下部のコンテンツ */
.dl-left-content {
  padding: 0 32px;
}
.dl-left-info-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 16px;
  text-align: center;
}
.dl-left-info-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 320px; /* リストを中央寄りにするための幅制限 */
}
.dl-left-info-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 8px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
.dl-left-info-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #444;
}

/* =================================
   右カラム（フォームエリア）
================================= */
.dl-right-column {
  width: 100%;
  max-width: 480px;
  flex-shrink: 0;
}
.dl-form-box {
  margin-bottom: 40px;
}
/* フォームの青いタイトル帯 */
.dl-form-header {
  background-color: #e6ebf5; /* 本家風の薄い青紫 */
  padding: 16px;
  text-align: center;
  border-radius: 4px;
  margin-bottom: 24px;
}
.dl-form-header h3 {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-accent);
  margin: 0 0 8px 0;
}
.dl-form-header p {
  font-size: 12px;
  margin: 0;
  color: #555;
}
/* プライバシーポリシー同意部分 */
.dl-privacy-label {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 12px;
  color: #555;
  cursor: pointer;
  margin-bottom: 24px;
}
.dl-privacy-label input[type="checkbox"] {
  margin-top: 2px;
  margin-right: 8px;
}

/* ▼ スマホ用レスポンシブ ▼ */
@media (max-width: 833px) {
  .dl-bb-grid {
    flex-direction: column;
    align-items: stretch; /* 横幅いっぱいに広げる */
  }
  .dl-right-column {
    max-width: 100%;
  }
  .dl-left-content {
    padding: 0 16px;
  }
}


/* =========================================
   13. Industry Specific & ROI Elements (最適化版)
========================================= */
/* ① 課題カード用の画像ラッパー */
.ps-pain-icon {
  text-align: center;
  margin-bottom: var(--sp-2);
}
.ps-pain-icon img {
  width: 64px;
  height: auto;
}

/* ② 導入効果（ROI）セクションのレイアウト */
.roi-grid {
  display: grid;
  gap: var(--sp-5);
  margin-bottom: var(--sp-4);
}
@media (min-width: 834px) {
  .roi-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: var(--sp-6); /* PCでは左右の余白を少し広めにとる */
  }
}

/* 左右カラム共通の小見出し */
.roi-col-title {
  color: var(--color-accent);
  font-size: 24px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 8px;
  margin-top: 0;
  margin-bottom: var(--sp-3);
  text-align: center;
}

/* カラムのラッパー（高さを揃え、ボタンを下に押し下げる） */
.roi-left-col,
.roi-right-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 右カラム内のテキスト */
.roi-card-text {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: var(--sp-2);
}
.roi-card-note {
  font-size: 18px;
  color: #555;
  margin-bottom: var(--sp-3);
}

/* 画像ラッパー（余白がある場合は画像を中央に配置し、下のボタンを最下部へ） */
.roi-card-img-wrapper {
  text-align: center;
  margin-bottom: var(--sp-4);
  flex-grow: 1; 
  display: flex;
  align-items: center;
  justify-content: center;
}
.roi-card-img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: var(--rad-1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ★ズレ防止1: URLのはみ出し（横揺れ・右ズレ）を強制的に防ぐ */
.ind-citation-list a {
  word-break: break-all;
}

/* ★ズレ防止2: スマホ表示時の左カラムの算出根拠の余白調整 */
@media (max-width: 833px) {
  .ind-citation-area {
    padding: var(--sp-3) !important;
  }
}

/* =========================================
   コールフロースライダー (完全版・影とテキスト調整済み)
========================================= */
.callflow-slider-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.callflow-slider-wrapper {
  display: flex;
  gap: 64px; /* ★隣の画像の影が漏れてくるのを防ぐ */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.callflow-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.callflow-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  padding: 0;
  box-sizing: border-box;
}

.callflow-grid {
  display: grid;
  gap: var(--sp-5);
  align-items: center;
}
@media (min-width: 834px) {
  .callflow-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }
}

/* ★テキストの左揃えと、幅の10%縮小 */
.callflow-text-col {
  text-align: left;
  padding-right: 10%;
}

.callflow-text-col h3 {
  color: var(--color-accent);
  font-size: 22px;
  margin-bottom: var(--sp-2);
  border-bottom: 2px solid #ccc;
  padding-bottom: 8px;
  text-align: left;
}

.callflow-text-col p {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
}

/* スマホ表示時はテキストの10%縮小を解除 */
@media (max-width: 833px) {
  .callflow-text-col {
    padding-right: 0;
  }
}

/* 矢印ボタンの装飾 */
.callflow-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  border: 2px solid var(--color-sub);
  color: var(--color-sub);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* 影を薄くスッキリと */
  transition: all var(--transition);
  padding: 0;
}
.callflow-nav-btn svg { width: 24px; height: 24px; fill: currentColor; }
.callflow-nav-btn:hover { background: var(--color-sub); color: var(--color-white); }

@media (min-width: 834px) {
  .callflow-nav-btn.prev { left: -32px; }
  .callflow-nav-btn.next { right: -32px; }
}

@media (max-width: 833px) {
  .callflow-nav-btn {
    top: 25%;
    width: 36px;
    height: 36px;
  }
  .callflow-nav-btn.prev { left: 0; }
  .callflow-nav-btn.next { right: 0; }
}