/* ============================================================
   BREAKER LP — 株式会社R3 電子ブレーカー専用ランディングページ
   Version: 1.0.0
   ============================================================ */

/* ── CSS カスタムプロパティ ── */
:root {
  /* R3 ブランドカラー */
  --blp-blue: #1565c0;
  --blp-blue-dark: #0d2357;
  --blp-blue-mid: #1a3f7a;
  --blp-blue-light: #1976d2;
  --blp-green: #27ae60;
  --blp-green-dark: #1e8449;
  /* CTA・アクセント */
  --blp-orange: #f57c00;
  --blp-orange-lt: #ff9800;
  --blp-yellow: #ffe082;
  --blp-lime: #76ff03;
  /* テキスト */
  --blp-text: #212121;
  --blp-text-sub: #555555;
  /* 背景 */
  --blp-bg: #ffffff;
  --blp-bg-light: #f5f8ff;
  --blp-bg-gray: #f5f5f5;
  --blp-border: #dde3f0;
  /* フォント */
  --blp-font:
    "Noto Sans JP", "Hiragino Sans", "BIZ UDPGothic", "Yu Gothic Medium",
    "Meiryo", sans-serif;
  --blp-font-en: "Noto Sans JP", "Hiragino Sans", sans-serif;
  /* レイアウト */
  --blp-max: 1140px;
  --blp-rad-sm: 6px;
  --blp-rad-md: 12px;
  --blp-rad-lg: 24px;
  --blp-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --blp-shadow-md: 0 6px 24px rgba(0, 0, 0, 0.12);
  --blp-shadow-lg: 0 14px 48px rgba(0, 0, 0, 0.18);
  --blp-section-py: 88px;
}

/* ── リセット & ベース ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body.blp-body {
  font-family: var(--blp-font);
  color: var(--blp-text);
  background: var(--blp-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

/* ── コンテナ ── */
.blp-container {
  max-width: var(--blp-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── ユーティリティ ── */
br.pc {
  display: inline;
}
br.sp {
  display: none;
}

@media (max-width: 768px) {
  br.pc {
    display: none;
  }
  br.sp {
    display: inline;
  }
}
.blp-text-center {
  text-align: center;
}
.blp-mt-8 {
  margin-top: 8px;
}
.blp-mt-16 {
  margin-top: 16px;
}
.blp-mt-24 {
  margin-top: 24px;
}
.blp-mt-40 {
  margin-top: 40px;
}

/* ── セクション共通 ── */
.blp-section {
  padding: var(--blp-section-py) 0;
  position: relative;
}
.blp-section--white {
  background: var(--blp-bg);
}
.blp-section--light {
  background: var(--blp-bg-light);
}
.blp-section--gray {
  background: var(--blp-bg-gray);
}
.blp-section--dark {
  background: var(--blp-blue-dark);
  color: #fff;
}

.blp-section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.blp-section-label--blue {
  background: var(--blp-blue);
  color: #fff;
}
.blp-section-label--green {
  background: var(--blp-green);
  color: #fff;
}
.blp-section-label--orange {
  background: var(--blp-orange);
  color: #fff;
}

.blp-section-title {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 12px;
}
.blp-section-title--center {
  text-align: center;
}
.blp-section-title--white {
  color: #fff;
}

.blp-section-subtitle {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: var(--blp-text-sub);
  margin-bottom: 52px;
  text-align: center;
  line-height: 1.8;
}
.blp-section-subtitle--white {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   ボタン
   ============================================================ */
.blp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
}
/* オレンジ CTA */
.blp-btn--orange {
  background: linear-gradient(
    135deg,
    var(--blp-orange) 0%,
    var(--blp-orange-lt) 100%
  );
  color: #fff;
}
.blp-btn--orange:hover {
  transform: translateY(-3px);
}
/* LINE */
.blp-btn--line {
  background: #06c755;
  color: #fff;
}
.blp-btn--line:hover {
  transform: translateY(-3px);
}
/* ブルー */
.blp-btn--blue {
  background: linear-gradient(
    135deg,
    var(--blp-blue) 0%,
    var(--blp-blue-light) 100%
  );
  color: #fff;
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.35);
}
.blp-btn--blue:hover {
  transform: translateY(-3px);
}
/* ホワイトアウトライン */
.blp-btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.blp-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
/* サイズバリエーション */
.blp-btn--lg {
  padding: 22px 56px;
  font-size: 1.2rem;
}
.blp-btn--full {
  width: 100%;
}

/* ============================================================
   ヘッダー
   ============================================================ */
.blp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}
.blp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--blp-max);
  margin: 0 auto;
  gap: 16px;
}

/* ロゴ */
.blp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.blp-logo-img {
  height: 44px;
  width: auto;
}
.blp-logo-text {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--blp-blue);
}

/* デスクトップナビ */
.blp-header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
}
.blp-header-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blp-text);
  transition: color 0.2s;
  white-space: nowrap;
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.blp-header-nav a:hover {
  color: var(--blp-blue);
  border-bottom-color: var(--blp-blue);
}

/* 右側グループ */
.blp-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.blp-header-tel {
  text-align: center;
  line-height: 1.25;
}
.blp-header-tel-label {
  font-size: 0.62rem;
  color: var(--blp-text-sub);
  display: block;
  margin-bottom: 1px;
}
.blp-header-tel-num {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--blp-blue);
  font-family: var(--blp-font-en);
  display: block;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.blp-header-tel-num:hover {
  opacity: 0.8;
}
.blp-header-tel-num::before {
  content: none;
}

.blp-header-cta {
  padding: 11px 20px;
  font-size: 0.9rem;
}

/* ハンバーガー */
.blp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  padding: 4px;
}
.blp-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blp-text);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.blp-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.blp-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.blp-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* モバイルメニュー */
.blp-mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--blp-border);
  padding: 20px 24px 24px;
}
.blp-mobile-menu.is-open {
  display: block;
}
nav.blp-mobile-nav {
  margin-bottom: 2em;
}
.blp-mobile-menu .blp-btn + .blp-btn {
  margin-top: 2em;
}
.blp-mobile-nav a {
  display: block;
  padding: 14px 4px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blp-text);
  border-bottom: 1px solid var(--blp-border);
  transition: color 0.2s;
}
.blp-mobile-nav a:hover {
  color: var(--blp-blue);
}
.blp-mobile-tel {
  text-align: center;
  padding: 20px 0;
}
.blp-mobile-tel-label {
  font-size: 0.72rem;
  color: var(--blp-text-sub);
  margin-bottom: 4px;
}
.blp-mobile-tel-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blp-blue);
  font-family: var(--blp-font-en);
  display: block;
}
.blp-mobile-tel-num::before {
  content: none;
}
.blp-mobile-tel-hours {
  font-size: 0.72rem;
  color: var(--blp-text-sub);
  margin-top: 4px;
}

/* ============================================================
   ヒーローセクション（2カラム・背景画像・ライト配色）
   ============================================================ */
.blp-hero {
  background-color: #e8f1fa;
  background-image: url("../images/hero-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 48px 0 64px;
}

/* 白オーバーレイ（テキスト読みやすく） */
.blp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(225, 238, 255, 0.78);
  z-index: 0;
}

.blp-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: center;
}

.blp-hero-content {
  padding-bottom: 0;
}

.blp-hero-visual {
  padding-bottom: 24px;
}

/* ── 実績バッジ行（月桂樹画像） ── */
.blp-hero-ach-wrap {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 12px;
}

.blp-hero-ach-bg {
  width: 100%;
  height: auto;
  display: block;
}

/* ── キャッチコピー ── */
.blp-hero-pretag {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  color: var(--blp-blue-dark);
  margin-bottom: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  -webkit-text-stroke: 1.5px #fff;
  paint-order: stroke fill;
}
.blp-hero-pretag::before {
  content: "\\";
  color: var(--blp-blue);
  font-size: 1.4em;
  font-weight: 300;
  line-height: 1;
}
.blp-hero-pretag::after {
  content: "/";
  color: var(--blp-blue);
  font-size: 1.4em;
  font-weight: 300;
  line-height: 1;
}

.blp-hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--blp-blue-dark);
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
}

.blp-hero-em {
  font-style: normal;
  color: var(--blp-orange);
  font-size: 1.85em;
  line-height: 0.9;
  display: inline-block;
  vertical-align: middle;
}

.blp-hero-subtitle {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: var(--blp-text);
  line-height: 1.9;
  margin-bottom: 28px;
}
.blp-hero-subtitle-em {
  font-size: 1.8em;
  font-weight: 900;
  color: var(--blp-orange);
  -webkit-text-stroke: 1.5px #fff;
  paint-order: stroke fill;
}

/* ── CTA ボタン（縦並び・ラベル付き） ── */
.blp-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.blp-hero-cta-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.blp-hero-cta-sublbl {
  font-size: 0.7rem;
  font-weight: 700;
  color: #000;
  background: #fff;
  border: 2px solid var(--blp-orange);
  border-radius: 20px;
  padding: 5px 16px;
  text-align: center;
  white-space: nowrap;
  align-self: center;
  display: inline-block;
  position: relative;
}
/* 吹き出し三角（外側：ボーダー色） */
.blp-hero-cta-sublbl::before {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 11px solid var(--blp-orange);
}
/* 吹き出し三角（内側：白塗り） */
.blp-hero-cta-sublbl::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #fff;
  z-index: 1;
}
/* 2つ目のアイテム（LINE グリーン） */
.blp-hero-cta-item:nth-child(2) .blp-hero-cta-sublbl {
  border-color: #06c755;
}
.blp-hero-cta-item:nth-child(2) .blp-hero-cta-sublbl::before {
  border-top-color: #06c755;
}

.blp-hero-note {
  font-size: 0.76rem;
  color: var(--blp-text-sub);
}

/* ── シリンダー比較図 ── */
.blp-cyl-figure {
  margin: 0;
  display: block;
}

.blp-cyl-svg {
  width: 100%;
  height: auto;
  display: block;
  font-family: var(--blp-font);
}

.blp-cyl-caption {
  font-size: 0.68rem;
  color: var(--blp-text-sub);
  margin-top: 6px;
  display: block;
  text-align: center;
}

.blp-hero-wave {
  display: none;
}

/* ============================================================
   安心帯（Trust Band）
   ============================================================ */
.blp-trust {
  background: var(--blp-blue);
  padding: 20px 0;
}
.blp-trust-inner {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: var(--blp-max);
  margin: 0 auto;
  padding: 0 24px;
}
.blp-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}
.blp-trust-item::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

/* ============================================================
   課題セクション（Problem）
   ============================================================ */

/* セクション本体：上部はバナーが担うためパディングゼロ */
.blp-problem-section {
  padding-top: 0;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #a8d5ec 0%, #c5e8f5 55%, #d8f0fa 100%);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* フルワイドバナー */
.blp-problem-head {
  position: relative;
  background-color: #29b6f6;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 64px 20px 0;
}

/* 下向き三角矢印 */
.blp-problem-head-arrow {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 44px solid #29b6f6;
  margin: 0 auto;
}

.blp-problem-head-title {
  position: relative;
  z-index: 1;
  color: var(--blp-blue-dark);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 24px;
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* 「お悩み」強調 */
.blp-problem-head-em {
  font-style: normal;
  color: var(--blp-orange);
  font-size: 1.5em;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  position: relative;
}

/* もつれた糸イラスト（「お悩み」右上） */
.blp-problem-head-icon {
  position: absolute;
  top: -40px;
  right: -54px;
  width: 70px;
  height: auto;
  pointer-events: none;
  display: block;
}

.blp-problem-head-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: var(--blp-orange);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 50px;
  margin-bottom: 40px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

/* カードエリア上部の余白 */
.blp-problem-section .blp-container {
  padding-top: 52px;
  margin-bottom: 4em;
  position: relative;
  z-index: 1;
}

.blp-problem-bubble-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.blp-problem-bubbles-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.blp-problem-bubbles-col--left {
  align-items: flex-end;
}
.blp-problem-bubbles-col--right {
  align-items: flex-start;
  justify-content: center;
}
.blp-problem-character {
  width: 280px;
}
.blp-problem-character img {
  width: 100%;
  height: auto;
  display: block;
}
.blp-problem-bubble {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 46px;
  padding: 22px 15px;
  box-shadow: 0 4px 20px rgba(0, 60, 120, 0.1);
  text-align: center;
  max-width: 240px;
  position: relative;
}
/* 思考バブル：ドット大（キャラクター側） */
.blp-problem-bubbles-col--left .blp-problem-bubble::before,
.blp-problem-bubbles-col--right .blp-problem-bubble::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 60, 120, 0.1);
  top: 50%;
  transform: translateY(-50%);
}
/* 思考バブル：ドット小 */
.blp-problem-bubbles-col--left .blp-problem-bubble::after,
.blp-problem-bubbles-col--right .blp-problem-bubble::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 60, 120, 0.1);
  top: 50%;
  transform: translateY(-50%);
}
/* 左吹き出し：ドットを右（キャラ方向）へ */
.blp-problem-bubbles-col--left .blp-problem-bubble::before {
  right: -20px;
}
.blp-problem-bubbles-col--left .blp-problem-bubble::after {
  right: -33px;
}
/* 右吹き出し：ドットを左（キャラ方向）へ */
.blp-problem-bubbles-col--right .blp-problem-bubble::before {
  left: -20px;
}
.blp-problem-bubbles-col--right .blp-problem-bubble::after {
  left: -33px;
}
.blp-problem-bubble-text {
  display: block;
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--blp-text);
  line-height: 1.65;
}

/* ============================================================
   ソリューションバナー
   ============================================================ */
.blp-solution-banner {
  background: linear-gradient(135deg, #1565c0 0%, #1976d2 50%, #42a5f5 100%);
  margin-top: -80px;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.blp-solution-wave {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 32px;
}
.blp-solution-wave svg {
  display: block;
  width: 100%;
  height: 120px;
}
.blp-solution-inner {
  position: relative;
  z-index: 1;
}
.blp-solution-img {
  text-align: center;
  position: relative;
  z-index: 1;
}
.blp-solution-img img {
  max-width: 480px;
  width: 88%;
  margin: 0 auto;
  display: block;
}
.blp-solution-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  display: block;
}
.blp-solution-title {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 18px;
}
.blp-solution-title em {
  font-style: normal;
  color: var(--blp-yellow);
}
.blp-solution-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.85;
}
.blp-solution-subtitle-em {
  font-size: 1.35em;
  font-weight: 900;
  color: var(--blp-orange);
  -webkit-text-stroke: 1.5px #fff;
  paint-order: stroke fill;
}

/* ============================================================
   電子ブレーカーとは（What is）
   ============================================================ */
.blp-what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.blp-what-tag {
  display: inline-block;
  background: var(--blp-green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.blp-what-headline {
  font-size: clamp(1.3rem, 2.5vw, 1.95rem);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 18px;
}
.blp-what-headline em {
  font-style: normal;
  color: var(--blp-blue);
}

.blp-what-body {
  font-size: 0.95rem;
  color: var(--blp-text-sub);
  line-height: 2;
  margin-bottom: 20px;
}
.blp-what-body strong {
  font-weight: 700;
}

/* 比較ボックス */
.blp-what-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}
.blp-what-compare-card {
  border-radius: var(--blp-rad-md);
  padding: 20px 16px;
  text-align: center;
}
.blp-what-compare-card--before {
  background: #fff3e0;
  border: 2px solid #ffb74d;
}
.blp-what-compare-card--after {
  background: #e8f5e9;
  border: 2px solid var(--blp-green);
}
.blp-what-compare-label {
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
.blp-what-compare-card--before .blp-what-compare-label {
  color: #e65100;
}
.blp-what-compare-card--after .blp-what-compare-label {
  color: var(--blp-green-dark);
}
.blp-what-compare-num {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--blp-font-en);
  line-height: 1;
  display: block;
}
.blp-what-compare-card--before .blp-what-compare-num {
  color: #e65100;
}
.blp-what-compare-card--after .blp-what-compare-num {
  color: var(--blp-green-dark);
}
.blp-what-compare-sub {
  font-size: 0.72rem;
  color: var(--blp-text-sub);
  margin-top: 6px;
  line-height: 1.5;
}
.blp-what-arrow {
  text-align: center;
  font-size: 1.6rem;
  color: var(--blp-text-sub);
}

/* 右側ビジュアル */
.blp-what-visual {
  background: var(--blp-bg-light);
  padding: 36px 32px;
}
.blp-what-visual-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--blp-blue);
  margin-bottom: 20px;
  text-align: center;
}
.blp-what-price-table {
  background: #fff;
  border-radius: var(--blp-rad-md);
  overflow: hidden;
  box-shadow: var(--blp-shadow-sm);
  margin-bottom: 20px;
}
.blp-what-price-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--blp-border);
}
.blp-what-price-row:last-child {
  border-bottom: none;
}
.blp-what-price-cell {
  padding: 14px 10px;
  font-size: 0.85rem;
  flex: 1;
  line-height: 1.6;
}
.blp-what-price-cell--head {
  font-weight: 700;
  background: var(--blp-bg-light);
  border-right: 1px solid var(--blp-border);
  flex: 0 0 140px;
  font-size: 0.82rem;
}
.blp-what-price-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.blp-what-price-badge--red {
  background: #ffebee;
  color: #c62828;
}
.blp-what-price-badge--green {
  background: #e8f5e9;
  color: var(--blp-green-dark);
}
.blp-what-combo-box {
  background: linear-gradient(135deg, var(--blp-blue), var(--blp-blue-light));
  color: #fff;
  border-radius: var(--blp-rad-md);
  padding: 20px;
  text-align: center;
}
.blp-what-combo-label {
  font-size: 0.82rem;
  opacity: 0.85;
  margin-bottom: 8px;
}
.blp-what-combo-num {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--blp-font-en);
  line-height: 1;
  display: block;
}
.blp-what-combo-sub {
  font-size: 0.78rem;
  margin-top: 6px;
  opacity: 0.85;
}
.blp-what-combo-em {
  font-size: 1.35em;
  color: #ffe082;
  font-weight: 900;
}

/* ============================================================
   中間CTA
   ============================================================ */
.blp-mid-cta {
  background-color: #1a3f7a;
  background-image: url("../images/t6.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 48px 0;
}
.blp-mid-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 40, 0.38);
  z-index: 0;
}
.blp-mid-cta .blp-container {
  position: relative;
  z-index: 1;
}
.blp-mid-cta-card {
  background: #fff;
  border: 2px solid var(--blp-blue);
  border-radius: var(--blp-rad-md);
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: stretch;
  overflow: hidden;
  max-width: 815px;
  margin: 0 auto;
}
.blp-mid-cta-content {
  padding: 28px 10px 28px 36px;
}
.blp-mid-cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.blp-mid-cta-tag {
  display: inline-block;
  background: var(--blp-blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 12px;
  letter-spacing: 0.04em;
}
.blp-mid-cta-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 900;
  color: var(--blp-text);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.blp-mid-cta-title::before {
  content: "\\";
  flex: none;
  height: auto;
  background: transparent;
  color: var(--blp-blue);
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1;
  opacity: 0.65;
}
.blp-mid-cta-title::after {
  content: "/";
  flex: none;
  height: auto;
  background: transparent;
  color: var(--blp-blue);
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1;
  opacity: 0.65;
}
.blp-mid-cta-desc {
  font-size: 0.88rem;
  color: var(--blp-text-sub);
  line-height: 1.9;
  margin-bottom: 24px;
}
.blp-mid-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.blp-mid-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  text-decoration: none;
  transition: transform 0.2s;
  flex: none;
  min-width: 215px;
  max-width: 215px;
  white-space: nowrap;
}
.blp-mid-cta-btn--blue {
  background: #1565c0;
  color: #fff;
}
.blp-mid-cta-btn--green {
  background: #27ae60;
  color: #fff;
}
.blp-mid-cta-btn:hover {
  transform: translateY(-3px);
}
.blp-mid-cta-btn-main {
  font-size: 1rem;
  font-weight: 700;
  display: block;
  line-height: 1.4;
}
.blp-mid-cta-btn-sub {
  font-size: 0.68rem;
  font-weight: 700;
  background: #fff;
  border-radius: 30px;
  padding: 2px 10px;
  margin-top: 6px;
  display: inline-block;
}
.blp-mid-cta-btn--blue .blp-mid-cta-btn-sub {
  color: #1565c0;
}
.blp-mid-cta-btn--green .blp-mid-cta-btn-sub {
  color: #27ae60;
}
.blp-mid-cta-visual {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.blp-mid-cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

/* ============================================================
   特長セクション（Benefits）
   ============================================================ */
.blp-benefits-section {
  padding-top: 0;
  overflow: hidden;
}
.blp-benefits-head {
  position: relative;
  background-color: #29b6f6;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 64px 20px 0;
}
.blp-benefits-head-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 18px;
  border-radius: 30px;
  background: var(--blp-blue);
  color: #fff;
  margin-bottom: 14px;
}
.blp-benefits-head-title {
  position: relative;
  z-index: 1;
  color: var(--blp-blue-dark);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 24px;
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.blp-benefits-head-em {
  font-style: normal;
  color: var(--blp-orange);
  font-size: 1.5em;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}
.blp-benefits-head-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: var(--blp-orange);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 50px;
  margin-bottom: 40px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}
.blp-benefits-head-arrow {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 44px solid #29b6f6;
  margin: 0 auto;
}
.blp-benefits-section .blp-container {
  padding-top: 52px;
  margin-bottom: 4em;
  position: relative;
  z-index: 1;
}
.blp-benefits-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blp-benefits-list-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 32px;
  background: #fff;
  border-radius: 0;
  box-shadow: var(--blp-shadow-sm);
}
.blp-benefits-list-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--blp-blue);
  color: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 900;
  font-family: var(--blp-font-en);
}
.blp-benefits-list-body {
  flex: 1;
}
.blp-benefits-list-title {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--blp-text);
  margin-bottom: 8px;
  line-height: 1.35;
}
.blp-benefits-list-em {
  font-style: normal;
  color: var(--blp-orange);
  font-weight: 900;
  font-size: 1.25em;
}
.blp-benefits-list-desc {
  font-size: 0.88rem;
  color: var(--blp-text-sub);
  line-height: 1.88;
}

/* ============================================================
   導入事例（Cases）
   ============================================================ */
#cases {
  background: #cce8f8;
  color: var(--blp-text);
}
#cases .blp-section-title {
  color: var(--blp-blue-dark);
}
#cases .blp-section-subtitle {
  color: var(--blp-text-sub);
}
.blp-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blp-case-card {
  background: #fff;
  border-radius: var(--blp-rad-md);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 80, 160, 0.1);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  display: flex;
  flex-direction: column;
}
.blp-case-card:hover {
  box-shadow: 0 6px 28px rgba(0, 80, 160, 0.18);
  transform: translateY(-4px);
}
.blp-case-label {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--blp-blue);
  text-align: center;
  padding: 18px 16px 14px;
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.blp-case-img {
  flex-shrink: 0;
  margin: 0;
}
.blp-case-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.blp-case-pct-wrap {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  margin-top: -22px;
  position: relative;
  z-index: 2;
}
.blp-case-pct-outer {
  background: #fff;
  padding: 3px 3px 8px;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
  display: inline-flex;
}
.blp-case-pct-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: var(--blp-orange);
  color: #fff;
  width: 130px;
  padding: 16px 10px 24px;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
}
.blp-case-pct-num {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  font-family: var(--blp-font-en);
}
.blp-case-pct-num small {
  font-size: 0.6em;
  font-weight: 900;
}
.blp-case-pct-text {
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 4px;
}
.blp-case-body {
  margin-top: auto;
  padding: 14px 20px 24px;
}
.blp-case-metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blp-case-metric {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blp-case-metric-label {
  flex-shrink: 0;
  background: var(--blp-blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
}
.blp-case-metric-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blp-text);
}
.blp-case-note-sm {
  font-size: 0.68rem;
  color: var(--blp-text-sub);
  margin-top: 12px;
  line-height: 1.6;
}
.blp-cases-cta {
  text-align: center;
  margin-top: 44px;
}

/* ============================================================
   導入の流れ（Steps）
   ============================================================ */
.blp-steps-section {
  padding-top: 0;
  overflow: hidden;
  background: #d8f0fa;
}
.blp-steps-head {
  position: relative;
  background-color: #29b6f6;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 64px 20px 0;
}
.blp-steps-head-title {
  position: relative;
  z-index: 1;
  color: var(--blp-blue-dark);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 24px;
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.blp-steps-head-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: var(--blp-orange);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 50px;
  margin-bottom: 40px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}
.blp-steps-head-arrow {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 44px solid #29b6f6;
  margin: 0 auto;
}
.blp-steps-section .blp-container {
  padding-top: 52px;
  margin-bottom: 4em;
  position: relative;
  z-index: 1;
}
.blp-steps-list {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  display: grid;
  gap: 0;
}
.blp-steps-list::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--blp-blue) 0%,
    var(--blp-green) 100%
  );
  opacity: 0.3;
}
.blp-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  position: relative;
}
.blp-step-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.blp-step-num {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blp-blue), var(--blp-blue-light));
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.35);
  flex-shrink: 0;
}
.blp-step-num--green {
  background: linear-gradient(135deg, var(--blp-green), var(--blp-green-dark));
  box-shadow: 0 4px 16px rgba(39, 174, 96, 0.35);
}
.blp-step-label-sm {
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  opacity: 0.8;
}
.blp-step-n {
  font-size: 1.7rem;
  font-weight: 900;
  font-family: var(--blp-font-en);
  line-height: 1;
}

.blp-step-body {
  padding-top: 12px;
}
.blp-step-title {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--blp-text);
}
.blp-step-title span {
  color: var(--blp-blue);
}
.blp-step-desc {
  font-size: 0.88rem;
  color: var(--blp-text-sub);
  line-height: 1.88;
}

/* ============================================================
   お客様の声（Voices）
   ============================================================ */
.blp-voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blp-voice-card {
  background: #fff;
  border-radius: var(--blp-rad-md);
  padding: 28px 24px;
  box-shadow: var(--blp-shadow-sm);
  position: relative;
}
.blp-voice-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--blp-blue);
  opacity: 0.07;
  position: absolute;
  top: 8px;
  left: 14px;
  line-height: 1;
  font-family: Georgia, serif;
}
.blp-voice-stars {
  color: #ffa000;
  font-size: 1rem;
  margin-bottom: 10px;
}
.blp-voice-text {
  font-size: 0.88rem;
  color: var(--blp-text-sub);
  line-height: 1.9;
  margin-bottom: 16px;
}
.blp-voice-result {
  background: var(--blp-bg-light);
  border-radius: var(--blp-rad-sm);
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--blp-blue);
  font-weight: 700;
  margin-bottom: 16px;
  border-left: 3px solid var(--blp-blue);
}
.blp-voice-meta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blp-text);
}
.blp-voice-industry {
  font-size: 0.75rem;
  color: var(--blp-text-sub);
  margin-top: 2px;
}

/* ============================================================
   FAQ
   ============================================================ */
.blp-faq-section {
  padding-top: 0;
  overflow: hidden;
}
.blp-faq-head {
  position: relative;
  background-color: #29b6f6;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 64px 20px 0;
}
.blp-faq-head-title {
  position: relative;
  z-index: 1;
  color: var(--blp-blue-dark);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 24px;
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.blp-faq-head-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: var(--blp-orange);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 50px;
  margin-bottom: 40px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}
.blp-faq-head-arrow {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 44px solid #29b6f6;
  margin: 0 auto;
}
.blp-faq-section .blp-container {
  padding-top: 52px;
  margin-bottom: 4em;
  position: relative;
  z-index: 1;
}
.blp-faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.blp-faq-item {
  border: 2px solid var(--blp-border);
  border-radius: var(--blp-rad-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.blp-faq-item.is-open {
  border-color: var(--blp-blue);
}
.blp-faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  background: #fff;
  user-select: none;
}
.blp-faq-arrow {
  display: flex;
}
.blp-faq-q-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: var(--blp-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.88rem;
}
.blp-faq-q-text {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blp-text);
  line-height: 1.5;
}
.blp-faq-arrow {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--blp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    background 0.2s,
    border-color 0.2s;
}
.blp-faq-arrow::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--blp-text-sub);
  border-bottom: 2px solid var(--blp-text-sub);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: border-color 0.2s;
}
.blp-faq-item.is-open .blp-faq-arrow {
  transform: rotate(180deg);
  background: var(--blp-blue);
  border-color: var(--blp-blue);
}
.blp-faq-item.is-open .blp-faq-arrow::before {
  border-color: #fff;
}
.blp-faq-a {
  display: none;
  padding: 0 22px 20px 70px;
}
.blp-faq-item.is-open .blp-faq-a {
  display: block;
}
.blp-faq-a-text {
  font-size: 0.9rem;
  color: var(--blp-text-sub);
  line-height: 1.95;
}

/* ============================================================
   最終 CTA
   ============================================================ */
.blp-cta {
  background-color: var(--blp-blue-dark);
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.blp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(9, 26, 61, 0.87) 0%,
    rgba(21, 101, 192, 0.75) 100%
  );
}
.blp-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.blp-cta-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.2em;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-block;
  padding: 4px 14px;
  margin-bottom: 22px;
}
.blp-cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.38;
  margin-bottom: 20px;
}
.blp-cta-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
}
.blp-cta-form-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 36px;
}
.blp-cta-form-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blp-text);
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

/* CF7 フォームスタイリング */
.blp-cta-form-card .wpcf7-form p {
  margin: 0 0 14px;
}
.blp-cta-form-card .wpcf7-form p:last-child {
  margin-bottom: 0;
}
.blp-cta-form-card .wpcf7-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blp-text);
  margin-bottom: 6px;
}
.blp-cta-form-card .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.blp-cta-form-card .wpcf7-form input[type="text"],
.blp-cta-form-card .wpcf7-form input[type="email"],
.blp-cta-form-card .wpcf7-form input[type="tel"],
.blp-cta-form-card .wpcf7-form select,
.blp-cta-form-card .wpcf7-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--blp-text);
  background: #fff;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.2s;
}
.blp-cta-form-card .wpcf7-form input[type="text"]:focus,
.blp-cta-form-card .wpcf7-form input[type="email"]:focus,
.blp-cta-form-card .wpcf7-form input[type="tel"]:focus,
.blp-cta-form-card .wpcf7-form select:focus,
.blp-cta-form-card .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--blp-blue);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
}
.blp-cta-form-card .wpcf7-form textarea {
  height: 110px;
  resize: vertical;
}
.blp-cta-form-card .wpcf7-form input[type="submit"] {
  width: 100%;
  padding: 14px;
  background: var(--blp-blue);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  margin-top: 4px;
}
.blp-cta-form-card .wpcf7-form input[type="submit"]:hover {
  background: var(--blp-blue-dark);
}
.blp-cta-form-card .wpcf7-not-valid-tip {
  font-size: 0.78rem;
  color: #e53935;
  margin-top: 4px;
  display: block;
}
.blp-cta-form-card .wpcf7-response-output {
  font-size: 0.85rem;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 4px;
}

/* ============================================================
   フッター
   ============================================================ */
.blp-footer {
  background: #fff;
  color: var(--blp-text-sub);
  padding: 0;
}
.blp-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  margin-bottom: 32px;
  align-items: start;
}
.blp-footer-logo-img {
  height: 36px;
  width: auto;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
.blp-footer-logo-text {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
}
.blp-footer-address {
  font-size: 0.8rem;
  line-height: 1.95;
  font-style: normal;
}
.blp-footer-address a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.blp-footer-address a:hover {
  color: #fff;
}
.blp-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.blp-footer-nav a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  white-space: nowrap;
}
.blp-footer-nav a:hover {
  color: #fff;
}
.blp-footer-copy {
  border-top: 1px solid #e0e0e0;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 0.72rem;
}

/* ============================================================
   固定 CTA バー
   ============================================================ */
.blp-fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.blp-fixed-cta.is-visible {
  transform: translateY(0);
}
.blp-fixed-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.blp-fixed-cta-msg {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blp-text);
  white-space: nowrap;
  flex-shrink: 0;
}
.blp-fixed-cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.blp-fixed-cta-btn {
  padding: 12px 28px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .blp-fixed-cta-msg {
    display: none;
  }
  .blp-fixed-cta-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .blp-fixed-cta-btns {
    width: 100%;
    gap: 8px;
  }
  .blp-fixed-cta-btn {
    flex: 1;
    padding: 12px 8px;
    font-size: 0.82rem;
  }
}

/* ============================================================
   スクロールトップ
   ============================================================ */
.blp-scroll-top {
  position: fixed;
  bottom: 28px;
  right: 22px;
  width: 48px;
  height: 48px;
  background: var(--blp-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--blp-shadow-md);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.3s,
    transform 0.3s;
  z-index: 999;
  border: none;
}
.blp-scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.blp-scroll-top:hover {
  background: var(--blp-blue-dark);
}

/* ============================================================
   スクロールアニメーション（無効化）
   ============================================================ */
.scroll-reveal,
.scroll-reveal.is-visible,
.blp-hero .scroll-reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  visibility: visible !important;
}

/* ============================================================
   ヒーロー内サービスポイントリスト
   ============================================================ */
.blp-hero-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.blp-hero-service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--blp-text);
  font-weight: 600;
}
.blp-hero-service-label {
  display: inline-block;
  background: var(--blp-blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 100px;
  text-align: center;
}

/* ============================================================
   サービスセクション共通（エアコン制御・新電力）
   ============================================================ */
.blp-svc-section .blp-container {
  position: relative;
  z-index: 1;
}
.blp-svc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.blp-svc-tag {
  display: inline-block;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.blp-svc-tag--aircon {
  background: #0288d1;
}
.blp-svc-tag--power {
  background: var(--blp-green);
}
.blp-svc-headline {
  font-size: clamp(1.3rem, 2.5vw, 1.95rem);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 18px;
}
.blp-svc-headline em {
  font-style: normal;
  color: var(--blp-blue);
}
.blp-svc-em--green {
  color: var(--blp-green) !important;
}
.blp-svc-body {
  font-size: 0.95rem;
  color: var(--blp-text-sub);
  line-height: 2;
  margin-bottom: 20px;
}
.blp-svc-body strong {
  font-weight: 700;
}

/* ポイントリスト */
.blp-svc-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.blp-svc-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--blp-rad-sm);
  border: 1px solid var(--blp-border);
}
.blp-svc-section--power .blp-svc-point {
  background: var(--blp-bg-light);
}
.blp-svc-point-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--blp-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  font-family: var(--blp-font-en);
}
.blp-svc-point-icon--green {
  background: var(--blp-green);
}
.blp-svc-point-body strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blp-text);
  margin-bottom: 3px;
}
.blp-svc-point-body p {
  font-size: 0.82rem;
  color: var(--blp-text-sub);
  line-height: 1.6;
  margin: 0;
}

/* ビジュアルボックス */
.blp-svc-visual {
  background: #e8f3ff;
  padding: 36px 32px;
}
.blp-svc-section--power .blp-svc-visual {
  background: #e8f5e9;
}
.blp-svc-visual-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--blp-blue);
  margin-bottom: 20px;
  text-align: center;
}
.blp-svc-section--power .blp-svc-visual-title {
  color: var(--blp-green-dark);
}
.blp-svc-effect-table {
  background: #fff;
  border-radius: var(--blp-rad-md);
  overflow: hidden;
  box-shadow: var(--blp-shadow-sm);
  margin-bottom: 20px;
}
.blp-svc-effect-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--blp-border);
}
.blp-svc-effect-row:last-child {
  border-bottom: none;
}
.blp-svc-effect-head {
  flex: 0 0 100px;
  padding: 14px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--blp-bg-light);
  border-right: 1px solid var(--blp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.blp-svc-effect-cell {
  flex: 1;
  padding: 14px 12px;
  font-size: 0.85rem;
  line-height: 1.6;
}
.blp-svc-effect-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 6px;
}
.blp-svc-effect-badge--blue {
  background: #e3f2fd;
  color: #1565c0;
}
.blp-svc-effect-badge--orange {
  background: #fff3e0;
  color: #e65100;
}
.blp-svc-effect-badge--green {
  background: #e8f5e9;
  color: var(--blp-green-dark);
}
.blp-svc-combo-box {
  background: linear-gradient(135deg, var(--blp-blue), var(--blp-blue-light));
  color: #fff;
  border-radius: var(--blp-rad-md);
  padding: 20px;
  text-align: center;
}
.blp-svc-combo-box--green {
  background: linear-gradient(135deg, var(--blp-green-dark), var(--blp-green));
}
.blp-svc-combo-label {
  font-size: 0.82rem;
  opacity: 0.85;
  margin-bottom: 8px;
}
.blp-svc-combo-val {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--blp-font-en);
  line-height: 1;
  display: block;
}
.blp-svc-combo-em {
  font-size: 1.35em;
  font-weight: 900;
  color: var(--blp-yellow);
}
.blp-svc-combo-sub {
  font-size: 0.72rem;
  margin-top: 8px;
  opacity: 0.8;
}

/* ============================================================
   固定ページ（page.php 用）
   ============================================================ */
.blp-page-hero {
  background: linear-gradient(135deg, #091a3d 0%, var(--blp-blue) 100%);
  padding: 52px 0 44px;
  text-align: center;
}
.blp-page-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
}
.blp-page-content {
  padding: 60px 0 88px;
  background: #fff;
}
.blp-entry-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.9;
}
.blp-entry-body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  padding: 10px 14px;
  background: var(--blp-bg-light);
  border-left: 4px solid var(--blp-blue);
  margin: 40px 0 12px;
}
.blp-entry-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 28px 0 10px;
}
.blp-entry-body p {
  margin-bottom: 1em;
}
.blp-entry-body a {
  color: var(--blp-blue);
  text-decoration: underline;
}

/* ============================================================
   レスポンシブ（〜768px）
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --blp-section-py: 60px;
  }

  /* ヘッダー */
  .blp-header-nav {
    display: none;
  }
  .blp-header-tel {
    display: none;
  }
  .blp-header-cta {
    display: none;
  }
  .blp-hamburger {
    display: flex;
  }

  /* ヒーロー — SP は縦積み */
  .blp-hero {
    padding-top: 40px;
  }
  .blp-hero-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .blp-hero-content {
    padding-bottom: 0;
  }
  .blp-hero-visual {
    padding-bottom: 0;
  }
  .blp-hero-ach-wrap {
    margin-bottom: 8px;
  }
  .blp-hero-title {
    text-align: center;
  }
  .blp-hero-pretag {
    justify-content: center;
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }
  .blp-hero-subtitle {
    text-align: center;
  }
  .blp-hero-subtitle-em {
    font-size: 1.6em;
  }
  .blp-hero-cta {
    justify-content: center;
  }
  .blp-hero-note {
    text-align: center;
  }
  .blp-cyl-figure {
    max-width: 320px;
    margin: 0 auto;
  }

  /* Trust */
  .blp-trust-inner {
    gap: 14px;
    justify-content: flex-start;
  }

  /* Solution wave — SP は高さを縮小して波を均一に表示 */
  .blp-solution-wave svg {
    height: 72px;
  }
  .blp-solution-subtitle-em {
    font-size: 1.2em;
  }

  /* What — コンボボックスのフォントサイズをSPで縮小 */
  .blp-what-combo-box {
    padding: 16px;
  }
  .blp-what-combo-label {
    font-size: 0.74rem;
    margin-bottom: 6px;
  }
  .blp-what-combo-num {
    font-size: 1.45rem;
    line-height: 1.25;
  }
  .blp-what-combo-sub {
    font-size: 0.7rem;
    margin-top: 8px;
  }

  /* Problem */
  .blp-problem-head {
    padding: 48px 16px 0;
  }
  .blp-problem-head-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
  .blp-problem-head-em {
    font-size: 1.45em;
  }
  .blp-problem-head-icon {
    width: 40px;
    top: -26px;
    right: -30px;
  }
  .blp-problem-head-badge {
    font-size: 0.84rem;
    padding: 8px 22px;
  }
  .blp-problem-head-arrow {
    border-left-width: 44px;
    border-right-width: 44px;
    border-top-width: 34px;
  }
  .blp-problem-bubble-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .blp-problem-bubbles-col {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .blp-problem-bubbles-col--left,
  .blp-problem-bubbles-col--right {
    align-items: stretch;
  }
  .blp-problem-character {
    width: 220px;
    margin: 0 auto;
  }
  .blp-problem-bubble {
    max-width: calc(50% - 6px);
    min-width: 140px;
  }
  .blp-problem-bubble::before,
  .blp-problem-bubble::after {
    display: none;
  }

  /* What */
  .blp-what-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .blp-what-comparison {
    grid-template-columns: 1fr;
  }
  .blp-what-arrow {
    display: none;
  }

  /* 中間CTA */
  .blp-mid-cta {
    background-attachment: scroll;
    padding: 36px 0;
  }
  .blp-mid-cta-card {
    grid-template-columns: 1fr 110px;
  }
  .blp-mid-cta-content {
    display: contents;
  }
  .blp-mid-cta-tags {
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 16px 16px 6px;
    justify-content: flex-start;
    gap: 4px;
    margin-bottom: 0;
  }
  .blp-mid-cta-tag {
    font-size: 0.6rem;
    padding: 2px 8px;
  }
  .blp-mid-cta-title {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: clamp(0.88rem, 3.5vw, 1.05rem);
    white-space: normal;
    text-align: left;
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 0;
    padding: 0 16px 6px;
  }
  .blp-mid-cta-desc {
    grid-column: 1;
    grid-row: 3;
    font-size: 0.75rem;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 0;
    padding: 0 6px 14px 16px;
  }
  .blp-mid-cta-visual {
    grid-column: 2;
    grid-row: 3;
    align-self: stretch;
    overflow: hidden;
    min-height: 110px;
  }
  .blp-mid-cta-btns {
    grid-column: 1 / -1;
    grid-row: 4;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px 16px;
  }
  .blp-mid-cta-btn {
    min-width: 0;
    max-width: none;
    width: 100%;
    white-space: normal;
    padding: 10px 16px;
  }
  .blp-mid-cta-btn-main {
    font-size: 0.82rem;
  }
  .blp-mid-cta-btn-sub {
    font-size: 0.6rem;
    padding: 1px 8px;
  }

  /* Benefits */
  .blp-benefits-head {
    padding: 48px 16px 0;
  }
  .blp-benefits-head-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
  .blp-benefits-head-em {
    font-size: 1.45em;
  }
  .blp-benefits-head-badge {
    font-size: 0.8rem;
    padding: 8px 20px;
  }
  .blp-benefits-head-arrow {
    border-left-width: 44px;
    border-right-width: 44px;
    border-top-width: 34px;
  }
  .blp-benefits-list-item {
    gap: 14px;
    padding: 18px 16px;
  }
  .blp-benefits-list-icon {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }
  .blp-benefits-list-title {
    font-size: 1.3rem;
  }

  /* Cases */
  .blp-cases-grid {
    grid-template-columns: 1fr;
  }
  .blp-cases-cta .blp-btn {
    width: 100%;
    white-space: normal;
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  /* Steps head */
  .blp-steps-head {
    padding: 48px 16px 0;
  }
  .blp-steps-head-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
  .blp-steps-head-badge {
    font-size: 0.8rem;
    padding: 8px 20px;
  }
  .blp-steps-head-arrow {
    border-left-width: 44px;
    border-right-width: 44px;
    border-top-width: 34px;
  }

  /* Steps */
  .blp-steps-list::before {
    left: 28px;
  }
  .blp-step {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }
  .blp-step-num {
    width: 58px;
    height: 58px;
  }
  .blp-step-n {
    font-size: 1.4rem;
  }

  /* Voices */
  .blp-voices-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ head */
  .blp-faq-head {
    padding: 48px 16px 0;
  }
  .blp-faq-head-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
  .blp-faq-head-badge {
    font-size: 0.8rem;
    padding: 8px 20px;
  }
  .blp-faq-head-arrow {
    border-left-width: 44px;
    border-right-width: 44px;
    border-top-width: 34px;
  }

  /* FAQ */
  .blp-faq-a {
    padding-left: 22px;
  }

  /* CTA */
  .blp-cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .blp-cta-form-card {
    padding: 24px 20px;
  }

  /* Footer */
  .blp-footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .blp-footer-nav {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 20px;
  }

  /* Scroll top */
  .blp-scroll-top {
    bottom: 16px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  /* ヒーロー内サービスリスト */
  .blp-hero-services {
    gap: 6px;
    margin-bottom: 20px;
  }
  .blp-hero-service-item {
    font-size: 0.82rem;
  }
  .blp-hero-service-label {
    min-width: 88px;
    font-size: 0.68rem;
    padding: 3px 8px;
  }

  /* サービスセクション（エアコン制御・新電力） */
  .blp-svc-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .blp-svc-visual {
    padding: 24px 20px;
  }
  .blp-svc-effect-head {
    flex: 0 0 80px;
    font-size: 0.78rem;
  }
  .blp-svc-effect-cell {
    font-size: 0.82rem;
  }
  .blp-svc-combo-val {
    font-size: 1.45rem;
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  .blp-trust-inner {
    flex-direction: column;
    gap: 10px;
  }
  .blp-btn--lg {
    padding: 18px 32px;
    font-size: 1rem;
  }
  .blp-hero-cta {
    align-items: stretch;
  }
  .blp-hero-cta-item {
    align-items: center;
  }
  .blp-cyl-figure {
    max-width: 270px;
  }
}
