/* web-lp.html ページ固有スタイル
   clinic.css / ads.css / pricing.css を継承し、固有上書きのみ記述する。
   テーブルは pricing-factor-table、アコーディオンは pricing-accordion を流用（styleguide.html 準拠）。
   独自パーツは作らない。 */
@import url('./clinic.css');
@import url('./ads.css');
@import url('../../css/pricing.css');

/* ========== HERO ========== */
/* clinic-hero-title はカギ括弧を含まないため字下げ不要 */
.web-lp-page .clinic-hero-title {
  text-indent: 0;
}

/* h1 直下のキャッチ「それ、よくあることです。」 */
.web-lp-hero-catch {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 900;
  color: var(--color-brand);
  margin: -12px 0 0;
}

/* CTAボタン横の添え書き（advisory と同じ） */
.web-lp-page .hero-cta-note {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
}

/* ========== テーブル: 本文と同じ 760px に揃える ========== */
/* pricing-factor-table は width:100%。本文プローズ（760px）と幅を揃えて
   セクション間のガタつきをなくす（advisory-table-wrap と同方針）。 */
.web-lp-table-wrap {
  max-width: var(--content-max);
  margin: 0 auto 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.web-lp-view-table tbody td {
  background: #fff;
}

.web-lp-menu-table tbody td:nth-child(2) {
  white-space: nowrap;
}

.web-lp-static-panel .pricing-accordion-summary {
  cursor: default;
}

/* ========== CASE: 事実テーブル（アイコン付き 相談前／見立て／やったこと／成果） ========== */
.web-lp-case-facts {
  display: grid;
  grid-template-columns: 190px 1fr;
  border-top: 1px solid var(--color-border-subtle);
  margin: 0;
}

.web-lp-case-facts dt,
.web-lp-case-facts dd {
  border-bottom: 1px solid var(--color-border-subtle);
  padding: 16px 20px;
}

.web-lp-case-facts dt {
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--color-border-subtle);
  font-weight: 800;
  color: var(--color-navy);
  font-size: 0.98rem;
}

.web-lp-case-facts dd {
  margin: 0;
  line-height: 1.8;
  color: var(--color-text);
  font-size: 0.95rem;
}

.web-lp-case-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(27, 184, 206, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
}

.web-lp-case-icon svg {
  width: 22px;
  height: 22px;
}

/* ========== CASE: 「考え方」破線ボックス ========== */
.web-lp-case-mindset {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 22px;
  background: rgba(27, 184, 206, 0.06);
  border: 1px dashed var(--color-brand);
  border-radius: var(--radius);
  line-height: 1.75;
  font-size: 0.95rem;
  color: var(--color-text);
}

.web-lp-case-mindset > svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--color-brand);
  margin-top: 2px;
}

.web-lp-case-mindset strong {
  color: var(--color-brand);
  font-weight: 800;
}

/* ========== CASE: CTAボタン2つ ========== */
.web-lp-case-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .web-lp-case-facts {
    grid-template-columns: 1fr;
  }
  .web-lp-case-facts dt {
    border-right: none;
    padding-bottom: 10px;
  }
  .web-lp-case-facts dd {
    padding-top: 10px;
  }
  .web-lp-case-cta .btn {
    width: 100%;
  }
}

/* ========== テキストアクセント強調 ========== */
.text-accent {
  color: var(--color-brand);
  font-weight: 700;
}

/* ========== 業種・目的から探す リンクリスト ========== */
.web-lp-industry-links {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.web-lp-industry-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition);
}

.web-lp-industry-links a::after {
  content: "→";
  margin-left: auto;
  color: var(--color-brand);
}

.web-lp-industry-links a:hover {
  box-shadow: var(--shadow);
  transform: translateX(3px);
}
