/* ==========================================================================
   lp.css — AIO特化LP専用スタイル
   アクセントカラー: オレンジ #F97316（chat-bot と統一）
   ========================================================================== */

/* ===== HERO ===== */
.lp-aio .lp-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 160px 40px 100px;
  text-align: center;
}
.lp-aio .lp-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.lp-aio .lp-hero h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  color: #fff;
}
.lp-aio .hero-aio-recommend {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 300;
  padding: 16px 20px;
  border-left: 2px solid rgba(249,115,22,0.35);
  background: rgba(249,115,22,0.04);
  border-radius: 6px;
  text-align: left;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   LP HERO ファーストビュー — レイアウト整備
   （.lp-aio .lp-hero スコープ：サービスページに一切干渉しない）
   ========================================================================== */

/* ── hero-content の横幅とセンタリング ── */
.lp-aio .lp-hero .hero-content {
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

/* ── h1 下の余白 ── */
.lp-aio .lp-hero h1 {
  margin-bottom: 28px;
}

/* ── キャッチコピー ── */
.lp-aio .lp-hero .lp-catch {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin: 0 auto 24px;
  max-width: 680px;
  display: block;
  text-align: center;
}

/* ── 検索意図補強テキスト ── */
.lp-aio .lp-hero .lp-intent-text {
  margin: 0 auto 20px;
  max-width: 680px;
  display: block;
  text-align: left;
}

/* ── 定義文 ── */
.lp-aio .lp-hero .lp-def-text {
  margin: 0 auto 28px;
  max-width: 680px;
  display: block;
  text-align: left;
}

/* ── AIO抜粋ブロック（aio-conclusion）── */
/* HERO は text-align:center のため、リスト内のマーカーがBOX外に出る問題を修正 */
.lp-aio .lp-hero .aio-conclusion {
  text-align: left;        /* ← 継承の center を解除 */
  max-width: 680px;
  margin: 0 auto 32px;
  padding: 32px;
  box-sizing: border-box;
}
.lp-aio .lp-hero .aio-conclusion ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
  overflow: visible;
}
.lp-aio .lp-hero .aio-conclusion li {
  position: relative;
  padding-left: 22px;
  line-height: 1.7;
  text-align: left;        /* ← 念のため個別にも上書き */
}
.lp-aio .lp-hero .aio-conclusion li::before {
  position: absolute;
  left: 0;
  top: 3px;
}

/* ── hero-buttons の余白 ── */
.lp-aio .lp-hero .hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ── モバイル対応 ── */
@media (max-width: 640px) {
  .lp-aio .lp-hero .lp-catch       { text-align: left; }
  .lp-aio .lp-hero .lp-intent-text { margin: 0 auto 16px; }
  .lp-aio .lp-hero .lp-def-text    { margin: 0 auto 20px; }
  .lp-aio .lp-hero .aio-conclusion { margin: 0 auto 24px; }
  .lp-aio .lp-hero .hero-buttons   { flex-direction: column; align-items: center; }
}

/* ===== セクション共通 ===== */
.lp-aio .lp-section {
  padding: 88px 40px;
  position: relative;
  z-index: 1;
}
.lp-aio .lp-section .section-inner {
  max-width: 900px;
  margin: 0 auto;
}
.lp-aio .section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #F97316;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.lp-aio .lp-section .section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #f5f5f7;
}
.lp-aio .lp-section .section-desc {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  font-weight: 300;
  max-width: 680px;
  text-align: left;
}

/* ===== PROBLEMS ===== */
.lp-problems {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}
.lp-problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.lp-problem-item:hover {
  border-color: rgba(249,115,22,0.25);
  background: rgba(249,115,22,0.04);
}
.lp-problem-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.lp-problem-item p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  color: #f5f5f7;
}

/* ===== SOLUTION GRID ===== */
.lp-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.lp-solution-card {
  padding: 26px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.lp-solution-card:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-3px);
}
.lp-solution-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: #F97316;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.lp-solution-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f5f5f7;
}
.lp-solution-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 0;
}

/* ===== STRENGTHS ===== */
.lp-strengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.lp-strength {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  transition: border-color 0.3s ease;
}
.lp-strength:hover { border-color: rgba(249,115,22,0.22); }
.lp-strength-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.lp-strength h4 {
  font-size: 0.96rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f5f5f7;
}
.lp-strength p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 0;
}

/* ===== USE CASES ===== */
.lp-examples {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.lp-example {
  padding: 22px 26px;
  background: rgba(255,255,255,0.02);
  border-left: 3px solid #F97316;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-radius: 0 14px 14px 0;
  transition: background 0.3s ease;
}
.lp-example:hover { background: rgba(249,115,22,0.04); }
.lp-example h4 {
  font-size: 0.94rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #f5f5f7;
}
.lp-example p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 0;
}

/* ===== FLOW CHAIN ===== */
.lp-flow-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.lp-flow-node {
  padding: 12px 22px;
  background: rgba(249,115,22,0.07);
  border: 1px solid rgba(249,115,22,0.22);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #f5f5f7;
  transition: background 0.3s ease;
}
.lp-flow-node:hover { background: rgba(249,115,22,0.14); }
.lp-flow-arrow {
  color: #F97316;
  font-size: 1.2rem;
  opacity: 0.45;
  font-weight: 300;
}

/* ===== FAQ ===== */
.lp-aio .faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-aio .faq-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.lp-aio .faq-item.open,
.lp-aio .faq-item:hover {
  border-color: rgba(249,115,22,0.25);
}
.lp-aio .faq-q {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  user-select: none;
}
.lp-aio .faq-q h3 {
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0;
  color: #f5f5f7;
  line-height: 1.5;
}
.lp-aio .faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(249,115,22,0.35);
  color: #F97316;
  font-size: 1.1rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  transition: all 0.3s ease;
}
.lp-aio .faq-item.open .faq-toggle {
  background: rgba(249,115,22,0.15);
  border-color: #F97316;
  transform: rotate(45deg);
}
.lp-aio .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.lp-aio .faq-item.open .faq-a {
  max-height: 400px;
}
.lp-aio .faq-a-inner {
  padding: 0 24px 20px;
}
.lp-aio .faq-a-inner p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin: 0;
  padding-top: 4px;
}

/* ===== FINAL CTA ===== */
.lp-aio .lp-final-cta {
  padding: 100px 40px;
  text-align: center;
  background: linear-gradient(180deg, rgba(249,115,22,0.06) 0%, rgba(0,0,0,0) 100%);
  border-top: 1px solid rgba(249,115,22,0.18);
  position: relative;
  z-index: 1;
}
.lp-aio .lp-final-cta h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: #f5f5f7;
}
.lp-aio .lp-final-cta .lp-cta-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  line-height: 1.8;
}
.lp-aio .lp-final-cta .lp-cta-desc a {
  color: #F97316;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lp-aio .lp-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BREADCRUMB (ol/li structure) ===== */
.lp-aio nav[aria-label="breadcrumb"] {
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 10;
}
.lp-breadcrumb {
  list-style: none;
  margin: 0;
  padding: 13px 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.lp-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.35);
}
.lp-breadcrumb li:not(:last-child)::after {
  content: '›';
  margin: 0 8px;
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
}
.lp-breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.lp-breadcrumb a:hover { color: #F97316; }
.lp-breadcrumb-current { color: rgba(255,255,255,0.6); }

/* ===== 定義文 ===== */
.lp-def-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  border-left: 2px solid rgba(249,115,22,0.35);
  padding-left: 12px;
  text-align: left;
}

/* ===== BEFORE / AFTER ===== */
.lp-before-after {
  padding: 32px 40px;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lp-ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}
.lp-ba-col {
  padding: 20px 24px;
  border-radius: 10px;
}
.lp-ba-before {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
}
.lp-ba-after {
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.25);
}
.lp-ba-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.3);
}
.lp-ba-after .lp-ba-label { color: #F97316; }
.lp-ba-text {
  font-size: 0.87rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}
.lp-ba-after .lp-ba-text { color: rgba(255,255,255,0.88); }
.lp-ba-arrow {
  font-size: 1.6rem;
  color: rgba(249,115,22,0.5);
  text-align: center;
}

/* ===== Before/After ブロック（シンプル横並び版 — LINE DX LP 等） ===== */
.lp-ba-block {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto 20px;
}
.lp-ba-block .lp-ba-before,
.lp-ba-block .lp-ba-after {
  padding: 20px 24px;
  border-radius: 10px;
}
.lp-ba-block .lp-ba-before {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
}
.lp-ba-block .lp-ba-after {
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.25);
}
.lp-ba-block .lp-ba-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.35);
}
.lp-ba-block .lp-ba-after .lp-ba-label { color: #F97316; }
.lp-ba-block p {
  font-size: 0.87rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.lp-ba-block .lp-ba-after p { color: rgba(255,255,255,0.88); }
.lp-ba-block .lp-ba-arrow {
  font-size: 1.6rem;
  color: rgba(249,115,22,0.5);
  text-align: center;
}
/* line-dx テーマ override */
.lp-line-dx .section-label                             { color: #7B61FF; }
.lp-line-dx .hero-aio-recommend                        { border-left-color: #7B61FF; background: rgba(123,97,255,0.06); }
.lp-line-dx .lp-ba-block .lp-ba-after {
  background: rgba(123,97,255,0.08);
  border-color: rgba(123,97,255,0.3);
}
.lp-line-dx .lp-ba-block .lp-ba-after .lp-ba-label { color: #7B61FF; }
.lp-line-dx .lp-ba-block .lp-ba-arrow { color: rgba(123,97,255,0.5); }

@media (max-width: 640px) {
  .lp-ba-block {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .lp-ba-block .lp-ba-arrow { transform: rotate(90deg); font-size: 1.2rem; }
}

/* ===== まとめ文 ===== */
.lp-summary-section {
  padding: 40px 40px;
  background: rgba(249,115,22,0.04);
  border-top: 1px solid rgba(249,115,22,0.1);
  border-bottom: 1px solid rgba(249,115,22,0.1);
}
.lp-summary-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-weight: 400;
}

/* ===== COMPARE BLOCK ===== */
.lp-compare-section {
  padding: 56px 40px;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lp-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}
.lp-compare-col {
  padding: 24px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}
.lp-compare-general {
  background: rgba(255,255,255,0.02);
  opacity: 0.7;
}
.lp-compare-tenani {
  background: rgba(249,115,22,0.06);
  border-color: rgba(249,115,22,0.22);
}
.lp-compare-head {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.5);
}
.lp-compare-tenani .lp-compare-head {
  color: #F97316;
}
.lp-compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-compare-col ul li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.lp-compare-col ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.2);
  font-size: 0.7rem;
}
.lp-compare-tenani ul li {
  color: rgba(255,255,255,0.75);
}
.lp-compare-tenani ul li::before {
  content: '✓';
  color: #F97316;
  font-size: 0.72rem;
}
.lp-compare-vs {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
  text-align: center;
}

/* ===== RELATED LP BLOCK ===== */
.lp-related {
  padding: 64px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.lp-related .section-inner {
  max-width: 900px;
  margin: 0 auto;
}
.lp-related-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: #F97316;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.lp-related-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.lp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lp-related-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.lp-related-card:hover {
  border-color: rgba(249,115,22,0.3);
  background: rgba(249,115,22,0.04);
}
.lp-related-card-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #F97316;
  text-transform: uppercase;
}
.lp-related-card-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
.lp-related-card-arrow {
  font-size: 0.8rem;
  color: rgba(249,115,22,0.5);
  margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .lp-aio .lp-section { padding: 64px 20px; }
  .lp-aio .lp-hero { padding: 130px 20px 80px; }
  .lp-solution-grid { grid-template-columns: 1fr; gap: 14px; }
  .lp-strengths { grid-template-columns: 1fr; gap: 14px; }
  .lp-flow-chain { gap: 8px; }
  .lp-flow-node { padding: 10px 16px; font-size: 0.82rem; }
  .lp-flow-arrow { font-size: 1rem; }
  .lp-aio .lp-final-cta { padding: 72px 20px; }
  .lp-aio .lp-cta-buttons { flex-direction: column; align-items: center; }
  .lp-breadcrumb { padding: 11px 20px; }
  .lp-compare-section { padding: 40px 20px; }
  .lp-compare { grid-template-columns: 1fr; gap: 12px; }
  .lp-compare-vs { display: none; }
  .lp-related { padding: 48px 20px; }
  .lp-related-grid { grid-template-columns: 1fr; gap: 10px; }
  .lp-summary-section { padding: 32px 20px; }
  .lp-def-text { text-align: left; }
  .lp-before-after { padding: 28px 20px; }
  .lp-ba-grid { grid-template-columns: 1fr; gap: 10px; }
  .lp-ba-arrow { transform: rotate(90deg); font-size: 1.2rem; }
}

/* ==========================================================================
   WEB LP ブルーテーマ（.lp-web クラスで上書き）
   アクセントカラー: ブルー #3B82F6
   ========================================================================== */
.lp-web .section-label                             { color: #3B82F6; }
.lp-web .lp-breadcrumb a                           { color: #3B82F6; }
.lp-web .lp-breadcrumb li:not(:last-child)::after  { color: rgba(59,130,246,0.5); }
.lp-web .lp-def-text                               { border-left-color: #3B82F6; }
.lp-web .aio-conclusion                            { background: rgba(59,130,246,0.06); border-color: rgba(59,130,246,0.25); border-left-color: #3B82F6; }
.lp-web .aio-conclusion-title                      { color: #3B82F6; }
.lp-web .aio-conclusion li::before                 { color: #3B82F6; }
.lp-web .lp-compare-col.lp-compare-tenani          { border: 1px solid rgba(59,130,246,0.35); background: rgba(59,130,246,0.04); }
.lp-web .lp-compare-col.lp-compare-tenani .lp-compare-head { background: linear-gradient(135deg,rgba(37,99,235,0.18),rgba(59,130,246,0.10)); color: #3B82F6; border-color: rgba(59,130,246,0.3); }
.lp-web .lp-problem-icon                           { color: #3B82F6; }
.lp-web .lp-ba-col.lp-ba-after                     { border-color: rgba(59,130,246,0.35); background: rgba(59,130,246,0.04); }
.lp-web .lp-ba-label                               { color: #3B82F6; }
.lp-web #solution.lp-section                       { background: rgba(59,130,246,0.03) !important; border-top-color: rgba(59,130,246,0.08) !important; border-bottom-color: rgba(59,130,246,0.08) !important; }
.lp-web #examples.lp-section                       { background: rgba(59,130,246,0.03) !important; border-top-color: rgba(59,130,246,0.08) !important; border-bottom-color: rgba(59,130,246,0.08) !important; }
.lp-web #faq.lp-section                            { background: rgba(59,130,246,0.03) !important; border-top-color: rgba(59,130,246,0.08) !important; border-bottom-color: rgba(59,130,246,0.08) !important; }
.lp-web .lp-solution-num                           { color: #3B82F6; border-color: rgba(59,130,246,0.3); }
.lp-web .lp-solution-card:hover                    { border-color: rgba(59,130,246,0.35); }
.lp-web .lp-strength-icon                          { color: #3B82F6; }
.lp-web .lp-strength:hover                         { border-color: rgba(59,130,246,0.3); }
.lp-web .lp-flow-node                              { background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.25); color: #93c5fd; }
.lp-web .lp-flow-arrow                             { color: #3B82F6; }
.lp-web #faq.lp-section .faq-q h3                  { color: #e2e8f0; }
.lp-web .lp-summary-section                        { background: rgba(59,130,246,0.04); border-top-color: rgba(59,130,246,0.12); border-bottom-color: rgba(59,130,246,0.12); }
.lp-web .lp-summary-text                           { border-left-color: #3B82F6; }
.lp-web .lp-related                                { border-top-color: rgba(59,130,246,0.15); }
.lp-web .lp-related-card-tag                       { color: #3B82F6; border-color: rgba(59,130,246,0.3); background: rgba(59,130,246,0.08); }
.lp-web .lp-related-card:hover                     { border-color: rgba(59,130,246,0.4); }
.lp-web .lp-final-cta                              { background: linear-gradient(135deg, rgba(37,99,235,0.14) 0%, rgba(59,130,246,0.08) 100%); }
.lp-web .lp-final-cta h2                           { background: linear-gradient(135deg,#93c5fd,#3B82F6); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.lp-web .lp-compare-section                        { background: rgba(59,130,246,0.02); border-top: 1px solid rgba(59,130,246,0.06); border-bottom: 1px solid rgba(59,130,246,0.06); }
.lp-web .hero-aio-recommend                        { border-left-color: #3B82F6; background: rgba(59,130,246,0.06); }

/* ==========================================================================
   TARGET HINT（①H1直下：業種明示・検索意図補強）
   ========================================================================== */
.lp-target-hint {
  font-size: 0.88rem;
  color: rgba(148,163,184,0.9);
  margin: -4px 0 22px;
  padding: 9px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  border-left: 3px solid rgba(255,255,255,0.15);
  line-height: 1.65;
}
.lp-web    .lp-target-hint { border-left-color: rgba(59,130,246,0.45); background: rgba(59,130,246,0.04); padding: 14px 20px; }
.lp-line-dx .lp-target-hint { border-left-color: rgba(123,97,255,0.45); background: rgba(123,97,255,0.04); padding: 14px 20px; }
.lp-region .lp-target-hint { border-left-color: rgba(139,92,246,0.45); background: rgba(139,92,246,0.04); padding: 14px 20px; }

/* ==========================================================================
   HERO MINI CTA（②HERO直下：ファーストビュー離脱防止）
   ========================================================================== */
.lp-hero-mini-cta {
  padding: 20px 24px;
  text-align: center;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lp-hero-mini-cta p {
  font-size: 0.92rem;
  color: #94a3b8;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-web    .lp-hero-mini-cta { border-top-color: rgba(59,130,246,0.12); border-bottom-color: rgba(59,130,246,0.12); background: rgba(59,130,246,0.03); }
.lp-region .lp-hero-mini-cta { border-top-color: rgba(139,92,246,0.12); border-bottom-color: rgba(139,92,246,0.12); background: rgba(139,92,246,0.03); }

/* ==========================================================================
   INLINE CTA（②Before/After直後・FAQ直後：中間コンバージョン）
   ========================================================================== */
.lp-inline-cta {
  padding: 32px 24px;
  text-align: center;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lp-inline-cta-text {
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0 0 18px;
  line-height: 1.7;
}
.lp-web    .lp-inline-cta { background: rgba(59,130,246,0.03); border-top-color: rgba(59,130,246,0.1); border-bottom-color: rgba(59,130,246,0.1); }
.lp-region .lp-inline-cta { background: rgba(139,92,246,0.03); border-top-color: rgba(139,92,246,0.1); border-bottom-color: rgba(139,92,246,0.1); }

/* ==========================================================================
   DETAIL SECTION（⑧詳細説明：SEO設計・導線設計・記事運用）
   ========================================================================== */
.lp-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.lp-detail-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: border-color .25s, background .25s, transform .2s;
}
.lp-detail-card:hover {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.055);
  transform: translateY(-2px);
}
.lp-detail-icon {
  font-size: 1.9rem;
  display: block;
  margin-bottom: 14px;
}
.lp-detail-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 10px;
}
.lp-detail-card p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.75;
  margin: 0;
}
.lp-web .lp-detail-card    { border-color: rgba(59,130,246,0.12); }
.lp-web .lp-detail-card:hover { border-color: rgba(59,130,246,0.35); background: rgba(59,130,246,0.04); }
.lp-region .lp-detail-card { border-color: rgba(139,92,246,0.12); }
.lp-region .lp-detail-card:hover { border-color: rgba(139,92,246,0.35); background: rgba(139,92,246,0.04); }

/* ==========================================================================
   TARGET SECTION（⑨ターゲット業種）
   ========================================================================== */
.lp-target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.lp-target-card {
  padding: 24px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  text-align: center;
  transition: border-color .25s, background .25s;
}
.lp-target-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.14);
}
.lp-target-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}
.lp-target-card h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 8px;
}
.lp-target-card p {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0;
}
.lp-web .lp-target-card    { border-color: rgba(59,130,246,0.1); }
.lp-web .lp-target-card:hover { border-color: rgba(59,130,246,0.3); background: rgba(59,130,246,0.03); }
.lp-region .lp-target-card { border-color: rgba(139,92,246,0.1); }
.lp-region .lp-target-card:hover { border-color: rgba(139,92,246,0.3); background: rgba(139,92,246,0.03); }

/* ==========================================================================
   MID CTA BLOCK（全LP共通・中間コンバージョン）
   ========================================================================== */
.lp-mid-cta-block {
  padding: 56px 24px;
  text-align: center;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lp-mid-cta-block .lp-mid-cta-text {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 28px;
  line-height: 1.8;
}
.lp-mid-cta-block .lp-mid-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.lp-web .lp-mid-cta-block {
  background: rgba(59,130,246,0.04);
  border-top-color: rgba(59,130,246,0.12);
  border-bottom-color: rgba(59,130,246,0.12);
}
.lp-region .lp-mid-cta-block {
  background: rgba(124,58,237,0.04);
  border-top-color: rgba(124,58,237,0.12);
  border-bottom-color: rgba(124,58,237,0.12);
}

/* ==========================================================================
   REGION HUB LP パープルテーマ（.lp-region クラスで上書き）
   アクセントカラー: パープル #7C3AED / #8B5CF6
   ========================================================================== */
.lp-region .lp-breadcrumb a                           { color: #8B5CF6; }
.lp-region .lp-breadcrumb li:not(:last-child)::after  { color: rgba(139,92,246,0.5); }
.lp-region .lp-def-text                               { border-left-color: #8B5CF6; }
.lp-region .aio-conclusion                            { background: rgba(139,92,246,0.06); border-color: rgba(139,92,246,0.25); border-left-color: #8B5CF6; }
.lp-region .aio-conclusion-title                      { color: #8B5CF6; }
.lp-region .aio-conclusion li::before                 { color: #8B5CF6; }
.lp-region .lp-compare-col.lp-compare-tenani          { border: 1px solid rgba(139,92,246,0.35); background: rgba(139,92,246,0.04); }
.lp-region .lp-compare-col.lp-compare-tenani .lp-compare-head { background: linear-gradient(135deg,rgba(109,40,217,0.18),rgba(139,92,246,0.10)); color: #8B5CF6; border-color: rgba(139,92,246,0.3); }
.lp-region .lp-problem-icon                           { color: #8B5CF6; }
.lp-region .lp-ba-col.lp-ba-after                     { border-color: rgba(139,92,246,0.35); background: rgba(139,92,246,0.04); }
.lp-region .lp-ba-label                               { color: #8B5CF6; }
.lp-region #solution.lp-section                       { background: rgba(139,92,246,0.03) !important; border-top-color: rgba(139,92,246,0.08) !important; border-bottom-color: rgba(139,92,246,0.08) !important; }
.lp-region #examples.lp-section                       { background: rgba(139,92,246,0.03) !important; border-top-color: rgba(139,92,246,0.08) !important; border-bottom-color: rgba(139,92,246,0.08) !important; }
.lp-region #faq.lp-section                            { background: rgba(139,92,246,0.03) !important; border-top-color: rgba(139,92,246,0.08) !important; border-bottom-color: rgba(139,92,246,0.08) !important; }
.lp-region .lp-solution-num                           { color: #8B5CF6; border-color: rgba(139,92,246,0.3); }
.lp-region .lp-solution-card:hover                    { border-color: rgba(139,92,246,0.35); }
.lp-region .lp-strength-icon                          { color: #8B5CF6; }
.lp-region .lp-strength:hover                         { border-color: rgba(139,92,246,0.3); }
.lp-region .lp-flow-node                              { background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.25); color: #c4b5fd; }
.lp-region .lp-flow-arrow                             { color: #8B5CF6; }
.lp-region #faq.lp-section .faq-q h3                  { color: #e2e8f0; }
.lp-region .lp-summary-section                        { background: rgba(139,92,246,0.04); border-top-color: rgba(139,92,246,0.12); border-bottom-color: rgba(139,92,246,0.12); }
.lp-region .lp-summary-text                           { border-left-color: #8B5CF6; }
.lp-region .lp-related                                { border-top-color: rgba(139,92,246,0.15); }
.lp-region .lp-related-card-tag                       { color: #8B5CF6; border-color: rgba(139,92,246,0.3); background: rgba(139,92,246,0.08); }
.lp-region .lp-related-card:hover                     { border-color: rgba(139,92,246,0.4); }
.lp-region .lp-final-cta                              { background: linear-gradient(135deg, rgba(109,40,217,0.14) 0%, rgba(139,92,246,0.08) 100%); }
.lp-region .lp-final-cta h2                           { background: linear-gradient(135deg,#c4b5fd,#8B5CF6); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.lp-region .lp-compare-section                        { background: rgba(139,92,246,0.02); border-top: 1px solid rgba(139,92,246,0.06); border-bottom: 1px solid rgba(139,92,246,0.06); }
.lp-region .hero-aio-recommend                        { border-left-color: #8B5CF6; background: rgba(139,92,246,0.06); }

/* Region service cards */
.lp-region-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.lp-region-service-card {
  display: block;
  padding: 32px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color .25s, background .25s, transform .2s;
}
.lp-region-service-card:hover {
  border-color: rgba(139,92,246,0.5);
  background: rgba(139,92,246,0.06);
  transform: translateY(-2px);
  text-decoration: none;
}
.lp-region-service-card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}
.lp-region-service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 8px;
}
.lp-region-service-card p {
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 0 0 16px;
  line-height: 1.6;
}
.lp-region-service-card .card-link-arrow {
  font-size: 0.85rem;
  color: #8B5CF6;
  font-weight: 600;
}

/* ==========================================================================
   T02 LINE DX LP — 追加スタイル
   ========================================================================== */

/* ── 比較ブロック ── */
.lp-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}
.lp-compare-col {
  border-radius: 12px;
  padding: 28px 24px;
}
.lp-compare-general {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.lp-compare-tenani {
  background: rgba(123,97,255,0.06);
  border: 1px solid rgba(123,97,255,0.25);
}
.lp-compare-head {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.35);
}
.lp-compare-tenani .lp-compare-head { color: #7B61FF; }
.lp-compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-compare-col ul li {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  padding-left: 18px;
  position: relative;
}
.lp-compare-col ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: rgba(255,80,80,0.6);
  font-size: 0.8rem;
}
.lp-compare-tenani ul li { color: rgba(255,255,255,0.85); }
.lp-compare-tenani ul li::before { content: '✓'; color: #7B61FF; }
.lp-compare-vs {
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  align-self: center;
  text-align: center;
  padding-top: 40px;
}
@media (max-width: 640px) {
  .lp-compare {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .lp-compare-vs { display: none; }
}

/* ── 問題リスト ── */
.lp-problem-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-problem-list li {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  padding: 14px 18px 14px 48px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  position: relative;
}
.lp-problem-list li::before {
  content: '😓';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

/* ── Before/After テーブル形式 ── */
.lp-ba-table {
  max-width: 820px;
  margin: 24px auto 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.lp-ba-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
}
.lp-ba-row.lp-ba-header {
  background: rgba(255,255,255,0.04);
  padding: 10px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}
.lp-ba-row.lp-ba-header span:nth-child(3) { color: #7B61FF; }
.lp-ba-cell {
  padding: 18px 20px;
  font-size: 0.88rem;
  line-height: 1.65;
}
.lp-ba-cell.lp-ba-before {
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lp-ba-cell.lp-ba-after {
  color: rgba(255,255,255,0.88);
  background: rgba(123,97,255,0.04);
  border-bottom: 1px solid rgba(123,97,255,0.1);
}
.lp-ba-cell p { margin: 0; }
.lp-ba-arrow-cell {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(123,97,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lp-ba-row:last-child .lp-ba-cell,
.lp-ba-row:last-child .lp-ba-arrow-cell {
  border-bottom: none;
}
@media (max-width: 640px) {
  .lp-ba-row {
    grid-template-columns: 1fr;
  }
  .lp-ba-row.lp-ba-header { display: none; }
  .lp-ba-arrow-cell {
    padding: 8px;
    transform: rotate(90deg);
    border-bottom: none;
  }
  .lp-ba-cell.lp-ba-after { border-top: 1px solid rgba(123,97,255,0.15); }
}

/* ── 参謀AIセクション ── */
.lp-sanbo-ai-section {
  background: rgba(123,97,255,0.04);
  border-top: 1px solid rgba(123,97,255,0.12);
  border-bottom: 1px solid rgba(123,97,255,0.12);
}
.sanbo-ai-examples {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 28px auto 24px;
}
.sanbo-ai-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(123,97,255,0.06);
  border: 1px solid rgba(123,97,255,0.2);
  border-radius: 10px;
  padding: 18px 20px;
}
.sanbo-ai-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.sanbo-ai-message {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}
.sanbo-ai-point {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 24px;
  background: rgba(255,255,255,0.025);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.07);
}
.sanbo-ai-point p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.sanbo-ai-point strong { color: rgba(255,255,255,0.95); }

/* ── 詳細カード（lp-detail-cards 既存と共存） ── */
.lp-detail-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
@media (max-width: 768px) {
  .lp-detail-cards { grid-template-columns: 1fr; }
}

/* ── ターゲットカード ── */
.lp-target-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.lp-target-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  text-align: center;
  line-height: 1.5;
}
.lp-target-card:first-child { color: rgba(255,255,255,0.8); }
@media (max-width: 640px) {
  .lp-target-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ── 関連リンク ── */
.lp-related-links {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-related-links li a {
  display: block;
  padding: 14px 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(123,97,255,0.15);
  border-radius: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}
.lp-related-links li a:hover {
  background: rgba(123,97,255,0.06);
  border-color: rgba(123,97,255,0.35);
  color: #fff;
}

/* ── FAQ ── */
.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.lp-faq-item {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}
.lp-faq-q {
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.03);
  position: relative;
  padding-left: 48px;
}
.lp-faq-q::before {
  content: 'Q';
  position: absolute;
  left: 16px;
  font-size: 1rem;
  font-weight: 900;
  color: #7B61FF;
}
.lp-faq-a {
  padding: 16px 20px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.015);
  padding-left: 48px;
  position: relative;
}
.lp-faq-a::before {
  content: 'A';
  position: absolute;
  left: 16px;
  font-size: 1rem;
  font-weight: 900;
  color: rgba(255,255,255,0.3);
}

/* ── 検索意図補強テキスト ── */
.lp-intent-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin: 12px 0 0;
  padding: 10px 16px;
  border-left: 2px solid rgba(123,97,255,0.4);
  line-height: 1.65;
}

/* ── 定義文 ── */
.lp-def-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin: 20px 0 0;
  line-height: 1.75;
  max-width: 720px;
}

/* ── キャッチコピー ── */
.lp-catch {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin: 16px 0 0;
  line-height: 1.7;
  max-width: 680px;
}

/* ── Hero mini CTA ── */
.lp-hero-mini-cta {
  padding: 24px 40px;
  background: rgba(123,97,255,0.04);
  border-top: 1px solid rgba(123,97,255,0.1);
  border-bottom: 1px solid rgba(123,97,255,0.1);
  text-align: center;
}
.lp-hero-mini-cta p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Inline CTA ── */
.lp-inline-cta {
  padding: 32px 40px;
  text-align: center;
  background: rgba(123,97,255,0.04);
}
.lp-inline-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 16px;
}

/* ==========================================================================
   T05 AIO最適化 — テーブルスタイル
   ========================================================================== */

/* ── AIO用 比較テーブル（table タグ版） ── */
.lp-aio-compare-table {
  width: 100%;
  max-width: 820px;
  margin: 28px auto 0;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
}
.lp-aio-compare-table thead tr {
  background: rgba(255,255,255,0.04);
}
.lp-aio-compare-table thead th {
  padding: 12px 20px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lp-aio-compare-table thead th:last-child {
  color: #7B61FF;
}
.lp-aio-compare-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lp-aio-compare-table tbody tr:last-child {
  border-bottom: none;
}
.lp-aio-compare-table tbody td {
  padding: 14px 20px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  vertical-align: middle;
}
.lp-aio-compare-table tbody td:last-child {
  color: rgba(255,255,255,0.88);
  background: rgba(123,97,255,0.04);
}
.lp-aio-compare-table tbody td:last-child::before {
  content: '✓ ';
  color: #7B61FF;
  font-weight: 700;
}
@media (max-width: 640px) {
  .lp-aio-compare-table thead { display: none; }
  .lp-aio-compare-table tbody tr {
    display: grid;
    grid-template-columns: 1fr;
    padding: 12px 0;
  }
  .lp-aio-compare-table tbody td { padding: 8px 16px; }
  .lp-aio-compare-table tbody td:first-child {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    text-decoration: line-through;
    padding-bottom: 2px;
  }
}

/* ── AIO用 Before/After テーブル（table タグ版） ── */
.lp-aio-ba-table {
  width: 100%;
  max-width: 820px;
  margin: 28px auto 0;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
}
.lp-aio-ba-table thead tr {
  background: rgba(255,255,255,0.04);
}
.lp-aio-ba-table thead th {
  padding: 10px 20px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  width: 50%;
}
.lp-aio-ba-table thead th:last-child { color: #7B61FF; }
.lp-aio-ba-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lp-aio-ba-table tbody tr:last-child { border-bottom: none; }
.lp-aio-ba-table tbody td {
  padding: 14px 20px;
  line-height: 1.6;
  vertical-align: middle;
}
.lp-aio-ba-table tbody td:first-child {
  color: rgba(255,255,255,0.45);
  position: relative;
}
.lp-aio-ba-table tbody td:first-child::before {
  content: '😓 ';
  font-size: 0.9rem;
}
.lp-aio-ba-table tbody td:last-child {
  color: rgba(255,255,255,0.88);
  background: rgba(123,97,255,0.04);
}
.lp-aio-ba-table tbody td:last-child::before {
  content: '✓ ';
  color: #7B61FF;
  font-weight: 700;
}
@media (max-width: 640px) {
  .lp-aio-ba-table { font-size: 0.82rem; }
  .lp-aio-ba-table tbody td { padding: 10px 14px; }
}

/* lp-web テーマ上書き（青） */
.lp-web .lp-aio-compare-table thead th:last-child { color: #3B82F6; }
.lp-web .lp-aio-compare-table tbody td:last-child { background: rgba(37,99,235,0.04); }
.lp-web .lp-aio-compare-table tbody td:last-child::before { color: #3B82F6; }
.lp-web .lp-aio-ba-table thead th:last-child { color: #3B82F6; }
.lp-web .lp-aio-ba-table tbody td:last-child { background: rgba(37,99,235,0.04); }
.lp-web .lp-aio-ba-table tbody td:last-child::before { color: #3B82F6; }

/* lp-web テーマ上書き（青） */
.lp-web .lp-compare-tenani { background: rgba(37,99,235,0.06); border-color: rgba(37,99,235,0.25); }
.lp-web .lp-compare-tenani .lp-compare-head { color: #3B82F6; }
.lp-web .lp-compare-tenani ul li::before { color: #3B82F6; }
.lp-web .lp-ba-cell.lp-ba-after { background: rgba(37,99,235,0.04); border-color: rgba(37,99,235,0.1); }
.lp-web .lp-ba-arrow-cell { color: rgba(37,99,235,0.5); }
.lp-web .lp-sanbo-ai-section { background: rgba(37,99,235,0.04); border-color: rgba(37,99,235,0.12); }
.lp-web .sanbo-ai-card { background: rgba(37,99,235,0.06); border-color: rgba(37,99,235,0.2); }
.lp-web .lp-intent-text { border-color: rgba(37,99,235,0.4); }
.lp-web .lp-related-links li a { border-color: rgba(37,99,235,0.15); }
.lp-web .lp-related-links li a:hover { background: rgba(37,99,235,0.06); border-color: rgba(37,99,235,0.35); }
.lp-web .lp-faq-q::before { color: #3B82F6; }
.lp-web .lp-hero-mini-cta { background: rgba(37,99,235,0.04); border-color: rgba(37,99,235,0.1); }
.lp-web .lp-inline-cta { background: rgba(37,99,235,0.04); }

/* ==========================================================================
   T06 CV最大化 — 安心ブロック + マイクロCV
   ========================================================================== */

/* ── CTA直前 安心要素ブロック ── */
.lp-cta-reassurance {
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(123,97,255,0.15);
  border-radius: 14px;
}
.lp-cta-reassurance-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.lp-cta-reassurance ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-cta-reassurance ul li {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  padding-left: 24px;
  position: relative;
}
.lp-cta-reassurance ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7B61FF;
  font-weight: 700;
  font-size: 0.85rem;
}
@media (max-width: 640px) {
  .lp-cta-reassurance { padding: 20px 18px; }
}

/* ── マイクロCV（3選択肢） ── */
.lp-micro-cv {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.lp-micro-cv-lead {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.lp-micro-cv-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.lp-micro-cv-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 14px;
  background: rgba(123,97,255,0.06);
  border: 1px solid rgba(123,97,255,0.2);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.lp-micro-cv-btn:hover {
  background: rgba(123,97,255,0.12);
  border-color: rgba(123,97,255,0.4);
  transform: translateY(-2px);
}
.lp-micro-cv-btn--ghost {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.08);
}
.lp-micro-cv-btn--ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
}
.lp-micro-cv-icon {
  font-size: 1.5rem;
  line-height: 1;
}
.lp-micro-cv-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}
.lp-micro-cv-sub {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .lp-micro-cv-options { grid-template-columns: 1fr; gap: 8px; }
  .lp-micro-cv-btn { flex-direction: row; padding: 14px 16px; }
  .lp-micro-cv-text { align-items: flex-start; }
}

/* lp-web テーマ（青）*/
.lp-web .lp-cta-reassurance { border-color: rgba(37,99,235,0.15); }
.lp-web .lp-cta-reassurance ul li::before { color: #3B82F6; }
.lp-web .lp-micro-cv-btn { background: rgba(37,99,235,0.06); border-color: rgba(37,99,235,0.2); }
.lp-web .lp-micro-cv-btn:hover { background: rgba(37,99,235,0.12); border-color: rgba(37,99,235,0.4); }

