/* ==============================================================
   成果報酬LP（page-getlead-lp.php）専用スタイル
   ゲットリード — 成果報酬型テレアポ代行
   メインカラー: #9F151A（赤）
   ============================================================== */

/* ── 変数 ─────────────────────────────────────────────────────── */
#getlead-lp {
  --gl-red:       #C4222A;
  --gl-red-dark:  #9F151A;
  --gl-red-pale:  #FDF2F2;
  --gl-black:     #1A1A1A;
  --gl-dark-bg:   #111111;
  --gl-gray-bg:   #f5f5f5;
  --gl-white:     #ffffff;
  --gl-text:      #333333;
  --gl-text-mid:  #555555;
  --gl-border:    #e0e0e0;
  --gl-inner-w:   1100px;
  --gl-narrow-w:  800px;
  --gl-section-pad: 80px;
  --gl-radius:    12px;
  --gl-shadow:    0 2px 4px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.10);
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: var(--gl-text);
  line-height: 1.7;
}

/* SP専用改行（デスクトップでは非表示） */
.gl-sp-br { display: none; }

/* PC専用改行（スマホでは非表示） */
.gl-pc-br { display: block; }

/* NTCロゴ要素・テーマヘッダーをGL LP上では非表示 */
.gl-lp-page .ntc-fv-logo-wrap,
.gl-lp-page .ntc-scroll-logo-wrap,
.gl-lp-page #header_bar,
.gl-lp-page #header {
  display: none !important;
}

/* テーマがbodyに付加するpadding-topをリセット */
.gl-lp-page {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ── 追従ヘッダー ────────────────────────────────────────────── */
.gl-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gl-white);
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
}

/* WordPress管理バー表示時のオフセット */
.admin-bar .gl-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .gl-header {
    top: 46px;
  }
}

.gl-header__inner {
  max-width: var(--gl-inner-w);
  margin: 0 auto;
  padding: 1rem 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gl-header__brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.gl-header__tagline {
  font-size: 10px;
  color: #777;
  margin: 0;
  letter-spacing: .04em;
}

.gl-header__tagline strong {
  color: var(--gl-red);
  font-weight: 700;
}

.gl-header__logo {
  display: block;
  line-height: 1;
  text-decoration: none;
}

.gl-header__produced {
  font-size: 9px;
  color: #999;
  margin: 0;
  letter-spacing: .03em;
}

.gl-header__cta {
  flex-shrink: 0;
}

/* ── ボタンアニメーション @keyframes ─────────────────────────── */
@keyframes gl-pulse-glow-teal {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(29,163,154,.42);
  }
  50% {
    box-shadow: 0 6px 30px rgba(29,163,154,.70), 0 0 0 5px rgba(29,163,154,.16);
  }
}

@keyframes gl-pulse-glow {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(196,36,44,.42);
  }
  50% {
    box-shadow: 0 6px 30px rgba(196,36,44,.70), 0 0 0 5px rgba(196,36,44,.16);
  }
}

@keyframes gl-shimmer {
  0%      { left: -110%; }
  55%, 100% { left: 130%; }
}

@keyframes gl-border-pulse {
  0%, 100% {
    border-color: rgba(255,255,255,.7);
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
  }
  50% {
    border-color: rgba(255,255,255,1);
    box-shadow: 0 4px 24px rgba(0,0,0,.3), 0 0 0 5px rgba(255,255,255,.12);
  }
}

@keyframes gl-white-pulse {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(0,0,0,.25), 0 2px 8px rgba(0,0,0,.15);
  }
  50% {
    box-shadow: 0 12px 44px rgba(0,0,0,.35), 0 0 0 6px rgba(255,255,255,.22);
  }
}

/* CTA白ボタン用（ティール背景との組み合わせ） */
@keyframes gl-white-pulse-teal {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 2px 8px rgba(29,163,154,.25);
  }
  50% {
    box-shadow: 0 12px 40px rgba(0,0,0,.25), 0 0 0 7px rgba(255,255,255,.20);
  }
}

/* スクロール登場アニメーション */
@keyframes gl-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes gl-fade-scale {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes gl-fade-left {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes gl-fade-right {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* FV 入場アニメーション */
@keyframes gl-hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 共通ボタン ──────────────────────────────────────────────── */
.gl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .25s, border-color .25s;
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1.4;
  letter-spacing: .05em;
  position: relative;
  overflow: hidden;
}

/* シマーエフェクト（共通） */
.gl-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -110%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  animation: gl-shimmer 3s ease infinite;
  pointer-events: none;
}

.gl-btn:hover::after {
  animation: none;
}

/* ヘッダーボタン */
.gl-btn--header {
  background: linear-gradient(135deg, #22BAB0 0%, #1DA39A 60%, #178880 100%);
  color: var(--gl-white);
  font-size: 17px;
  padding: 14px 28px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(29,163,154,.38);
  animation: gl-pulse-glow-teal 2.5s ease-in-out infinite;
}

.gl-btn--header:hover {
  background: linear-gradient(135deg, #1DA39A 0%, #157570 100%);
  color: var(--gl-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(29,163,154,.55);
  animation: none;
}

/* プライマリボタン */
.gl-btn--primary {
  background: linear-gradient(135deg, #E03040 0%, #C4222A 55%, #9F151A 100%);
  color: var(--gl-white);
  font-size: 17px;
  padding: 16px 32px;
  box-shadow: 0 6px 20px rgba(196,36,44,.40);
  animation: gl-pulse-glow 2.5s ease-in-out infinite;
}

.gl-btn--primary:hover {
  background: linear-gradient(135deg, #C4222A 0%, #9F151A 100%);
  color: var(--gl-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(196,36,44,.56);
  animation: none;
}

/* サイズ修飾子 */
.gl-btn--lg {
  font-size: 19px;
  padding: 18px 42px;
  border-radius: 8px;
}

.gl-btn--xl {
  font-size: 21px;
  padding: 22px 56px;
  border-radius: 8px;
}

/* CTAセクション白ボタン */
.gl-cta-section .gl-btn--primary {
  animation: gl-white-pulse-teal 2.5s ease-in-out infinite;
}

.gl-cta-section .gl-btn--primary:hover {
  animation: none;
}

/* シマー色調整：CTAセクション白ボタン（ティール系） */
.gl-cta-section .gl-btn--primary::after {
  background: linear-gradient(90deg, transparent, rgba(29,163,154,.08), transparent);
}

/* ── 共通レイアウト ──────────────────────────────────────────── */
.gl-inner {
  max-width: var(--gl-inner-w);
  margin: 0 auto;
  padding: 0 32px;
}

.gl-inner--narrow {
  max-width: var(--gl-narrow-w);
}

.gl-section {
  padding: var(--gl-section-pad) 0;
}

.gl-section--white { background: var(--gl-white); }
.gl-section--gray  { background: var(--gl-gray-bg); }

.gl-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.gl-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gl-red);
  margin: 0 0 14px;
  border: 1.5px solid var(--gl-red);
  border-radius: 50px;
  padding: 3px 16px;
}

.gl-label--light {
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.45);
}

.gl-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--gl-black);
  margin: 0;
  line-height: 1.4;
}

.gl-title--light {
  color: var(--gl-white);
}

.gl-accent-yellow {
  color: #f5e146;
}

/* ==============================================================
   #01 ファーストビュー
   ============================================================== */
.gl-hero {
  background: var(--gl-black) url('../img/gl-fv-bg.jpg') center center / cover no-repeat;
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
}

/* テキスト可読性を確保するグラデーションオーバーレイ */
.gl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.48) 0%,
    rgba(0,0,0,.32) 45%,
    rgba(0,0,0,.06) 100%
  );
  z-index: 0;
}

.gl-hero__inner {
  max-width: var(--gl-inner-w);
  width: 100%;
  margin: 0 auto;
  padding: 72px 32px 64px;
  position: relative;
  z-index: 1;
}

.gl-hero__content {
  max-width: 580px;
  padding-bottom: 0;
}

.gl-hero__catch {
  margin: 0 0 20px;
  line-height: 1.15;
}

.gl-hero__catch-tag {
  display: inline-block;
  background: var(--gl-white);
  color: var(--gl-red);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 900;
  padding: 8px 28px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: .08em;
  box-shadow: 0 4px 20px rgba(0,0,0,.25), 0 0 0 3px rgba(255,255,255,.5);
  position: relative;
  z-index: 1;
}

.gl-hero__catch-main {
  display: block;
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 900;
  color: var(--gl-white);
  letter-spacing: -.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}

.gl-hero__desc {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: rgba(255,255,255,.92);
  margin: 0 0 28px;
  padding-left: 2px;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}

/* キャンペーンブロック＋CTAを横並びにするラッパー */
.gl-hero__bottom {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  margin-top: 28px;
}

/* キャンペーンブロック：黒透過・角丸 */
.gl-hero__campaign {
  position: relative;
  background: rgba(0,0,0,.40);
  border: 2px solid #ffbb1d;
  border-radius: 10px;
  padding: 20px 20px 16px;
  backdrop-filter: blur(6px);
  overflow: visible;
  flex: 1 1 0;
  min-width: 0;
}

.gl-hero__cta-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CAMPAIGNバッジ：黄色背景・左上 */
.gl-hero__campaign::before {
  content: 'CAMPAIGN';
  position: absolute;
  top: -13px;
  left: 20px;
  background: #ffbb1d;
  color: #1A1A1A;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  padding: 2px 12px;
  border-radius: 20px;
  line-height: 1.8;
  white-space: nowrap;
}

/* キャンペーンテキスト */
.gl-hero__campaign-main {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(13px, 1.8vw, 18px);
  font-weight: 900;
  color: #ffd226;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}

.gl-hero__campaign-main svg {
  color: #ffd226;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* FV専用ボタン：背景なし・白枠・白文字 */
.gl-hero .gl-btn--primary {
  background: transparent;
  border: 2px solid #fff;
  color: var(--gl-white);
  box-shadow: none;
  animation: gl-border-pulse 2.5s ease-in-out infinite;
}

.gl-hero .gl-btn--primary:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: var(--gl-white);
  box-shadow: none;
  animation: none;
}

/* サブテキスト（gl-hero__bottom の下） */
.gl-hero__campaign-sub {
  font-size: 12px;
  color: rgba(255,255,255,.75);
  margin: 10px 0 0;
  padding-left: 2px;
  letter-spacing: .02em;
}

.gl-hero__cta-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  margin: 0;
}

.gl-hero__visual {
  align-self: flex-end;
}

.gl-hero__visual-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==============================================================
   #02 ロゴ帯
   ============================================================== */
.gl-logos-section {
  background: var(--gl-white);
  border-top: 1px solid var(--gl-border);
  border-bottom: 1px solid var(--gl-border);
  padding: 24px 0 16px;
}

.gl-logos__label {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #999;
  letter-spacing: .1em;
  margin: 0 0 16px;
}

/* ==============================================================
   #03 メリット
   ============================================================== */
.gl-merits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.gl-merit {
  background: var(--gl-white);
  border-radius: var(--gl-radius);
  padding: 32px 28px;
  box-shadow: var(--gl-shadow);
  border-top: 4px solid var(--gl-red);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gl-merit__num {
  font-size: 36px;
  font-weight: 900;
  color: var(--gl-red);
  font-family: 'Arial Black', Helvetica, sans-serif;
  line-height: 1;
  opacity: .2;
}

.gl-merit__title {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--gl-black);
  margin: 0;
  line-height: 1.5;
}

.gl-merit__desc {
  font-size: 14px;
  color: var(--gl-text-mid);
  margin: 0;
  line-height: 1.7;
}

/* ==============================================================
   #04 #09 CTAセクション
   ============================================================== */

/* 「無料」吹き出しバッジ付きボタンラッパー */
.gl-cta-btn-wrap {
  position: relative;
  display: inline-block;
}

.gl-free-badge {
  position: absolute;
  top: -16px;
  left: 14px;
  z-index: 1;
  background: #ffbb1d;
  color: #1A1A1A;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  padding: 2px 12px;
  border-radius: 20px;
  line-height: 1.8;
  white-space: nowrap;
}

/* 吹き出し三角 */
.gl-free-badge::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 14px;
  border: 6px solid transparent;
  border-top-color: #ffbb1d;
  border-bottom: none;
}

.gl-cta-section {
  background: linear-gradient(135deg, #22BAB0 0%, #1DA39A 50%, #178880 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* 装飾サークル */
.gl-cta-section::before,
.gl-cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}

.gl-cta-section::before {
  width: 400px;
  height: 400px;
  top: -150px;
  left: -100px;
}

.gl-cta-section::after {
  width: 300px;
  height: 300px;
  bottom: -120px;
  right: -80px;
}

.gl-cta-section .gl-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.gl-cta-section__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  margin: 0;
  letter-spacing: .06em;
}

.gl-cta-section .gl-btn--primary {
  background: var(--gl-white);
  color: #1DA39A;
  border: none;
  font-size: 20px;
  padding: 22px 64px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25), 0 2px 8px rgba(0,0,0,.15);
  border-radius: 50px;
  letter-spacing: .06em;
}

.gl-cta-section .gl-btn--primary:hover {
  background: #f8f8f8;
  color: #178880;
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,.3);
}

/* ==============================================================
   #05 お客様の声
   ============================================================== */
.gl-voices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.gl-voice {
  background: var(--gl-white);
  border: 1px solid var(--gl-border);
  border-radius: var(--gl-radius);
  padding: 32px 28px 24px;
  box-shadow: var(--gl-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gl-voice__quote-icon {
  position: absolute;
  top: 20px;
  left: 20px;
}

.gl-voice__text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--gl-text);
  margin: 28px 0 0;
}

.gl-voice__from {
  font-size: 13px;
  font-weight: 700;
  color: var(--gl-red);
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--gl-border);
}

/* ==============================================================
   #06 実績数値（暗背景）
   ============================================================== */
.gl-stats-section {
  background: url('../img/fv_bgimage.jpg') center center / cover no-repeat;
  padding: var(--gl-section-pad) 0;
}

.gl-stats-section .gl-section-header {
  margin-bottom: 48px;
}

.gl-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 20px;
}

.gl-stat {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gl-stat:first-child { border-radius: var(--gl-radius) 0 0 var(--gl-radius); }
.gl-stat:last-child  { border-radius: 0 var(--gl-radius) var(--gl-radius) 0; }

.gl-stat__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255,255,255,.80);
  margin: 0;
}

.gl-stat__num {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--gl-white);
  margin: 0;
  line-height: 1.1;
  font-family: 'Arial Black', Helvetica, sans-serif;
}

.gl-stat__unit {
  font-size: 0.45em;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}

.gl-stat__desc {
  font-size: 13px;
  color: rgba(255,255,255,.82);
  margin: 0;
  line-height: 1.7;
}

.gl-stats__note {
  text-align: right;
  font-size: 11px;
  color: rgba(255,255,255,.60);
  margin: 0;
}

/* ==============================================================
   #07 事例
   ============================================================== */
.gl-case {
  background: var(--gl-gray-bg);
  border-radius: var(--gl-radius);
  overflow: hidden;
  border: 1px solid var(--gl-border);
}

.gl-case__top {
  background: var(--gl-white);
  padding: 40px 48px;
  border-bottom: 1px solid var(--gl-border);
}

.gl-case__headline {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--gl-black);
  line-height: 1.5;
  margin: 0 0 20px;
  padding: 0 0 0 20px;
  border-left: 5px solid var(--gl-red);
  quotes: none;
}

.gl-case__body {
  font-size: 15px;
  color: var(--gl-text-mid);
  line-height: 1.85;
  margin: 0;
}

.gl-case__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.gl-case__info {
  padding: 32px 40px;
  border-right: 1px solid var(--gl-border);
}

.gl-case__company {
  font-size: 16px;
  font-weight: 700;
  color: var(--gl-black);
  margin: 0 0 16px;
}

.gl-case__dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gl-case__dl-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px;
  font-size: 13px;
}

.gl-case__dl-row dt {
  font-weight: 700;
  color: var(--gl-red);
}

.gl-case__dl-row dd {
  margin: 0;
  color: var(--gl-text-mid);
}

.gl-case__result {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.gl-case__result-label {
  font-size: 13px;
  color: var(--gl-text-mid);
  margin: 0;
}

.gl-case__result-nums {
  display: flex;
  align-items: center;
  gap: 20px;
}

.gl-case__result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.gl-case__result-caption {
  font-size: 11px;
  color: #999;
  font-weight: 500;
}

.gl-case__result-arrow {
  flex-shrink: 0;
}

.gl-case__result-item--before .gl-case__result-val {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #999;
}

.gl-case__result-item--after .gl-case__result-val {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--gl-red);
  font-family: 'Arial Black', Helvetica, sans-serif;
}

.gl-case__result-note {
  font-size: 13px;
  font-weight: 700;
  color: var(--gl-red);
  margin: 0;
  background: var(--gl-red-pale);
  padding: 6px 16px;
  border-radius: 20px;
}

/* ==============================================================
   #08 その他導入会社様
   ============================================================== */
.gl-clients {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.gl-clients__cat {
  font-size: 16px;
  font-weight: 700;
  color: var(--gl-black);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gl-red);
}

.gl-clients__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gl-clients__list li {
  font-size: 14px;
  color: var(--gl-text-mid);
  padding-left: 16px;
  position: relative;
}

.gl-clients__list li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: var(--gl-red);
  font-size: 10px;
  top: 5px;
}

.gl-clients__etc {
  font-style: italic;
  color: #999 !important;
}

/* ==============================================================
   #10 BtoCセクション
   ============================================================== */
.gl-btoc__examples {
  font-size: 15px;
  color: var(--gl-text-mid);
  margin: 12px 0 0;
  font-style: italic;
}

.gl-btoc {
  max-width: 760px;
  margin: 0 auto;
}

.gl-btoc__text {
  font-size: 16px;
  color: var(--gl-text);
  line-height: 1.8;
  margin: 0 0 16px;
}

.gl-btoc__highlight {
  background: var(--gl-red-pale);
  border: 2px solid var(--gl-red);
  border-radius: var(--gl-radius);
  padding: 20px 28px;
  margin-top: 8px;
  text-align: center;
}

.gl-btoc__highlight p {
  font-size: 16px;
  font-weight: 700;
  color: var(--gl-red);
  margin: 0;
}

.gl-btoc__highlight-note {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--gl-text-mid) !important;
  margin-top: 4px !important;
}

/* ==============================================================
   #11 コミュニケーション
   ============================================================== */
.gl-comm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.gl-comm__content .gl-label {
  display: inline-block;
  text-align: left;
  margin-bottom: 14px;
}

.gl-comm__content .gl-title {
  text-align: left;
  margin-bottom: 16px;
}

.gl-comm__sub {
  font-size: 16px;
  color: var(--gl-text-mid);
  margin: 0 0 20px;
}

.gl-comm__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gl-comm__list li {
  font-size: 15px;
  color: var(--gl-text);
  padding-left: 20px;
  position: relative;
}

.gl-comm__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gl-red);
  font-weight: 700;
}

.gl-comm__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--gl-radius);
}

/* ==============================================================
   #13 フォーム
   ============================================================== */
.gl-form__lead {
  font-size: 15px;
  color: var(--gl-text-mid);
  margin: 12px 0 0;
}

/* ==============================================================
   レスポンシブ（900px以下）
   ============================================================== */
@media screen and (max-width: 900px) {
  #getlead-lp {
    --gl-section-pad: 56px;
  }

  .gl-hero {
    min-height: 480px;
  }

  .gl-hero__inner {
    padding: 56px 24px 48px;
  }

  .gl-hero__content {
    max-width: 100%;
  }

  .gl-merits {
    grid-template-columns: 1fr;
  }

  .gl-voices {
    grid-template-columns: 1fr;
  }

  .gl-stats {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .gl-stat:first-child { border-radius: var(--gl-radius) var(--gl-radius) 0 0; }
  .gl-stat:last-child  { border-radius: 0 0 var(--gl-radius) var(--gl-radius); }

  .gl-case__top {
    padding: 44px 32px 36px;
  }

  .gl-case__top::after {
    display: none;
  }

  .gl-case__bottom {
    grid-template-columns: 1fr;
  }

  .gl-case__info {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.06);
    padding: 28px 32px;
  }

  .gl-case__result {
    padding: 36px 32px;
  }

  .gl-clients {
    grid-template-columns: 1fr;
  }

  .gl-comm {
    grid-template-columns: 1fr;
    gap: 32px;
  }

}

/* レスポンシブ（767px以下） */
@media screen and (max-width: 767px) {
  .gl-header__inner {
    padding: 6px 16px;
    min-height: 60px;
    height: auto;
  }

  .gl-header__logo svg {
    width: 130px;
    height: auto;
  }

  /* SP: ヘッダーボタンを適切なサイズに縮小 */
  .gl-btn--header {
    font-size: 13px;
    padding: 9px 16px;
    border-radius: 6px;
    gap: 5px;
  }

  .gl-btn--header svg {
    width: 14px;
    height: 14px;
  }

  .gl-inner {
    padding: 0 16px;
  }

  /* SP: FV — 背景位置・縦配置（左下） */
  .gl-hero {
    min-height: 500px;
    align-items: flex-end;
    background-position: 53%;
  }

  /* SP: オーバーレイ（縦長画面用・均一） */
  .gl-hero::before {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.22) 0%,
      rgba(0,0,0,.52) 100%
    );
  }

  /* SP: FV コンテンツをコンパクトに・左下配置 */
  .gl-hero__inner {
    padding: 16px 16px 28px;
  }

  .gl-hero__catch {
    margin: 0 0 6px;
  }

  .gl-hero__catch-tag {
    font-size: 12px;
    padding: 4px 14px;
    margin-bottom: 6px;
  }

  .gl-hero__catch-main {
    font-size: clamp(26px, 8vw, 36px);
  }

  .gl-hero__desc {
    font-size: 13px;
    margin: 0 0 20px;
  }

  /* SP: FVキャンペーン＋ボタン横並び */
  .gl-hero__bottom {
    margin-top: 0;
    gap: 10px;
    align-items: stretch;
  }

  .gl-hero__campaign {
    padding: 12px 10px 10px;
  }

  .gl-hero__campaign-main {
    font-size: 12px;
    gap: 5px;
    white-space: nowrap;
  }

  .gl-hero__campaign-main svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }

  .gl-hero__campaign-sub {
    font-size: 10px;
  }


  .gl-btn--lg {
    font-size: 12px;
    padding: 10px 12px;
    gap: 5px;
  }

  .gl-btn--lg svg {
    width: 14px;
    height: 14px;
  }

  /* SP: 説明文・本文を左揃え */
  .gl-merit__desc,
  .gl-voice__text,
  .gl-case__body,
  .gl-btoc__text,
  .gl-btoc__examples,
  .gl-btoc__highlight p,
  .gl-comm__sub,
  .gl-form__lead,
  .gl-hero__desc,
  .gl-hero__campaign-sub,
  .gl-hero__cta-note {
    text-align: left;
  }

  /* SP: アピールセクション stat は中央揃え */
  .gl-stat__label,
  .gl-stat__desc {
    text-align: center;
  }

  /* SP: アピールセクション見出しを左揃え */
  .gl-stats-section .gl-section-header {
    text-align: left;
  }

  /* SP: 見出し内の専用改行を有効化 */
  .gl-sp-br { display: block; }

  /* SP: PC専用改行を無効化 */
  .gl-pc-br { display: none; }

  /* SP: アピールセクション背景位置 */
  .gl-stats-section {
    background-position: left;
  }

  .gl-case__top {
    padding: 36px 24px 28px;
  }

  .gl-case__headline {
    padding-left: 16px;
    border-left-width: 4px;
  }

  .gl-case__body {
    padding-left: 16px;
  }

  .gl-case__info,
  .gl-case__result {
    padding: 24px;
  }

  .gl-btn--xl {
    font-size: 17px;
    padding: 17px 32px;
  }
}

/* レスポンシブ（480px以下） */
@media screen and (max-width: 480px) {
  /* SP: ロゴ上下のテキストを小さく表示（非表示にしない） */
  .gl-header__tagline {
    font-size: 8px;
  }

  .gl-header__produced {
    font-size: 7px;
  }

  /* 480px以下: さらにコンパクトに（767pxからの継続） */

  .gl-merits,
  .gl-voices {
    gap: 16px;
  }

  .gl-case__result-nums {
    gap: 12px;
  }
}

/* PC専用（768px以上） */
@media screen and (min-width: 768px) {
  .gl-comm__content .gl-title {
    font-size: 32px;
  }
}

/* ==============================================================
   FV 入場アニメーション
   ============================================================== */
.gl-hero__catch-tag {
  animation: gl-hero-in .6s ease both;
  animation-delay: .1s;
}

.gl-hero__catch-main {
  animation: gl-hero-in .7s ease both;
  animation-delay: .25s;
}

.gl-hero__desc {
  animation: gl-hero-in .7s ease both;
  animation-delay: .4s;
}

.gl-hero__bottom {
  animation: gl-hero-in .7s ease both;
  animation-delay: .55s;
}

.gl-hero__campaign-sub {
  animation: gl-hero-in .6s ease both;
  animation-delay: .7s;
}

/* ==============================================================
   スクロール登場（IntersectionObserver で .is-visible を付与）
   ============================================================== */
.gl-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.gl-reveal-scale {
  opacity: 0;
  transform: scale(.93);
  transition: opacity .65s ease, transform .65s ease;
}

.gl-reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .65s ease, transform .65s ease;
}

.gl-reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .65s ease, transform .65s ease;
}

.gl-reveal.is-visible,
.gl-reveal-scale.is-visible,
.gl-reveal-left.is-visible,
.gl-reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

/* スタガー遅延 */
.gl-reveal-d1 { transition-delay: .1s; }
.gl-reveal-d2 { transition-delay: .2s; }
.gl-reveal-d3 { transition-delay: .3s; }
.gl-reveal-d4 { transition-delay: .4s; }
.gl-reveal-d5 { transition-delay: .5s; }

/* ==============================================================
   prefers-reduced-motion — アニメーション無効化
   ============================================================== */
@media (prefers-reduced-motion: reduce) {
  .gl-hero__catch-tag,
  .gl-hero__catch-main,
  .gl-hero__desc,
  .gl-hero__bottom,
  .gl-hero__campaign-sub {
    animation: none;
    opacity: 1;
  }

  .gl-reveal,
  .gl-reveal-scale,
  .gl-reveal-left,
  .gl-reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gl-btn,
  .gl-btn--header,
  .gl-btn--primary {
    animation: none !important;
  }
}
