/*
Theme Name: iineai-lp
Theme URI:
Author: JAM Corporation
Description: いいねAI LP カスタムテーマ
Version: 1.0
*/

/* =====================
   CSS変数
===================== */
:root {
  --red: #dc2626;
  --red-dark: #b91c1c;
  --orange: #f07020;
  --yellow: #f5c518;
  --dark: #111827;
  --gray: #555555;
  --light-gray: #f5f5f5;
  --border: #e0e0e0;
  --white: #ffffff;
  --font: 'Noto Sans JP', sans-serif;
}

/* =====================
   リセット・基本
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
#page, #content, #primary, #main, .site, .site-content {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
}
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =====================
   共通レイアウト
===================== */
.container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
.section { padding: 80px 0; }
.section--gray { background: var(--light-gray); }
.section--dark { background: var(--dark); color: var(--white); }
.section--red { background: var(--red); color: var(--white); }

/* =====================
   共通見出し
===================== */
.section-label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 16px;
}
.section-title span { color: var(--red); }
.section-title--white { color: var(--white); }
.section-title--white span { color: var(--yellow); }
.section-sub { font-size: 15px; color: var(--gray); line-height: 1.8; }
.section-sub--white { color: rgba(255,255,255,0.8); }
.text-center { text-align: center; }

/* =====================
   ボタン
===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
  line-height: 1.3;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn--red { background: var(--red); color: var(--white); }
.btn--orange { background: var(--orange); color: var(--white); }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn--lg { padding: 20px 48px; font-size: 18px; }
.btn--full { width: 100%; }

/* =====================
   ヘッダー
===================== */
.site-header {
  position: fixed; top: 0; left: 0;
  width: 100%; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  height: 64px;
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px; padding: 0 24px;
  max-width: 1200px; margin: 0 auto;
}
.header-logo { display: flex; align-items: center; gap: 10px; }
.header-logo img { height: 36px; width: auto; }
.header-logo-text { font-size: 20px; font-weight: 900; color: var(--red); }
.header-nav { display: flex; align-items: center; gap: 12px; }
.header-nav .btn { padding: 10px 20px; font-size: 13px; }

/* =====================
   ヒーロー（ツートン・斜め）
===================== */
.hero {
  margin-top: 64px;
  position: relative;
  overflow: visible;
  background: var(--white);
  min-height: 500px;
}
.hero-bg-wrap {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-orange-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: #ee7121;
  clip-path: polygon(72% 0, 100% 0, 100% 100%, 38% 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 80px;
  display: grid;
  grid-template-columns: 1fr 500px 1fr;
  align-items: center;
  min-height: 580px;
}
.hero-left { padding-right: 16px; }
.hero-intro-num { font-size: 28px; font-weight: 900; color: var(--red); margin-bottom: 12px; }
/* PC時は左に表示、モバイル時は右に */
@media (min-width: 901px) {
  .hero-right .hero-intro-num { display: none; }
  .hero-left .hero-intro-num { display: block; }
}
@media (max-width: 900px) {
  .hero-left .hero-intro-num { display: none; }
  .hero-right .hero-intro-num { display: block; color: var(--red); font-size: 18px; margin-bottom: 8px; }
}
.hero-logo-wrap { margin-bottom: 20px; }
.hero-logo-wrap img { max-width: 340px; height: auto; }
.hero-desc { font-size: 17px; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.hero-patent {
  display: block;
  background: #87BD43;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 8px 28px;
  border-radius: 4px;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}
.hero-main-btn {
  display: block;
  background: var(--red); color: var(--white);
  font-size: 22px; font-weight: 900; text-align: center;
  padding: 22px 28px; border-radius: 100px;
  box-shadow: 0 4px 16px rgba(220,38,38,0.35);
  transition: opacity 0.2s, transform 0.15s;
}
.hero-main-btn:hover { opacity: 0.88; transform: translateY(-2px); }

.hero-phone {
  display: flex; align-items: flex-end; justify-content: center;
  height: 100%;
  margin-bottom: -80px;
}
.hero-phone img {
  width: 100%; max-width: 560px; height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
}

.hero-right {
  padding-left: 40px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-contact-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #2bae66; color: var(--white);
  font-size: 16px; font-weight: 700;
  padding: 12px 24px; border-radius: 4px;
  margin-bottom: 28px; align-self: flex-end;
  transition: opacity 0.2s;
}
.hero-contact-btn:hover { opacity: 0.88; }
.hero-price-bubble { margin-bottom: 20px; }
.hero-price-bubble img { max-width: 320px; height: auto; }
.hero-checklist { list-style: none; }
.hero-checklist li {
  font-size: 22px; font-weight: 700; color: var(--white);
  padding: 10px 0; display: flex; align-items: center; gap: 12px;
}
.hero-checklist li::before {
  content: '✔'; color: var(--red); background: var(--white);
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}

/* =====================
   ヒーロー レスポンシブ
===================== */
/* モバイルCTAラップ：PCでは非表示 */
.hero-mobile-cta-wrap { display: none; }

/* PC時：hero-rightのhero-intro-numは非表示 */
@media (min-width: 901px) {
  .hero-right .hero-intro-num { display: none; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; overflow: hidden; padding-bottom: 0; }

  .hero-orange-bg {
    clip-path: polygon(0 45%, 100% 28%, 100% 100%, 0 100%);
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    padding: 16px 16px 0;
    min-height: auto;
    gap: 0;
    align-items: end;
  }

  /* 左：ロゴのみ */
  .hero-left {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
  }
  .hero-logo-wrap { margin-bottom: 0; }
  .hero-logo-wrap img { max-width: 150px; }
  .hero-desc { display: none; }
  .hero-patent { display: none !important; }
  .hero-main-btn { display: none; }

  /* スマホ：左列2行目 */
  .hero-phone {
    grid-column: 1;
    grid-row: 2;
    order: unset;
    padding: 0;
    margin-bottom: -30px;
    align-items: flex-end;
    justify-content: flex-start;
  }
  .hero-phone img { max-width: 190px; }

  /* 右：47社・吹き出し・チェックリスト（1〜2行またがり） */
  .hero-right {
    grid-column: 2;
    grid-row: 1 / 3;
    padding-left: 8px;
    padding-top: 8px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .hero-contact-btn { display: none; }
  .hero-right .hero-intro-num {
    display: block !important;
    font-size: 16px !important;
    color: var(--red) !important;
    margin-bottom: 6px;
  }
  .hero-price-bubble { margin-bottom: 8px; }
  .hero-price-bubble img { max-width: 155px; }
  .hero-checklist li { font-size: 13px; padding: 4px 0; color: var(--white); }
  .hero-checklist li::before { width: 18px; height: 18px; font-size: 9px; }

  /* モバイルCTA */
  .hero-mobile-cta-wrap {
    display: block;
    background: #ee7121;
    padding: 20px 20px 32px;
    position: relative;
    z-index: 3;
  }
  .hero-cta-mobile {
    display: block;
    background: var(--red);
    color: var(--white);
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    padding: 18px;
    width: 100%;
    border-radius: 100px;
  }
}

/* =====================
   コンセプト動画
===================== */
.video-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.video-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.video-note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 12px;
}
.video-title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.45;
  margin: 16px 0 36px;
  color: var(--dark);
}
.video-title span { color: var(--red); }
.video-achievement {
  display: flex;
  align-items: center;
  gap: 16px;
}
.video-stars {
  font-size: 32px;
  color: #ee7121;
  letter-spacing: 2px;
}
.video-achievement-main {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
}
.video-achievement-main strong { color: var(--red); }
.video-achievement-sub {
  font-size: 14px;
  color: var(--gray);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .video-section { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
}

/* =====================
   ロゴ帯
===================== */
.logos { background: #fafafa; padding: 32px 0; border-bottom: 1px solid var(--border); }
.logos-label { text-align: center; font-size: 20px; color: var(--dark); font-weight: 700; margin-bottom: 32px; }
.logos-list { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; opacity: 0.55; }
.logos-list span { font-size: 13px; font-weight: 700; color: var(--dark); }

/* =====================
   AI自動化
===================== */
.automate-inner {
  display: grid;
  grid-template-columns: 1fr 50px 1.4fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
}
.automate-sub { font-size: 17px; font-weight: 700; color: #ee7121; margin-bottom: 8px; }
.automate-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.automate-title strong { color: var(--dark); }
.automate-logo-wrap { margin-bottom: 20px; }
.automate-logo-wrap img { max-width: 240px; }
.automate-lead { font-size: 22px; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.automate-desc { font-size: 15px; color: var(--gray); }
.automate-arrow {
  font-size: 56px;
  color: #ee7121;
  font-weight: 900;
  text-align: center;
  line-height: 1;
  flex-shrink: 0;
}

/* チャート */
.automate-chart {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  min-width: 0;
}
.chart-header {
  background: #111827;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 16px;
  text-align: center;
}
.chart-header span { font-size: 12px; font-weight: 400; opacity: 0.75; }
.chart-row {
  display: grid;
  grid-template-columns: 52px 1fr 96px;
  align-items: center;
  gap: 10px;
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
}
.chart-row:last-child { border-bottom: none; }
.chart-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: #4a5568;
  border-radius: 6px;
  padding: 8px 4px;
  text-align: center;
  line-height: 1.4;
}
.chart-bars { display: flex; flex-direction: column; gap: 8px; min-width: 0; overflow: hidden; }
.chart-bar-wrap { display: flex; align-items: center; gap: 6px; min-width: 0; overflow: hidden; }
.chart-bar-text { font-size: 11px; color: var(--gray); width: 28px; flex-shrink: 0; }
.chart-bar {
  height: 14px;
  border-radius: 100px;
  flex-shrink: 0;
  max-width: 100%;
}
.chart-bar--before { background: #cbd5e0; }
.chart-bar--after { background: #fed7aa; }
.chart-bar-hours { font-size: 13px; color: var(--dark); font-weight: 700; white-space: nowrap; }
.chart-reduction {
  font-size: 13px;
  font-weight: 900;
  color: #ee7121;
  background: #fff7ed;
  border: 1px solid #ee7121;
  border-radius: 4px;
  padding: 2px 6px;
  white-space: nowrap;
}
.chart-reduction small { font-size: 10px; }
.chart-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ee7121;
  border-radius: 10px;
  padding: 14px 8px;
  color: var(--white);
  text-align: center;
}
.chart-result-label { font-size: 11px; font-weight: 700; margin-bottom: 4px; }
.chart-result-num { font-size: 32px; font-weight: 900; line-height: 1; }
.chart-result-num small { font-size: 0.5em; }

@media (max-width: 900px) {
  .automate-inner { grid-template-columns: 1fr; }
  .automate-arrow { transform: rotate(90deg); }
}

/* =====================
   技術紹介
===================== */
.techstack-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.techstack-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.techstack-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.techstack-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
}
.techstack-x {
  font-size: 20px;
  color: var(--gray);
  font-weight: 300;
}
.techstack-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 40px;
  max-width: 860px;
  margin: 0 auto;
}
.techstack-box-main {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.techstack-box-main span { color: var(--red); }
.techstack-box-sub {
  font-size: 14px;
  color: var(--gray);
}

/* =====================
   導入成果
===================== */
.success-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.success-phones {
  position: relative;
  height: 480px;
}
.success-phone {
  position: absolute;
  width: 240px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.success-phone--back {
  left: 0;
  top: 40px;
  opacity: 0.85;
}
.success-phone--front {
  left: 100px;
  top: 0;
  z-index: 2;
}
.success-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  color: var(--dark);
  margin: 12px 0 28px;
}
.success-list {
  list-style: none;
  margin-bottom: 32px;
}
.success-list li {
  font-size: 16px;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}
.success-list li::before {
  content: '✓';
  color: var(--white);
  background: #ee7121;
  width: 22px; height: 22px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}
.success-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ee7121;
  color: var(--white);
  border-radius: 12px;
  padding: 20px 32px;
  text-align: center;
  transition: opacity 0.2s;
}
.success-cta:hover { opacity: 0.88; }
.success-cta span { font-size: 18px; font-weight: 900; }
.success-cta small { font-size: 13px; margin-top: 4px; opacity: 0.85; }

@media (max-width: 900px) {
  .success-inner { grid-template-columns: 1fr; }
  .success-phones { height: 300px; margin-bottom: 24px; }
  .success-phone { width: 160px; }
  .success-phone--back { left: 20px; top: 30px; }
  .success-phone--front { left: 90px; top: 0; }
}

/* =====================
   分身セクション
===================== */
.bunshin-section { overflow: hidden; }
.bunshin-banner {
  background: #ee7121;
  color: var(--white);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 700;
  text-align: center;
  padding: 20px 24px;
}
.bunshin-body {
  background: var(--red);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.bunshin-body::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: rgba(255,255,255,0.06);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.bunshin-title {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.bunshin-sub {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 32px;
  position: relative;
}
.bunshin-arrow {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 32px;
  transform: rotate(90deg);
  display: inline-block;
  position: relative;
}
.bunshin-solution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 900;
  color: var(--white);
  flex-wrap: wrap;
  position: relative;
}
.bunshin-logo {
  height: 48px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  background: var(--white);
  border-radius: 8px;
  padding: 4px 10px;
}

/* =====================
   よくある課題＋CTA
===================== */
.issues-title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 900;
  color: var(--dark);
  border-bottom: 3px solid var(--red);
  padding-bottom: 10px;
  margin-bottom: 32px;
  display: inline-block;
}
.issues-list { margin-bottom: 48px; }
.issue-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-left: 3px solid var(--border);
  padding: 18px 24px;
  border-radius: 4px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.issue-text { font-size: 15px; color: var(--dark); flex: 1; min-width: 200px; }
.issue-arrow { font-size: 20px; color: var(--red); font-weight: 900; flex-shrink: 0; }
.issue-solution { font-size: 15px; font-weight: 700; color: var(--red); }
.issue-solution small { font-size: 12px; font-weight: 400; color: var(--gray); }

.issues-cta {
  background: var(--red);
  border-radius: 20px;
  padding: 52px 40px;
  text-align: center;
  color: var(--white);
}
.issues-cta-sub { font-size: 13px; opacity: 0.85; margin-bottom: 8px; }
.issues-cta-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
}
.issues-cta-lead {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 20px;
}
.issues-cta-badge {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  font-size: 16px;
  font-weight: 900;
  padding: 10px 32px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.issues-cta-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.issues-stat {
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 28px 48px;
  min-width: 240px;
  text-align: center;
  flex: 1;
  max-width: 360px;
}
.issues-stat-label { font-size: 13px; opacity: 0.85; margin-bottom: 4px; }
.issues-stat-arrow { font-size: 20px; margin: 4px 0; color: var(--yellow); }
.issues-stat-num {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1.1;
  white-space: nowrap;
}
.issues-stat-num--lg { font-size: clamp(28px, 4vw, 44px); }
.issues-stat-num span { font-size: 0.6em; }
.issues-stat-note { font-size: 13px; opacity: 0.85; margin-top: 4px; }
.issues-stat-num .cs-count { font-size: inherit; font-weight: inherit; }
.issues-stat-num--lg .cs-count { font-size: inherit; font-weight: inherit; }

/* =====================
   数値実績（4カラム）
===================== */
.achieves-title {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900;
  color: var(--dark);
  padding-bottom: 12px;
  border-bottom: 3px solid #ee7121;
  margin-bottom: 48px;
  display: inline-block;
}
.achieves-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.achieve-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.achieve-icon {
  width: 52px; height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.achieve-label {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 12px;
}
.achieve-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: #ee7121;
  line-height: 1;
  margin-bottom: 16px;
  white-space: nowrap;
}
.achieve-num span { font-size: 0.55em; }
.achieve-num .cs-count { font-size: 1em; }
.achieve-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  text-align: left;
}
@media (max-width: 900px) {
  .achieves-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .achieves-grid { grid-template-columns: 1fr; }
}

/* =====================
   導入効果
===================== */
.casestudy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.casestudy-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.casestudy-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.casestudy-icon {
  width: 44px; height: 44px;
  background: #ee7121;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.casestudy-icon svg { color: var(--white); stroke: var(--white); }
.casestudy-card-title { font-size: 17px; font-weight: 700; color: var(--dark); }
.casestudy-compare {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fdf6f0;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 20px;
}
.cs-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 4px; }
.cs-label--after { color: #ee7121; }
.cs-num--before { font-size: 24px; font-weight: 700; color: var(--gray); }
.cs-num--after { font-size: 36px; font-weight: 900; color: #ee7121; line-height: 1; }
.cs-num--after span { font-size: 0.55em; }
.cs-num--after .cs-count { font-size: 1em; }
.cs-num--after .cs-prefix { font-size: 0.7em; }
.cs-num--after .cs-unit { font-size: 0.55em; }
.cs-arrow { font-size: 24px; color: var(--gray); flex-shrink: 0; }
.casestudy-desc {
  font-size: 14px; color: var(--gray); line-height: 1.7;
  border-left: 3px solid #ee7121;
  padding-left: 12px;
}

@media (max-width: 700px) {
  .casestudy-grid { grid-template-columns: 1fr; }
  .casestudy-card { padding: 24px 20px; }
  .casestudy-compare {
    gap: 10px;
    padding: 16px;
    flex-wrap: wrap;
  }
  .cs-num--before { font-size: 20px; }
  .cs-num--after { font-size: 28px; }
  .cs-num--after span { font-size: 0.5em; }
  .cs-arrow { font-size: 18px; }
}

/* =====================
   公式認定
===================== */
.certification {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}
.certification-image img {
  width: 220px;
  height: auto;
}
.certification-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.certification-platforms {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 16px;
}
.certification-main {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.4;
}
.certification-main span { color: #1a56db; }

@media (max-width: 700px) {
  .certification { flex-direction: column; gap: 32px; text-align: center; }
  .certification-image img { width: 160px; }
}

/* =====================
   実績数字
===================== */
.stats { background: var(--red); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.25); }
.stats-item { background: var(--red); text-align: center; padding: 36px 16px; }
.stats-num { font-size: clamp(36px, 5vw, 56px); font-weight: 900; line-height: 1; color: var(--yellow); }
.stats-num sup, .stats-num sub { font-size: 0.4em; color: rgba(255,255,255,0.9); font-weight: 700; }
.stats-label { font-size: 13px; color: rgba(255,255,255,0.9); margin-top: 8px; }

/* =====================
   課題
===================== */
.problems { background: var(--dark); padding: 80px 0; }
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.problem-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 28px 22px;
}
.problem-icon { font-size: 32px; margin-bottom: 14px; }
.problem-text { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; }
.problem-text strong { color: var(--yellow); }
.problem-arrow { text-align: center; padding-top: 36px; font-size: 36px; color: var(--red); font-weight: 900; }
.problem-solution { text-align: center; padding-top: 16px; }
.problem-solution p { font-size: clamp(18px, 2.8vw, 26px); font-weight: 900; color: var(--white); }
.problem-solution p span { color: var(--red); }

/* =====================
   機能
===================== */
.features { padding: 80px 0; background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.feature-card {
  border: 1px solid var(--border); border-radius: 12px; padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: 0 8px 32px rgba(232,50,60,0.1); transform: translateY(-4px); }
.feature-num { font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 0.15em; margin-bottom: 12px; }
.feature-icon { font-size: 40px; margin-bottom: 16px; }
.feature-title { font-size: 17px; font-weight: 900; margin-bottom: 10px; line-height: 1.4; }
.feature-title span { color: var(--red); }
.feature-text { font-size: 14px; color: var(--gray); line-height: 1.8; }

/* =====================
   機能紹介（新）
===================== */
.features2-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--dark);
  padding-left: 16px;
  border-left: 4px solid var(--red);
  margin-bottom: 40px;
}
.features2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.features2-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px 24px 60px;
  overflow: hidden;
}
.features2-num {
  position: absolute;
  left: 12px;
  top: 16px;
  font-size: 36px;
  font-weight: 900;
  color: rgba(220,38,38,0.1);
  line-height: 1;
}
.features2-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  background: var(--light-gray);
  border-radius: 3px;
  padding: 2px 8px;
  margin-bottom: 8px;
}
.features2-badge--all { background: #dcfce7; color: #16a34a; }
.features2-card-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
  flex-wrap: wrap;
}
.features2-card-title svg { flex-shrink: 0; }
.features2-card-text { font-size: 14px; color: var(--gray); line-height: 1.7; }
.features2-cta { text-align: center; margin-top: 48px; }
.features2-cta-btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  padding: 18px 48px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(220,38,38,0.3);
  transition: opacity 0.2s;
  margin-bottom: 12px;
}
.features2-cta-btn:hover { opacity: 0.88; }
.features2-cta-note { font-size: 13px; color: var(--gray); }
@media (max-width: 700px) {
  .features2-grid { grid-template-columns: 1fr; }
  .features2-card { padding: 24px 20px 20px 52px; }
}

/* =====================
   シミュレーション
===================== */
.simulation { background: #111827; padding: 80px 0; }
.simulation-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 48px; margin-top: 48px;
}
.simulation-compare { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 24px; align-items: center; }
.sim-side { text-align: center; }
.sim-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 14px; }
.sim-label.before { color: var(--yellow); }
.sim-label.after { color: #88ddbb; }
.sim-hours { font-size: clamp(48px, 7vw, 80px); font-weight: 900; line-height: 1; display: flex; align-items: flex-end; justify-content: center; }
.sim-hours.before { color: var(--yellow); }
.sim-hours.after { color: var(--yellow); }
.sim-hours sup { font-size: 0.3em; font-weight: 700; line-height: 2.5; }
.sim-hours .cs-count { font-size: inherit; font-weight: inherit; }
.sim-arrow { text-align: center; font-size: 36px; color: var(--red); }
.sim-saving {
  text-align: center; margin-top: 32px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.sim-saving p { font-size: clamp(16px, 2.2vw, 22px); font-weight: 900; color: var(--yellow); }

/* =====================
   他社比較表（新）
===================== */
.comparison2-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--dark);
  text-align: center;
  margin-bottom: 12px;
}
.comparison2-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 12px auto 48px;
}
.comparison2-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.comparison2-table thead tr {
  background: #1a2030;
}
.c2-th-label, .c2-th, .c2-th-iineai {
  padding: 20px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}
.c2-th-label { text-align: left; }
.c2-th-iineai {
  background: var(--red);
  font-size: 17px;
}
.comparison2-table tbody tr {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.comparison2-table tbody tr:last-child { border-bottom: none; }
.comparison2-table tbody td {
  padding: 22px 16px;
  text-align: center;
  font-size: 15px;
}
.c2-row-label { text-align: left; font-weight: 700; color: var(--dark); font-size: 15px; }
.c2-iineai { background: rgba(220,38,38,0.04); }
.c2-price { color: var(--red); font-weight: 900; font-size: 16px; }
.c2-maru-red { color: var(--red); font-size: 24px; font-weight: 900; }
.c2-maru-orange { color: #ee7121; font-size: 24px; font-weight: 900; }
.c2-maru-blue { color: #3b82f6; font-size: 22px; }
.c2-sankaku { color: #3b82f6; font-size: 22px; }
.c2-batsu { color: #3b82f6; font-size: 22px; font-weight: 900; }

@media (max-width: 700px) {
  .comparison2-table { font-size: 12px; }
  .c2-th-label, .c2-th, .c2-th-iineai, .comparison2-table tbody td { padding: 14px 8px; font-size: 12px; }
  .c2-maru-red, .c2-maru-orange, .c2-maru-blue, .c2-sankaku, .c2-batsu { font-size: 18px; }
}

/* =====================
   他社比較表（旧）非表示
===================== */
.comparison { padding: 80px 0; background: var(--light-gray); }
.compare-table {
  width: 100%; border-collapse: collapse; margin-top: 48px;
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.compare-table th, .compare-table td { padding: 16px 18px; text-align: center; font-size: 14px; border-bottom: 1px solid var(--border); }
.compare-table th { font-weight: 900; font-size: 14px; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table td:first-child { font-weight: 700; font-size: 13px; }
.col-iineai { background: rgba(232,50,60,0.05); }
.col-iineai th { color: var(--red); }
.check { color: var(--red); font-size: 20px; font-weight: 900; }
.cross { color: #ccc; font-size: 20px; }

/* =====================
   料金プラン
===================== */
.pricing { padding: 80px 0; background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; align-items: start; }
.pricing-card { border: 2px solid var(--border); border-radius: 16px; padding: 36px 24px; position: relative; }
.pricing-card--featured { border-color: var(--red); box-shadow: 0 8px 40px rgba(232,50,60,0.12); }
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 900; padding: 4px 16px; border-radius: 100px; white-space: nowrap;
}
.pricing-name { font-size: 13px; font-weight: 700; color: var(--gray); margin-bottom: 8px; }
.pricing-price { font-size: clamp(30px, 4vw, 42px); font-weight: 900; color: var(--dark); line-height: 1; margin-bottom: 4px; }
.pricing-price sup { font-size: 0.45em; }
.pricing-price sub { font-size: 0.32em; color: var(--gray); }
.pricing-price--featured { color: var(--red); }
.pricing-note { font-size: 12px; color: var(--gray); margin-bottom: 20px; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 18px 0; }
.pricing-list li {
  font-size: 13px; padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
}
.pricing-list li::before { content: '✓'; color: var(--red); font-weight: 900; flex-shrink: 0; }
.pricing-list li.na::before { content: '−'; color: #ccc; }
.pricing-cta { margin-top: 24px; }

.pricing-billing-label { font-size: 12px; color: var(--gray); margin-bottom: 4px; }
.pricing-feature-label { font-size: 13px; color: var(--gray); margin: 16px 0 4px; text-align: center; }
.pricing-feature-num { font-size: 22px; font-weight: 900; color: var(--dark); text-align: center; margin-bottom: 16px; }
.pricing-apply-btn {
  display: block; width: 100%; text-align: center;
  background: #ee7121; color: var(--white);
  font-size: 15px; font-weight: 700;
  padding: 14px 20px; border-radius: 6px;
  transition: opacity 0.2s;
}
.pricing-apply-btn:hover { opacity: 0.88; }
.pricing-card--featured .pricing-apply-btn { background: #ee7121; }

.yt-channel-banner {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
  border-radius: 100px;
  padding: 16px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  min-width: 480px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.yt-channel-banner:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 36px rgba(0,0,0,0.14);
}
.yt-channel-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.yt-channel-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
  white-space: nowrap;
}
.yt-channel-sub {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.yt-channel-right {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  border-left: 1px solid var(--border);
  padding-left: 24px;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .yt-channel-banner {
    min-width: 0;
    width: 100%;
    border-radius: 16px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
  }
  .yt-channel-right {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 14px;
    width: 100%;
    justify-content: center;
  }
  .yt-channel-name { font-size: 18px; }
}

/* =====================
   公式紹介動画
===================== */
.official-video-wrap {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.official-video-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

/* =====================
   導入者の声
===================== */
.voice-main-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: var(--dark);
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-bottom: none;
  padding-bottom: 0;
}
.voice-main-title::after { display: none; }
.voice-deco { color: var(--red); font-weight: 400; }

.voice-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.voice-photo-col { text-align: center; }
.voice-photo-wrap { position: relative; }
.voice-photo-wrap img {
  width: 100%;
  max-width: 280px;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  display: block;
  margin: 0 auto 16px;
}
.voice-case-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}
.voice-name { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.voice-meta { font-size: 13px; color: var(--gray); }
.voice-paper { position: relative; }
.voice-title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.5;
  border-left: 4px solid var(--red);
  padding-left: 16px;
  margin-bottom: 24px;
}
.voice-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.voice-tag--before { background: #fef2f2; color: var(--red); border: 1px solid #fecaca; }
.voice-tag--after { background: #fef2f2; color: var(--red); border: 1px solid #fecaca; }
.voice-text { font-size: 16px; color: var(--dark); line-height: 1.85; }
.voice-text--red { color: var(--red); font-weight: 700; font-size: 17px; }
.voice-divider { width: 40px; height: 3px; background: var(--red); margin: 20px 0; }
.voice-en { text-align: right; font-size: 14px; color: #bbb; font-style: italic; margin-top: 24px; }

@media (max-width: 900px) {
  .voice-card { grid-template-columns: 1fr; padding: 28px 20px; gap: 24px; }
  .voice-main-title { font-size: 20px; }
  .voice-photo-wrap img { height: 280px; }
}

/* =====================
   SNS運用丸投げプラン
===================== */
.marunage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.marunage-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.marunage-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 20px;
}
.marunage-title span { color: var(--red); }
.marunage-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 28px;
}
.marunage-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.marunage-feature {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.mf-icon { color: var(--red); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.mf-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.mf-desc { font-size: 12px; color: rgba(255,255,255,0.55); }
.marunage-point {
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.3);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.mp-icon { font-size: 24px; color: var(--red); flex-shrink: 0; }
.mp-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.mp-text { font-size: 15px; font-weight: 700; color: var(--white); }
.mp-text span { color: var(--red); }

/* カード */
.marunage-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.mc-title { font-size: 20px; font-weight: 900; color: var(--dark); text-align: center; margin-bottom: 6px; }
.mc-sub { font-size: 13px; color: var(--gray); text-align: center; margin-bottom: 20px; }
.mc-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 6px;
}
.mc-price span { font-size: clamp(28px, 4vw, 40px); font-weight: 900; color: var(--red); }
.mc-plan-note { font-size: 12px; color: var(--red); text-align: center; margin-bottom: 24px; }
.mc-specs { border-top: 1px solid var(--border); margin-bottom: 20px; }
.mc-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--dark);
}
.mc-spec-row span:last-child { font-weight: 700; }
.mc-note {
  background: #fff8f0;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: #92400e;
  line-height: 1.7;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.mc-note-icon { font-size: 16px; flex-shrink: 0; color: #f59e0b; }
.mc-btn {
  display: block;
  background: var(--dark);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 18px;
  border-radius: 8px;
  transition: opacity 0.2s;
}
.mc-btn:hover { opacity: 0.85; }

@media (max-width: 900px) {
  .marunage-inner { grid-template-columns: 1fr; gap: 36px; }
  .marunage-features { grid-template-columns: 1fr; }
}

/* =====================
   販売代理店
===================== */
.agency-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.agency-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: var(--white);
  padding-left: 16px;
  border-left: 4px solid var(--white);
  margin-bottom: 20px;
}
.agency-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 12px;
}
.agency-benefits {
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 20px;
}
.agency-benefits-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 12px;
}
.agency-benefits ul { list-style: none; }
.agency-benefits li {
  font-size: 14px;
  color: var(--white);
  padding: 6px 0;
  line-height: 1.6;
}

/* シミュレーション */
.agency-sim {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
}
.agency-sim-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.agency-sim-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.agency-sim-label { font-size: 12px; color: var(--gray); margin-bottom: 4px; }
.agency-sim-count { font-size: 15px; font-weight: 700; color: var(--dark); }
.agency-sim-price {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--red);
  white-space: nowrap;
}
.agency-sim-price sub { font-size: 0.45em; color: var(--gray); }
.agency-btn {
  display: block;
  background: var(--dark);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  margin-top: 24px;
  transition: opacity 0.2s;
}
.agency-btn:hover { opacity: 0.85; }

@media (max-width: 900px) {
  .agency-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* =====================
   CTAバナー
===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #c4222b 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.cta-banner-title { font-size: clamp(22px, 3.5vw, 38px); font-weight: 900; color: var(--white); margin-bottom: 16px; position: relative; }
.cta-banner-sub { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 36px; position: relative; }
.cta-banner-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* =====================
   CTAファイナル
===================== */
.cta-final {
  background: linear-gradient(135deg, #ee7121 0%, #f59e0b 100%);
  padding: 80px 0;
}
.cta-final-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.cta-final-logo { height: 48px; width: auto; }
.cta-final-title span {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--white);
}
.cta-final-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-final-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 48px;
  text-align: center;
  min-width: 260px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.cta-final-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 48px rgba(0,0,0,0.2);
}
.cta-final-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.cta-final-icon--green { border: 2px solid #2bae66; }
.cta-final-icon--blue { border: 2px solid #0ea5e9; }
.cta-final-card-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 24px;
}
.cta-final-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  color: var(--white);
  transition: opacity 0.2s;
}
.cta-final-btn:hover { opacity: 0.88; }
.cta-final-btn--green { background: #2bae66; }
.cta-final-btn--blue { background: #0ea5e9; }

@media (max-width: 600px) {
  .cta-final-card { min-width: 100%; padding: 32px 24px; }
  .cta-final-cards { gap: 16px; }
}

/* =====================
   フッター（新）
===================== */
.site-footer-new {
  background: #111827;
  padding: 60px 0 0;
}
.footer-new-logo {
  height: 60px;
  width: auto;
  margin: 0 auto 28px;
  display: block;
}
.footer-new-title {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-new-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 48px;
}
.footer-new-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* =====================
   モバイル固定バー
===================== */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 999; box-shadow: 0 -2px 12px rgba(0,0,0,0.15); }
.mobile-bar-inner { display: grid; grid-template-columns: 1fr 1fr; }
.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 14px 10px; font-size: 13px; font-weight: 700; color: var(--white); }
.mobile-bar a:first-child { background: var(--red); }
.mobile-bar a:last-child { background: var(--dark); }

/* =====================
   レスポンシブ
===================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image { order: -1; }
  .hero-cta { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .problems-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .simulation-compare { grid-template-columns: 1fr; }
  .sim-arrow { transform: rotate(90deg); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 24px; }
  .mobile-bar { display: block; }
  .section { padding: 60px 0; }
  body { padding-bottom: 52px; }
  .header-nav { display: none; }
  .simulation-box { padding: 28px 20px; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 40px; }
  .logos-list { gap: 20px; }
}