:root {
    --primary-color: #ff5a00;
    --secondary-color: #1a1a1a;
    --accent-blue: #007aff;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Noto Sans JP', sans-serif; line-height: 1.6; color: #333; overflow-x: hidden; width: 100%; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; width: 100%; }
.section { padding: 80px 0; text-align: center; }
.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--secondary-color); color: var(--white); }
.bg-blue { background-color: #f0f7ff; }

/* ① HERO */
.hero { padding: 80px 0; background: #fff; min-height: 60vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-container { display: flex; align-items: center; justify-content: space-between; gap: 40px; z-index: 2; position: relative; }
.hero-text-area { flex: 1.2; text-align: left; }
.hero-target { font-size: 0.9rem; color: #999; margin-bottom: 10px; }
.hero-eyecatch { font-size: 1.5rem; margin-bottom: 10px; }
.hero-title { font-size: 3rem; font-weight: 900; line-height: 1.3; margin-bottom: 20px; }
.hero-brand { font-size: 1.2rem; margin-bottom: 10px; }
.hero-note { font-size: 0.9rem; color: #666; }
.hero-image-area { flex: 0.8; text-align: right; }
.hero-image-area img { max-width: 100%; height: auto; border-radius: 20px; }

/* ② タイムライン */
.timeline-flex { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; }
.t-item { background: #fff; padding: 25px; border-radius: 15px; flex: 1; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.t-step { display: block; color: var(--primary-color); font-weight: bold; margin-bottom: 10px; }

/* ③ 問題提起（縦並びチップ） */
.todo-bullets {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none !important;
    margin: 30px auto 40px;
    padding: 0;
    max-width: 600px;
    gap: 15px;
}
.todo-bullets li {
    list-style: none !important;
    display: block;
    width: fit-content;
    min-width: 320px;
    background: #ffffff;
    color: #333;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}
.todo-bullets li::before { content: none !important; display: none !important; }

/* ④ 解決策・強み共通カード */
.strength-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto 50px;
}

/* ⑤ 4つの瞬間 */
.moments-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-top: 40px; }
.moment-card { background: #fff; padding: 30px; border-radius: 15px; text-align: left; border-top: 5px solid var(--primary-color); }

/* ⑥ チェックリスト */
.check-list { list-style: none; padding: 0; text-align: left; display: inline-block; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 12px; font-weight: bold; }
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
}

/* ⑨ 料金セクション（Pricing）独自設定 */
.pricing .strength-card { text-align: left; } /* 料金内のカードは左寄せ */
.accent-text { color: var(--primary-color); font-size: 1.2rem; margin: 20px 0; font-weight: bold; }
.problem-list { background: #fff9f5; padding: 20px; border-radius: 12px; margin: 25px 0; border-left: 5px solid #ffccaa; }
.pricing-note { font-size: 0.95rem; color: #666; margin: 15px 0; }
.pricing-box { max-width: 900px; margin: 0 auto; }
.plan-container { display: flex; gap: 20px; justify-content: center; margin-top: 30px; }
.plan { background: #fff; border: 2px solid #e0eefc; padding: 30px 20px; border-radius: 15px; flex: 1; transition: 0.3s; }
.plan:hover { transform: translateY(-5px); border-color: var(--primary-color); }
.plan-title { font-size: 1.1rem; font-weight: bold; margin-bottom: 10px; }
.price { font-size: 1.8rem; font-weight: 900; color: var(--primary-color); margin-bottom: 15px; }

/* --- 料金セクション内の補足メッセージ --- */

/* 「だからこそ〜」の繋ぎ文 */
.bridge-text {
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 40px 0 20px;
    color: var(--secondary-color);
    position: relative;
}

/* 1件の商談を防ぐだけで〜（強調ボックス） */
.price-justify {
    background: #fff5ed;
    border: 1px solid #ffdec7;
    padding: 30px; /* 少し広げる */
    border-radius: 12px;
    margin: 15px auto; /* 前後の間隔を調整 */
    max-width: 750px;
    text-align: center;
    font-weight: bold;
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem; /* ほんの少し大きく */
}

/* 強調したい部分の色を調整 */
.price-justify strong {
    color: #d00000; /* 損失や仕組みへの強調は少し強めの色に */
}

/* 取りこぼしは継続的な問題〜（信頼感のある補足） */
.continuity {
    text-align: center;
    max-width: 700px;
    margin: 25px auto 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    padding: 0 10px;
}

/* --- 緊急性メッセージ（urgency） --- */
.urgency-text {
    font-size: 1.4rem;
    font-weight: 900;
    color: #d00000; /* 警告をイメージする深い赤 */
    line-height: 1.5;
    margin: 30px 0 10px;
    text-align: center;
}

.urgency-sub {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* --- 最後の後押し（final-push） --- */
.final-push {
    background: #fff;
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin: 40px auto;
    max-width: 600px;
    text-align: left; /* 語りかけるような左寄せ */
    font-weight: bold;
    line-height: 1.8;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}


/* スマホでの調整 */
@media (max-width: 768px) {
    .bridge-text {
        font-size: 1.1rem;
        margin: 30px 0 15px;
    }
    .price-justify {
        font-size: 0.95rem;
        padding: 20px 15px;
        width: 100%;
    }
    .continuity {
        font-size: 0.85rem;
        text-align: left; /* スマホでは長文は左寄せが読みやすい */
    }
    .hero {
        padding: 60px 20px;
    }
  .mini-cta {
    width: 90%;          /* ← 横に広げる */
    max-width: none;     /* ← PC制限解除 */

    padding: 16px 20px;  /* ← 少し詰める */
    font-size: 1.05rem;  /* ← 読みやすく */
  }

  .flow-step .price {
  font-size: 1.15rem;
  line-height: 1.6;
}

.flow-step .plan-note {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
}

.flow-step .price {
  font-weight: 700;
}


}



/* ⑫ 最終CTA（縦並びボタン） */
.logo-text { font-size: 3rem; font-weight: 900; margin: 20px 0; }
.cta-group { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 15px; 
    margin-top: 30px; 
}
.btn { 
    display: inline-block; 
    padding: 18px 40px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 1.1rem;
    width: 100%;
    max-width: 450px;
    text-align: center;
    transition: 0.3s;
}
.btn-primary { background: var(--primary-color); color: #fff; border: 2px solid var(--primary-color); }
.btn-secondary { background: white; color: var(--primary-color); border: 2px solid var(--primary-color); }

/* レスポンシブ設定 */
@media (max-width: 768px) {
    .hero { padding: 0; min-height: 60vh; background: #000; }
    .hero-container { flex-direction: column; text-align: center; padding: 0; }
    .hero-image-area { position: absolute; width: 100%; height: 100%; opacity: 0.4; }
    .hero-image-area img { width: 100%; height: 100%; object-fit: cover; }
    .hero-text-area { padding: 60px 20px; color: #fff; text-align: center; width: 100%; }
    .hero-title { font-size: 1.6rem; color: #fff; }
    .hero-eyecatch, .hero-target, .hero-brand { color: #fff; }
    .hero-brand strong { background: var(--primary-color); padding: 2px 8px; border-radius: 4px; }

    .timeline-flex { flex-direction: column; align-items: center; }
    .t-item { width: 100%; max-width: 300px; }
    
    .todo-bullets li { min-width: 280px; font-size: 0.9rem; padding: 12px 20px; }
    
    .moments-grid { grid-template-columns: 1fr; }
    
    .plan-container { flex-direction: column; }
    .strength-card { padding: 25px 20px; }

    .urgency-text {
        font-size: 1.15rem;
    }
    .urgency-sub {
        font-size: 0.95rem;
    }
    .final-push {
        font-size: 0.9rem;
        margin: 30px 10px;
        padding: 15px;
    }
    
}

/* 完全にポッチを殺す */
ul, li {
  list-style: none !important;
  list-style-type: none !important;
}

/* すべての疑似要素を殺す */
li::before,
li::after {
  content: none !important;
  display: none !important;
}

.asset-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.loss-impact {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 30px;
    border-radius: 15px;
    background: rgba(255,255,255,0.05); /* ほんのり背景を明るく */
}

.loss-impact strong {
    color: var(--primary-color);
    font-size: 1.4rem;
}
.logic-link {
    margin-top: 30px;
    text-align: center;
}

.logic-link-btn {
    color: #007aff;
    text-decoration: underline;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.3s;
}

.logic-link-btn:hover {
    opacity: 0.7;
}

.story-cta-wrap {
  text-align: center;
  margin: 10px 0 60px;
}

.story-cta-btn {
  display: inline-block;
  background: #007aff; /* 既存LPと統一 */
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.2s ease;
}

/* hover */
.story-cta-btn:hover {
  background: #005fcc;
  transform: translateY(-2px);
}

.story-cta-lead {
  text-align: center;
  color: #666;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 14px;
}

.pricing-flow {
  max-width: 700px;
  margin: 40px auto;
}

.flow-step {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid #eee;
}

.step-label {
  font-size: 12px;
  color: #007aff;
  font-weight: bold;
  margin-bottom: 5px;
}

.flow-arrow {
  text-align: center;
  margin: 10px 0;
  color: #999;
}

.flow-title {
  text-align: center;
  margin-bottom: 30px;
}

.plan-note {
  font-size: 0.8em;
  color: #666;
}

.form-wrap {
  max-width: 500px;
  margin: 40px auto 0;
}

.thanks-page .cta-heading {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero-concept {
  margin-top: 18px;
  font-size: 1.15rem;
  line-height: 1.9;
  font-weight: 700;
  color: #1e3a5f;
}

.mini-story {
  background: #f4f6f8;
  padding: 80px 0;
}

.mini-lead {
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
}

.mini-flow {
  max-width: 600px;
  margin: 0 auto 40px;
}

.mini-flow p {
  background: #fff;
  padding: 18px 22px;
  border-radius: 10px;
  margin-bottom: 15px;
  line-height: 1.7;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.mini-flow .gray {
  background: none;
  box-shadow: none;
  color: #aaa;
  font-size: 0.95rem;
}

.mini-flow .highlight {
  border-left: 5px solid #007aff;
  font-weight: bold;
  color: #007aff;
}

.mini-cta {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  text-align: center;
  max-width: 420px;
  padding: 16px 28px;
  background: #007aff;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 999px;
}

.mini-cta:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.mini-impact {
  text-align: center;
  margin: 30px 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #d00000;
  line-height: 1.6;
}

.mini-sub {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 25px;
}

.btn-primary {
  box-shadow: 0 10px 20px rgba(255, 100, 0, 0.3);
}

