/* ============================================================
   PM45+ MEDIA — 共通追加レイヤー
   深緑 #1F3A2E × 金 #ea580c。動く背景・リビール・カウントアップ・
   cinematicフッター。WebGL不使用・CSSアニメ＋IO中心（軽量必須）。
   ============================================================ */

html, body { overflow-x: hidden; }

/* ===== リビング背景（全ページ共通・ロード時から動く） ===== */
.bg-live { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
/* ブラー全廃：filter:blur大型要素×多重アニメはヘッドレスのタイルメモリ超過（描画落ち）の原因
   → 多段radial-gradientでソフトエッジを代替（pm-si-mediaで実証済みの手法） */
.bg-live .blob { position: absolute; border-radius: 50%; opacity: .85; will-change: transform; }
.bg-live .b1 { width: 46vw; height: 46vw; left: -12vw; top: -14vw; background: radial-gradient(circle, rgba(194,65,12,.11), rgba(194,65,12,.05) 45%, transparent 70%); animation: drift1 26s ease-in-out infinite alternate; }
.bg-live .b2 { width: 38vw; height: 38vw; right: -10vw; top: 18vh; background: radial-gradient(circle, rgba(234,88,12,.10), rgba(234,88,12,.045) 45%, transparent 70%); animation: drift2 31s ease-in-out infinite alternate; }
.bg-live .b3 { width: 34vw; height: 34vw; left: 24vw; bottom: -16vw; background: radial-gradient(circle, rgba(13,148,136,.10), rgba(13,148,136,.045) 45%, transparent 70%); animation: drift3 24s ease-in-out infinite alternate; }
@keyframes drift1 { from { transform: translate(0,0) scale(1);} to { transform: translate(9vw,7vh) scale(1.14);} }
@keyframes drift2 { from { transform: translate(0,0) scale(1.08);} to { transform: translate(-8vw,10vh) scale(.94);} }
@keyframes drift3 { from { transform: translate(0,0);} to { transform: translate(10vw,-7vh) scale(1.1);} }
.bg-live .grid { position: absolute; inset: -80px; opacity: .5;
  background-image: linear-gradient(rgba(31,58,46,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(31,58,46,.05) 1px, transparent 1px);
  background-size: 56px 56px; animation: gridmove 40s linear infinite; }
@keyframes gridmove { from { transform: translate(0,0);} to { transform: translate(56px,56px);} }

/* ===== スクロールリビール ===== */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); transition-delay: var(--d, 0s); }
.rv-l { transform: translateX(-30px); }
.rv-r { transform: translateX(30px); }
.rv.on { opacity: 1; transform: translate(0,0); }

/* ===== TextRotate（21st.dev text-rotate バニラ移植） =====
   spring(damping30/stiffness400)近似 = cubic-bezier(.16,1,.3,1) 軽いオーバーシュート */
[data-rotate] { position: relative; display: inline-flex; overflow: hidden; vertical-align: bottom; padding-bottom: .06em; }
@keyframes trRotIn { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes trRotOut { from { transform: translateY(0); opacity: 1; } to { transform: translateY(-120%); opacity: 0; } }
.tr-char { display: inline-block; transform: translateY(0); opacity: 1; min-width: .08em; }
.tr-char.tr-animin { animation: trRotIn .45s cubic-bezier(.16,1,.3,1) both; }
.tr-ghost .tr-char { animation: trRotOut .45s cubic-bezier(.16,1,.3,1) forwards; }
/* 旧語は絶対配置のゴーストとして上へ退場＝新語の入場と同時進行（空白ゼロ・重なりなし） */
.tr-ghost { position: absolute; left: 0; top: 0; display: inline-flex; pointer-events: none; white-space: nowrap; }

/* ===== Floating（21st.dev parallax-floating バニラ移植） ===== */
.pf-stage { position: absolute; inset: 0; pointer-events: none; transition: opacity .2s linear; }
.pf-el { position: absolute; will-change: transform; }
.pf-el img { object-fit: cover; border-radius: 14px; background: #fff; border: 1px solid rgba(31,58,46,.12); box-shadow: 0 18px 40px -10px rgba(31,58,46,.35); cursor: pointer; transition: transform .2s ease; pointer-events: auto; display: block; }
.pf-el img:hover { transform: scale(1.05); }
/* 定常時0.95（はっきり見える） */
.pf-fadein { opacity: 0; animation: pfIn .6s ease forwards; }
@keyframes pfIn { to { opacity: .95; } }

/* ===== 浮遊カード（ヒーロー） ===== */
.float-stage { position: relative; min-height: 460px; }
.float-el { position: absolute; background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 18px 20px; will-change: transform; animation: floaty var(--fd, 7s) ease-in-out infinite alternate; }
@keyframes floaty { from { transform: translateY(0) rotate(var(--rot, 0deg)); } to { transform: translateY(-16px) rotate(var(--rot, 0deg)); } }
.float-el .fe-k { font-size: 10.5px; font-weight: 800; letter-spacing: 2px; color: var(--accent); margin-bottom: 6px; }
.float-el .fe-t { font-size: 15px; font-weight: 900; color: var(--text); line-height: 1.4; }
.float-el .fe-s { font-size: 12px; color: var(--text-sec); margin-top: 6px; line-height: 1.7; }
.float-el .fe-big { font-size: 30px; font-weight: 900; font-family: 'Inter', sans-serif; color: var(--primary); line-height: 1; }
.float-el.fe-green { background: var(--primary); border-color: var(--primary-dk); }
.float-el.fe-green .fe-t, .float-el.fe-green .fe-big { color: #fff; }
.float-el.fe-green .fe-s { color: rgba(255,255,255,.75); }
.float-el.fe-gold { background: linear-gradient(135deg, #ea580c, #c2410c); border: none; }
.float-el.fe-gold .fe-k { color: rgba(255,255,255,.85); }
.float-el.fe-gold .fe-t, .float-el.fe-gold .fe-big { color: #fff; }
.float-el.fe-gold .fe-s { color: rgba(255,255,255,.82); }

/* ===== マーキー ===== */
.marquee { overflow: hidden; white-space: nowrap; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: inline-block; animation: mq 34s linear infinite; }
@keyframes mq { from { transform: translateX(0);} to { transform: translateX(-50%);} }
.marquee span { display: inline-block; margin: 0 28px; font-weight: 800; letter-spacing: 1px; }

/* ===== cinematicフッター ===== */
.cine-footer { position: relative; background: linear-gradient(160deg, var(--primary-dk), var(--primary) 70%); color: #fff; overflow: hidden; padding: 70px 0 0; margin-top: 80px; }
.cine-footer .cf-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 78% 20%, rgba(194,65,12,.25), transparent 60%); pointer-events: none; }
.cine-footer .container { position: relative; z-index: 1; }
.cf-mq { color: rgba(255,255,255,.28); font-size: 15px; padding: 8px 0 26px; }
.cf-main { display: flex; flex-wrap: wrap; gap: 34px; justify-content: space-between; align-items: flex-start; padding-bottom: 40px; }
.cf-brand p { font-size: 13px; color: rgba(255,255,255,.66); line-height: 1.9; max-width: 420px; margin-top: 12px; }
.cf-links { display: flex; gap: 48px; flex-wrap: wrap; }
.cf-links h4 { font-size: 11px; letter-spacing: 2.5px; color: var(--accent-lt); opacity: .8; margin-bottom: 14px; font-weight: 800; }
.cf-links a { display: block; color: rgba(255,255,255,.78); font-size: 13.5px; text-decoration: none; margin-bottom: 10px; transition: color .15s, transform .15s; }
.cf-links a:hover { color: #FDBA74; transform: translateX(3px); }
.cf-pill { display: inline-flex; align-items: center; gap: 10px; background: #C2410C; color: #fff; font-weight: 800; font-size: 15px; padding: 15px 30px; border-radius: 999px; text-decoration: none; box-shadow: 0 14px 34px -8px rgba(0,0,0,.45); transition: transform .18s ease; will-change: transform; }
.cf-giant { font-family: 'Inter', sans-serif; font-weight: 900; font-size: clamp(84px, 17vw, 240px); line-height: .84; letter-spacing: -6px; text-align: center; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.16); user-select: none; padding: 10px 0 0; }
.cf-giant em { font-style: normal; -webkit-text-stroke: 1.5px rgba(251,146,60,.5); }
.cf-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0 22px; font-size: 12px; color: rgba(255,255,255,.5); }
.cf-bottom a { color: rgba(255,255,255,.6); text-decoration: none; margin-left: 18px; }

/* ===== 記事 ===== */
.art-wrap { max-width: 760px; margin: 0 auto; padding: 56px 24px 30px; }
.art-label { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 2px; color: var(--accent); background: var(--accent-lt); border: 1px solid #FED7AA; padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.art-wrap h1 { font-size: 34px; font-weight: 900; line-height: 1.4; letter-spacing: -0.8px; margin-bottom: 14px; }
.art-meta { font-size: 12.5px; color: var(--text-muted); margin-bottom: 34px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.art-body h2 { font-size: 22px; font-weight: 900; margin: 44px 0 16px; padding-left: 14px; border-left: 4px solid var(--accent); line-height: 1.5; }
.art-body h3 { font-size: 17px; font-weight: 800; margin: 30px 0 12px; }
.art-body p { font-size: 15.5px; line-height: 2.05; color: var(--text); margin-bottom: 18px; }
.art-body ul, .art-body ol { margin: 0 0 18px 22px; }
.art-body li { font-size: 15px; line-height: 2; margin-bottom: 6px; }
.art-body .talk { background: var(--primary-lt); border-left: 4px solid var(--primary); border-radius: 0 10px 10px 0; padding: 16px 20px; font-size: 15px; line-height: 1.95; margin-bottom: 20px; font-weight: 600; }
.art-body table { width: 100%; border-collapse: collapse; font-size: 13.5px; margin: 10px 0 22px; background: #fff; }
.art-body th { background: var(--primary); color: #fff; padding: 9px 10px; text-align: left; font-size: 12px; letter-spacing: .5px; }
.art-body td { border: 1px solid var(--border); padding: 9px 10px; line-height: 1.7; }
.art-body .tbl-scroll { overflow-x: auto; margin-bottom: 22px; border-radius: 10px; border: 1px solid var(--border); }
.art-body .note-box { background: var(--accent-lt); border: 1px solid #FED7AA; border-radius: 10px; padding: 14px 18px; font-size: 13px; color: #7C2D12; line-height: 1.9; margin-bottom: 20px; }
/* ===== CTAボタン作法（2026-07-07山根さんFB・21st.dev aurora/origin/glassのvibeをバニラ再現） =====
   主役CTA＝btn-aurora（ポテンシャライト虹の柔らかいにじみを背面に。blur filter不使用＝多色box-shadowで軽量）
   ＋btn-origin（カーソル位置から円形フィル・cubic-bezier(.16,1,.3,1)）。ダーク帯のセカンダリ＝btn-glass */
.btn-aurora { box-shadow: -16px 8px 30px -10px rgba(194,65,12,.42), 0 12px 32px -8px rgba(234,88,12,.46), 16px 8px 30px -10px rgba(13,148,136,.42), 0 -8px 24px -12px rgba(124,58,237,.34), 8px -6px 24px -12px rgba(22,163,74,.26) !important; }
.btn-aurora:hover { box-shadow: -18px 10px 36px -8px rgba(194,65,12,.60), 0 14px 40px -6px rgba(234,88,12,.62), 18px 10px 36px -8px rgba(13,148,136,.58), 0 -10px 30px -10px rgba(124,58,237,.48), 10px -8px 30px -10px rgba(22,163,74,.38) !important; }
.btn-origin { position: relative; overflow: hidden; isolation: isolate; }
.btn-origin::after { content: ""; position: absolute; left: var(--ox, 50%); top: var(--oy, 50%); width: 240%; aspect-ratio: 1; border-radius: 50%; background: var(--fill, rgba(255,255,255,.20)); transform: translate(-50%,-50%) scale(0); transition: transform .5s cubic-bezier(.16,1,.3,1); z-index: -1; pointer-events: none; }
.btn-origin:hover::after { transform: translate(-50%,-50%) scale(1); }
.btn-glass { display: inline-block; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.30); color: #fff; border-radius: 999px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); box-shadow: inset 0 1px 0 rgba(255,255,255,.28), inset 0 -6px 12px -8px rgba(255,255,255,.12), 0 12px 26px -14px rgba(0,0,0,.5); transition: background .25s, transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s cubic-bezier(.16,1,.3,1); }
.btn-glass:hover { background: rgba(255,255,255,.17); transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,.34), inset 0 -6px 12px -8px rgba(255,255,255,.16), 0 18px 34px -14px rgba(0,0,0,.55); }
.cta-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.cta-pills span { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1.5px solid rgba(31,58,46,.09); border-radius: 999px; padding: 7px 15px; font-size: 12px; font-weight: 700; color: var(--text-sec); box-shadow: 0 6px 16px -12px rgba(31,58,46,.35); }
.cta-pills span::before { content: "✓"; font-weight: 900; color: #0d9488; }
.cta-pills span:nth-child(2)::before { color: #ea580c; }
.cta-pills span:nth-child(3)::before { color: #C2410C; }

/* SELF CHECK帯：3d-travel-card（21st.dev）vibe＝スプリング3Dチルト＋実物サムネ背景＋ガラスCTA内蔵 */
.sc-grid { display: grid; grid-template-columns: 1fr 400px; gap: 44px; align-items: center; max-width: 980px; margin: 0 auto; }
.sc-left { text-align: center; }
/* 診断の流れ＝蛇行タイムライン本実装（SVG道リビール＋springカード着地。fleet-kit v2で母型と統一） */
.sc-road { position: relative; margin: 0 0 20px; }
.sc-road-svg { position: absolute; inset: -12px -8px -16px; width: calc(100% + 16px); height: calc(100% + 28px); overflow: visible; pointer-events: none; }
.sc-road-bg, .sc-road-line { fill: none; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.sc-road-bg { stroke: rgba(31,58,46,.08); stroke-width: 9; }
.sc-road-line { stroke: url(#scRoadG); stroke-width: 4.5; stroke-dasharray: 1; stroke-dashoffset: 1; }
.sc-road.on .sc-road-line { stroke-dashoffset: 0; transition: stroke-dashoffset 2s cubic-bezier(.22,1,.36,1) .25s; }
.sc-road-dot { fill: #7c3aed; opacity: 0; }
.sc-road.on .sc-road-dot { opacity: 1; transition: opacity .5s ease 1.9s; }
.fx-off .sc-road-line { stroke-dashoffset: 0 !important; transition: none !important; }
.fx-off .sc-road-dot { opacity: 1 !important; transition: none !important; }
.sc-flow { list-style: none; margin: 0; padding: 0; text-align: left; display: flex; flex-direction: column; gap: 14px; }
.sc-flow li { position: relative; z-index: 1; display: flex; align-items: center; gap: 13px; background: #fff; border: 1.5px solid var(--fc-bd); border-radius: 18px; padding: 12px 16px;
  box-shadow: 0 14px 30px -22px var(--fc), 0 4px 12px -10px rgba(31,58,46,.3); transition: transform .5s cubic-bezier(.34,1.56,.64,1), box-shadow .5s; }
.sc-road:not(.on) .sc-flow li { opacity: 0; }
.sc-road.on .sc-flow li { animation: scCardIn .65s cubic-bezier(.34,1.56,.64,1) backwards; }
.sc-road.on .sc-flow li:nth-child(1) { animation-delay: .15s; }
.sc-road.on .sc-flow li:nth-child(2) { animation-delay: .65s; }
.sc-road.on .sc-flow li:nth-child(3) { animation-delay: 1.15s; }
@keyframes scCardIn { from { opacity: 0; transform: translateY(16px) scale(.96); } }
.fx-off .sc-flow li { animation: none !important; opacity: 1 !important; }
.sc-flow li:hover { transform: translateY(-4px) scale(1.02) rotate(-.4deg); box-shadow: 0 26px 46px -22px var(--fc), 0 8px 20px -12px rgba(31,58,46,.35); }
.sc-flow li:nth-child(2):hover { transform: translateY(-4px) scale(1.02) rotate(.4deg); }
.sc-flow li:nth-child(1) { margin-right: 56px; }
.sc-flow li:nth-child(2) { margin-left: 56px; }
.sc-flow li:nth-child(3) { margin-right: 56px; }
.sc-flow .fno { position: relative; flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-size: 15px; font-weight: 900; color: #fff; background: var(--fc); border: 3px solid #fff; box-shadow: 0 0 0 1.5px var(--fc-bd), 0 10px 20px -8px var(--fc); }
.sc-flow .fno::after { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 1.5px dashed var(--fc-bd); transition: transform 1s cubic-bezier(.22,1,.36,1); }
.sc-flow li:hover .fno { animation: scPinPop .5s cubic-bezier(.34,1.56,.64,1); }
.sc-flow li:hover .fno::after { transform: rotate(120deg); }
@keyframes scPinPop { 0% { transform: scale(1); } 40% { transform: scale(1.18); } 100% { transform: scale(1); } }
.sc-flow .ftx { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sc-flow .ftx b { font-size: 14.5px; font-weight: 800; color: var(--text); letter-spacing: -.2px; }
.sc-flow .ftx i { font-style: normal; font-size: 12px; color: var(--text-sec); }
.sc-stats { display: flex; justify-content: center; gap: 10px; margin: 20px 0 24px; }
.sc-stats > div { flex: 1; max-width: 132px; background: #fff; border: 1.5px solid rgba(31,58,46,.09); border-radius: 14px; padding: 10px 8px 9px; box-shadow: 0 8px 20px -16px rgba(31,58,46,.4); }
.sc-stats b { display: block; font-size: 19px; font-weight: 900; letter-spacing: -.4px; color: #0d9488; }
.sc-stats > div:nth-child(2) b { color: #ea580c; }
.sc-stats > div:nth-child(3) b { color: #C2410C; }
.sc-stats small { display: block; font-size: 10.5px; font-weight: 700; color: var(--text-sec); margin-top: 1px; }
@media (max-width: 860px) { .sc-flow li:nth-child(n) { margin-left: 0; margin-right: 0; } }
.sc-card { position: relative; display: block; border-radius: 22px; overflow: hidden; aspect-ratio: 16/11; text-decoration: none; color: #fff; background: #0d1730; isolation: isolate; will-change: transform; box-shadow: 0 30px 56px -28px rgba(13,23,48,.55), -22px 16px 46px -30px rgba(194,65,12,.32), 22px 16px 46px -30px rgba(13,148,136,.28); }
.sc-card .sc-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .20; z-index: -2; } /* サムネの文字が本文に透けない濃度 */
.sc-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(165deg, rgba(13,23,48,.62) 0%, rgba(13,23,48,.93) 58%, #0d1730 100%), radial-gradient(ellipse 60% 50% at 88% 6%, rgba(234,88,12,.32), transparent 65%), radial-gradient(ellipse 50% 55% at 6% 100%, rgba(194,65,12,.32), transparent 65%); }
.sc-card-inner { position: relative; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; padding: 22px 24px 22px; }
.sc-card .sck { font-size: 10px; font-weight: 800; letter-spacing: 3px; color: #FDBA74; margin-bottom: 8px; }
.sc-card h3 { font-size: 20px; font-weight: 900; margin: 0 0 12px; letter-spacing: -.3px; }
.sc-types { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.sc-types span { font-size: 10.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.20); color: rgba(255,255,255,.88); }
.sc-card .btn-glass { font-size: 13.5px; font-weight: 800; padding: 11px 22px; align-self: flex-start; }
@media (max-width: 860px) { .sc-grid { grid-template-columns: 1fr; gap: 28px; } .sc-card { max-width: 440px; margin: 0 auto; width: 100%; } }

/* ダークCTA帯：白いページに浮かぶ丸角ダークカード＋ポテンシャライト虹のリム（blur filter不使用の多段radial・軽量） */
.art-cta { position: relative; overflow: hidden; isolation: isolate; background: linear-gradient(160deg, #0d1730, var(--primary) 72%); border-radius: 26px; padding: 46px 38px 42px; color: #fff; text-align: center; margin: 50px 0 10px; box-shadow: 0 34px 64px -32px rgba(13,23,48,.55), -26px 18px 52px -34px rgba(194,65,12,.35), 26px 18px 52px -34px rgba(13,148,136,.32), 0 10px 40px -22px rgba(234,88,12,.30); }
.art-cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background:
  radial-gradient(ellipse 55% 60% at 85% 8%, rgba(234,88,12,.30), transparent 65%),
  radial-gradient(ellipse 50% 62% at 8% 96%, rgba(194,65,12,.32), transparent 65%),
  radial-gradient(ellipse 42% 50% at 92% 92%, rgba(13,148,136,.24), transparent 65%),
  radial-gradient(ellipse 36% 44% at 12% 6%, rgba(124,58,237,.20), transparent 62%); }
.art-cta::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 44px 44px; -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 0%, #000 30%, transparent 85%); mask-image: radial-gradient(ellipse 90% 90% at 50% 0%, #000 30%, transparent 85%); }
.art-cta .cta-spot { position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .45s ease; background: radial-gradient(340px 340px at var(--mx,50%) var(--my,30%), hsl(var(--hue,220) 85% 65% / .17), transparent 70%); pointer-events: none; }
.art-cta:hover .cta-spot { opacity: 1; }
.art-cta .cta-kicker { display: inline-flex; align-items: center; gap: 9px; font-size: 10.5px; font-weight: 800; letter-spacing: 3px; color: #FDBA74; margin-bottom: 14px; }
.art-cta .cta-kicker img { height: 18px; width: auto; display: block; }
.art-cta h2 { font-size: 23px; font-weight: 900; margin-bottom: 12px; border: none; padding: 0; letter-spacing: -.5px; }
.art-cta p { color: rgba(255,255,255,.82); font-size: 14px; line-height: 2; margin: 0 auto 24px; max-width: 560px; }
.art-cta a { display: inline-block; background: var(--accent); color: #fff; font-weight: 800; padding: 15px 34px; border-radius: 999px; text-decoration: none; font-size: 15px; margin: 0 7px 10px; transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .35s; }
.art-cta a:hover { transform: translateY(-2px) scale(1.03); }
.art-cta a.ghost { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); }
@media (max-width: 600px) {
  .art-cta { padding: 38px 24px 34px; border-radius: 22px; }
  .art-cta h2 { font-size: 19px; } /* 「PM Quest へ。」の孤立改行を防ぐ */
}

/* 監修カード：本人の顔写真＋ポテンシャライト虹のリング（2026-07-07山根さんFB＝顔写真必須）
   ＋animated-profile-card（21st.dev）vibe＝hoverでアバター起点の円形リビール（淡い虹の色面がexpo系で全面へ） */
.art-supervisor { position: relative; overflow: hidden; isolation: isolate; display: flex; gap: 18px; align-items: center; background: #fff; border: 1.5px solid rgba(31,58,46,.09); border-radius: 18px; padding: 20px 22px; margin: 34px 0; box-shadow: 0 10px 28px -18px rgba(31,58,46,.28); transition: border-color .35s, box-shadow .5s cubic-bezier(.16,1,.3,1); }
.art-supervisor::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(194,65,12,.11), rgba(13,148,136,.09) 32%, rgba(234,88,12,.11) 66%, rgba(124,58,237,.10)); clip-path: circle(46px at 61px 50%); opacity: 0; transition: clip-path .8s cubic-bezier(.16,1,.3,1), opacity .3s ease; }
.art-supervisor:hover::before { clip-path: circle(165% at 61px 50%); opacity: 1; }
.art-supervisor:hover { border-color: rgba(194,65,12,.30); box-shadow: 0 22px 44px -22px rgba(31,58,46,.32), -18px 12px 38px -26px rgba(194,65,12,.20), 18px 12px 38px -26px rgba(13,148,136,.18); }
.art-supervisor .sv-badge { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--grad-main); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 15px; }
.art-supervisor .sv-photo { flex-shrink: 0; width: 78px; height: 78px; border-radius: 50%; padding: 3px; background: conic-gradient(from 210deg, #C2410C, #0d9488, #ea580c, #7c3aed, #16a34a, #C2410C); box-shadow: 0 10px 24px -12px rgba(31,58,46,.4); }
.art-supervisor .sv-photo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; border: 3px solid #fff; }
.art-supervisor .sv-name { font-size: 14px; font-weight: 800; }
.art-supervisor .sv-bio { font-size: 12.5px; color: var(--text-sec); line-height: 1.8; margin-top: 4px; }
.art-list { display: grid; gap: 16px; max-width: 860px; margin: 30px auto 0; } /* ホバーリフト(-6px)が上の本文に触れないクリアランス */
/* カード作法（2026-07-07山根さんFBで確立・PM Quest本体3本柱流）
   非ホバー＝ほぼ無色の枠。ホバー＝バネ系イージングでヒュンと浮く＋薄い色枠＋ほんのり虹色の影。上端カラーラインは禁止 */
.art-card { position: relative; display: block; background: #fff; border: 1.5px solid rgba(31,58,46,.09); border-radius: 20px; padding: 25px 27px; text-decoration: none; color: var(--text); box-shadow: 0 10px 28px -18px rgba(31,58,46,.28); transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s cubic-bezier(.16,1,.3,1), border-color .35s ease; }
.art-card:hover { transform: translateY(-6px) scale(1.012); border-color: var(--card-ac-bd, rgba(234,88,12,.45)); box-shadow: 0 30px 58px -26px rgba(31,58,46,.30), 0 22px 44px -26px var(--card-ac-glow, rgba(234,88,12,.24)), -22px 14px 44px -30px rgba(194,65,12,.18), 22px 14px 44px -30px rgba(13,148,136,.16), 0 6px 22px -14px rgba(124,58,237,.12); }
.art-card .ac-bundle { display: inline-flex; align-items: center; font-size: 10.5px; font-weight: 800; letter-spacing: 2px; color: var(--card-ac, var(--accent)); background: var(--card-ac-lt, rgba(234,88,12,.08)); padding: 4px 11px; border-radius: 999px; margin-bottom: 11px; }
.art-card h3 { font-size: 18px; font-weight: 900; line-height: 1.5; margin-bottom: 8px; }
.art-card p { font-size: 13.5px; color: var(--text-sec); line-height: 1.85; }
.art-card .ac-why { margin-top: 10px; font-size: 12px; color: var(--card-ac, var(--primary)); font-weight: 800; display: inline-block; transition: transform .4s cubic-bezier(.16,1,.3,1); }
.art-card:hover .ac-why { transform: translateX(4px); }

/* ===== 診断 ===== */
/* 判定スピナー（spinner.md ellipsis のバニラ再現・reduced/static時はCSS側でアニメ停止） */
.sd-judging { text-align: center; padding: 70px 20px 60px; }
.sd-judging p { font-size: 13.5px; color: var(--text-sec); margin-top: 18px; font-weight: 700; }
.sd-spin { display: inline-flex; gap: 9px; }
.sd-spin i { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); animation: sdDot 1s ease-in-out infinite; }
.sd-spin i:nth-child(1) { background: #C2410C; animation-delay: 0s; }
.sd-spin i:nth-child(2) { background: #C2410C; animation-delay: .15s; }
.sd-spin i:nth-child(3) { background: #0d9488; animation-delay: .3s; }
@keyframes sdDot { 0%, 100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(-9px); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .sd-spin i { animation: none; } }
html.fx-off, html.u-static .sd-spin i { animation: none !important; }
.sd-wrap { max-width: 680px; margin: 0 auto; padding: 50px 24px 40px; }
.sd-progress { height: 8px; background: var(--border-light); border-radius: 999px; overflow: hidden; margin: 18px 0 30px; }
.sd-progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 999px; transition: width .35s cubic-bezier(.16,1,.3,1); }
.sd-q { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 30px 28px; box-shadow: var(--shadow-md); }
.sd-qnum { font-size: 11px; font-weight: 800; letter-spacing: 2px; color: var(--accent); margin-bottom: 10px; }
.sd-q h2 { font-size: 20px; font-weight: 900; line-height: 1.6; margin-bottom: 20px; }
.sd-opt { display: block; width: 100%; text-align: left; background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px; padding: 15px 18px; font-size: 14.5px; font-weight: 600; color: var(--text); cursor: pointer; margin-bottom: 10px; font-family: inherit; line-height: 1.6; transition: border-color .15s, background .15s, transform .12s; }
.sd-opt:hover { border-color: var(--primary); background: var(--primary-lt); transform: translateX(4px); }
.sd-back { background: none; border: none; color: var(--text-muted); font-size: 13px; cursor: pointer; margin-top: 16px; font-family: inherit; }
.sd-result { background: #fff; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.sd-result-head { background: linear-gradient(135deg, var(--primary-dk), var(--primary)); color: #fff; padding: 34px 30px; }
.sd-result-head .rk { font-size: 11px; letter-spacing: 3px; font-weight: 800; color: #FDBA74; margin-bottom: 10px; }
.sd-result-head h2 { font-size: 27px; font-weight: 900; line-height: 1.4; }
.sd-result-head p { margin-top: 12px; font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.9; }
.sd-result-body { padding: 28px 30px 32px; }
.sd-result-body h3 { font-size: 15px; font-weight: 900; color: var(--primary); margin: 20px 0 10px; }
.sd-result-body p, .sd-result-body li { font-size: 14px; line-height: 1.95; color: var(--text); }
.sd-result-body ul { margin: 0 0 6px 20px; }
.sd-target { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 8px; }
.sd-target span { background: var(--primary-lt); border: 1px solid var(--primary-bd); color: var(--primary); font-size: 12.5px; font-weight: 700; padding: 6px 12px; border-radius: 999px; }
.sd-bars { margin: 16px 0 4px; }
.sd-bar { margin-bottom: 12px; }
.sd-bar .lb { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: var(--text-sec); margin-bottom: 5px; }
.sd-bar .tr { height: 9px; background: var(--border-light); border-radius: 999px; overflow: hidden; }
.sd-bar .fl { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 999px; transition: width 1s cubic-bezier(.16,1,.3,1) .2s; }
.sd-reads a { display: block; background: #fff; border: 1.5px solid rgba(31,58,46,.09); border-radius: 12px; padding: 12px 16px; margin-bottom: 8px; text-decoration: none; color: var(--text); font-size: 13.5px; font-weight: 700; transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s cubic-bezier(.16,1,.3,1), border-color .3s; }
.sd-reads a:hover { border-color: rgba(234,88,12,.45); transform: translateY(-3px); box-shadow: 0 16px 32px -18px rgba(31,58,46,.28), 0 12px 26px -18px rgba(234,88,12,.22), -12px 8px 26px -20px rgba(194,65,12,.16), 12px 8px 26px -20px rgba(13,148,136,.14); }
.sd-retry { background: none; border: 1.5px solid var(--border); border-radius: 10px; padding: 10px 20px; font-size: 13px; font-weight: 700; color: var(--text-sec); cursor: pointer; font-family: inherit; margin-top: 18px; }

@media (max-width: 720px) {
  .float-stage { min-height: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 8px; }
  .float-el { position: static; animation: none; }
  .cf-giant { letter-spacing: -2px; }
  .art-wrap h1 { font-size: 26px; }
}

/* ===== reduced motion / ?static=1（fx-off）共通の演出オフ ===== */
@media (prefers-reduced-motion: reduce) {
  .bg-live .blob, .bg-live .grid, .float-el, .marquee-track, .pf-fadein { animation: none !important; }
  .pf-fadein { opacity: 1; }
  .rv { opacity: 1; transform: none; transition: none; }
  .tr-char { transition: none; transform: none; animation: none; }
  html { scroll-behavior: auto; }
}
html.fx-off, html.u-static .bg-live .blob, html.fx-off, html.u-static .bg-live .grid, html.fx-off, html.u-static .float-el,
html.fx-off, html.u-static .marquee-track, html.fx-off, html.u-static .pf-fadein { animation: none !important; }
html.fx-off, html.u-static .pf-fadein { opacity: 1; }
html.fx-off, html.u-static .rv { opacity: 1 !important; transform: none !important; transition: none !important; }
html.fx-off, html.u-static .tr-char { transition: none; transform: none; animation: none !important; }
html.fx-off, html.u-static { scroll-behavior: auto; }

/* ===== §10対応：背景を殺さない・カード列の質感 ===== */
.hm-sec-alt { background: rgba(238,245,240,.55) !important; }

/* ===== 大項目システム（2026-07-07山根さんFB「大項目として機能していない」→章の切替感を出す統一系） =====
   構成＝①背後の巨大ゴースト文字（薄いセクション色）②通し番号入り色チップ③H2＋グラデ下線④色付き強調em。
   セクション固有色は style="--sec:色; --sec-lt:薄色;" で渡す（§4「セクションごとに色を変える」） */
.hm-sec { position: relative; padding: 88px 0 80px; }
.hm-sec > .container { position: relative; }
.hm-head { position: relative; max-width: 880px; }
.sec-ghost { position: absolute; top: -54px; left: -12px; z-index: -1; font-family: 'Inter', sans-serif; font-weight: 900; font-size: clamp(84px, 10.5vw, 158px); line-height: 1; letter-spacing: -.045em; color: var(--sec-ghost, rgba(31,58,46,.055)); user-select: none; pointer-events: none; white-space: nowrap; }
.hm-kicker { display: inline-flex; align-items: center; gap: 10px; background: var(--sec-lt, rgba(234,88,12,.08)); border: 1px solid var(--sec-bd, rgba(234,88,12,.22)); color: var(--sec, #ea580c); border-radius: 999px; padding: 5px 16px 5px 6px; font-size: 11px; font-weight: 800; letter-spacing: 2.5px; margin-bottom: 18px; }
.hm-kicker .no { display: inline-flex; align-items: center; justify-content: center; min-width: 25px; height: 25px; border-radius: 999px; background: var(--sec, #ea580c); color: #fff; font-family: 'Inter', sans-serif; font-weight: 900; font-size: 11.5px; letter-spacing: 0; }
.hm-h2 { font-size: clamp(25px, 2.75vw, 34px); font-weight: 900; line-height: 1.45; letter-spacing: -1px; color: var(--primary); margin: 0 0 16px; } /* 880px幅で1行に収まる上限＝孤立改行防止 */
.hm-h2 em { font-style: normal; color: var(--sec, #ea580c); background: linear-gradient(transparent 62%, var(--sec-lt, rgba(234,88,12,.16)) 62%); padding: 0 2px; }
.hm-h2::after { content: ""; display: block; width: 78px; height: 5px; border-radius: 999px; margin-top: 16px; background: linear-gradient(90deg, var(--sec, #ea580c), transparent); }
.hm-lead { font-size: 14.5px; line-height: 2.05; color: var(--text-sec); max-width: 740px; }
@media (max-width: 700px) { .hm-sec { padding: 60px 0 56px; } .sec-ghost { top: -34px; font-size: clamp(64px, 17vw, 96px); } }
/* カードの色違いは「ホバー時の薄色枠＋淡いグロー＋種別チップの色」で出す（上端カラーラインは廃止） */
.card-coral  { --card-ac: #ea580c; --card-ac-bd: rgba(234,88,12,.45);  --card-ac-lt: rgba(234,88,12,.08);  --card-ac-glow: rgba(234,88,12,.24); }
.card-indigo { --card-ac: #C2410C; --card-ac-bd: rgba(194,65,12,.45);  --card-ac-lt: rgba(194,65,12,.08);  --card-ac-glow: rgba(194,65,12,.24); }
.card-teal   { --card-ac: #0d9488; --card-ac-bd: rgba(13,148,136,.45); --card-ac-lt: rgba(13,148,136,.08); --card-ac-glow: rgba(13,148,136,.24); }
.card-violet { --card-ac: #7c3aed; --card-ac-bd: rgba(124,58,237,.45); --card-ac-lt: rgba(124,58,237,.08); --card-ac-glow: rgba(124,58,237,.24); }
.cf-brandrow { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.cf-brandrow img { height: 22px; width: auto; display: block; opacity: .92; }
.cf-brandrow span { font-size: 11.5px; color: rgba(255,255,255,.55); font-weight: 600; }
.hdr-cobrand { display: inline-flex; align-items: center; gap: 6px; margin-left: 10px; font-size: 10px; color: var(--text-muted); font-weight: 700; }
.hdr-cobrand img { height: 16px; width: auto; display: block; }
/* ヒーロー右上コブランド行（45+本体と同じ流儀＝ピルなし・透過PNGロゴを大きく直置き。2026-07-07山根さんFB第3弾で45+側が刷新した最新フォーマット。薄いピル型は旧版なので使わない） */
.heroU-cobrand { position: absolute; top: 104px; right: 40px; z-index: 3; display: inline-flex; align-items: center; gap: 13px; }
.heroU-cobrand .hcb-unit { display: inline-flex; align-items: center; gap: 8px; }
.heroU-cobrand img { height: 30px; width: auto; display: block; filter: drop-shadow(0 2px 8px rgba(15,76,76,.18)); }
.heroU-cobrand b { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 15px; letter-spacing: -.3px; color: var(--primary); }
.heroU-cobrand .hcb-x { font-weight: 700; font-size: 12px; color: var(--text-muted); }
@media (max-width: 760px) { .heroU-cobrand { display: none; } }

/* ============================================================
   HERO一体型（2026-07-07山根さんFB第3弾・修正1）
   原典 hero-section-5 の構造そのもの＝動画がヒーロー全域の丸角面として
   ほぼ背景化（inset-1・ほぼ全幅）し、その前面に見出し/リード/CTAが乗る。
   動画は opacity .48（原典 opacity-50）＋左寄りの白スクリムで可読性担保。
   PC＝lg:text-left基準。モバイル＝縦長トリム（object-fit:coverで自動）
   ============================================================ */
.heroU { padding: 8px 8px 0; }
.heroU-stage { position: relative; border-radius: clamp(24px, 3.2vw, 44px); overflow: hidden; min-height: clamp(620px, 90vh, 940px); display: flex; align-items: center; background: #fff; border: 1px solid rgba(31,58,46,.12); box-shadow: 0 44px 84px -42px rgba(31,58,46,.40), -30px 22px 62px -44px rgba(194,65,12,.30), 30px 22px 62px -44px rgba(13,148,136,.26), 0 12px 50px -28px rgba(234,88,12,.24); }
.heroU-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .48; }

/* ===== 実物コンポジット（動画未制作の間の代替演出。自前画像を薄く敷いてドリフト）
   ブラー大型要素は使わない（負荷/AI臭さの教訓）。?static=1・reduced-motionで静止。 ===== */
.photo-drift { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.photo-drift img {
  position: absolute; object-fit: cover; opacity: .30; filter: saturate(.95);
  border-radius: 18px; will-change: transform;
  animation: pd-drift 32s ease-in-out infinite alternate;
}
.photo-drift img:nth-child(1) { top: -4%; left: -3%; width: 36%; height: 48%; animation-duration: 35s; animation-name: pd-drift-a; }
.photo-drift img:nth-child(2) { top: 8%; right: -5%; width: 32%; height: 42%; animation-duration: 29s; animation-delay: -4s; animation-name: pd-drift-b; }
.photo-drift img:nth-child(3) { bottom: -6%; left: 18%; width: 30%; height: 44%; animation-duration: 38s; animation-delay: -9s; animation-name: pd-drift-a; }
.photo-drift img:nth-child(4) { bottom: 4%; right: 10%; width: 26%; height: 36%; animation-duration: 30s; animation-delay: -13s; opacity: .24; animation-name: pd-drift-b; }
.photo-drift img:nth-child(5) { top: 38%; left: 42%; width: 24%; height: 32%; animation-duration: 33s; animation-delay: -6s; opacity: .20; animation-name: pd-drift-a; }
@keyframes pd-drift-a {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(6%, -7%) scale(1.16); }
}
@keyframes pd-drift-b {
  0%   { transform: translate(0, 0) scale(1.05); }
  100% { transform: translate(-7%, 6%) scale(.96); }
}
html.fx-off .photo-drift img, html.u-static .photo-drift img { animation: none !important; }
@media (prefers-reduced-motion: reduce) { .photo-drift img { animation: none !important; } }
/* 記事一覧・診断・eBookの見出しブロック用＝軽量版（1〜2枚・小さめ） */
.hm-head-photo { position: absolute; inset: -24px -16px auto auto; width: 46%; max-width: 360px; z-index: -1; overflow: hidden; border-radius: 22px; pointer-events: none; }
.hm-head-photo img { display: block; width: 100%; height: 100%; object-fit: cover; opacity: .26; animation: pd-drift-a 38s ease-in-out infinite alternate; }
html.fx-off .hm-head-photo img, html.u-static .hm-head-photo img { animation: none !important; }
@media (prefers-reduced-motion: reduce) { .hm-head-photo img { animation: none !important; } }
@media (max-width: 700px) { .hm-head-photo { display: none; } }
/* 左＝テキスト側を白く持ち上げるスクリム（blur不使用・グラデのみ＝軽量） */
.heroU-scrim { position: absolute; inset: 0; pointer-events: none; background:
  linear-gradient(100deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.82) 30%, rgba(255,255,255,.44) 58%, rgba(255,255,255,.10) 100%),
  linear-gradient(180deg, rgba(255,255,255,.34), transparent 26%, transparent 72%, rgba(255,255,255,.46)); }
.heroU-content { position: relative; z-index: 2; width: 100%; max-width: 1240px; margin: 0 auto; padding: 84px clamp(24px, 5vw, 72px) 72px; }
.heroU-col { max-width: 640px; text-align: left; }
.heroU-col .heroA-sub { margin-left: 0; margin-right: 0; }
.heroU-col .heroA-cta { justify-content: flex-start; }
.heroU-stats { display: flex; gap: 38px; flex-wrap: wrap; padding-top: 24px; margin-top: 6px; border-top: 1px solid rgba(31,58,46,.16); max-width: 640px; }
.heroU-stats .v { font-size: 29px; font-weight: 900; font-family: 'Inter', sans-serif; color: var(--primary); line-height: 1; }
.heroU-stats .v small { font-size: 13px; color: var(--accent); font-weight: 800; }
.heroU-stats .l { font-size: 11px; color: var(--text-sec); margin-top: 6px; font-weight: 700; }
.heroU-badge { position: absolute; right: 22px; bottom: 20px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.9); border: 1px solid rgba(31,58,46,.10); border-radius: 999px; padding: 7px 15px; font-size: 11px; font-weight: 700; color: var(--text-sec); box-shadow: 0 8px 22px -10px rgba(31,58,46,.35); }
.heroU-badge img { height: 16px; width: auto; display: block; }
.heroU-brands { max-width: 1000px; margin: 30px auto 0; display: flex; align-items: center; gap: 24px; padding: 0 24px; }
@media (max-width: 900px) {
  .heroU { padding: 6px 6px 0; }
  .heroU-stage { min-height: clamp(560px, 86vh, 820px); border-radius: 22px; } /* モバイル＝縦長トリム */
  .heroU-scrim { background: linear-gradient(180deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,.72) 46%, rgba(255,255,255,.30) 78%, rgba(255,255,255,.55) 100%); }
  .heroU-content { padding: 56px 22px 96px; }
  .heroU-col { text-align: center; margin: 0 auto; }
  .heroU-col .heroA-cta { justify-content: center; }
  .heroU-stats { gap: 22px; justify-content: center; }
  .heroU-badge { right: 14px; bottom: 12px; }
}

/* ============================================================
   ARTICLES＝news-cards（21st.dev）バニラ再現（修正2）
   画像つきカードグリッド（md:2列/xl:3列）＋下部グラデ＋白メタ。
   クリック＝FLIP（カードrect→固定オーバーレイへ top/left/width/height を
   cubic-bezier(.16,1,.3,1) で遷移）→記事本文をfetchして内部スクロール表示
   ============================================================ */
.nc-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 30px; }
@media (min-width: 700px)  { .nc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1120px) { .nc-grid { grid-template-columns: repeat(3, 1fr); } }
/* 現状の良い点＝ホバーで薄色枠＋リフト（art-cardの作法）を維持 */
.nc-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1.5px solid rgba(31,58,46,.09); border-radius: 20px; overflow: hidden; text-decoration: none; color: var(--text); box-shadow: 0 10px 28px -18px rgba(31,58,46,.28); transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s cubic-bezier(.16,1,.3,1), border-color .35s ease; }
.nc-card:hover { transform: translateY(-6px) scale(1.012); border-color: var(--card-ac-bd, rgba(234,88,12,.45)); box-shadow: 0 30px 58px -26px rgba(31,58,46,.30), 0 22px 44px -26px var(--card-ac-glow, rgba(234,88,12,.24)), -22px 14px 44px -30px rgba(194,65,12,.18), 22px 14px 44px -30px rgba(13,148,136,.16); }
.nc-media { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--primary-lt); flex-shrink: 0; }
.nc-media img { width: 100%; height: 100%; object-fit: cover; display: block; transform: translateZ(0); transition: transform .7s cubic-bezier(.16,1,.3,1); }
.nc-card:hover .nc-media img { transform: scale(1.05); }
/* サムネ実物素材が無い記事＝束カテゴリ色グラデ＋大タイポのプレースホルダ */
.nc-ph {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 0 22px; overflow: hidden;
  background:
    /* 光の筋（斜めハイライト2本＝工場の照明が金属に反射するイメージ） */
    linear-gradient(115deg, transparent 22%, rgba(255,255,255,.16) 26%, transparent 30%),
    linear-gradient(115deg, transparent 54%, rgba(255,255,255,.09) 57%, transparent 61%),
    /* ヘアライン加工（微細な等間隔ライン） */
    repeating-linear-gradient(100deg, rgba(255,255,255,.05) 0px, rgba(255,255,255,.05) 1px, transparent 1px, transparent 5px),
    /* 地の金属グラデ */
    linear-gradient(135deg, var(--ph1, #ea580c), var(--ph2, #9a3412));
}
/* パンチングメタル（等間隔の穴あき板）を隅に薄く重ねる */
.nc-ph::after {
  content: ''; position: absolute; inset: -10% -10% -10% auto; width: 62%; z-index: 0; opacity: .16; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.9) 1.1px, transparent 1.3px);
  background-size: 13px 13px;
  mask-image: linear-gradient(115deg, transparent, #000 45%, #000 100%);
  -webkit-mask-image: linear-gradient(115deg, transparent, #000 45%, #000 100%);
}
.nc-ph::before { content: attr(data-en); position: absolute; right: -6px; bottom: -14px; font-family: 'Inter', sans-serif; font-weight: 900; font-size: 64px; letter-spacing: -2px; color: rgba(255,255,255,.14); white-space: nowrap; z-index: 1; }
.nc-ph b { position: relative; z-index: 2; font-size: clamp(30px, 3.2vw, 40px); font-weight: 900; color: #fff; letter-spacing: 2px; line-height: 1.2; text-shadow: 0 4px 18px rgba(0,0,0,.18); }
.nc-ph i { position: relative; z-index: 2; font-style: normal; font-size: 10px; font-weight: 800; letter-spacing: 3px; color: rgba(255,255,255,.75); margin-top: 8px; }
.nc-grad { position: absolute; left: 0; right: 0; bottom: 0; height: 48%; background: linear-gradient(180deg, transparent, rgba(13,23,48,.80)); pointer-events: none; }
.nc-meta { position: absolute; left: 15px; right: 15px; bottom: 12px; color: #fff; z-index: 2; line-height: 1.5; }
.nc-meta b { display: block; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; opacity: .95; }
.nc-meta i { font-style: normal; font-size: 10.5px; opacity: .72; font-weight: 600; }
.nc-body { padding: 17px 20px 19px; display: flex; flex-direction: column; flex: 1; }
.nc-body h3 { font-size: 16px; font-weight: 900; line-height: 1.55; margin: 0 0 8px; transition: color .25s; }
.nc-card:hover .nc-body h3 { color: var(--card-ac, var(--accent)); }
.nc-body p { font-size: 12.5px; color: var(--text-sec); line-height: 1.8; margin: 0; }
.nc-body .nc-why { margin-top: auto; padding-top: 10px; font-size: 11.5px; color: var(--card-ac, var(--primary)); font-weight: 800; transition: transform .4s cubic-bezier(.16,1,.3,1); align-self: flex-start; }
.nc-card:hover .nc-why { transform: translateX(4px); }
/* 展開モーダル（FLIP先の固定オーバーレイ） */
.ncx-backdrop { position: fixed; inset: 0; z-index: 300; background: rgba(13,23,48,.46); opacity: 0; transition: opacity .4s ease; }
.ncx-backdrop.on { opacity: 1; }
.ncx-panel { position: fixed; z-index: 301; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 60px 120px -40px rgba(13,23,48,.55); will-change: top, left, width, height; transition: top .55s cubic-bezier(.16,1,.3,1), left .55s cubic-bezier(.16,1,.3,1), width .55s cubic-bezier(.16,1,.3,1), height .55s cubic-bezier(.16,1,.3,1), border-radius .55s cubic-bezier(.16,1,.3,1); }
.ncx-panel.open { border-radius: 24px; }
.ncx-scroll { position: absolute; inset: 0; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
.ncx-hero { position: relative; height: 240px; overflow: hidden; background: var(--primary-lt); }
@media (min-width: 800px) { .ncx-hero { height: 300px; } }
.ncx-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ncx-hero .nc-ph { position: absolute; }
.ncx-hero .nc-grad { height: 40%; }
.ncx-title { padding: 26px 28px 6px; }
.ncx-title .art-label { margin-bottom: 12px; }
.ncx-title h1 { font-size: clamp(21px, 2.6vw, 30px); font-weight: 900; line-height: 1.5; letter-spacing: -.6px; margin: 0 0 10px; }
.ncx-title .art-meta { margin-bottom: 0; padding-bottom: 16px; }
.ncx-body { padding: 4px 28px 40px; opacity: 0; transform: translateY(14px); transition: opacity .5s ease .1s, transform .5s cubic-bezier(.16,1,.3,1) .1s; }
.ncx-body.on { opacity: 1; transform: none; }
.ncx-body .ncx-perma { display: inline-block; margin-top: 26px; font-size: 13px; font-weight: 800; color: var(--accent); text-decoration: none; }
.ncx-loading { padding: 60px 20px; text-align: center; color: var(--text-muted); font-size: 13px; font-weight: 700; }
.ncx-close { position: absolute; top: 14px; right: 14px; z-index: 5; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(31,58,46,.12); background: rgba(255,255,255,.92); color: var(--primary); font-size: 17px; font-weight: 900; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 22px -10px rgba(31,58,46,.4); transition: transform .3s cubic-bezier(.16,1,.3,1); font-family: inherit; line-height: 1; }
.ncx-close:hover { transform: scale(1.1) rotate(90deg); }
html.ncx-lock, html.ncx-lock body { overflow: hidden; }

/* ============================================================
   監修＝人物ヒーロー型（修正3）
   採用サイトの人物ヒーロー：切り抜きPNGがセクションの主役として
   下端に接地して立ち、左に大きな言い切りコピー＋赤ペン風の強調。
   背景＝ヒーロー動画と響き合う丸角の淡い虹の面。
   ホバー＝人物起点の円形リビール（好評だった動きをこの構図で継承）
   ============================================================ */
.sv-hero { position: relative; overflow: hidden; isolation: isolate; display: grid; grid-template-columns: 1.3fr .9fr; align-items: end; gap: 0 10px; border-radius: 30px; background: #fff; border: 1.5px solid rgba(31,58,46,.09); min-height: 440px; padding: 54px 0 0 clamp(26px, 4vw, 56px); box-shadow: 0 30px 62px -32px rgba(31,58,46,.32), -24px 16px 50px -34px rgba(194,65,12,.22), 24px 16px 50px -34px rgba(13,148,136,.20), 0 10px 40px -24px rgba(234,88,12,.20); }
/* 淡い虹の面（blur不使用・多段radial） */
.sv-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background:
  radial-gradient(ellipse 56% 62% at 88% 18%, rgba(234,88,12,.10), transparent 64%),
  radial-gradient(ellipse 50% 58% at 6% 92%, rgba(194,65,12,.10), transparent 64%),
  radial-gradient(ellipse 44% 52% at 70% 96%, rgba(13,148,136,.09), transparent 62%),
  radial-gradient(ellipse 38% 46% at 30% 4%, rgba(124,58,237,.07), transparent 60%); }
/* ホバー円形リビール：人物の立ち位置（右側）起点で淡い虹が全面へ */
.sv-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(194,65,12,.10), rgba(13,148,136,.08) 32%, rgba(234,88,12,.10) 66%, rgba(124,58,237,.09)); clip-path: circle(70px at 78% 62%); opacity: 0; transition: clip-path .9s cubic-bezier(.16,1,.3,1), opacity .3s ease; }
.sv-hero:hover::after { clip-path: circle(160% at 78% 62%); opacity: 1; }
.sv-copy { padding-bottom: 52px; position: relative; z-index: 2; }
.sv-kick { display: inline-flex; align-items: center; gap: 9px; font-size: 10.5px; font-weight: 800; letter-spacing: 3px; color: #7c3aed; margin-bottom: 20px; }
.sv-kick::before { content: ""; width: 26px; height: 2px; background: #7c3aed; border-radius: 2px; }
.sv-copy h3 { font-size: clamp(27px, 3.5vw, 42px); font-weight: 900; line-height: 1.55; letter-spacing: -1.4px; color: var(--primary); margin: 0 0 24px; }
/* 赤ペン風の手書き円（「誠実な熱量で、」参考例のvibe）：rv.onでダッシュが走る */
.sv-mark { position: relative; display: inline-block; padding: 0 .08em; }
.sv-mark svg { position: absolute; left: -11%; top: -22%; width: 122%; max-width: none; height: 148%; overflow: visible; pointer-events: none; }
.sv-mark svg path { fill: none; stroke: #e11d48; stroke-width: 4.5; stroke-linecap: round; opacity: .85; stroke-dasharray: 560; stroke-dashoffset: 560; }
.rv.on .sv-mark svg path, html.fx-off, html.u-static .sv-mark svg path { transition: stroke-dashoffset 1.1s cubic-bezier(.6,0,.3,1) .55s; stroke-dashoffset: 0; }
@media (prefers-reduced-motion: reduce) { .sv-mark svg path { stroke-dashoffset: 0; } }
.sv-cred { max-width: 480px; }
.sv-cred .sv-name { font-size: 14.5px; font-weight: 800; }
.sv-cred .sv-bio { font-size: 12.5px; color: var(--text-sec); line-height: 1.9; margin-top: 6px; }
.sv-figure { position: relative; align-self: end; display: flex; align-items: flex-end; justify-content: center; min-height: 380px; }
.sv-ghost { position: absolute; right: 8px; top: 8px; font-family: 'Inter', sans-serif; font-weight: 900; font-size: clamp(74px, 8.5vw, 128px); line-height: 1; letter-spacing: -4px; color: transparent; -webkit-text-stroke: 1.5px rgba(31,58,46,.10); user-select: none; pointer-events: none; }
.sv-figure img { display: block; width: min(340px, 26vw); height: auto; filter: drop-shadow(0 26px 46px rgba(31,58,46,.30)); transition: transform .7s cubic-bezier(.16,1,.3,1); }
.sv-hero:hover .sv-figure img { transform: translateY(-4px) scale(1.015); }
@media (max-width: 860px) {
  .sv-hero { grid-template-columns: 1fr; padding: 42px clamp(22px, 5vw, 40px) 0; min-height: 0; }
  .sv-copy { padding-bottom: 34px; }
  .sv-figure { min-height: 0; margin-top: -8px; }
  .sv-figure img { width: min(280px, 62vw); }
  .sv-ghost { right: 2px; top: auto; bottom: 34%; }
  .sv-hero::after { clip-path: circle(70px at 50% 82%); }
  .sv-hero:hover::after { clip-path: circle(180% at 50% 82%); }
}

/* ============================================================
   eBook 無料DLモーダル（fleet-kit v2・pm45-media原器の移植）
   ============================================================ */
.ebm-lock { overflow: hidden; }
.ebm-bg { position: fixed; inset: 0; z-index: 400; background: rgba(13,23,48,.55); display: none; align-items: center; justify-content: center; padding: 20px; }
.ebm-bg.on { display: flex; animation: ebmIn .3s ease; }
@keyframes ebmIn { from { opacity: 0; } to { opacity: 1; } }
.ebm { position: relative; width: min(460px, 100%); max-height: 90vh; overflow-y: auto; background: #fff; border-radius: 20px; padding: 30px 30px 28px; box-shadow: 0 50px 100px -30px rgba(13,23,48,.6); }
.ebm-close { position: absolute; right: 14px; top: 12px; width: 34px; height: 34px; border: none; background: rgba(31,58,46,.06); border-radius: 50%; font-size: 18px; color: var(--text-sec); cursor: pointer; }
.ebm-kicker { font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 800; letter-spacing: 2.5px; color: var(--accent); }
.ebm h3 { font-size: 20px; font-weight: 900; margin: 6px 0 10px; }
.ebm-sub { font-size: 12.5px; line-height: 1.8; color: var(--text-sec); margin: 0 0 16px; }
.ebm-sub strong { color: var(--accent); }
.ebm label { display: block; font-size: 12px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.ebm input { display: block; width: 100%; margin-top: 6px; padding: 11px 14px; font-size: 14px; border: 1.5px solid rgba(31,58,46,.16); border-radius: 10px; background: #fdfdfc; }
.ebm input:focus { outline: none; border-color: var(--accent); }
.ebm-note { font-size: 10.5px; color: var(--text-sec); line-height: 1.7; margin: 2px 0 14px; }
.ebm-actions { display: flex; gap: 10px; justify-content: flex-end; }
.ebm-cancel { background: none; border: 1.5px solid rgba(31,58,46,.16); border-radius: 11px; padding: 11px 18px; font-size: 13px; font-weight: 700; color: var(--text-sec); cursor: pointer; }
.ebm-submit, .ebm-dl { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; font-weight: 800; font-size: 14px; padding: 12px 22px; border: none; border-radius: 11px; cursor: pointer; text-decoration: none; }
.ebm-submit[disabled] { opacity: .6; cursor: wait; }
.ebm-done-state, .ebm-fallback-state { text-align: center; padding: 8px 0 4px; }
.ebm-done-state p, .ebm-fallback-state p { font-size: 13px; line-height: 1.85; color: var(--text-sec); margin: 0 0 18px; }
.ebm-ck { width: 52px; height: 52px; margin: 0 auto 10px; border-radius: 50%; background: #16a34a; color: #fff; font-size: 26px; font-weight: 900; display: flex; align-items: center; justify-content: center; }

/* 記事下のeBook導線 */
.art-ebook { display: flex; align-items: center; gap: 18px; margin: 40px 0 0; padding: 22px 24px; background: linear-gradient(135deg, var(--primary-lt), #fff); border: 1.5px solid var(--accent); border-radius: 16px; text-align: left; }
.art-ebook .ae-ic { flex: 0 0 auto; font-size: 30px; }
.art-ebook .ae-tx { min-width: 0; }
.art-ebook .ae-tx b { display: block; font-size: 15.5px; font-weight: 900; color: var(--primary); margin-bottom: 4px; }
.art-ebook .ae-tx i { font-style: normal; font-size: 12.5px; color: var(--text-sec); line-height: 1.8; }
.art-ebook .ae-btn { flex: 0 0 auto; margin-left: auto; background: var(--accent); color: #fff; font-weight: 800; font-size: 13.5px; padding: 12px 22px; border: none; border-radius: 999px; cursor: pointer; white-space: nowrap; }
@media (max-width: 640px) { .art-ebook { flex-wrap: wrap; } .art-ebook .ae-btn { margin-left: 0; width: 100%; } }
