/* hub.css — ふぉと358 共通デザインシステム（index/lesson 等で共有・テーマ変数対応） */
/* ===== ハブページ V88 専用スタイル ===== */

/* セクション間ディバイダー（金線・装飾的） */
section:not(.hub-hero) + section:not(.hub-hero)::before,
section:not(.hub-hero) + div + section::before { content: ''; }
.section-divider { display: flex; align-items: center; justify-content: center; padding: 12px 0; background: var(--white); }
.section-divider::before, .section-divider::after { content: ''; flex: 1; max-width: 120px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.section-divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
.section-divider span { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; margin: 0 16px; }

/* セクション背景の明確化（コントラスト強化版） */
.hub-pain { background: linear-gradient(180deg, var(--bg) 0%, #F5F1EA 100%); }
.hub-portfolio { background: linear-gradient(180deg, var(--cream) 0%, #FFEEDC 100%); }
.hub-character { background: var(--white); }
.hub-position { background: linear-gradient(180deg, #F5F1EA 0%, var(--bg) 100%); }
.hub-voices { background: linear-gradient(180deg, #FFFFFF 0%, var(--cream) 100%); }
.about-hub { background: var(--bg); }
.hub-faq { background: linear-gradient(180deg, var(--cream) 0%, #FFFFFF 100%); }
.services { background: var(--white); }
.hub-subsidy { background: linear-gradient(180deg, #FFFAF0 0%, #FFEEDC 100%); }

/* ロゴをリンク化 */
.site-header .logo { text-decoration: none; cursor: pointer; }
.site-header .logo:hover .logo-mark { opacity: 0.85; }

/* ハンバーガーメニュー（モバイル用） */
.nav-toggle { display: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 8px; border-radius: 8px; transition: background .2s; }
.nav-toggle:hover { background: rgba(0,0,0,0.04); }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: all .3s; }
.nav-toggle-checkbox:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle-checkbox:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-toggle-checkbox:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; order: 3; }
  .nav { position: fixed; top: 0; right: -100%; width: 280px; max-width: 85vw; height: 100vh; background: var(--white); flex-direction: column; gap: 0; padding: 88px 32px 32px; box-shadow: -8px 0 32px rgba(0,0,0,0.12); transition: right .35s cubic-bezier(.4,0,.2,1); z-index: 99; align-items: stretch !important; }
  .nav a { padding: 18px 0; font-size: 17px; border-bottom: 1px solid var(--lg); color: var(--dark); }
  .nav a:last-child { margin-top: 16px; border-bottom: none; }
  .nav-cta { background: var(--red) !important; color: var(--white) !important; text-align: center; border-radius: 24px !important; padding: 14px 24px !important; box-shadow: var(--sh-r); }
  .nav-toggle-checkbox:checked ~ .nav { right: 0; }
  .nav-toggle-checkbox:checked ~ .nav-toggle { position: fixed; top: 18px; right: 24px; z-index: 100; }
  /* オーバーレイ */
  .nav-toggle-checkbox:checked ~ .nav::before { content: ''; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: -1; }
}

/* セクションタイトル強化 */

/* セクションタイトル強化 */
.section-label { display: inline-block; padding: 8px 20px; background: var(--white); color: var(--red); border: 2px solid var(--red); border-radius: 28px; font-size: 11px; font-weight: 800; letter-spacing: 0.2em; margin-bottom: 20px; text-transform: uppercase; box-shadow: var(--sh-s); }
.section-title { font-size: clamp(28px, 4.6vw, 48px); font-weight: 900; letter-spacing: -0.01em; }
.section-title::after { width: 100px; height: 5px; }

/* ===== HERO（背景演出強化・派手化） ===== */
.hub-hero { padding: 90px 0 120px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--cream) 0%, #FFEAE6 35%, #FFD9C2 70%, #FFCFB5 100%); }
.hub-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(ellipse at 10% 20%, rgba(255,255,255,0.7) 0%, transparent 40%), radial-gradient(ellipse at 90% 80%, rgba(201,130,12,0.25) 0%, transparent 50%), radial-gradient(ellipse at 50% 50%, rgba(255,232,236,0.4) 0%, transparent 60%); }
.hub-hero::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(201,130,12,0.4) 1px, transparent 1px); background-size: 32px 32px; opacity: 0.15; pointer-events: none; }
.hub-hero-particle { position: absolute; pointer-events: none; }
.hub-hero-particle-1 { top: 15%; right: 8%; width: 120px; height: 120px; border: 2px solid var(--gold); border-radius: 50%; opacity: 0.3; }
.hub-hero-particle-2 { bottom: 18%; left: 5%; width: 80px; height: 80px; background: linear-gradient(135deg, var(--gold) 0%, transparent 100%); border-radius: 50%; opacity: 0.4; filter: blur(20px); }
.hub-hero-particle-3 { top: 50%; right: 15%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(244,78,60,0.15) 0%, transparent 70%); border-radius: 50%; filter: blur(40px); }
.hub-hero .container { position: relative; z-index: 1; }
.hub-hero-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; margin-bottom: 56px; }
.hub-hero-visual { position: relative; }
.hub-hero-photo { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--sh-l); aspect-ratio: 4 / 5; background: var(--cream); }
.hub-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hub-hero-photo-deco { position: absolute; top: -16px; left: -16px; width: 100%; height: 100%; border-radius: 24px; background: linear-gradient(135deg, var(--gold) 0%, var(--red) 100%); z-index: -1; }
.hub-hero-text { text-align: left; }
.hub-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: var(--white); border-radius: 24px; font-size: 13px; color: var(--gray); margin-bottom: 24px; box-shadow: var(--sh-s); font-weight: 600; }
.hub-hero-eyebrow .badge-dot { background: var(--red); }
.hub-hero-title { font-size: clamp(36px, 5.2vw, 68px); font-weight: 900; line-height: 1.25; margin-bottom: 24px; letter-spacing: -0.01em; }
.hub-hero-title .accent-red { color: var(--red); position: relative; display: inline-block; }
.hub-hero-title .accent-red::after { content: ''; position: absolute; bottom: -6px; left: 0; right: 0; height: 12px; background: linear-gradient(90deg, transparent, rgba(201,130,12,.45), transparent); z-index: -1; }
.hub-hero-title .accent-tq { color: var(--tq-dark); }
.hub-hero-sub { font-size: clamp(16px, 1.9vw, 19px); line-height: 1.9; color: var(--dark); margin-bottom: 28px; }
.hub-hero-formula { display: inline-flex; align-items: center; gap: 12px; padding: 14px 28px; background: var(--white); border: 2px dashed var(--gold); border-radius: 32px; font-size: 17px; font-weight: 700; color: var(--gold-dark); margin-bottom: 36px; letter-spacing: 0.05em; }
.hub-hero-formula .formula-x { color: var(--red); font-size: 19px; font-weight: 800; }
.hub-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hub-hero-trust { display: flex; align-items: center; gap: 14px; padding: 14px 20px; background: var(--white); border-radius: 16px; box-shadow: var(--sh-s); font-size: 14px; color: var(--gray); }
.hub-hero-trust .stars { color: var(--gold); font-size: 18px; letter-spacing: 0.1em; }
.hub-hero-trust strong { color: var(--dark); }

/* ===== STATS STRIP（クリーム×ゴールドの上品仕様） ===== */
.hub-stats { background: linear-gradient(180deg, var(--cream) 0%, #FFFAF0 100%); padding: 64px 0; position: relative; overflow: hidden; }
.hub-stats::before, .hub-stats::after { content: ''; position: absolute; height: 3px; left: 0; right: 0; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.5; }
.hub-stats::before { top: 0; }
.hub-stats::after { bottom: 0; }
.hub-stats-deco { position: absolute; pointer-events: none; opacity: 0.08; font-size: 280px; line-height: 1; font-weight: 800; color: var(--gold); top: 50%; transform: translateY(-50%); letter-spacing: -0.05em; }
.hub-stats-deco-l { left: -60px; }
.hub-stats-deco-r { right: -60px; }
.hub-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: var(--max); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.hub-stat { text-align: center; padding: 8px 16px; position: relative; }
.hub-stat:not(:last-child)::after { content: ''; position: absolute; right: -12px; top: 20%; bottom: 20%; width: 1px; background: linear-gradient(180deg, transparent, var(--gold) 50%, transparent); opacity: 0.4; }
.hub-stat-num { font-size: clamp(36px, 4.5vw, 56px); font-weight: 800; color: var(--gold-dark); line-height: 1.05; margin-bottom: 10px; letter-spacing: 0.02em; font-family: Georgia, "Yu Mincho", "游明朝", serif; }
.hub-stat-num .stat-unit { font-size: 0.45em; color: var(--gold); margin-left: 4px; font-weight: 600; font-family: var(--font); }
.hub-stat-label { font-size: 13px; color: var(--gray); letter-spacing: 0.08em; font-weight: 600; writing-mode: horizontal-tb; word-break: keep-all; overflow-wrap: anywhere; }
@media (max-width: 768px) {
  .hub-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 12px; padding: 0 16px; }
  .hub-stat { padding: 8px 4px; }
  .hub-stat:not(:last-child)::after { display: none; }
  .hub-stat-label { font-size: 12px; letter-spacing: 0.02em; line-height: 1.5; }
  .hub-stat-num { font-size: clamp(34px, 11vw, 48px); }
}
@media (max-width: 380px) {
  .hub-stats-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ===== IDEAL（ゴールド左帯・縦構成カード） ===== */
.hub-pain { background: var(--bg); }
.hub-pain .container { text-align: center; }
.hub-pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 56px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.hub-pain-card { background: var(--white); padding: 32px 28px; border-radius: var(--rl); text-align: left; box-shadow: var(--sh-s); transition: all .3s; border-left: 5px solid var(--gold); position: relative; overflow: hidden; }
.hub-pain-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(180deg, var(--gold) 0%, var(--red) 100%); transform: scaleY(0); transform-origin: top; transition: transform .4s; }
.hub-pain-card:hover { transform: translateY(-6px); box-shadow: var(--sh-m); }
.hub-pain-card:hover::before { transform: scaleY(1); }
.hub-pain-icon { font-size: 44px; line-height: 1; margin-bottom: 16px; display: block; }
.hub-pain-text { font-size: 16px; line-height: 1.85; color: var(--dark); font-weight: 500; }
.hub-pain-text strong { color: var(--red); }
.hub-pain-conclusion { margin-top: 48px; padding: 32px; background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%); border-radius: var(--rl); border-left: 6px solid var(--red); max-width: 800px; margin-left: auto; margin-right: auto; text-align: left; }
.hub-pain-conclusion p { font-size: 17px; line-height: 1.95; color: var(--dark); }
.hub-pain-conclusion strong { color: var(--red); }

/* ===== SERVICES ===== */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 48px; }
.service-card { background: var(--bg); border-radius: var(--rl); text-align: left; transition: all .4s; border: 2px solid transparent; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gr); transform: scaleX(0); transform-origin: left; transition: transform .4s; z-index: 2; }
.service-card:hover { background: var(--white); border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--sh-m); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-img { aspect-ratio: 16 / 10; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--cream) 0%, #FFEAE6 50%, #FFD9C2 100%); }
.service-card-img::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.6) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(201,130,12,0.2) 0%, transparent 40%); }
.service-card-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(180deg, transparent 0%, rgba(255,248,234,0.4) 100%); }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.service-card-img-placeholder { font-size: 72px; opacity: 0.35; position: relative; z-index: 1; filter: drop-shadow(0 4px 12px rgba(201,130,12,0.3)); }
@media (max-width: 900px) {
  .service-card-img { aspect-ratio: 4 / 3; }
  .service-card-img-placeholder { font-size: 88px; }
}
.service-card-body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.service-icon { font-size: 44px; margin-bottom: 12px; line-height: 1; }
.service-card h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.service-card .service-tag { display: inline-block; font-size: 11px; color: var(--tq-dark); background: var(--tq-light); padding: 4px 10px; border-radius: 12px; margin-bottom: 14px; font-weight: 600; letter-spacing: 0.05em; align-self: flex-start; }
.service-card p { font-size: 14px; line-height: 1.85; color: var(--gray); margin-bottom: 18px; flex: 1; }
.service-features { list-style: none; padding: 0; margin: 0 0 20px; font-size: 13px; color: var(--dark); }
.service-features li { padding: 3px 0 3px 22px; position: relative; }
.service-features li::before { content: '✓'; position: absolute; left: 0; color: var(--tq); font-weight: 700; }
.service-link { font-size: 14px; color: var(--red); font-weight: 700; padding-top: 14px; border-top: 1px solid var(--lg); transition: gap .2s; display: inline-flex; align-items: center; gap: 6px; }
.service-card:hover .service-link { gap: 12px; }
.service-card.featured { background: linear-gradient(135deg, var(--cream) 0%, #FFF 100%); border-color: var(--gold); }
.service-card .service-badge { position: absolute; top: 16px; right: 16px; font-size: 10px; background: var(--gold); color: var(--white); padding: 4px 10px; border-radius: 12px; font-weight: 700; letter-spacing: 0.1em; z-index: 3; }
.service-card .service-trust { font-size: 11px; color: var(--gold-dark); margin-top: 10px; font-weight: 600; }

/* ===== 2026補助金活用セクション ===== */
.hub-subsidy { background: linear-gradient(180deg, var(--cream) 0%, #FFFAF0 100%); position: relative; overflow: hidden; }
.hub-subsidy::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, transparent, var(--gold), var(--red), var(--gold), transparent); }
.hub-subsidy .container { text-align: center; }
.hub-subsidy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; max-width: 900px; margin-left: auto; margin-right: auto; text-align: left; }
.hub-subsidy-card { background: var(--white); padding: 36px 32px; border-radius: var(--rl); box-shadow: var(--sh-s); border: 2px solid transparent; transition: all .3s; position: relative; }
.hub-subsidy-card:hover { transform: translateY(-6px); box-shadow: var(--sh-m); border-color: var(--gold); }
.hub-subsidy-card-featured { background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%); border-color: var(--gold); }
.hub-subsidy-badge { position: absolute; top: -10px; left: 24px; background: var(--gold); color: var(--white); font-size: 11px; font-weight: 800; padding: 5px 14px; border-radius: 14px; letter-spacing: 0.1em; }
.hub-subsidy-badge-new { background: var(--red); }
.hub-subsidy-icon { font-size: 48px; line-height: 1; margin-bottom: 14px; margin-top: 8px; }
.hub-subsidy-card h3 { font-size: 20px; font-weight: 800; color: var(--dark); line-height: 1.4; margin-bottom: 18px; }
.hub-subsidy-features { list-style: none; padding: 0; margin-bottom: 18px; }
.hub-subsidy-features li { padding: 6px 0 6px 22px; position: relative; font-size: 14px; line-height: 1.7; }
.hub-subsidy-features li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 10px; top: 9px; }
.hub-subsidy-features strong { color: var(--red); font-size: 1.05em; }
.hub-subsidy-note { font-size: 13px; color: var(--gray); line-height: 1.85; padding-top: 16px; border-top: 1px solid var(--lg); margin-bottom: 14px; }
.hub-subsidy-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--red); font-weight: 700; transition: gap .2s; }
.hub-subsidy-link:hover { gap: 12px; }
.hub-subsidy-disclaimer { max-width: 800px; margin: 48px auto 0; background: var(--white); padding: 28px 32px; border-radius: var(--rl); border-left: 5px solid var(--tq); text-align: left; }
.hub-subsidy-disclaimer p { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.hub-subsidy-disclaimer ol { padding-left: 24px; margin-bottom: 18px; font-size: 14px; line-height: 1.85; color: var(--dark); }
.hub-subsidy-disclaimer ol li { margin-bottom: 6px; }
.hub-subsidy-small { font-size: 11.5px !important; color: var(--gray) !important; line-height: 1.75 !important; font-weight: 400 !important; padding-top: 12px; border-top: 1px dashed var(--lg); }
@media (max-width: 768px) {
  .hub-subsidy-grid { grid-template-columns: 1fr; }
  .hub-subsidy-card { padding: 32px 24px; }
  .hub-subsidy-disclaimer { padding: 24px 22px; }
}

/* ===== PHOTO PORTFOLIO（マゾニックレイアウト） ===== */
.hub-portfolio { background: var(--bg); }
.hub-portfolio .container { text-align: center; }
.hub-portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 12px; margin-top: 56px; max-width: 1140px; margin-left: auto; margin-right: auto; }
.hub-portfolio-item { background: var(--lg); border-radius: var(--r); overflow: hidden; position: relative; transition: all .3s; cursor: pointer; }
.hub-portfolio-item:hover { transform: translateY(-4px); box-shadow: var(--sh-m); }
.hub-portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.hub-portfolio-item:hover img { transform: scale(1.06); }
/* マゾニック配置 */
.hub-portfolio-item.size-big { grid-column: span 2; grid-row: span 2; }
.hub-portfolio-item.size-wide { grid-column: span 2; }
.hub-portfolio-item.size-tall { grid-row: span 2; }
.hub-portfolio-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 18px; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%); color: var(--white); font-size: 13px; font-weight: 600; opacity: 0; transition: opacity .3s; }
.hub-portfolio-item:hover .hub-portfolio-caption { opacity: 1; }
@media (max-width: 768px) {
  .hub-portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 10px; }
  .hub-portfolio-item.size-big { grid-column: span 2; grid-row: span 2; }
  .hub-portfolio-item.size-wide { grid-column: span 2; grid-row: span 1; }
  .hub-portfolio-item.size-tall { grid-column: span 1; grid-row: span 2; }
}

/* ===== ポートフォリオ下の食べ物専門サイト誘導 ===== */
.hub-portfolio-food-link { display: flex; align-items: center; gap: 24px; max-width: 760px; margin: 56px auto 0; padding: 28px 36px; background: linear-gradient(135deg, var(--dark) 0%, #2D2D2D 100%); color: var(--white); border-radius: 20px; text-decoration: none; transition: all .4s; box-shadow: var(--sh-m); position: relative; overflow: hidden; }
.hub-portfolio-food-link::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 0%, rgba(201,130,12,0.2) 50%, transparent 100%); transform: translateX(-100%); transition: transform .8s; }
.hub-portfolio-food-link:hover { transform: translateY(-4px); box-shadow: var(--sh-l); }
.hub-portfolio-food-link:hover::before { transform: translateX(100%); }
.hub-portfolio-food-icon { font-size: 48px; line-height: 1; flex-shrink: 0; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); }
.hub-portfolio-food-text { flex: 1; min-width: 0; }
.hub-portfolio-food-label { font-size: 10px; font-weight: 800; letter-spacing: 0.25em; color: var(--gold); margin-bottom: 6px; }
.hub-portfolio-food-title { font-size: 18px; font-weight: 700; line-height: 1.4; margin-bottom: 4px; color: var(--white); }
.hub-portfolio-food-sub { font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.hub-portfolio-food-arrow { font-size: 28px; font-weight: 700; color: var(--gold); transition: transform .25s; flex-shrink: 0; }
.hub-portfolio-food-link:hover .hub-portfolio-food-arrow { transform: translateX(6px); }
@media (max-width: 600px) {
  .hub-portfolio-food-link { flex-direction: column; text-align: center; padding: 28px 24px; gap: 16px; }
  .hub-portfolio-food-arrow { display: none; }
}

/* ===== CHARACTER GALLERY（4枚均等＋下に独立口コミ） ===== */
.hub-character { background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%); }
.hub-character .container { text-align: center; }
.hub-character-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.hub-character-item { position: relative; background: var(--white); border-radius: var(--rl); overflow: hidden; transition: all .4s; cursor: pointer; box-shadow: var(--sh-s); border: 2px solid transparent; }
.hub-character-item:hover { transform: translateY(-8px); box-shadow: var(--sh-l); border-color: var(--gold); }
.hub-character-item-img { width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--cream); position: relative; }
.hub-character-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.hub-character-item:hover .hub-character-item-img img { transform: scale(1.05); }
.hub-character-item-info { padding: 14px 16px 18px; text-align: left; }
.hub-character-item-name { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
.hub-character-item-cat { font-size: 11px; color: var(--gray); }
.hub-character-item-badge { position: absolute; top: 10px; right: 10px; background: var(--gold); color: var(--white); font-size: 9px; font-weight: 800; padding: 4px 9px; border-radius: 10px; letter-spacing: 0.1em; z-index: 2; box-shadow: var(--sh-s); }

/* AVANTYマスター実例の声（独立した引用ブロック） */
.hub-character-quote { max-width: 720px; margin: 40px auto 0; background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%); border-left: 5px solid var(--gold); border-radius: 0 var(--rl) var(--rl) 0; padding: 28px 32px; text-align: left; position: relative; box-shadow: var(--sh-s); }
.hub-character-quote::before { content: '"'; position: absolute; top: 8px; left: 16px; font-family: Georgia, serif; font-size: 60px; color: var(--gold); opacity: 0.4; line-height: 1; }
.hub-character-quote-label { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; color: var(--red); margin-bottom: 12px; }
.hub-character-quote-text { font-size: 14.5px; line-height: 1.85; color: var(--dark); margin-bottom: 14px; position: relative; z-index: 1; }
.hub-character-quote-author { font-size: 12px; color: var(--gray); font-weight: 600; }
.hub-character-cta { margin-top: 40px; }

@media (max-width: 900px) {
  .hub-character-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 500px; }
  .hub-character-quote { padding: 24px 24px 24px 28px; }
  .hub-character-quote-text { font-size: 14px; }
}

/* ===== POSITION ===== */
.hub-position { background: var(--bg); }
.hub-position-box { max-width: 900px; margin: 0 auto; background: var(--white); padding: 56px 48px; border-radius: var(--rl); box-shadow: var(--sh-m); border-left: 8px solid var(--red); }
.hub-position-box h2 { font-size: clamp(24px, 3.4vw, 32px); font-weight: 700; margin-bottom: 28px; line-height: 1.55; }
.hub-position-box h2 .accent-red { color: var(--red); }
.hub-position-box p { font-size: 16px; line-height: 2; color: var(--dark); margin-bottom: 18px; }
.hub-position-box .position-evidence { font-size: 14px; color: var(--gray); background: var(--cream); padding: 22px 26px; border-radius: var(--r); margin-top: 28px; }
.hub-position-box .position-evidence strong { color: var(--red); }

/* ===== VOICES (NEW) ===== */
.hub-voices { background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%); }
.hub-voices .container { text-align: center; }
.hub-voices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.hub-voice-card { background: var(--white); padding: 32px 28px; border-radius: var(--rl); box-shadow: var(--sh-s); text-align: left; position: relative; transition: all .3s; }
.hub-voice-card:hover { transform: translateY(-4px); box-shadow: var(--sh-m); }
.hub-voice-card::before { content: '"'; position: absolute; top: 16px; left: 24px; font-size: 64px; color: var(--gold); opacity: 0.3; font-family: Georgia, serif; line-height: 1; }
.hub-voice-stars { color: var(--gold); font-size: 14px; letter-spacing: 0.1em; margin-bottom: 16px; }
.hub-voice-text { font-size: 14px; line-height: 1.9; color: var(--dark); margin-bottom: 20px; position: relative; z-index: 1; }
.hub-voice-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--lg); }
.hub-voice-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold) 0%, var(--red) 100%); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.hub-voice-author-info p { font-size: 13px; font-weight: 700; color: var(--dark); margin: 0; }
.hub-voice-author-info span { font-size: 11px; color: var(--gray); }
.hub-voice-cta { margin-top: 36px; }

/* カテゴリタグ（カードに付ける） */
.hub-voice-tag { display: inline-block; font-size: 11px; padding: 4px 12px; border-radius: 12px; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 12px; align-self: flex-start; }
.hub-voice-tag-red { background: var(--red-light); color: var(--red-dark); }
.hub-voice-tag-blue { background: var(--tq-light); color: var(--tq-dark); }
.hub-voice-tag-green { background: #D1FAE5; color: #047857; }

/* 4プラットフォーム信頼バッジ */
.hub-voice-badges { margin-top: 56px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.hub-voice-badges-label { font-size: 14px; color: var(--gray); margin-bottom: 20px; font-weight: 600; }
.hub-voice-badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.hub-voice-badge { background: var(--white); border: 2px solid var(--lg); border-radius: var(--rl); padding: 22px 16px; text-decoration: none; color: inherit; transition: all .3s; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hub-voice-badge:hover { transform: translateY(-4px); box-shadow: var(--sh-m); border-color: var(--gold); }
.hub-voice-badge-stars { color: var(--gold); font-size: 16px; letter-spacing: 0.1em; }
.hub-voice-badge-rate { font-size: 30px; font-weight: 800; color: var(--gold-dark); line-height: 1; margin: 4px 0; font-family: Georgia, "Yu Mincho", "游明朝", serif; }
.hub-voice-badge-name { font-size: 13px; font-weight: 700; color: var(--dark); margin-top: 4px; }
.hub-voice-badge-count { font-size: 11px; color: var(--gray); text-align: center; }
@media (max-width: 900px) {
  .hub-voice-badges-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .hub-voice-badges-grid { grid-template-columns: 1fr; }
}

/* ===== 代表プロフィール ===== */
.about-hub { background: var(--white); }
.about-hub-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; max-width: 1000px; margin: 48px auto 0; }
.about-hub-photo img { width: 100%; border-radius: var(--rl); box-shadow: var(--sh-m); }
.about-hub-photo-placeholder { width: 100%; aspect-ratio: 4 / 5; background: linear-gradient(135deg, var(--cream) 0%, var(--lg) 100%); border-radius: var(--rl); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--gray-l); padding: 24px; box-shadow: var(--sh-m); }
.about-hub-photo-placeholder .ph-icon { font-size: 48px; opacity: 0.4; margin-bottom: 12px; }
.about-hub-photo-placeholder .ph-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-align: center; }
.about-hub-name { font-size: 26px; font-weight: 700; margin-bottom: 4px; }
.about-hub-role { font-size: 14px; color: var(--gray); margin-bottom: 24px; }
.about-hub-story { font-size: 15px; line-height: 1.95; margin-bottom: 28px; color: var(--dark); }
.about-hub-story p { margin-bottom: 14px; }
.about-hub-creds { background: var(--bg); padding: 24px; border-radius: var(--r); margin-bottom: 20px; }
.about-hub-creds h4 { font-size: 12px; color: var(--gray); margin-bottom: 14px; letter-spacing: 0.1em; font-weight: 700; }
.about-hub-creds ul { list-style: none; padding: 0; font-size: 13px; line-height: 2; }
.about-hub-creds li { padding-left: 20px; position: relative; }
.about-hub-creds li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 10px; top: 4px; }
.about-hub-link { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 700; font-size: 14px; transition: gap .2s; }
.about-hub-link:hover { gap: 14px; }

/* ===== FAQ (NEW) ===== */
.hub-faq { background: var(--bg); }
.hub-faq-list { max-width: 820px; margin: 48px auto 0; }
.hub-faq-item { background: var(--white); border-radius: var(--rl); margin-bottom: 16px; overflow: hidden; box-shadow: var(--sh-s); transition: all .3s; }
.hub-faq-item:hover { box-shadow: var(--sh-m); }
.hub-faq-q { display: flex; align-items: flex-start; gap: 16px; padding: 24px 28px; cursor: pointer; font-weight: 700; font-size: 16px; color: var(--dark); list-style: none; user-select: none; line-height: 1.6; }
.hub-faq-q::-webkit-details-marker { display: none; }
.hub-faq-q::before { content: 'Q'; flex-shrink: 0; width: 28px; height: 28px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; }
.hub-faq-q::after { content: '+'; margin-left: auto; font-size: 24px; color: var(--gold); transition: transform .3s; flex-shrink: 0; }
.hub-faq-item[open] .hub-faq-q::after { transform: rotate(45deg); }
.hub-faq-a { padding: 0 28px 24px 72px; font-size: 14px; line-height: 1.95; color: var(--gray); }

/* ===== CTA ===== */
.hub-cta { background: var(--gw); text-align: center; }
.hub-cta h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 16px; }
.hub-cta p { font-size: 16px; color: var(--gray); margin-bottom: 36px; }
.hub-cta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; max-width: 720px; margin: 0 auto; }
.hub-cta-card { background: var(--white); padding: 28px 24px; border-radius: var(--rl); box-shadow: var(--sh-s); transition: all .3s; }
.hub-cta-card:hover { transform: translateY(-4px); box-shadow: var(--sh-m); }
.hub-cta-icon { font-size: 36px; margin-bottom: 12px; }
.hub-cta-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.hub-cta-card p { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.hub-cta-card .btn { font-size: 14px; padding: 12px 24px; }
/* Contact 単独LINEカード */
.hub-cta-single { max-width: 520px; margin: 0 auto; }
.hub-cta-card-line { padding: 44px 32px; background: linear-gradient(135deg, #FFFFFF 0%, #F0FFF4 100%); border: 2px solid #06C755; }
.hub-cta-card-line h3 { font-size: 22px; color: #047857; }
.hub-cta-card-line p { font-size: 15px; }
.hub-cta-email-note { text-align: center; margin-top: 32px; font-size: 14px; color: var(--gray); line-height: 1.85; }
.hub-cta-email { display: inline-block; margin-top: 6px; font-size: 16px; font-weight: 600; color: var(--dark); padding: 8px 18px; background: var(--white); border-radius: 24px; box-shadow: var(--sh-s); transition: all .2s; }
.hub-cta-email:hover { transform: translateY(-2px); box-shadow: var(--sh-m); color: var(--red); }

/* ===== フッター ===== */
.site-footer { background: var(--bg-d); color: var(--white); padding: 56px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.footer-brand h3 { font-size: 22px; margin-bottom: 8px; color: var(--white); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.85; }
.footer-col h4 { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 14px; letter-spacing: 0.1em; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; font-size: 13px; }
.footer-col a { color: rgba(255,255,255,0.8); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: var(--max); margin: 40px auto 0; padding: 24px 24px 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12px; color: rgba(255,255,255,0.5); text-align: center; line-height: 1.85; }

/* ===== サービスクイック索引（上品3カード） ===== */
.hub-quicknav { background: var(--white); padding: 56px 0; border-bottom: 1px solid var(--lg); }
.hub-quicknav-label { text-align: center; font-size: 11px; font-weight: 800; letter-spacing: 0.3em; color: var(--gold-dark); margin-bottom: 28px; }
.hub-quicknav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.hub-quicknav-card { position: relative; display: flex; align-items: center; gap: 18px; padding: 26px 28px; background: var(--white); border: 2px solid var(--lg); border-radius: 18px; color: var(--dark); text-decoration: none; transition: all .35s; overflow: hidden; }
.hub-quicknav-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--red)); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.hub-quicknav-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--sh-m); background: linear-gradient(180deg, #FFF 0%, #FFFAF0 100%); }
.hub-quicknav-card:hover::before { transform: scaleX(1); }
.hub-quicknav-card-featured { border-color: var(--gold); background: linear-gradient(135deg, #FFFAF0 0%, var(--cream) 100%); overflow: visible; }
.hub-quicknav-tag { position: absolute; top: -12px; right: 14px; background: linear-gradient(135deg, var(--red) 0%, #DC2626 100%); color: var(--white); font-size: 11px; font-weight: 800; padding: 6px 14px; border-radius: 16px; letter-spacing: 0.08em; box-shadow: 0 4px 12px rgba(244,78,60,0.4); z-index: 2; white-space: nowrap; }
.hub-quicknav-icon { font-size: 40px; line-height: 1; flex-shrink: 0; filter: drop-shadow(0 2px 6px rgba(201,130,12,0.3)); }
.hub-quicknav-body { flex: 1; min-width: 0; }
.hub-quicknav-body h3 { font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 4px; letter-spacing: 0.02em; }
.hub-quicknav-body p { font-size: 12px; color: var(--gray); line-height: 1.55; margin: 0; }
.hub-quicknav-arrow { font-size: 20px; font-weight: 700; color: var(--gold); transition: transform .25s; flex-shrink: 0; }
.hub-quicknav-card:hover .hub-quicknav-arrow { transform: translateX(6px); color: var(--red); }
@media (max-width: 900px) {
  .hub-quicknav-grid { grid-template-columns: 1fr; gap: 12px; }
  .hub-quicknav { padding: 44px 0; }
}

/* ===== Wix風バナー帯（旧・残し） ===== */
.hub-banners { background: var(--white); padding: 24px 0 28px; border-bottom: 1px solid var(--lg); }
.hub-banners-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hub-banner { display: flex; align-items: center; gap: 14px; padding: 20px 22px; border-radius: 14px; color: var(--white); text-decoration: none; transition: all .3s; box-shadow: var(--sh-s); position: relative; overflow: hidden; }
.hub-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%); transform: translateX(-100%); transition: transform .6s; }
.hub-banner:hover { transform: translateY(-4px); box-shadow: var(--sh-m); }
.hub-banner:hover::before { transform: translateX(100%); }
.hub-banner-red { background: linear-gradient(135deg, #991B1B 0%, #DC2626 100%); }
.hub-banner-blue { background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%); }
.hub-banner-green { background: linear-gradient(135deg, #047857 0%, #10B981 100%); }
.hub-banner-icon { font-size: 34px; line-height: 1; flex-shrink: 0; }
.hub-banner-body { flex: 1; min-width: 0; }
.hub-banner-title { font-size: 16px; font-weight: 800; margin-bottom: 3px; letter-spacing: 0.02em; line-height: 1.3; }
.hub-banner-sub { font-size: 11px; opacity: 0.92; line-height: 1.5; }
.hub-banner-arrow { font-size: 20px; font-weight: 700; transition: transform .25s; flex-shrink: 0; }
.hub-banner:hover .hub-banner-arrow { transform: translateX(6px); }
@media (max-width: 900px) {
  .hub-banners-inner { grid-template-columns: 1fr; gap: 12px; }
}

/* ===== 浮遊LINEボタン（モバイル中心・全画面常駐） ===== */
.floating-line { position: fixed; bottom: 20px; right: 20px; z-index: 999; display: flex; align-items: center; gap: 8px; padding: 14px 20px 14px 16px; background: #06C755; color: var(--white); border-radius: 32px; box-shadow: 0 8px 24px rgba(6,199,85,0.4); font-weight: 700; font-size: 14px; text-decoration: none; transition: all .3s; }
.floating-line:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(6,199,85,0.5); }
.floating-line-icon { font-size: 22px; line-height: 1; }
.floating-line-label { display: inline-block; }
@media (max-width: 480px) {
  .floating-line { bottom: 16px; right: 16px; padding: 12px 18px 12px 14px; font-size: 13px; }
}

/* ===== レスポンシブ（モバイル徹底改修） ===== */
@media (max-width: 900px) {
  .hub-hero { padding: 60px 0 80px; }
  .hub-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hub-hero-visual { max-width: 360px; margin: 0 auto; }
  .hub-hero-text { text-align: center; }
  .hub-hero-cta, .hub-hero-formula { justify-content: center; }
  .hub-hero-trust { justify-content: center; }
  .about-hub-inner { grid-template-columns: 1fr; gap: 32px; }
  .hub-position-box { padding: 40px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .hub-banners-inner { grid-template-columns: 1fr; gap: 12px; }
  .hub-banner { padding: 18px 20px; }
  .hub-banner-icon { font-size: 32px; }
  .hub-banner-title { font-size: 16px; }
}

@media (max-width: 768px) {
  /* セクション余白を増やしてメリハリ */
  section:not(.hero):not(.hub-hero) { padding: 72px 0; }
  /* 見出しを大きく */
  .section-title { font-size: clamp(26px, 7vw, 36px); padding-bottom: 16px; margin-bottom: 20px; }
  .section-subtitle { font-size: 16px; line-height: 1.85; padding: 0 8px; }
  /* ヒーロー見出しもう一段大きく */
  .hub-hero-title { font-size: clamp(30px, 8vw, 44px); line-height: 1.35; }
  /* IDEAL カードのアイコンと文字をモバイルでより大きく */
  .hub-pain-card { padding: 28px 24px; }
  .hub-pain-icon { font-size: 48px; margin-bottom: 18px; }
  .hub-pain-text { font-size: 16px; line-height: 1.9; }
  /* サービスカードの本文をモバイルで読みやすく */
  .service-card-body { padding: 28px 24px 32px; }
  .service-card h3 { font-size: 24px; }
  .service-card p { font-size: 15px; }
  /* CTAボタンを大きく */
  .btn { font-size: 16px; padding: 16px 28px; }
  /* お問い合わせCTAカードをゆったり */
  .hub-cta-card { padding: 32px 24px; }
  .hub-cta-card h3 { font-size: 19px; }
  /* STATS の数字をスマホでも巨大に */
  .hub-stat-num { font-size: clamp(40px, 12vw, 56px); }
  /* STATSの装飾文字（モバイルでは非表示・崩れ防止） */
  .hub-stats-deco { display: none; }
  /* 各種カードの余白 */
  .hub-position-box { padding: 36px 24px; }
  .hub-position-box h2 { font-size: clamp(22px, 6vw, 28px); }
  .hub-position-box p { font-size: 16px; }
  /* ヒーローパーティクル（モバイルでサイズ小さく） */
  .hub-hero-particle-1 { width: 80px; height: 80px; }
  .hub-hero-particle-2 { width: 60px; height: 60px; }
  .hub-hero-particle-3 { width: 140px; height: 140px; }
  /* 補助金セクション モバイル調整 */
  .hub-subsidy-card { padding: 36px 24px 28px; }
  .hub-subsidy-badge { left: 16px; font-size: 10px; padding: 4px 12px; }
  .hub-subsidy-card h3 { font-size: 18px; }
  /* 補助金 disclaimer のインデント調整 */
  .hub-subsidy-disclaimer ol { padding-left: 22px; font-size: 13.5px; }
  /* ポートフォリオ caption 常時表示モバイル */
  .hub-portfolio-caption { opacity: 0.95; font-size: 12px; padding: 10px 12px; }
  /* VOICESカード余白 */
  .hub-voice-card { padding: 26px 22px; }
  .hub-voice-text { font-size: 14px; }
  /* 信頼バッジ rate 数字 */
  .hub-voice-badge-rate { font-size: 28px; }
  /* キャラギャラリーの featured バッジ位置調整 */
  .hub-character-item-featured .hub-character-item-name { font-size: 19px; }
  /* お問い合わせ CTA 単独カード */
  .hub-cta-card-line { padding: 36px 24px; }
  .hub-cta-card-line h3 { font-size: 20px; }
  .hub-cta-email-note { font-size: 13px; }
  .hub-cta-email { font-size: 14px; padding: 8px 16px; }
  /* 浮遊LINEボタンと最下部CTA重なり対策（コンテンツ末尾に余白） */
  .site-footer { padding-bottom: 120px; }
  .footer-bottom { padding-bottom: 16px; }
  /* バナー帯のサブテキストが切れないように */
  .hub-banner-sub { font-size: 12px; }
}

@media (max-width: 480px) {
  /* さらに小さい画面で見出し対策 */
  .hub-hero-formula { font-size: 14px; padding: 12px 20px; gap: 8px; }
  .hub-hero-formula .formula-x { font-size: 16px; }
  .hub-hero-eyebrow { font-size: 11px; padding: 7px 16px; }
  /* IDEAL 1カラムに */
  .hub-pain-grid { grid-template-columns: 1fr; }
  /* VOICES カード幅広く */
  .hub-voices-grid { grid-template-columns: 1fr; }
  /* バナー帯のタイトル小さく */
  .hub-banner-title { font-size: 15px; }
  /* ヒーロー写真小さめに */
  .hub-hero-visual { max-width: 280px; }
  /* 浮遊LINEボタンを画面下フィットに */
  .floating-line { bottom: 12px; right: 12px; padding: 10px 16px 10px 12px; }
  .floating-line-label { font-size: 12px; }
  .floating-line-icon { font-size: 18px; }
}

/* ===== サービス詳細ページ共通部品（lesson / ai-seminar 等） ===== */
.lesson-cat{font-size:clamp(18px,2.4vw,22px);font-weight:700;color:var(--dark);margin:50px 0 18px;}
.lesson-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:22px;}
.lesson-card{background:var(--white);border:1px solid rgba(0,0,0,.06);border-top:4px solid var(--tq);border-radius:var(--rl);padding:28px 26px;box-shadow:var(--sh-s);transition:transform .25s,box-shadow .25s;}
.lesson-card:hover{transform:translateY(-5px);box-shadow:var(--sh-m);}
.lesson-card-featured{border-top-color:var(--red);background:var(--cream);}
.lesson-price{display:inline-block;font-size:24px;font-weight:800;color:var(--red);margin-bottom:10px;line-height:1.1;}
.lesson-price span{font-size:13px;font-weight:600;color:var(--gray);margin-left:6px;}
.lesson-price-quote{color:var(--tq-dark);font-size:20px;}
.lesson-card h4{font-size:18px;font-weight:700;color:var(--dark);margin:0 0 10px;line-height:1.5;}
.lesson-card p{font-size:15px;line-height:1.85;color:var(--gray);margin:0;}
.lesson-card small{color:var(--gray-l);font-size:13px;}
.lesson-flow{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px;margin-top:40px;}
.lesson-step{background:var(--white);border-radius:var(--rl);padding:28px 22px;box-shadow:var(--sh-s);text-align:center;}
.lesson-step-num{display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;border-radius:50%;background:var(--gt);color:var(--white);font-weight:800;font-size:20px;margin-bottom:14px;}
.lesson-step h4{font-size:16px;font-weight:700;color:var(--dark);margin:0 0 8px;}
.lesson-step p{font-size:14px;line-height:1.8;color:var(--gray);margin:0;}
.lesson-faq-list{max-width:820px;margin:40px auto 0;}
.lesson-faq-item{background:var(--white);border-radius:var(--r);box-shadow:var(--sh-s);margin-bottom:14px;padding:0 24px;border-left:4px solid var(--gold);}
.lesson-faq-item summary{cursor:pointer;list-style:none;padding:22px 0;font-weight:700;color:var(--dark);font-size:16px;position:relative;padding-right:30px;}
.lesson-faq-item summary::-webkit-details-marker{display:none;}
.lesson-faq-item summary::after{content:'+';position:absolute;right:4px;top:50%;transform:translateY(-50%);color:var(--gold);font-size:26px;font-weight:400;line-height:1;}
.lesson-faq-item[open] summary::after{content:'\2212';}
.lesson-faq-item p{margin:0 0 22px;color:var(--gray);line-height:1.9;font-size:15px;}


/* ===== 変換パーツ（全ページ共有：hero-check / pain / before-after / diag / path） ===== */
.hero-check{list-style:none;margin:0 0 22px;padding:0;}
.hero-check li{position:relative;padding-left:28px;margin-bottom:10px;color:var(--dark);font-size:15px;line-height:1.6;}
.hero-check li::before{content:"\2713";position:absolute;left:0;color:var(--tq-dark);font-weight:800;}
.pain-check{max-width:760px;margin:0 auto;list-style:none;padding:0;display:grid;gap:12px;}
.pain-check li{background:var(--white);border-radius:var(--r);box-shadow:var(--sh-s);padding:16px 20px 16px 48px;position:relative;font-size:15px;color:var(--dark);line-height:1.7;}
.pain-check li::before{content:"\2713";position:absolute;left:18px;top:16px;color:var(--red);font-weight:800;}
.pain-lead{max-width:760px;margin:26px auto 0;text-align:center;font-size:16px;line-height:1.95;color:var(--dark);}
.ba-grid{max-width:880px;margin:0 auto;display:grid;gap:14px;}
.ba-row{display:grid;grid-template-columns:1fr auto 1.2fr;align-items:center;gap:14px;}
.ba-before{background:var(--lg);color:var(--gray);border-radius:var(--r);padding:18px;font-size:15px;}
.ba-arrow{color:var(--red);font-weight:800;font-size:22px;}
.ba-after{background:var(--white);border:1px solid rgba(0,0,0,.06);border-left:4px solid var(--tq);border-radius:var(--r);padding:18px;font-size:15px;font-weight:700;color:var(--dark);box-shadow:var(--sh-s);}
@media(max-width:767px){.ba-row{grid-template-columns:1fr;gap:6px;text-align:center;}.ba-arrow{transform:rotate(90deg);}}
.diag-box{max-width:620px;margin:0 auto 28px;background:var(--white);border:1px solid rgba(0,0,0,.06);border-left:5px solid var(--red);border-radius:var(--rl);padding:24px 28px;text-align:left;}
.diag-title{font-weight:800;color:var(--dark);font-size:17px;margin:0 0 14px;}
.diag-box ul{list-style:none;margin:0;padding:0;}
.diag-box li{position:relative;padding-left:30px;margin-bottom:10px;color:var(--dark);font-size:15px;line-height:1.7;}
.diag-box li::before{content:"\2713";position:absolute;left:0;top:2px;width:20px;height:20px;background:var(--red);color:#fff;border-radius:50%;font-size:12px;display:flex;align-items:center;justify-content:center;font-weight:700;}
.cta-reassure{font-size:13px;color:var(--gray);margin:14px 0 0;}
