/* ==========================================================
   LP Application2 - 宅建士講座LP専用スタイル
   All classes prefixed with .lp-app2- to avoid theme conflicts
   ========================================================== */

:root {
  --lp-orange: #e85612;
  --lp-orange-hover: #ff6a20;
  --lp-orange-light: #fff3ed;
  --lp-orange-dark: #d4470a;
  --lp-blue: #1e73be;
  --lp-blue-dark: #1565c0;
  --lp-green: #2e7d32;
  --lp-dark: #1a1a1a;
  --lp-text: #333;
  --lp-text-light: #555;
  --lp-text-muted: #888;
  --lp-gray-bg: #f0f2f5;
  --lp-gray-light: #f8f9fa;
  --lp-border: #e8e8e8;
  --lp-max-width: 1100px;
  --lp-content-max: 1000px;
}

/* ---- Reset within LP scope ---- */
.lp-app2-wrap {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--lp-text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
.lp-app2-wrap *,
.lp-app2-wrap *::before,
.lp-app2-wrap *::after {
  box-sizing: border-box;
}
.lp-app2-wrap h1,
.lp-app2-wrap h2,
.lp-app2-wrap h3,
.lp-app2-wrap h4,
.lp-app2-wrap p {
  margin: 0;
  padding: 0;
}
.lp-app2-wrap ul,
.lp-app2-wrap ol {
  margin: 0;
  padding: 0;
}
.lp-app2-wrap a {
  color: var(--lp-blue);
  text-decoration: none;
}
.lp-app2-wrap a:hover {
  text-decoration: underline;
}
.lp-app2-wrap img {
  max-width: 100%;
  height: auto;
}

/* ---- Layout ---- */
.lp-app2-container {
  max-width: var(--lp-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.lp-app2-section {
  padding: 60px 0;
}

.lp-app2-section-inner {
  max-width: var(--lp-content-max);
  margin: 0 auto;
}

/* ---- Breadcrumb ---- */
.lp-app2-breadcrumb {
  font-size: 13px;
  color: #666;
  padding: 12px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-width: var(--lp-max-width);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.lp-app2-breadcrumb a {
  color: var(--lp-blue);
  text-decoration: none;
}
.lp-app2-breadcrumb a:hover {
  text-decoration: underline;
}

/* ---- Hero ---- */
/* 2026-06-12 改修（大金さん FB）: SP に続き PC でも写真素材を撤去し、
   テキストのみの 2 カラム構成（左: ラベル+見出し+サブコピー+CTA / 右: チェックリストカード）へ。
   2 カラム化と文字組み調整は PC（min-width:769px）のみ適用し、SP は従来の縦積みを維持 */
.lp-app2-hero {
  position: relative;
  background: #fff;
}
.lp-app2-hero__bg,
.lp-app2-hero__overlay {
  /* 旧・写真/白グラデ要素。HTML からも撤去済みだが、ページキャッシュで旧 HTML に
     新 CSS が当たった場合に写真が出ないよう保険で非表示にしておく */
  display: none;
}
.lp-app2-hero__content {
  position: relative;
  z-index: 10;
  max-width: var(--lp-max-width);
  margin: 0 auto;
  padding: 40px;
}
.lp-app2-hero__inner {
  max-width: 640px;
}
.lp-app2-hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: 0 0 24px !important;
  padding: 6px 16px;
  border-radius: 999px;
  color: var(--lp-orange);
  background: rgba(232, 86, 18, 0.1);
  border: 1px solid rgba(232, 86, 18, 0.3);
}
.lp-app2-hero__title {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 28px !important;
  color: var(--lp-dark);
}
.lp-app2-hero__title em {
  font-style: normal;
  color: var(--lp-orange);
}
.lp-app2-hero__subtitle {
  font-size: 18px;
  line-height: 1.9;
  margin: 0 0 40px !important;
  color: #444;
}
.lp-app2-hero__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 24px !important;
  /* 2026-06-12 FB: PC と表示を揃え、SP でもチェックリストをカード化（カード装飾は
     ここ＝全幅共通に置き、PC 側 media block は余白・サイズの上書きのみ行う） */
  padding: 24px 20px !important;
  background: var(--lp-orange-light);
  border: 1px solid rgba(232, 86, 18, 0.15);
  border-radius: 16px;
}
.lp-app2-hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--lp-text);
  margin: 0 !important;
}
.lp-app2-hero__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lp-orange);
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.lp-app2-hero__cta-area {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lp-app2-btn-primary,
.lp-app2-btn-primary:visited,
.lp-app2-btn-primary:link {
  display: inline-block;
  text-decoration: none;
  color: #fff !important;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  padding: 16px 40px;
  background: var(--lp-orange);
  box-shadow: 0 4px 20px rgba(232, 86, 18, 0.4);
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.lp-app2-btn-primary:hover,
.lp-app2-btn-primary:focus,
.lp-app2-btn-primary:active {
  background: var(--lp-orange-hover);
  box-shadow: 0 6px 28px rgba(232, 86, 18, 0.5);
  text-decoration: none;
  color: #fff !important;
}
.lp-app2-hero__note {
  font-size: 12px;
  color: #999;
}
/* 写真撤去後の PC レイアウト: 左カラムにテキスト一式、右カラムにチェックリストを
   カード化して配置し、テキストだけでも間延びしない 2 カラムに組む。
   ⚠️ ベースの hero 各定義（margin/padding に !important あり）より後に置くこと
   （同詳細度のため、前に置くと後勝ちで打ち消される） */
@media (min-width: 769px) {
  .lp-app2-hero__content {
    padding: 72px 40px;
  }
  .lp-app2-hero__inner {
    /* 2026-06-12 FB: 左右が離れすぎないよう全体を 920px に絞って中央寄せ */
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* 左テキストと右パネルを天地中央で揃える */
    gap: clamp(32px, 4vw, 56px);
  }
  .lp-app2-hero__text {
    flex: 1 1 auto;
    min-width: 0;
  }
  /* 右パネル: チェックリストカード + 直下に CTA ボタン（2026-06-12 FB） */
  .lp-app2-hero__panel {
    flex: 0 1 400px;
    min-width: 300px; /* タブレット幅でもカードが潰れない下限 */
    display: flex;
    flex-direction: column;
  }
  .lp-app2-hero__title {
    /* 写真がなくなったぶん見出しを立てて FV の強さを担保（中間幅では縮む） */
    font-size: clamp(36px, 3.6vw, 46px);
    line-height: 1.45;
    margin-bottom: 24px !important;
  }
  .lp-app2-hero__subtitle {
    margin-bottom: 0 !important; /* 左カラムは subtitle が末尾（CTA は右パネルへ移動） */
  }
  .lp-app2-hero__cta-area {
    margin-top: 20px; /* リストカードとの間隔 */
  }
  .lp-app2-hero__cta-area .lp-app2-btn-primary {
    flex: 1 1 auto; /* カードと同じ幅に伸ばして「リストの下のボタン」として揃える */
    text-align: center;
  }
  .lp-app2-hero__bullets {
    /* カード装飾自体はベース側（SP 共通）。PC は余白・行間のみ広げる */
    margin: 0 !important;
    padding: 36px 32px !important;
    gap: 20px;
  }
  .lp-app2-hero__bullets li {
    font-size: 16px;
  }
}

/* ---- Lead text ---- */
.lp-app2-lead {
  padding: 40px 100px;
  font-size: 16px;
  line-height: 1.9;
}
.lp-app2-lead p {
  margin-bottom: 16px;
}
.lp-app2-lead p:last-child {
  margin-bottom: 0;
}
.lp-app2-coupon {
  padding: 0 100px;
  margin-bottom: 32px;
}
.lp-app2-coupon img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- Table of Contents ---- */
.lp-app2-toc {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}
.lp-app2-toc__box {
  border: 1px solid #d9e0ea;
  border-radius: 4px;
  overflow: hidden;
}
.lp-app2-toc__header {
  background: var(--lp-blue);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 20px;
}
.lp-app2-toc__list {
  padding: 24px 28px !important;
  margin: 0 !important;
  font-size: 14px;
  line-height: 2;
  list-style-type: decimal;
  list-style-position: inside;
}
.lp-app2-toc__list > li {
  margin: 0 0 12px !important;
}
.lp-app2-toc__list > li:last-child {
  margin-bottom: 0 !important;
}
.lp-app2-toc__list ol {
  margin: 8px 0 0 24px !important;
  padding: 0 !important;
  list-style-type: decimal;
  list-style-position: inside;
}
.lp-app2-toc__list ol li {
  margin: 0 0 4px !important;
}

/* ---- 全幅セクション共通（empathy / recommend / materials） ---- */
/* 親 .lp-app2-container の max-width を破ってビューポート全幅へ。
   100vw + margin trick で左右に画面端まで背景色を伸ばす。 */
.lp-app2-empathy,
.lp-app2-recommend,
.lp-app2-materials {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 20px;
  padding-right: 20px;
}
.lp-app2-empathy {
  background: var(--lp-orange-light);
}
/* 全幅化に伴い、PC では section-inner の左右にもパディングを足して
   コンテンツが画面端へ広がりすぎないようにする。 */
@media (min-width: 769px) {
  .lp-app2-empathy .lp-app2-section-inner,
  .lp-app2-recommend .lp-app2-section-inner,
  .lp-app2-materials .lp-app2-section-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.lp-app2-empathy__title {
  font-size: 22px;
  font-weight: bold;
  color: var(--lp-orange);
  text-align: center;
  margin: 0 0 32px !important;
}
.lp-app2-concerns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.lp-app2-concern {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.lp-app2-concern__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f5c6aa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-app2-concern__bubble {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 16px 24px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid #f0d8c8;
}
.lp-app2-concern__bubble::before {
  content: '';
  position: absolute;
  top: 16px;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid #fff;
}
.lp-app2-concern__persona {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  color: var(--lp-orange);
  background: var(--lp-orange-light);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.lp-app2-concern__text {
  font-size: 15px;
  font-weight: bold;
  color: var(--lp-dark);
  margin-bottom: 4px;
}
.lp-app2-concern__detail {
  font-size: 13px;
  color: var(--lp-text-muted);
}
.lp-app2-empathy__resolve {
  text-align: center;
}
.lp-app2-empathy__arrow {
  margin: 0 auto 16px;
  display: block;
}
.lp-app2-empathy__resolve-box {
  display: inline-block;
  background: var(--lp-orange);
  border-radius: 12px;
  padding: 16px 32px;
}
.lp-app2-empathy__resolve-text {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

/* ---- H2 with left border ---- */
.lp-app2-h2-blue {
  font-size: 24px;
  font-weight: bold;
  color: var(--lp-dark);
  border-left: 4px solid var(--lp-blue);
  padding-left: 20px !important;
  margin: 0 0 24px !important;
}
.lp-app2-h2-orange {
  font-size: 24px;
  font-weight: bold;
  color: var(--lp-dark);
  border-left: 4px solid var(--lp-orange);
  padding-left: 20px !important;
  margin: 0 0 24px !important;
}
.lp-app2-h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--lp-dark);
  margin: 40px 0 16px !important;
}
.lp-app2-p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 24px !important;
}

/* ---- Learning Cycle Diagram ---- */
.lp-app2-cycle {
  max-width: 680px;
  margin: 0 auto 32px;
  background: var(--lp-gray-light);
  border-radius: 12px;
  padding: 32px;
}
.lp-app2-cycle__title {
  font-size: 16px;
  font-weight: bold;
  color: var(--lp-dark);
  text-align: center;
  margin: 0 0 24px !important;
}
.lp-app2-cycle__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}
.lp-app2-cycle__box {
  flex: 1;
  max-width: 200px;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}
.lp-app2-cycle__box--input {
  background: #e3f2fd;
}
.lp-app2-cycle__box--output {
  background: #fff3e0;
}
.lp-app2-cycle__box-title {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 8px;
}
.lp-app2-cycle__box-title--blue { color: var(--lp-blue-dark); }
.lp-app2-cycle__box-title--orange { color: #e65100; }
.lp-app2-cycle__box-list {
  list-style: none;
  font-size: 12px;
  color: var(--lp-text);
}
.lp-app2-cycle__box-list li {
  margin-bottom: 4px;
}
.lp-app2-cycle__arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.lp-app2-cycle__arrows-label {
  font-size: 11px;
  font-weight: bold;
  color: var(--lp-orange);
}
.lp-app2-cycle__result {
  background: var(--lp-orange);
  border-radius: 8px;
  padding: 12px 24px;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}
.lp-app2-cycle__result-text {
  color: #fff;
  font-weight: bold;
  font-size: 15px;
}

/* ---- Radar Chart ---- */
.lp-app2-chart-wrap {
  background: var(--lp-gray-light);
  border-radius: 12px;
  padding: 24px 32px;
  margin-bottom: 32px;
}
.lp-app2-chart-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--lp-dark);
  text-align: center;
  margin: 0 0 24px !important;
}
.lp-app2-chart-subtitle {
  font-size: 13px;
  color: var(--lp-text-muted);
  text-align: center;
  margin-bottom: 16px;
}
.lp-app2-radar-svg {
  display: block;
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
  height: auto;
}
.lp-app2-chart-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
  font-size: 13px;
}
.lp-app2-chart-legend__item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lp-app2-chart-legend__color {
  width: 16px;
  height: 3px;
  border-radius: 2px;
}

/* ---- Emphasis Box ---- */
.lp-app2-emphasis {
  background: #fff8e1;
  border-left: 4px solid #ffc107;
  border-radius: 4px;
  padding: 20px;
}
.lp-app2-emphasis p {
  font-size: 15px;
  font-weight: bold;
  color: var(--lp-dark);
}

/* ---- Studying Recommend Section ---- */
.lp-app2-recommend {
  background: var(--lp-gray-bg);
}
.lp-app2-recommend__title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: var(--lp-dark);
  margin: 0 0 24px !important;
}

/* Donut Chart */
.lp-app2-donut-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 24px 32px;
  margin-bottom: 32px;
}
.lp-app2-donut-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--lp-dark);
  text-align: center;
  margin-bottom: 4px;
}
.lp-app2-donut-subtitle {
  font-size: 13px;
  color: var(--lp-text-muted);
  text-align: center;
  margin-bottom: 16px;
}
.lp-app2-donut-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
}
.lp-app2-donut-row > .lp-app2-donut {
  justify-self: end;
  margin: 0;
}
.lp-app2-donut-row > .lp-app2-donut-legend {
  justify-self: start;
}
@media (max-width: 768px) {
  .lp-app2-donut-row {
    grid-template-columns: 1fr;
  }
  .lp-app2-donut-row > .lp-app2-donut,
  .lp-app2-donut-row > .lp-app2-donut-legend {
    justify-self: center;
  }
}
.lp-app2-donut {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(
    #e85612 0deg 144deg,
    transparent 144deg 147deg,
    #ff8a50 147deg 234deg,
    transparent 234deg 237deg,
    #ffab76 237deg 309deg,
    transparent 309deg 312deg,
    #ffcc9e 312deg 360deg
  );
  position: relative;
  margin: 0 auto;
}
.lp-app2-donut__hole {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lp-app2-donut__label-main {
  font-size: 22px;
  font-weight: bold;
  color: var(--lp-dark);
}
.lp-app2-donut__label-sub {
  font-size: 13px;
  color: var(--lp-text-muted);
}
.lp-app2-donut-legend {
  flex: 0 1 auto;
}
.lp-app2-donut-legend ul {
  list-style: none;
}
.lp-app2-donut-legend li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.lp-app2-donut-legend__color {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 2px;
}
.lp-app2-donut-legend__name {
  font-size: 14px;
  font-weight: bold;
  color: var(--lp-text);
  min-width: 110px;
}
.lp-app2-donut-legend__value {
  font-size: 14px;
  color: var(--lp-text-muted);
}
.lp-app2-donut-note {
  font-size: 12px;
  color: #aaa;
  margin-top: 16px;
}

/* Badges */
.lp-app2-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.lp-app2-badge {
  background: var(--lp-blue);
  color: #fff;
  border-radius: 999px;
  padding: 4px 16px;
  font-size: 13px;
  font-weight: bold;
}

/* Mid CTA */
.lp-app2-mid-cta {
  background: #fff;
  border: 2px solid var(--lp-orange);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.lp-app2-mid-cta__text {
  font-size: 16px;
  font-weight: bold;
  color: var(--lp-dark);
  margin: 0 0 16px !important;
}
.lp-app2-btn-mid,
.lp-app2-btn-mid:link,
.lp-app2-btn-mid:visited {
  display: inline-block;
  width: 280px;
  line-height: 48px;
  background: var(--lp-orange);
  color: #fff !important;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
  margin-bottom: 12px;
}
.lp-app2-btn-mid:hover,
.lp-app2-btn-mid:focus,
.lp-app2-btn-mid:active {
  opacity: 0.85;
  text-decoration: none;
  color: #fff !important;
}
.lp-app2-mid-cta__note {
  font-size: 12px;
  color: var(--lp-orange);
}

/* ---- Testimonials ---- */
.lp-app2-testimonials__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: var(--lp-dark);
  margin-bottom: 8px;
}
.lp-app2-testimonials__divider {
  width: 60px;
  height: 3px;
  background: var(--lp-blue);
  margin: 0 auto 24px;
}
.lp-app2-filter-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.lp-app2-filter-tag {
  font-size: 13px;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
}
.lp-app2-filter-tag:hover {
  border-color: #999;
}
.lp-app2-filter-tag--active {
  background: var(--lp-text);
  color: #fff;
  border-color: var(--lp-text);
}
.lp-app2-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.lp-app2-testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid var(--lp-border);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.lp-app2-testimonial-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.lp-app2-testimonial-card[data-hidden="true"] {
  display: none;
}
.lp-app2-testimonial__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 8px;
}
.lp-app2-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  overflow: hidden;
}
.lp-app2-testimonial__avatar svg {
  width: 28px;
  height: 28px;
}
.lp-app2-testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-app2-testimonial__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.lp-app2-testimonial__name-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-app2-testimonial__name {
  font-size: 14px;
  font-weight: bold;
  color: var(--lp-dark);
}
.lp-app2-testimonial__year {
  font-size: 12px;
  color: #999;
}
.lp-app2-testimonial__tag {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  padding: 2px 10px;
  border-radius: 999px;
}
.lp-app2-testimonial__highlight {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  color: var(--lp-orange);
}
.lp-app2-testimonial__body {
  padding: 0 20px 16px;
}
.lp-app2-testimonial__content {
  font-size: 13px;
  line-height: 1.8;
  color: var(--lp-text-light);
  margin-bottom: 8px;
}
.lp-app2-testimonial__content--collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lp-app2-testimonial__toggle {
  font-size: 12px;
  color: var(--lp-blue);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.lp-app2-testimonial__toggle:hover {
  text-decoration: underline;
}
.lp-app2-testimonials__more {
  text-align: center;
  margin-top: 32px;
}
.lp-app2-btn-outline {
  display: inline-block;
  text-decoration: none;
  color: var(--lp-blue);
  font-size: 14px;
  font-weight: bold;
  border: 1px solid var(--lp-blue);
  border-radius: 999px;
  padding: 10px 32px;
  transition: all 0.2s;
}
.lp-app2-btn-outline:hover {
  background: var(--lp-blue);
  color: #fff;
  text-decoration: none;
}

/* ---- Materials Tab Section ---- */
.lp-app2-materials {
  background: var(--lp-gray-bg);
}
.lp-app2-step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.lp-app2-step-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid var(--lp-border);
}
.lp-app2-step-card__header {
  padding: 12px 16px;
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.lp-app2-step-card__header--blue { background: var(--lp-blue-dark); }
.lp-app2-step-card__header--orange { background: var(--lp-orange); }
.lp-app2-step-card__header--green { background: var(--lp-green); }
.lp-app2-step-card__body {
  padding: 20px;
}
.lp-app2-step-card__title {
  font-size: 17px;
  font-weight: bold;
  color: var(--lp-dark);
  margin-bottom: 12px;
}
.lp-app2-step-card__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--lp-text-light);
  margin-bottom: 12px;
}
.lp-app2-step-card__features {
  list-style: none;
  font-size: 12px;
  color: #666;
}
.lp-app2-step-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
}
.lp-app2-step-card__dot--blue { color: var(--lp-blue-dark); }
.lp-app2-step-card__dot--orange { color: var(--lp-orange); }
.lp-app2-step-card__dot--green { color: var(--lp-green); }

/* Tabs */
.lp-app2-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 0;
}
.lp-app2-tab {
  flex: 1;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px 8px 0 0;
  border: 1px solid #d9e0ea;
  border-bottom: none;
  background: #fff;
  color: var(--lp-dark);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.lp-app2-tab--active {
  background: var(--lp-blue);
  color: #fff;
  border-color: var(--lp-blue);
}
.lp-app2-tab-content {
  background: #fff;
  border-radius: 0 0 8px 8px;
  padding: 32px;
}
.lp-app2-tab-panel {
  display: none;
}
.lp-app2-tab-panel--active {
  display: block;
}
.lp-app2-tab-panel h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--lp-dark);
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.lp-app2-tab-panel p {
  font-size: 16px;
  line-height: 1.8;
  white-space: pre-line;
}

/* ---- App Features Section ---- */
.lp-app2-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
/* セクション末尾に置かれた features-grid は、セクションの下padding と
   合算されると余白が冗長になるため margin-bottom を打ち消す */
.lp-app2-features-grid:last-child {
  margin-bottom: 0;
}
.lp-app2-feature-card {
  border-radius: 12px;
  padding: 20px;
}
.lp-app2-feature-card--merit {
  background: #f0f7ff;
  border: 1px solid #d0e3f7;
}
.lp-app2-feature-card--demerit {
  background: #fff8f5;
  border: 1px solid #f0d8cc;
}
.lp-app2-feature-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.lp-app2-feature-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  flex-shrink: 0;
}
.lp-app2-feature-card__num--blue { background: var(--lp-blue); }
.lp-app2-feature-card__num--orange { background: var(--lp-orange); }
.lp-app2-feature-card__title {
  font-size: 15px;
  font-weight: bold;
  color: var(--lp-dark);
}
.lp-app2-feature-card__text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--lp-text-light);
}

/* ---- Summary Section ---- */
/* summary はアプリ特徴セクション（白背景・全幅化なし）と同じ構造で運用 */
.lp-app2-summary-box {
  background: linear-gradient(180deg, #f3f8fd 0%, #eaf2fb 100%);
  border: 1px solid #d6e4f5;
  border-left: 4px solid var(--lp-blue);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 14px rgba(43, 92, 158, 0.08);
}
.lp-app2-summary-box ul {
  list-style: none;
}
.lp-app2-summary-box li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.8;
}
.lp-app2-summary-box li:last-child {
  margin-bottom: 0;
}
.lp-app2-summary-box__bullet {
  color: var(--lp-blue);
  flex-shrink: 0;
}

/* Final CTA */
.lp-app2-final-cta {
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, #e85612 0%, #d4470a 100%);
}
.lp-app2-final-cta__badge {
  display: inline-block;
  background: #fff;
  color: var(--lp-orange);
  font-size: 13px;
  font-weight: bold;
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.lp-app2-final-cta__title {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 24px !important;
}
.lp-app2-final-cta__list {
  display: block;
  width: fit-content;
  margin: 0 auto 24px !important;
  padding: 0 !important;
  text-align: left;
  list-style: none;
}
.lp-app2-final-cta__list li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
}
.lp-app2-btn-white,
.lp-app2-btn-white:link,
.lp-app2-btn-white:visited {
  display: inline-block;
  width: 320px;
  height: 56px;
  line-height: 56px;
  background: #fff;
  color: var(--lp-orange) !important;
  font-size: 18px;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: box-shadow 0.2s;
  margin-bottom: 12px;
  border: none;
  cursor: pointer;
}
.lp-app2-btn-white:hover,
.lp-app2-btn-white:focus,
.lp-app2-btn-white:active {
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  text-decoration: none;
  color: var(--lp-orange) !important;
}
.lp-app2-final-cta__note {
  font-size: 12px;
  color: #fff;
  opacity: 0.8;
}

/* ---- Related Articles ---- */
.lp-app2-related {
  padding: 32px 0;
}
.lp-app2-related__title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background: #444;
  padding: 12px 24px !important;
  margin: 50px 0 24px !important;
  border-radius: 5px;
}
.lp-app2-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-app2-related-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(128,128,128,0.1);
  text-decoration: none;
  color: var(--lp-text);
}
.lp-app2-related-card:hover {
  text-decoration: none;
}
.lp-app2-related-card img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  margin-bottom: 10px;
}
.lp-app2-related-card__title {
  display: block;
  font-size: 0.8em;
  line-height: 1.4em;
  padding: 0 8px 8px;
}
.lp-app2-post-list {
  list-style: none;
  padding-left: 16px;
  margin: 40px 0 0 !important;
}
.lp-app2-post-list li {
  position: relative;
  margin-bottom: 4px;
}
.lp-app2-post-list li::before {
  content: '⇒';
  position: absolute;
  left: -1em;
  color: #f76b1e;
}
.lp-app2-post-list a {
  color: var(--lp-blue);
  text-decoration: none;
  font-size: 14px;
}
.lp-app2-post-list a:hover {
  text-decoration: underline;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .lp-app2-hero {
    min-height: auto;
    display: flex;
    flex-direction: column; /* SP は縦積み: 上テキスト → 下写真 */
  }
  .lp-app2-hero__bg {
    /* 2026-06-08 FB: スマホでは写真の位置調整が難しいため、メインビジュアル写真を非表示にする */
    display: none;
  }
  .lp-app2-hero__content {
    padding: 20px;
    order: 1;
  }
  .lp-app2-hero__title {
    font-size: 30px;
  }
  .lp-app2-hero__subtitle {
    font-size: 16px;
  }
  .lp-app2-hero__cta-area {
    flex-direction: column;
    align-items: flex-start;
  }
  .lp-app2-lead,
  .lp-app2-coupon {
    padding-left: 0;
    padding-right: 0;
  }
  .lp-app2-testimonial-grid {
    grid-template-columns: 1fr;
  }
  .lp-app2-step-cards {
    grid-template-columns: 1fr;
  }
  .lp-app2-features-grid {
    grid-template-columns: 1fr;
  }
  .lp-app2-tabs {
    flex-direction: column;
  }
  .lp-app2-tab {
    border-radius: 8px;
    border: 1px solid #d9e0ea;
  }
  .lp-app2-tab--active {
    border-color: var(--lp-blue);
  }
  .lp-app2-donut-row {
    flex-direction: column;
  }
  .lp-app2-donut {
    width: 180px;
    height: 180px;
  }
  .lp-app2-donut__hole {
    width: 100px;
    height: 100px;
  }
  .lp-app2-donut__label-main {
    font-size: 18px;
  }
  .lp-app2-cycle__row {
    gap: 12px;
  }
  .lp-app2-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-app2-related-card img {
    height: auto;
  }
  .lp-app2-final-cta {
    padding: 32px 20px;
  }
  .lp-app2-btn-white,
  .lp-app2-btn-white:link,
  .lp-app2-btn-white:visited {
    width: 100% !important;
    max-width: 320px;
  }
  .lp-app2-btn-primary {
    padding: 14px 32px;
  }
  .lp-app2-badges {
    gap: 8px;
  }
  .lp-app2-h3 {
    margin-top: 28px !important;
  }
}
