@charset "utf-8";

/* =============================================
   lp3.css - PetVoice LP3 スタイルシート
   モバイル専用（max-width: 390px 中央寄せ）
   .lp3 スコープで全スタイルを管理
   ============================================= */

/* =============================================
   デザイントークン（CSS変数）
   ============================================= */
.lp3 {
  /* カラー */
  --color-blue: #036eb8;
  /* メインブルー */
  --color-beige: #faf7f1;
  /* 背景ベージュ */
  --color-light-blue: #eaf9ff;
  /* 背景ライトブルー */
  --color-brown: #6a5c52;
  /* ブラウン */
  --color-gold: #ac8600;
  /* ゴールド */
  --color-cta: #de8600;
  /* CTAオレンジ */
  --color-white: #ffffff;
  --color-dark: #333333;
  /* フッターダーク */
  --color-text: #333333;
  /* 本文テキスト */
  --color-text-sub: #6a5c52;
  /* サブテキスト（ブラウン） */

  --color-black: #000000;
  /* ブラック */
  --color-dark-brown: #342e2a;
  /* ダークブラウン */
  --color-overlay: rgba(0, 0, 0, 0.3);
  /* オーバーレイ */
  --color-white-20: rgba(255, 255, 255, 0.2);
  /* 白 20% */
  --color-white-50: rgba(255, 255, 255, 0.5);
  /* 白 50% */
  --color-white-70: rgba(255, 255, 255, 0.7);
  /* 白 70% */

  /* 角丸 */
  --radius-card: 8px;
  /* カード角丸 */
  --radius-btn: 99px;
  /* ボタン角丸 */

  --radius-sm: 4px;
  /* 小角丸 */
  --radius-md: 6px;
  /* 中角丸 */
  --radius-lg: 12px;
  /* 大角丸 */
  --radius-pill: 999px;
  /* ピル型 */

  /* パディング */
  --px-section: 24px;
  /* セクション左右パディング */
  --py-section: 48px;
  /* セクション上下パディング */


  /* フォントサイズ */
  --fs-8: 8px;
  --fs-11: 11px;
  --fs-12: 12px;
  --fs-13: 13px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-22: 22px;
  --fs-24: 24px;
  --fs-26: 26px;
  --fs-28: 28px;
  --fs-32: 32px;
  --fs-33: 33px;
  --fs-40: 40px;

  /* スペーシング */
  --sp-2: 2px;
  --sp-4: 4px;
  --sp-8: 8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-40: 40px;
  --sp-48: 48px;
  --sp-56: 56px;
  --sp-64: 64px;
  --sp-72: 72px;
  --sp-80: 80px;
  --sp-96: 96px;

  /* シャドウ */
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
  /* カード用シャドウ */
  --shadow-cta: 0 4px 16px rgba(222, 134, 0, 0.4);
  /* CTAボタン用シャドウ */

  /* フォント */
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  font-weight: 500;
  font-style: normal;
  /* YuGothic Medium */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  width: 100%;
  letter-spacing: 2px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  font-weight: 500;
  font-style: normal;
}

:where(section) p {
  letter-spacing: 0.06rem;
}

/* =============================================
   ベースレイアウト
   ============================================= */

/* モバイル専用コンテナ（max-width: 390px で中央寄せ） */
.lp3 {
  max-width: 390px;
  margin: 0 auto;
  overflow-x: hidden;
}

/* セクション共通 */
.lp3-section {
  width: 100%;
  position: relative;
}

/* コンテナ（各セクション内の左右パディング） */
.lp3-container {
  padding-left: var(--px-section);
  padding-right: var(--px-section);
}

/* =============================================
   背景カラーユーティリティ
   ============================================= */
.lp3-bg-beige {
  background-color: var(--color-beige);
}

.lp3-bg-light-blue {
  background-color: var(--color-light-blue);
}

.lp3-bg-white {
  background-color: var(--color-white);
}

/* =============================================
   テキストユーティリティ
   ============================================= */
.lp3-text-center {
  text-align: center;
}

/* 見出しフォント太さ */
.lp3-section-title,
.lp3-heading-md,
.lp3-heading-sm,
.lp3-text-bold {
  font-weight: 700;
  /* YuGothic Bold */
}

/* セクション見出し */
.lp3-section-title {
  font-size: var(--fs-22);
  line-height: 1.5;
  color: var(--color-text);
  margin: 0 0 var(--sp-16);
}

/* セクション説明文 */
.lp3-section-desc {
  font-size: var(--fs-14);
  line-height: 1.8;
  color: var(--color-text);
  margin: 0 0 var(--sp-24);
}

/* 中見出し */
.lp3-heading-md {
  font-size: var(--fs-18);
  line-height: 1.5;
  color: var(--color-text);
  margin: 0 0 var(--sp-12);
}

/* 小見出し */
.lp3-heading-sm {
  font-size: var(--fs-15);
  line-height: 1.5;
  color: var(--color-text);
  margin: 0 0 var(--sp-8);
}

/* 小テキスト */
.lp3-text-sm {
  font-size: var(--fs-13);
  line-height: 1.7;
  color: var(--color-text-sub);
}

/* =============================================
   スペーシングユーティリティ
   ============================================= */
.lp3-mb-8 {
  margin-bottom: var(--sp-8);
}

.lp3-mb-16 {
  margin-bottom: var(--sp-16);
}

.lp3-mb-24 {
  margin-bottom: var(--sp-24);
}

.lp3-mb-32 {
  margin-bottom: var(--sp-32);
}

.lp3-mb-48 {
  margin-bottom: var(--sp-48);
}

/* =============================================
   カード共通
   ============================================= */
.lp3-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* =============================================
   CTAボタン
   ============================================= */
.lp3-btn-cta {
  display: block;
  width: 100%;
  padding: var(--sp-24);
  background-color: var(--color-cta);
  /* オレンジ #de8600 */
  border-radius: var(--radius-btn);
  /* 角丸 99px */
  color: var(--color-white);
  font-size: var(--fs-16);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-cta);
  transition: opacity 0.2s ease;
}

.lp3-btn-cta:hover {
  opacity: 0.85;
}

/* CTA吹き出し付きボタン（共通） */
.lp3-cta-balloon-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp3-cta-balloon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border: 2px solid var(--color-cta);
  border-radius: var(--radius-sm);
  color: var(--color-cta);
  font-size: var(--fs-14);
  font-weight: bold;
  padding: var(--sp-4) var(--sp-12);
  transform: translateY(50%);
}

/* ========================================
   KV（キービジュアル）
   ======================================== */

/* KV全体 */
.lp3-kv {
  position: relative;
  height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-inline: 0;
  padding-bottom: 37.5px;
  padding-top: 75px;
}

/* 背景 */
.lp3-kv-bg {
  position: absolute;
  inset: 0;
}

.lp3-kv-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp3-kv-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

/* KVコンテンツ */
.lp3-kv-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* メインコピー */
.lp3-kv-title {
  font-size: var(--fs-28);
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-white);
  margin: var(--sp-16) 0 var(--sp-12);
}

/* サブコピー */
.lp3-kv-subtitle {
  font-size: var(--fs-18);
  line-height: 1.6;
  color: var(--color-white);
  margin: 0;
}

/* 下部エリア: バッジ+SS横並び */
.lp3-kv-bottom {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-16);
}

/* 信頼バッジ（縦並び、画像のみ） */
.lp3-kv-badges {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 140px;
  flex-shrink: 0;
}

.lp3-kv-badges img {
  width: 100%;
  height: auto;
  display: block;
}

/* アプリSS */
.lp3-kv-app {
  flex-shrink: 0;
  transform: translateY(37.5px);
}

.lp3-kv-app-img {
  width: 160px;
  height: 241px;
  display: block;
}

/* =============================================
   Section 2: 早期発見 (.lp3-early-detection)
   ============================================= */
.lp3-early-detection {
  padding: var(--py-section) 0;
}

/* カード（画像上部＋テキスト下部） */
.lp3-ed-card {
  /* .lp3-card の継承 */
}

/* カード内画像エリア */
.lp3-ed-card-img {
  height: 180px;
  /* 画像エリア高さ 180px */
  overflow: hidden;
  background: var(--color-beige);
}

.lp3-ed-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* カード内テキストエリア */
.lp3-ed-card-body {
  padding: var(--sp-24);
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}

/* 早期発見セクション タイトル */
.lp3-ed-title {
  font-size: var(--fs-32);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-blue);
  margin: 0 0 var(--sp-16);
  text-align: start;
}

/* 早期発見セクション 説明文 */
.lp3-ed-desc {
  font-size: var(--fs-15);
  line-height: normal;
  color: var(--color-black);
  margin: 0 0 var(--sp-32);
}

/* カード青ラベル */
.lp3-ed-card-label {
  font-size: var(--fs-15);
  font-weight: 700;
  color: var(--color-blue);
  margin: 0;
}

/* カードタイトル */
.lp3-ed-card-title {
  font-size: var(--fs-20);
  font-weight: 700;
  line-height: normal;
  color: var(--color-black);
  margin: 0;
  letter-spacing: 0.1px;
}

/* カード説明文 */
.lp3-ed-card-desc {
  font-size: var(--fs-15);
  line-height: normal;
  color: var(--color-black);
  margin: 0;
  letter-spacing: 0.1px;
}

/* =============================================
   Section 3: スマート首輪 (.lp3-smart-collar)
   ============================================= */
.lp3-smart-collar {
  padding: var(--sp-48) 0 var(--sp-32);
}

/* 「だからこそ」ラベル */
.lp3-sc-label {
  display: inline-block;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  font-size: var(--fs-14);
  font-weight: 700;
  line-height: 1.5;
  padding: var(--sp-4) var(--sp-12);
  margin-bottom: var(--sp-16);
}

/* セクション3専用タイトル */
.lp3-sc-title {
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-blue);
  text-align: center;
  margin: 0 0 var(--sp-16);
}

.lp3-sc-title-large {
  font-size: var(--fs-32);
}

.lp3-sc-title-small {
  font-size: var(--fs-24);
}

/* 製品画像エリア */
.lp3-sc-product {
  position: relative;
  width: 320px;
  height: 290px;
  margin: var(--sp-16) auto 0;
}

/* 青い円形背景 */
.lp3-sc-product-circle {
  position: absolute;
  width: 230px;
  height: 230px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 1px));
  /* ling.png画像に置き換え。背景色・border-radiusは不要 */
  object-fit: contain;
}

/* 製品画像 */
.lp3-sc-product-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* =============================================
   Section 4: モニタリング (.lp3-monitoring)
   ============================================= */
.lp3-monitoring {
  padding: var(--sp-40) 0;
}

/* 大見出し（「24時間365日」） */
.lp3-mon-lead {
  font-size: var(--fs-40);
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.75;
  margin: 0;
}

/* モニタリングタイトル */
.lp3-mon-title {
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.75;
  color: var(--color-blue);
  margin: 0;
  text-align: start;
}

/* モニタリング説明文 */
.lp3-mon-desc {
  font-size: var(--fs-18);
  font-weight: 700;
  line-height: normal;
  color: var(--color-blue);
  margin: var(--sp-16) 0 0;
}

/* hero動画エリア */
.lp3-mon-video-wrap {
  margin: var(--sp-16) 0 0;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.lp3-mon-video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

/* 特許取得画像エリア */
.lp3-mon-patent {
  margin: var(--sp-24) 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--sp-16);
}

.lp3-mon-patent-img {
  width: 160px;
  height: auto;
  display: block;
}

/* 特許説明文 */
.lp3-mon-patent-desc {
  font-size: var(--fs-15);
  font-weight: 700;
  line-height: 1.75;
  color: var(--color-black);
  margin: 0;
  letter-spacing: 0.1px;
}

/* =============================================
   Section 5-6: 特徴セクション (.lp3-features)
   ============================================= */
.lp3-features {
  padding: 0;
  padding-bottom: var(--py-section);
  display: flex;
  flex-direction: column;
  gap: var(--py-section);
  /* item間 = 元のセクション間padding相当 */
}

.lp3-features-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-32);
}

/* ラベル */
.lp3-features-label {
  font-size: var(--fs-18);
  font-weight: 700;
  color: var(--color-blue);
  margin: 0;
}

/* 見出し */
.lp3-features-title {
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: normal;
  color: var(--color-black);
  margin: var(--sp-12) 0 0;
  text-align: start;
  letter-spacing: 0.2px;
}

/* 説明文 */
.lp3-features-desc {
  font-size: var(--fs-15);
  line-height: normal;
  color: var(--color-black);
  margin: var(--sp-12) 0 0;
}

/* 画像エリア（高さ固定） */
.lp3-features-img {
  height: 205px;
  overflow: hidden;
}

.lp3-features-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Section 7: 救われた命 */
.lp3-lives-saved {
  background: linear-gradient(-33.7deg, var(--color-dark-brown) 0%, var(--color-blue) 100%);
  padding: var(--sp-48) 0;
}

.lp3-ls-title {
  font-size: var(--fs-22);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
  margin: 0 0 var(--sp-32);
  padding: 0 var(--sp-24);
}

.lp3-ls-slider {
  padding: 0 var(--sp-24);
}

.lp3-ls-card-header {
  display: flex;
  align-items: center;
  background: var(--color-white-20);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--sp-24);
}

.lp3-ls-card-photo {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
}

.lp3-ls-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp3-ls-card-info {
  padding: 0 var(--sp-16);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.lp3-ls-card-name {
  font-size: var(--fs-18);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.5;
  margin: 0;
}

.lp3-ls-card-disease {
  font-size: var(--fs-16);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.5;
  margin: 0;
}

.lp3-ls-card-text {
  font-size: var(--fs-14);
  line-height: 1.75;
  color: var(--color-white);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Slickドット */
.lp3-lives-saved .slick-dots {
  position: static;
}

.slick-dots li {
  margin: 0 1px;
}

.lp3-lives-saved .slick-dots li button:before {
  color: var(--color-white-50);
  font-size: var(--fs-12);
}

.lp3-lives-saved .slick-dots li.slick-active button:before {
  color: var(--color-white);
}

/* ==========================================
   Section 8: 料金 (Figma準拠)
   ========================================== */

.lp3-price {
  padding: var(--py-section) 0;
}

/* タイトル・説明文 */
.lp3-price-title {
  font-size: var(--fs-32);
  font-weight: bold;
  color: var(--color-blue);
  line-height: 1.3;
  text-align: left;
  margin-bottom: var(--sp-16);
}

.lp3-price-subtitle {
  font-size: var(--fs-15);
  color: var(--color-black);
  text-align: left;
  margin-bottom: var(--sp-24);
  letter-spacing: 0.2px;
}

/* 比較テーブル見出し */
.lp3-price-compare-title {
  font-size: var(--fs-20);
  font-weight: bold;
  text-align: start;
  margin-bottom: var(--sp-24);
  color: var(--color-text);
  letter-spacing: 0.2px;
}

/* 比較グリッド */
.lp3-price-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-40);
}

/* ヘッダー行 */
.lp3-price-grid-header {
  display: flex;
  margin-left: 48px;
  gap: var(--sp-2);
}

.lp3-price-grid-header .lp3-price-grid-cell {
  flex: 1;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-18);
  font-weight: bold;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* データ行 */
.lp3-price-grid-row {
  display: flex;
  gap: var(--sp-2);
  height: 96px;
}

.lp3-price-grid-row-last .lp3-price-grid-cell {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* 行ラベル（縦書き） */
.lp3-price-grid-label {
  width: 48px;
  min-width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-14);
  font-weight: bold;
  color: var(--color-text);
  background-color: var(--color-white);
  gap: 0;
}

/* セル共通 */
.lp3-price-grid-cell {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--fs-14);
  line-height: 1.5;
  padding: var(--sp-4);
}

/* PetVoice列 */
.lp3-price-grid-pv {
  background-color: var(--color-light-blue);
  color: var(--color-blue);
}

/* 獣医列 */
.lp3-price-grid-vet {
  background-color: var(--color-brown);
  color: var(--color-white);
}

/* 価格+注釈の縦並びラッパー */
.lp3-price-grid-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 数値+単位ラッパー — 下端揃え */
.lp3-price-grid-price {
  display: inline-flex;
  align-items: flex-end;
}

/* 数値テキスト */
.lp3-price-grid-num {
  font-size: var(--fs-32);
  font-weight: bold;
  line-height: 1;
}

.lp3-price-grid-num-lg {
  font-size: var(--fs-33);
}

.lp3-price-grid-unit {
  font-size: var(--fs-18);
}

.lp3-price-grid-note {
  font-size: var(--fs-8);
  display: block;
  margin-top: var(--sp-4);
  line-height: 1.4;
}

/* ==========================================
   導入セットカード
   ========================================== */
.lp3-price-set-card {
  margin-bottom: var(--sp-24);
}

.lp3-price-set-img {
  width: 100%;
  margin-bottom: 0;
}

.lp3-price-set-img img {
  width: 100%;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.lp3-price-set-body {
  padding: var(--sp-24);
  display: flex;
  flex-direction: column;
  gap: var(--sp-24);
}

/* バッジ + タイトル */
.lp3-price-set-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
}

.lp3-price-set-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: var(--fs-16);
  font-weight: bold;
  width: 200px;
  padding-block: var(--sp-4);
  border-radius: var(--radius-btn);
}

.lp3-price-set-badge::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--color-blue);
}

.lp3-price-set-title {
  font-size: var(--fs-26);
  font-weight: bold;
  color: var(--color-text);
  line-height: 1.3;
}

/* チェックリスト */
.lp3-price-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}

.lp3-price-check-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-8);
}

.lp3-price-check-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-top: 2px;
}

.lp3-price-check-item span {
  font-size: var(--fs-16);
  font-weight: bold;
  color: var(--color-blue);
  line-height: 1.5;
}

/* 区切り線 */
.lp3-price-divider {
  border: none;
  border-top: 1px solid var(--color-light-blue);
  margin: 0;
}

/* 価格ピル */
.lp3-price-pills {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: repeat(4, auto);
  gap: var(--sp-8) var(--sp-12);
  align-items: center;
  justify-items: center;
}

.lp3-price-pills-plus {
  font-size: var(--fs-16);
  font-weight: bold;
  color: var(--color-text);
  align-self: center;
}

.lp3-price-pill-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  padding: var(--sp-12) 10px;
  background-color: var(--color-light-blue);
  border-radius: var(--radius-pill);
  font-size: var(--fs-14);
  font-weight: bold;
  color: var(--color-blue);
  line-height: 1.3;
}

.lp3-price-pill-original {
  font-size: var(--fs-20);
  font-weight: bold;
  color: var(--color-brown);
  text-decoration: line-through;
  margin: 0;
}

.lp3-price-pill-badge {
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: var(--fs-12);
  font-weight: bold;
  padding: var(--sp-2) var(--sp-8);
  border-radius: var(--radius-sm);
}

.lp3-price-pill-value {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
}

.lp3-price-pill-num {
  font-size: var(--fs-32);
  font-weight: bold;
  color: var(--color-blue);
  line-height: 1;
}

.lp3-price-pill-unit {
  font-size: var(--fs-16);
  font-weight: bold;
  color: var(--color-blue);
}

.lp3-price-pill-note {
  font-size: var(--fs-8);
  color: var(--color-black);
  line-height: 1.4;
  display: block;
  text-align: left;
  justify-self: start;
}


/* CTAサイズ指定（price用） */
.lp3-price-cta {
  width: 260px;
  font-size: var(--fs-24);
}

/* ==========================================
   月額パックカード（新規）
   ========================================== */
.lp3-price-monthly-card {
  text-align: center;
}

.lp3-price-monthly-body {
  padding: var(--sp-24);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-12);
}

.lp3-price-monthly-title {
  font-size: var(--fs-20);
  font-weight: bold;
  color: var(--color-text);
  text-align: center;
}

.lp3-price-monthly-desc {
  font-size: var(--fs-15);
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  line-height: 1.6;
}

.lp3-price-monthly-cta {
  width: 260px;
  font-size: var(--fs-20);
  font-weight: bold;
  padding: var(--sp-16) var(--sp-24);
}

/* ==========================================
   Section 9: よくある質問
   ========================================== */

.lp3-question {
  padding: var(--py-section) 0 var(--sp-96);
}

/* タイトル */
.lp3-qa-title {
  font-size: var(--fs-32);
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.3;
  text-align: start;
  margin-bottom: var(--sp-24);
}

/* Q&Aリスト（カード型） */
.lp3-qa-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}

/* カード */
.lp3-qa-card {
  background-color: var(--color-beige);
  border-radius: var(--radius-card);
  overflow: hidden;
}

/* 質問行 */
.lp3-qa-question {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: var(--sp-16);
  cursor: pointer;
  user-select: none;
}

/* Q アイコン */
.lp3-qa-icon-q {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background-color: var(--color-light-blue);
  color: var(--color-blue);
  font-size: var(--fs-16);
  font-weight: 700;
}

/* 質問テキスト */
.lp3-qa-question-text {
  flex: 1;
  font-size: var(--fs-15);
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.5;
  margin: 0;
}

/* トグルアイコン（CSS描画） */
.lp3-qa-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  position: relative;
}

.lp3-qa-toggle::before,
.lp3-qa-toggle::after {
  content: '';
  position: absolute;
  background-color: var(--color-blue);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 縦棒（+の縦） */
.lp3-qa-toggle::before {
  width: 2px;
  height: 14px;
}

/* 横棒 */
.lp3-qa-toggle::after {
  width: 14px;
  height: 2px;
}

/* 開いた状態：縦棒を非表示にして - にする */
.lp3-qa-card.is-open .lp3-qa-toggle::before {
  transform: rotate(90deg);
  opacity: 0;
}

/* 回答エリア（デフォルト非表示） */
.lp3-qa-answer {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 11px;
  padding: 0 var(--sp-16);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}

/* 開いた状態 */
.lp3-qa-card.is-open .lp3-qa-answer {
  max-height: 400px;
  padding: var(--sp-8) var(--sp-16) var(--sp-16) var(--sp-16);
  opacity: 1;
}

/* A アイコン */
.lp3-qa-icon-a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background-color: var(--color-blue);
  color: var(--color-light-blue);
  font-size: var(--fs-16);
  font-weight: 700;
}

/* 回答テキスト */
.lp3-qa-answer-text {
  flex: 1;
  font-size: var(--fs-15);
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.6;
  margin: 0;
  padding-top: 6px;
}

/* 回答注記 */
.lp3-qa-answer-note {
  flex: 0 0 100%;
  padding-left: 43px;
  /* 32px icon + 11px gap */
  font-size: var(--fs-13);
  font-weight: 400;
  color: var(--color-blue);
  margin-top: -4px;
}

/* =============================================
   フッター (.lp3-footer 想定)
   ダーク背景 #333
   ============================================= */
.lp3-footer {
  background: var(--color-dark);
  /* #333333 */
  padding: var(--sp-32) var(--px-section);
  color: var(--color-white-70);
  text-align: center;
}

.lp3-footer a {
  color: var(--color-white-70);
  text-decoration: none;
  font-size: var(--fs-12);
}

.lp3-footer a:hover {
  color: var(--color-white);
}

.lp3-footer-nav {
  display: flex;
  justify-content: center;
  gap: var(--sp-16);
  flex-wrap: wrap;
  margin-bottom: var(--sp-16);
}

.lp3-footer-copy {
  font-size: var(--fs-11);
  color: var(--color-white-50);
  margin: 0;
}