
/* ═══════════════════════════════════════════════════════════════
   31. FOOTER SNS & UPGRADE
═══════════════════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(180deg, #0a121f 0%, var(--n-900) 100%);
  border-top: none;
  position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--b-500) 30%, var(--g-500) 60%, transparent 100%);
  opacity: .7;
}
.footer__sns {
  display: flex; gap: 10px; margin-top: 20px;
}
.footer__sns-btn {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--n-500); font-size: 15px;
  transition: all .22s var(--e-out, cubic-bezier(.22,.61,.36,1));
  text-decoration: none;
}
.footer__sns-btn:hover {
  background: var(--b-600, #1547cc); border-color: transparent;
  color: #fff; transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(21,71,204,.4);
}
.footer__nav-col a {
  font-size: 13.5px; color: var(--n-600);
  transition: color .2s, transform .2s;
  display: flex; align-items: center; gap: 0;
}
.footer__nav-col a:hover { color: #fff; transform: translateX(4px); }
.footer__tagline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-family: var(--f-en, 'Inter',sans-serif);
  letter-spacing: .2em; color: var(--n-700); margin-top: 10px; text-transform: uppercase;
}
.footer__tagline::before, .footer__tagline::after {
  content: ''; width: 18px; height: 1px; background: var(--n-800);
}

/* ═══════════════════════════════════════════════════════════════
   32. SECTION TOP BORDERS
═══════════════════════════════════════════════════════════════ */
.news-section { position: relative; }
.news-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--b-500) 30%, var(--g-500) 70%, transparent);
  opacity: .5;
}
.blog-section { position: relative; }
.blog-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--g-500) 30%, var(--b-400) 70%, transparent);
  opacity: .5;
}

/* ── SECTION BACKGROUND TEXT WATERMARK ── */
.news-section .sec-container,
.blog-section .sec-container { position: relative; }
.news-section .sec-container::after {
  content: 'NEWS'; position: absolute;
  top: -10px; right: -10px; font-size: 110px; font-weight: 900;
  font-family: var(--f-en, 'Inter',sans-serif); color: rgba(255,255,255,.022);
  letter-spacing: .1em; pointer-events: none; user-select: none;
  line-height: 1; z-index: 0;
}
.blog-section .sec-container::after {
  content: 'BLOG'; position: absolute;
  top: -10px; right: -10px; font-size: 110px; font-weight: 900;
  font-family: var(--f-en, 'Inter',sans-serif); color: rgba(255,255,255,.022);
  letter-spacing: .1em; pointer-events: none; user-select: none;
  line-height: 1; z-index: 0;
}
.news-section .sec-head,
.news-section .news-tabs,
.news-section .news-content,
.news-section .news-footer,
.blog-section .sec-head,
.blog-section .blog-filter,
.blog-section .blog-grid,
.blog-section .blog-more { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════════
   33. NEWS CARD GLASSMORPHISM UPGRADE
═══════════════════════════════════════════════════════════════ */
.news-card {
  background: rgba(255,255,255,.038);
  backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 4px 24px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.07);
  transition: transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .28s, border-color .28s, background .28s;
}
.news-card:hover {
  background: rgba(255,255,255,.068);
  border-color: rgba(29,92,232,.35);
  box-shadow: 0 10px 40px rgba(0,0,0,.3), 0 0 0 1px rgba(29,92,232,.2), inset 0 1px 0 rgba(255,255,255,.12);
}
@keyframes newsCardIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.news-card { animation: newsCardIn .42s cubic-bezier(.22,.61,.36,1) both; }

/* NEWS TABS アンダーライン方式 */
.news-tabs {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 0; gap: 0; margin-bottom: 32px;
  flex-wrap: nowrap; overflow-x: auto;
  scrollbar-width: none;
}
.news-tabs::-webkit-scrollbar { display: none; }
.news-tab {
  border: none; border-radius: 0;
  border-bottom: 3px solid transparent;
  padding: 11px 22px 14px; margin-bottom: -1px;
  background: none; white-space: nowrap; flex-shrink: 0;
  position: relative;
}
.news-tab::after {
  content: ''; position: absolute; bottom: -1px; left: 50%; right: 50%;
  height: 3px; background: var(--b-400);
  transition: left .25s cubic-bezier(.22,.61,.36,1), right .25s cubic-bezier(.22,.61,.36,1);
}
.news-tab:hover { color: var(--b-200); background: rgba(255,255,255,.04); }
.news-tab.active { color: var(--b-200); background: none; box-shadow: none; border-bottom-color: var(--b-400); }
.news-tab.active::after { left: 0; right: 0; }

/* ═══════════════════════════════════════════════════════════════
   34. BLOG CARD PREMIUM UPGRADE
═══════════════════════════════════════════════════════════════ */
.blog-card {
  background: rgba(255,255,255,.038);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 4px 28px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.07);
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s, border-color .3s, background .3s;
}
.blog-card:hover {
  background: rgba(255,255,255,.068);
  border-color: rgba(29,92,232,.32);
  box-shadow: 0 14px 52px rgba(0,0,0,.32), 0 0 0 1px rgba(29,92,232,.18), inset 0 1px 0 rgba(255,255,255,.1);
}
@keyframes blogCardIn {
  from { opacity: 0; transform: translateY(22px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.blog-card { animation: blogCardIn .46s cubic-bezier(.22,.61,.36,1) both; }
/* サムネイルのオーバーレイ */
.blog-card__thumb { position: relative; }
.blog-card__thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.45) 100%);
  pointer-events: none; transition: opacity .3s;
}
.blog-card:hover .blog-card__thumb::after { opacity: .7; }

/* FILTER BUTTONS shimmer */
.blog-filter__btn.active {
  position: relative; overflow: hidden;
}
.blog-filter__btn.active::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.12) 50%, transparent 100%);
  animation: btnShimmer 2.4s linear infinite;
}
@keyframes btnShimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}
/* Filter Count Badge */
.blog-filter__btn .count {
  background: rgba(255,255,255,.12); color: var(--n-500);
  font-size: 10px; font-weight: 800; padding: 1px 7px; border-radius: 10px;
  font-family: var(--f-en, 'Inter',sans-serif); transition: background .2s, color .2s;
}
.blog-filter__btn.active .count { background: rgba(255,255,255,.25); color: #fff; }

/* BLOG MORE button divider */
.blog-more { position: relative; padding-top: 8px; }
.blog-more::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--b-500), transparent);
}

/* ═══════════════════════════════════════════════════════════════
   35. NEWS UPDATE TIME SPIN
═══════════════════════════════════════════════════════════════ */
@keyframes spinSlow { to { transform: rotate(360deg); } }
.news-update-time i { animation: spinSlow 3s linear infinite; }
.news-update-time i.done { animation: none; }

/* ═══════════════════════════════════════════════════════════════
   36. SCROLL TOP BUTTON UPGRADE
═══════════════════════════════════════════════════════════════ */
.scroll-top-btn {
  background: linear-gradient(135deg, var(--b-700, #0f3dab) 0%, var(--b-600, #1547cc) 100%) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  color: rgba(255,255,255,.9) !important;
  box-shadow: 0 4px 20px rgba(21,71,204,.45) !important;
}
.scroll-top-btn.visible:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 32px rgba(21,71,204,.6) !important;
}

/* ═══════════════════════════════════════════════════════════════
   37. FOCUS VISIBLE RING UPGRADE
═══════════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2.5px solid var(--b-300, #6fa0ff);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   38. SKELETON LOADING UI
═══════════════════════════════════════════════════════════════ */
@keyframes skelPulse {
  0%, 100% { opacity: .6; }
  50%       { opacity: 1; }
}
.skeleton-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-2xl, 20px); overflow: hidden;
  animation: skelPulse 1.6s ease infinite;
}
.skeleton-line {
  height: 14px; border-radius: 7px; margin-bottom: 10px;
  background: linear-gradient(90deg, rgba(255,255,255,.06) 25%, rgba(255,255,255,.12) 50%, rgba(255,255,255,.06) 75%);
  background-size: 200% 100%;
  animation: skelSlide 1.5s ease infinite;
}
@keyframes skelSlide {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ═══════════════════════════════════════════════════════════════
   39. RESPONSIVE ADJUSTMENTS（レスポンシブ微調整）
═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .news-tabs { gap: 0; }
  .news-tab  { padding: 10px 14px 13px; font-size: 13px; }
  .blog-filter { gap: 6px; }
  .blog-filter__btn { padding: 7px 13px; font-size: 12.5px; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; gap: 14px; }
}
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   40. PREMIUM HERO UPGRADE — キラキラ粒子 & タイポグラフィ強化
═══════════════════════════════════════════════════════════════ */
/* ヒーローの極上グラデーション背景 */
.hero {
  background:
    radial-gradient(ellipse 120% 80% at 0% 10%, rgba(21,71,204,.22) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 100% 90%, rgba(249,186,26,.10) 0%, transparent 55%),
    linear-gradient(160deg, #020b18 0%, #040e22 50%, #060f1e 100%);
}

/* ヒーロー見出し —— 黄金ハイライト */
.hero__title .hl-gold {
  background: linear-gradient(135deg, #f9ba1a 0%, #ffd76a 45%, #f9ba1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 18px rgba(249,186,26,.45));
  text-shadow: none;
}
/* ヒーロー見出し —— ブルーハイライト */
.hero__title .hl-blue {
  background: linear-gradient(135deg, #6fa0ff 0%, #3d7df5 60%, #1d5ce8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 14px rgba(61,125,245,.5));
  text-shadow: none;
}

/* KPIカード micro-animation */
.hero__kpi-item {
  position: relative; overflow: hidden;
  transition: transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .28s;
}
.hero__kpi-item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.hero__kpi-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.hero__kpi-item:hover::before { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   41. CTA BUTTON ULTRA PREMIUM
═══════════════════════════════════════════════════════════════ */
.btn-gold {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #f4a800 0%, #f9ba1a 45%, #ffe066 65%, #f9ba1a 100%);
  background-size: 200% 100%;
  animation: goldShift 4s ease infinite;
  box-shadow:
    0 4px 20px rgba(249,186,26,.5),
    0 1px 0 rgba(255,255,255,.35) inset,
    0 -1px 0 rgba(0,0,0,.2) inset;
  color: #1a0e00 !important;
  font-weight: 900;
  letter-spacing: .04em;
  border: none !important;
  transition: transform .22s cubic-bezier(.22,.61,.36,1), box-shadow .22s !important;
}
.btn-gold::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-18deg);
  animation: goldSweep 3.5s ease 1.2s infinite;
}
@keyframes goldShift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes goldSweep {
  0%   { left: -100%; }
  40%  { left: 130%; }
  100% { left: 130%; }
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow:
    0 8px 32px rgba(249,186,26,.65),
    0 1px 0 rgba(255,255,255,.4) inset !important;
}
.btn-gold:active {
  transform: translateY(1px) scale(.98) !important;
  box-shadow: 0 2px 10px rgba(249,186,26,.4) !important;
}

/* ═══════════════════════════════════════════════════════════════
   42. FLOATING CTA UPGRADE
═══════════════════════════════════════════════════════════════ */
.fcta {
  background: linear-gradient(90deg, #03112a 0%, #061632 100%);
  border-top: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 -6px 40px rgba(0,0,0,.35);
}
.fcta__msg {
  font-weight: 800;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════════════
   43. SECTION TITLE UPGRADE — underline グラデーション
═══════════════════════════════════════════════════════════════ */
.sec-head {
  position: relative;
}
.sec-head::after {
  content: '';
  display: block; width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--b-500) 0%, var(--g-500, #22d3ee) 100%);
  border-radius: 3px;
  margin: 18px auto 0;
  opacity: .85;
}

/* ═══════════════════════════════════════════════════════════════
   44. CARD HOVER — 3D TILT READINESS
═══════════════════════════════════════════════════════════════ */
.feat__card, .target__card, .flow__step {
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform .3s cubic-bezier(.22,.61,.36,1),
    box-shadow .3s;
}
.feat__card:hover, .target__card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(29,92,232,.18);
}

/* ═══════════════════════════════════════════════════════════════
   45. COMPARISON TABLE — premium stripe
═══════════════════════════════════════════════════════════════ */
.cmp__table tbody tr:nth-child(odd) td {
  background: rgba(255,255,255,.014);
}
.cmp__table th.cmp__col--ahf,
.cmp__table td.cmp__col--ahf {
  background: linear-gradient(180deg, rgba(21,71,204,.14) 0%, rgba(21,71,204,.08) 100%) !important;
  border-left:  1px solid rgba(21,71,204,.3) !important;
  border-right: 1px solid rgba(21,71,204,.3) !important;
}

/* ═══════════════════════════════════════════════════════════════
   46. FAQ ITEM UPGRADE
═══════════════════════════════════════════════════════════════ */
.faq__item {
  border-bottom: 1px solid rgba(255,255,255,.055);
  transition: background .25s;
}
.faq__item.open .faq__q {
  color: var(--b-200, #93bbff);
}
.faq__q i {
  transition: transform .35s cubic-bezier(.22,.61,.36,1), color .25s !important;
}
.faq__item.open .faq__q i {
  transform: rotate(180deg);
  color: var(--b-300, #6fa0ff) !important;
}
.faq__a {
  border-left: 2px solid var(--b-500);
}

/* ═══════════════════════════════════════════════════════════════
   47. VOICE / TESTIMONIAL SWIPER UPGRADE
═══════════════════════════════════════════════════════════════ */
.voice__card {
  background: linear-gradient(135deg, rgba(255,255,255,.042) 0%, rgba(255,255,255,.026) 100%);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 6px 32px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.07);
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s;
}
.voice__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 48px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.1);
}
.voice__stars { color: #f9ba1a; letter-spacing: 2px; text-shadow: 0 0 14px rgba(249,186,26,.5); }

/* ═══════════════════════════════════════════════════════════════
   48. CONTACT FORM UPGRADE
═══════════════════════════════════════════════════════════════ */
.cform__field {
  transition: border-color .2s, box-shadow .2s, background .2s !important;
}
.cform__field:focus-within,
.cform__field.focused {
  border-color: var(--b-400, #3d7df5) !important;
  box-shadow: 0 0 0 3px rgba(29,92,232,.18), 0 2px 12px rgba(29,92,232,.12) !important;
  background: rgba(29,92,232,.055) !important;
}
.cform__submit {
  position: relative; overflow: hidden;
}
.cform__submit::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.14) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .5s ease;
  pointer-events: none;
}
.cform__submit:hover::after { transform: translateX(100%); }

/* ═══════════════════════════════════════════════════════════════
   49. HEADER UPGRADE — scrolled state shadow
═══════════════════════════════════════════════════════════════ */
.hdr.scrolled {
  box-shadow: 0 2px 30px rgba(0,0,0,.45), 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: saturate(180%) blur(22px);
}

/* ═══════════════════════════════════════════════════════════════
   50. PAGE TRANSITION FADE — blog & sub pages
═══════════════════════════════════════════════════════════════ */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.blog-page-wrap, .page-wrap {
  animation: pageFadeIn .5s cubic-bezier(.22,.61,.36,1) both;
}

/* ═══════════════════════════════════════════════════════════════
   51. BLOG LIST PAGE — article card upgrade
═══════════════════════════════════════════════════════════════ */
.blog-grid .blog-card {
  cursor: pointer;
}
.blog-grid .blog-card:focus-visible {
  outline: 2.5px solid var(--b-300, #6fa0ff);
  outline-offset: 3px;
}
.blog-card__cat {
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.blog-card__title {
  line-height: 1.55;
  letter-spacing: .01em;
}

/* ═══════════════════════════════════════════════════════════════
   52. SMOOTH SCROLL BEHAVIOR
═══════════════════════════════════════════════════════════════ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr-h, 72px) + 16px);
}

/* ═══════════════════════════════════════════════════════════════
   53. SELECTION COLOR
═══════════════════════════════════════════════════════════════ */
::selection {
  background: rgba(29,92,232,.38);
  color: #fff;
}
::-moz-selection {
  background: rgba(29,92,232,.38);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   54. CUSTOM SCROLLBAR (Chromium)
═══════════════════════════════════════════════════════════════ */
::-webkit-scrollbar       { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #070f1c; }
::-webkit-scrollbar-thumb {
  background: rgba(29,92,232,.45);
  border-radius: 4px;
  border: 2px solid #070f1c;
}
::-webkit-scrollbar-thumb:hover { background: rgba(29,92,232,.7); }

/* ═══════════════════════════════════════════════════════════════
   55. MOBILE POLISH
═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* ヒーロー KPI スクロールヒント */
  .hero__kpi::after {
    content: '← スワイプ →';
    display: block;
    text-align: center;
    font-size: 10px;
    color: rgba(255,255,255,.3);
    letter-spacing: .12em;
    margin-top: 8px;
    font-family: var(--f-en, 'Inter',sans-serif);
  }
  .btn-gold { font-size: 15px !important; }
  .sec-head::after { width: 40px; }
}

/* ═══════════════════════════════════════════════════════════════
   56. ADMIN PAGE POLISH
═══════════════════════════════════════════════════════════════ */
/* admin/index.html 内のスタイルとの整合 */
.admin-layout { font-family: var(--f-body, 'Noto Sans JP', sans-serif); }

/* ═══════════════════════════════════════════════════════════════
   57. FOOTER COMPREHENSIVE UPGRADE
═══════════════════════════════════════════════════════════════ */
.footer__nav-col h4 {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--n-600, #666);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 8px;
}
.footer__nav-col h4::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 24px; height: 1px;
  background: linear-gradient(90deg, var(--b-500), transparent);
}
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.055);
  margin-top: 4px;
}
.footer__copy { font-size: 11.5px; color: var(--n-700); }
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__legal a {
  font-size: 11.5px; color: var(--n-700);
  transition: color .2s;
}
.footer__legal a:hover { color: var(--n-400); }

/* ═══════════════════════════════════════════════════════════════
   58. PERFORMANCE & MOBILE FINAL POLISH v5.1
   2026-03-21 最終CSS整理・重複除去・追加最適化
═══════════════════════════════════════════════════════════════ */

/* ── ヒーローCTA 二重ボタン強調 ── */
.hero__cta-group .btn-gold {
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ════════════════════════════════════════
   代表挨拶 .pres-wrap  完全クラスベース
════════════════════════════════════════ */
.pres-wrap {
  position: relative;
  background: linear-gradient(160deg, #071628 0%, #0c1f3f 45%, #0f2a55 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,.55), 0 0 0 1px rgba(249,186,26,.18);
  margin-top: 48px;
  grid-column: 1 / -1;
}

/* 背景装飾 */
.pres-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.pres-deco--tl {
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(249,186,26,.08), transparent 70%);
}
.pres-deco--br {
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(26,90,180,.15), transparent 70%);
}

/* ヘッダー帯 */
.pres-hdr {
  background: linear-gradient(90deg, rgba(249,186,26,.14) 0%, rgba(249,186,26,.03) 70%, transparent 100%);
  border-bottom: 1px solid rgba(249,186,26,.2);
  padding: 13px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.pres-hdr__left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(249,186,26,.9);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.pres-hdr__left i { font-size: .85rem; opacity: .8; }
.pres-hdr__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(46,204,113,.1);
  border: 1px solid rgba(46,204,113,.25);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .72rem;
  font-weight: 700;
  color: #2ecc71;
}
.pres-online-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

/* メインコンテンツ */
.pres-inner {
  display: flex;
  gap: 0;
}

/* 左：プロフィールカード */
.pres-profile {
  flex-shrink: 0;
  width: 220px;
  background: rgba(255,255,255,.03);
  padding: 32px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-right: 1px solid rgba(255,255,255,.07);
}

/* アバター */
.pres-avatar-wrap { position: relative; }
.pres-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9ba1a 0%, #f0960a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  box-shadow: 0 0 0 4px rgba(249,186,26,.18), 0 6px 20px rgba(0,0,0,.45);
}
.pres-avatar-online {
  position: absolute;
  bottom: 3px; right: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #2ecc71;
  border: 2.5px solid #0c1f3f;
}

/* 名前・役職 */
.pres-name-block { text-align: center; width: 100%; }
.pres-company { font-size: .95rem; font-weight: 800; color: rgba(255,255,255,.9); letter-spacing: .04em; margin-bottom: 3px; }
.pres-title   { font-size: .75rem; color: #f9ba1a; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.pres-location {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  padding: 7px 10px;
}
.pres-location__label { font-size: .67rem; color: rgba(255,255,255,.38); margin-bottom: 2px; }
.pres-location__addr  { font-size: .75rem; color: rgba(255,255,255,.7); font-weight: 600; line-height: 1.5; }

/* 実績KPI */
.pres-kpis { width: 100%; display: flex; flex-direction: column; gap: 6px; }
.pres-kpi {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 8px 10px;
  text-align: center;
  transition: background .2s;
}
.pres-kpi:hover { background: rgba(255,255,255,.08); }
.pres-kpi__val { font-size: 1.2rem; font-weight: 900; line-height: 1; color: #fff; }
.pres-kpi__val span { font-size: .7rem; font-weight: 700; }
/* KPI数値は全て白 — 色はラベルで区別 */
.pres-kpi__val--gold  { color: #f9ba1a; }
.pres-kpi__val--green { color: #4cd891; }
.pres-kpi__val--blue  { color: #6bbfea; }
.pres-kpi__lbl { font-size: .65rem; color: rgba(255,255,255,.45); margin-top: 3px; letter-spacing: .04em; }

/* 右：挨拶文 */
.pres-body {
  flex: 1;
  min-width: 0;
  padding: 32px 36px 36px;
  position: relative;
}

/* キャッチコピー */
.pres-catch { margin-bottom: 20px; }
.pres-catch__main {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.65;
  border-left: 4px solid #f9ba1a;
  padding-left: 14px;
  margin-bottom: 6px;
}
.pres-catch__sub {
  font-size: .8rem;
  color: rgba(255,255,255,.38);
  padding-left: 18px;
  letter-spacing: .02em;
}

/* 本文テキスト */
.pres-text {
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  line-height: 1.9;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pres-gold { color: #f9ba1a; font-weight: 800; }

/* 4つの約束 */
.pres-promise {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  padding: 18px 20px;
}
.pres-promise__title {
  font-size: .78rem;
  font-weight: 800;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pres-promise__title i { color: #f9ba1a; }
.pres-promise__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pres-promise__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 9px;
  padding: 10px 10px;
}
.pres-promise__item > span { font-size: 1.1rem; flex-shrink: 0; line-height: 1.4; }
.pres-promise__name { font-size: .82rem; font-weight: 800; color: rgba(255,255,255,.92); margin-bottom: 2px; }
.pres-promise__desc { font-size: .72rem; color: rgba(255,255,255,.45); line-height: 1.5; }

/* 無料相談メッセージ */
.pres-free-msg {
  background: rgba(249,186,26,.07);
  border: 1px solid rgba(249,186,26,.22);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: .86rem;
  color: rgba(255,255,255,.82);
  text-align: center;
  line-height: 1.75;
}

/* 署名エリア */
.pres-sign {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.pres-sign__left { display: flex; align-items: center; gap: 10px; }
.pres-sign__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9ba1a, #f0960a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.pres-sign__company { font-size: .72rem; color: rgba(255,255,255,.38); margin-bottom: 1px; }
.pres-sign__role    { font-size: .92rem; font-weight: 900; color: rgba(255,255,255,.9); }
.pres-sign__addr    { font-size: .67rem; color: rgba(255,255,255,.28); margin-top: 1px; }
.pres-sign__btns { display: flex; gap: 8px; flex-wrap: wrap; }

/* ボタン */
.pres-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: .86rem;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  white-space: nowrap;
}
.pres-btn--ghost {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
}
.pres-btn--ghost:hover { background: rgba(255,255,255,.15); }
.pres-btn--gold {
  background: linear-gradient(135deg, #f9ba1a, #f39c12);
  color: #1a3a6b;
  border: none;
  box-shadow: 0 4px 15px rgba(249,186,26,.3);
  font-weight: 900;
}
.pres-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,186,26,.45);
}

/* フッター帯 */
.pres-foot {
  background: rgba(255,255,255,.025);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 11px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: .74rem;
  color: rgba(255,255,255,.35);
}
.pres-foot i { color: rgba(255,255,255,.4); margin-right: 4px; font-size: .8em; }
.pres-foot__sep { color: rgba(255,255,255,.15); }

/* ── レスポンシブ ── */
@media (max-width: 880px) {
  .pres-inner    { flex-direction: column; }
  .pres-profile  {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 24px 20px 20px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }
  .pres-kpis     { flex-direction: row; flex: 1; min-width: 140px; }
  .pres-kpi      { flex: 1; }
  .pres-body     { padding: 24px 20px 28px; }
  .pres-promise__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pres-hdr      { padding: 12px 16px; }
  .pres-hdr__left span { font-size: .76rem; }
  .pres-profile  { flex-direction: column; align-items: center; padding: 24px 16px 20px; }
  .pres-kpis     { flex-direction: row; flex-wrap: wrap; }
  .pres-kpi      { flex: 1; min-width: 70px; }
  .pres-body     { padding: 20px 16px 28px; }
  .pres-catch__main { font-size: 1.1rem; }
  .pres-sign     { flex-direction: column; align-items: flex-start; }
  .pres-sign__btns { width: 100%; }
  .pres-btn      { flex: 1; justify-content: center; }
  .pres-foot     { padding: 12px 16px; gap: 8px 10px; font-size: .72rem; }
  .pres-foot__sep { display: none; }
}
@media (max-width: 400px) {
  .pres-promise__grid { grid-template-columns: 1fr; }
  .pres-wrap     { border-radius: 14px; margin-top: 28px; }
  .pres-avatar   { width: 80px; height: 80px; font-size: 2rem; }
}

/* ── 比較表 スティッキーヘッダー ── */
.cmp__table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #091528;
}
.cmp__table .cmp__th-label {
  position: sticky;
  left: 0;
  z-index: 3;
  background: #091528;
}
.cmp__table tbody td:first-child {
  position: sticky;
  left: 0;
  background: #080f1e;
  z-index: 1;
}

/* ── AI審査結果カード mobile ── */
@media (max-width: 520px) {
  #ai-result [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
}
@media (max-width: 360px) {
  #ai-result [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── フォームエラー状態 ── */
.input-error {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(232,53,53,.18) !important;
}
.error-msg {
  color: var(--red);
  font-size: 0.76rem;
  margin-top: 4px;
  display: block;
}

/* ── ローディングスピナー汎用 ── */
@keyframes spinLoader {
  to { transform: rotate(360deg); }
}
.spin-loader {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,.15);
  border-top-color: var(--b-400);
  border-radius: 50%;
  animation: spinLoader .7s linear infinite;
  display: inline-block;
}

/* ── 口コミバナー pulse-dot（重複を完全版に） ── */
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: .6; }
}

/* ── AI審査スコアバー ── */
.ai-score-bar {
  height: 10px;
  background: rgba(255,255,255,.08);
  border-radius: 9999px;
  overflow: hidden;
}
.ai-score-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #2ecc71 0%, #3d7df5 100%);
  border-radius: 9999px;
  transition: width 1.2s cubic-bezier(.22,.61,.36,1);
}

/* ── FAQアコーディオン（ft-faq系） ── */
.ft-faq {
  background: rgba(255,255,255,.032);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s;
  cursor: pointer;
}
.ft-faq:hover {
  border-color: rgba(249,186,26,.22);
}
.ft-faq.open {
  border-color: rgba(249,186,26,.3);
}
.ft-answer-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height .38s cubic-bezier(.4,0,.2,1);
}
.ft-faq.open .ft-answer-wrap {
  max-height: 600px;
}

/* ── AI審査フォームの金額ボタン ── */
.amt-btn {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  color: rgba(255,255,255,.65);
  padding: 9px 14px;
  font-size: 0.82rem;
  font-family: inherit;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
}
.amt-btn:hover {
  background: rgba(249,186,26,.1);
  border-color: rgba(249,186,26,.3);
  color: #f9ba1a;
}

/* ── 比較表 最良値ハイライト ── */
.cmp__best {
  color: #f9ba1a;
  font-weight: 900;
  font-size: 1.02em;
}
.cmp__ok { color: #2ecc71 !important; }
.cmp__ng { color: rgba(255,255,255,.25) !important; }

/* ── fadeUp アニメーション（AI結果表示） ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Safe area inset（ノッチ対応） ── */
.fcta { padding-bottom: env(safe-area-inset-bottom, 0); }

/* ── 画像 lazy loading blur-in ── */
img[loading="lazy"] {
  transition: opacity .4s ease;
}
img[loading="lazy"].loaded {
  opacity: 1;
}

/* ── HERO section padding-top 安全値 ── */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding-top: calc(var(--banner-h, 34px) + 80px + 32px) !important;
  }
}

/* ── ヘッダー ナビ アクティブ状態 ── */
.hdr__nav-a.active {
  color: var(--b-200) !important;
  font-weight: 800 !important;
}
.hdr__nav-a.active::after {
  transform: scaleX(1) !important;
  opacity: 1 !important;
}

/* ── モバイル SP メニュー確実表示 ── */
@media (max-width: 900px) {
  .hdr__nav { display: none !important; }
  .hdr__hamburger { display: flex !important; }
}

/* ── コンタクトフォーム送信ボタン loading 状態 ── */
.cform__submit:disabled {
  opacity: .65;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── 最適化：transform使用でGPU合成レイヤー ── */
.hero__aurora,
.cursor__dot,
.cursor__ring,
.rt-notif,
#ai-chat-window {
  will-change: transform, opacity;
}

/* ── ページ全体 print 用 ── */
@media print {
  .hdr, .fcta, #fcta, #rt-notif-bar, #ai-chat-btn, #ai-chat-window,
  .cursor__dot, .cursor__ring, #loading { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
}

/* ═══════════════════════════════════════════════════════════════
   AHF Live Patterns v1.0
   「今なら最短◯◯分/時間」10,000パターン通知UI
═══════════════════════════════════════════════════════════════ */

/* ── 通知カード ── */
.rt-notif {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15,25,50,.96) 0%, rgba(21,71,204,.18) 100%);
  border: 1px solid rgba(21,71,204,.35);
  box-shadow: 0 4px 24px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  min-width: 260px;
  max-width: 340px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .35s ease, transform .35s cubic-bezier(.22,1,.36,1);
}
.rt-notif--show {
  opacity: 1;
  transform: translateX(0);
}
.rt-notif--hide {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .4s ease, transform .4s ease;
}

/* ── アイコン ── */
.rt-notif__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
}

/* ── テキスト ── */
.rt-notif__body {
  flex: 1;
  min-width: 0;
}
.rt-notif__title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rt-notif__sub {
  font-size: 0.74rem;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── 「最短◯◯」強調テキスト ── */
.rt-notif__sub strong {
  color: #f9ba1a;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: .02em;
}

/* ── ライブバナーテキストのトランジション ── */
#rt-live-text {
  transition: opacity .3s ease;
}

/* ── ライブバナー「今なら最短」ハイライト ── */
#review-banner .highlight-time {
  color: #f9ba1a;
  font-weight: 900;
}

/* ── アニメーション（既存 slideOutLeft と共存） ── */
@keyframes slideOutLeft {
  to { opacity: 0; transform: translateX(-32px); }
}

/* ── モバイル対応 ── */
@media (max-width: 480px) {
  .rt-notif {
    min-width: 200px;
    max-width: 280px;
    padding: 8px 10px;
    font-size: 0.9em;
  }
  #rt-notif-bar {
    left: 10px !important;
    bottom: 70px !important;
  }
}

/* ── 59. ACCESSIBILITY: REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   60. CONTACT FORM REAL-TIME VALIDATION STYLES
   2026-03-21
═══════════════════════════════════════════════════════════════ */
/* バリデーション成功状態 */
.cform input:valid:not(:placeholder-shown),
.cform select:valid:not([value=""]),
.cform textarea:valid:not(:placeholder-shown) {
  border-color: rgba(13,165,110,.5) !important;
  background-color: rgba(13,165,110,.04) !important;
}
/* バリデーションエラー状態 */
.cform input:invalid:not(:placeholder-shown),
.cform select:invalid {
  border-color: rgba(232,53,53,.45) !important;
}
/* エラーメッセージ */
.cform-err-msg {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--red, #e83535);
  font-size: 0.72rem;
  margin-top: 4px;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
/* フォーム送信中・成功状態 */
.cform__submit.sending {
  opacity: .75;
  cursor: not-allowed;
  pointer-events: none;
}
/* 入力フォーカス時のハイライト */
.cform__field:focus-within {
  box-shadow: 0 0 0 3px rgba(29,92,232,.25) !important;
}
/* プライバシーチェック */
.cform__privacy input[type=checkbox]:checked ~ .cform__check-ui {
  background: var(--b-500, #1d5ce8);
  border-color: var(--b-500, #1d5ce8);
}
/* フォーム進捗インジケーター */
.cform-progress {
  height: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 9999px;
  margin-bottom: 20px;
  overflow: hidden;
}
.cform-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--b-500), var(--g-500));
  border-radius: 9999px;
  transition: width .4s var(--e-out, cubic-bezier(.22,.61,.36,1));
  width: 0;
}

/* ═══════════════════════════════════════════════════════════════
   61. COMPARISON TABLE 5-COLUMN FIX
   2026-03-21
═══════════════════════════════════════════════════════════════ */
.cmp__table {
  min-width: 760px;
}
.cmp__table thead th:not(.cmp__th-label):not(.cmp__th-ahf) {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 14px 10px;
}
.cmp__table tbody td:not(.cmp__item):not(.cmp__td-ahf) {
  font-size: 0.82rem;
  padding: 12px 10px;
  text-align: center;
}
/* 新規列（他社D）のスタイル */
.cmp__table thead th:last-child,
.cmp__table tbody td:last-child {
  border-left: 1px solid rgba(255,255,255,.04);
}

/* ═══════════════════════════════════════════════════════════════
   62. HERO TRUST & GLOBAL MOBILE POLISH
   2026-03-21
═══════════════════════════════════════════════════════════════ */

/* ヒーロー 安心ポイント */
.hero__trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.hero__trust-item {
  font-size: .77rem;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero__trust-item i { color: #2ecc71; }
.hero__trust-item--gold i { color: #f9ba1a; }

@media (max-width: 480px) {
  .hero__trust { gap: 10px 14px; }
  .hero__trust-item { font-size: .73rem; }
}

/* nums セクション横スクロール改善 */
@media (max-width: 640px) {
  .nums__grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  .nums__item {
    scroll-snap-align: start;
    flex: 0 0 auto;
  }
}

/* ヒーロー KPI スマホ縦並び */
@media (max-width: 480px) {
  .hero__kpi {
    flex-direction: column !important;
    gap: 14px !important;
  }
  .hero__kpi-div { display: none !important; }
}

/* 全セクションの余白改善（極小画面360px） */
@media (max-width: 380px) {
  .sec-container { padding: 0 14px !important; }
  .hero__wrap    { padding-left: 14px !important; padding-right: 14px !important; }
  .pres-hdr      { padding: 10px 14px; }
  .pres-body     { padding: 18px 14px 24px; }
}

/* 比較表のスクロールヒント（モバイル） */
@media (max-width: 768px) {
  .cmp__scroll::after {
    content: '← スワイプして比較 →';
    display: block;
    text-align: center;
    font-size: .72rem;
    color: rgba(255,255,255,.3);
    padding: 6px 0 0;
    letter-spacing: .1em;
  }
}

/* フロー・ステップ番号のスマホ改善 */
@media (max-width: 480px) {
  .flow__step { font-size: .7rem; }
  .flow__no   { font-size: 1.8rem; }
  .flow__ttl  { font-size: .9rem; }
}

/* AI審査フォームのサイズ改善 */
@media (max-width: 360px) {
  .amt-btn { padding: 6px 8px !important; font-size: .7rem !important; }
  #ai-screening .sec-container { padding: 0 10px !important; }
}

/* スクロールトップボタン（スマホ表示） */
@media (max-width: 640px) {
  .scroll-top-btn {
    display: flex !important;
    width: 40px;
    height: 40px;
    bottom: 80px;
    right: 14px;
    font-size: 12px;
  }
}

/* 会社概要テーブルのスマホ対応 */
@media (max-width: 600px) {
  .comp__table th { width: 90px; font-size: .8rem; padding: 10px 8px; }
  .comp__table td { font-size: .82rem; padding: 10px 8px; }
}

/* フッターボトムのスマホ */
@media (max-width: 480px) {
  .footer__bottom { font-size: .72rem; }
  .footer__legal  { gap: 10px; flex-wrap: wrap; }
  .footer__legal a { font-size: .72rem; }
}

/* 全般：overflow-x防止（画面はみ出し対策） */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* 画像の最大幅制限（スマホでのはみ出し防止） */
img { max-width: 100%; height: auto; }

/* ═══════════════════════════════════════════════════════════════
   63. MOBILE COMPATIBILITY COMPLETE - ALL BREAKPOINTS
   2026-03-21
═══════════════════════════════════════════════════════════════ */

/* ── 共通：360px（最小サポート幅） ── */
@media (max-width: 380px) {
  .hero__h1 { font-size: clamp(1.8rem, 9vw, 2.6rem) !important; }
  .hero__kpi { gap: 8px; }
  .hero__kpi-item { min-width: 72px; }
  .hero__actions { flex-direction: column; gap: 10px; }
  .hero__actions .btn-gold,
  .hero__actions .btn-ghost { width: 100%; text-align: center; justify-content: center; }
  .hero__trust { flex-direction: column; gap: 6px; }
  .hero__badge { font-size: 0.72rem; padding: 5px 14px; }
}

/* ── 480px（スマートフォン） ── */
@media (max-width: 480px) {
  /* ヘッダー */
  .hdr__logo-text { font-size: 0.88rem !important; }
  .hdr__ctas { gap: 6px; }
  
  /* AI審査フォーム */
  #ai-screening > div { padding: 0 12px; }
  #ai-form-area { padding: 20px 16px !important; }
  .amt-btn { padding: 6px 10px !important; font-size: 0.75rem !important; }
  
  /* 比較表 */
  .cmp__scroll { -webkit-overflow-scrolling: touch; }
  
  /* フッター */
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  
  /* Contact Form */
  .cform__row { flex-direction: column !important; }
  .cform__group { width: 100% !important; }
}

/* ── 640px（大きめスマートフォン） ── */
@media (max-width: 640px) {
  /* セクションタイトル */
  .sec-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  
  /* FAQ */
  .faq__q { font-size: 0.92rem; }
  
  /* フォームrow */
  .cform__row { flex-wrap: wrap; }
  
  /* ティッカー */
  .hero__ticker { font-size: 0.8rem; }
  .hero__ticker-track span { padding: 0 12px; white-space: nowrap; }
  
  /* KPI */
  .hero__kpi-num { font-size: clamp(1.4rem, 4vw, 2rem); }
}

/* ── 768px（タブレット縦向き） ── */
@media (max-width: 768px) {
  /* ヒーロー */
  .hero__wrap { flex-direction: column; text-align: center; }
  .hero__left { align-items: center; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__kpi { justify-content: center; }
  .hero__media { justify-content: center; text-align: center; }
  
  /* features grid */
  .features__grid { grid-template-columns: 1fr 1fr !important; }
  
  /* flow steps */
  .flow__steps { flex-direction: column !important; }
  
  /* fee cards */
  .fee__cards { grid-template-columns: 1fr !important; }
  
  /* voice swiper */
  .voice__swiper .swiper-button-next,
  .voice__swiper .swiper-button-prev { display: none; }
  
  /* FAQ full width */
  .faq__wrap { grid-template-columns: 1fr !important; }
}

/* ── 900px（タブレット横向き・小型PC） ── */
@media (max-width: 900px) {
  /* ナビゲーション非表示（ハンバーガーメニュー対応） */
  .hdr__tel { display: none; }
  .hdr__cta-pc { display: none; }
  
  /* 比較表のスクロール示唆 */
  .cmp__wrap::after {
    content: '← スワイプして比較 →';
    display: block;
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
  }
}

/* ── Touch device: ホバーエフェクト最適化 ── */
@media (hover: none) and (pointer: coarse) {
  .btn-gold:hover { transform: none; box-shadow: none; }
  .btn-ghost:hover { transform: none; }
  .feature__card:hover { transform: none; }
  .voice__card:hover { transform: none; }
  /* タッチターゲット最小44px保証 */
  .hdr__nav-a,
  .sp-menu__link,
  .faq__q,
  .amt-btn,
  .tab-btn { min-height: 44px; display: flex; align-items: center; }
}

/* ── Landscape スマートフォン ── */
@media (max-height: 500px) and (max-width: 768px) {
  .hero { min-height: auto; padding-top: 120px !important; padding-bottom: 40px; }
  .hero__right { display: none; }
}

/* ── iOS Safe Area ── */
@supports (padding: max(0px)) {
  .hdr { padding-left: max(0px, env(safe-area-inset-left)); padding-right: max(0px, env(safe-area-inset-right)); }
  .hero { padding-bottom: max(40px, env(safe-area-inset-bottom)); }
  #fcta, .fcta { padding-bottom: max(16px, env(safe-area-inset-bottom)); }
}

/* ═══════════════════════════════════════════════════════════════
   64. SEO RENEWAL v5.4 - 競合100社対抗 FULL REDESIGN
   2026-03-21 深夜リニューアル
═══════════════════════════════════════════════════════════════ */

/* ── ヒーロー比較バッジ（競合と差別化） ── */
.hero__compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46,204,113,.12);
  border: 1px solid rgba(46,204,113,.3);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 800;
  color: #2ecc71;
  margin-top: 8px;
  letter-spacing: .04em;
}

/* ── 実績バー（競合が頻繁に使うKPIバー） ── */
.kpi-achievement-bar {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.kpi-ach__item {
  text-align: center;
  min-width: 100px;
}
.kpi-ach__num {
  font-size: clamp(1.4rem,3vw,2rem);
  font-weight: 900;
  color: #f9ba1a;
  line-height: 1;
}
.kpi-ach__unit { font-size: .75rem; color: rgba(255,255,255,.6); }
.kpi-ach__lbl  { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ── 特徴カードホバー強化 ── */
.feat__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(249,186,26,.12);
}
.feat__card { transition: transform .25s ease, box-shadow .25s ease; }

/* ── 手数料プランカードの強調 ── */
.fee__card--star {
  position: relative;
  overflow: hidden;
}
.fee__card--star::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(249,186,26,.4), rgba(243,156,18,.15), transparent 60%);
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
}

/* ── 比較表の最良値セル強調 ── */
.cmp__td-ahf {
  background: rgba(249,186,26,.06) !important;
  border-left: 2px solid rgba(249,186,26,.3) !important;
  border-right: 2px solid rgba(249,186,26,.3) !important;
}

/* ── 口コミ・レビューカードのスター色 ── */
.vcard__stars i { color: #f9ba1a; font-size: .9rem; }
.vcard__stars span { color: rgba(255,255,255,.55); font-size: .8rem; margin-left: 4px; }

/* ── SEOテキストセクションのリンク色 ── */
.seo-text-section a {
  color: #6fa0ff;
  text-decoration: none;
  transition: color .2s;
}
.seo-text-section a:hover { color: #f9ba1a; }

/* ── 業種リンクカードホバー ── */
.industry-link-card:hover {
  border-color: rgba(249,186,26,.3) !important;
  background: rgba(249,186,26,.06) !important;
}
.industry-link-card { transition: border-color .2s, background .2s; }

/* ── フッターのコラムリンク ── */
.footer__nav-col h4 {
  font-size: .82rem;
  font-weight: 800;
  color: rgba(255,255,255,.55);
  letter-spacing: .08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.footer__nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__nav-col ul li a {
  color: rgba(255,255,255,.55);
  font-size: .84rem;
  text-decoration: none;
  transition: color .2s;
}
.footer__nav-col ul li a:hover { color: #f9ba1a; }

/* ── E-E-A-T強化：実績・権威性バッジ ── */
.authority-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.authority-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
}
.authority-badge i { color: #f9ba1a; font-size: .9rem; }
.authority-badge--green { border-color: rgba(46,204,113,.3); color: #4cd891; }
.authority-badge--blue  { border-color: rgba(61,125,245,.3); color: #6bbfea; }

/* ── ヒーロー：媒体掲載ロゴの強化 ── */
.hero__media-logos span {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.hero__media-logos span:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
}
.hero__media-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── CTAボタングループのレスポンシブ最終調整 ── */
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn-gold--lg,
  .hero__actions .btn-ghost { width: 100%; justify-content: center; }
}

/* ── numbersセクションのスマホ最終調整 ── */
.nums__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
@media (max-width: 560px) {
  .nums__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,.08);
  }
  .nums__sep { display: none !important; }
  .nums__item {
    background: var(--ink-900,#050d1a);
    padding: 20px 12px !important;
  }
}

/* ── FAQ サイドパネルのモバイル非表示 ── */
@media (max-width: 768px) {
  .faq__side { display: none; }
  .faq__list { width: 100%; }
}

/* ── VoiceカードのSwiper改善 ── */
.voice-swiper { padding-bottom: 40px !important; }
.voice-swiper .swiper-pagination-bullet-active {
  background: #f9ba1a !important;
}
.voice-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,.3);
  opacity: 1;
}

/* ── ブログカードのホバー強化 ── */
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.blog-card { transition: transform .25s, box-shadow .25s; }

/* ── SEOセクション（追加テキストコンテンツ）のスマホ対応 ── */
@media (max-width: 640px) {
  .seo-text-section {
    padding: 40px 0 30px !important;
  }
  .seo-text-section > div { padding: 0 16px !important; }
  .seo-text-section h2 { margin-bottom: 12px !important; }
}

/* ── フッターのSEO特集ページリンク ── */
.footer__nav-col ul li a[href$=".html"] {
  color: rgba(255,255,255,.48);
}
.footer__nav-col ul li a[href$=".html"]:hover {
  color: #f9ba1a;
}

/* ── ページ全体のアンカーリンク到達時のオフセット ── */
[id] { scroll-margin-top: calc(var(--hdr-h, 80px) + 20px); }

/* ── Core Web Vitals: CLS防止（画像サイズ指定なし対策） ── */
img:not([width]):not([height]) { aspect-ratio: auto; }
img.hero__tiger { aspect-ratio: 1; }
img[src*="mascot-tiger"] {
  display: block;
  object-fit: contain;
}

/* ── LCPの最適化：ヒーロー画像の初期表示 ── */
.hero__tiger {
  content-visibility: visible !important;
  will-change: auto;
}

/* ── インタラクション対応：ボタンのfocus可視化 ── */
.btn-gold:focus-visible,
.btn-ghost:focus-visible,
.btn-blue:focus-visible,
.pres-btn:focus-visible,
.fee__btn:focus-visible {
  outline: 3px solid rgba(249,186,26,.7);
  outline-offset: 3px;
}

/* ── 比較表の「AHF」列をより目立たせる ── */
.cmp__th-ahf {
  background: rgba(249,186,26,.12) !important;
  color: #f9ba1a;
}

/* ── サービス比較：ランキング表示（競合対抗） ── */
.ranking-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #f9ba1a, #f39c12);
  color: #1a2a50;
  font-size: .72rem;
  font-weight: 900;
  padding: 2px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
}

/* ── 料金表の「おすすめ」タグを強化 ── */
.fee__crown {
  background: linear-gradient(135deg, #f9ba1a, #f39c12);
  color: #1a2a50;
  font-size: .75rem;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: 0 0 10px 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* ── voiceセクション 追加口コミのスタイル ── */
.vcard__amt b { color: #f9ba1a; }
.vcard {
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .2s, transform .2s;
}
.vcard:hover {
  border-color: rgba(249,186,26,.2);
  transform: translateY(-2px);
}

/* ── 「初めての方コーナー」グリッド改善 ── */
.firsttime-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .firsttime-grid { grid-template-columns: 1fr; }
}

/* ── ナビゲーション：アクティブ色統一 ── */
.hdr__nav-a {
  position: relative;
  font-size: .86rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  padding: 4px 2px;
  transition: color .2s;
}
.hdr__nav-a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #f9ba1a;
  transform: scaleX(0);
  transition: transform .2s ease;
  border-radius: 1px;
}
.hdr__nav-a:hover { color: #fff; }
.hdr__nav-a:hover::after { transform: scaleX(1); }

/* ── スマホメニューのリンク強化 ── */
.sp-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  color: rgba(255,255,255,.8);
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .2s, color .2s;
}
.sp-menu__link:hover,
.sp-menu__link:active {
  background: rgba(249,186,26,.08);
  color: #f9ba1a;
}
.sp-menu__link i {
  width: 20px;
  color: rgba(255,255,255,.4);
  font-size: .9rem;
  text-align: center;
}

/* ── タイマー系アニメーション最適化（low-power mode対応） ── */
@media (prefers-reduced-motion: no-preference) {
  .hero__stage-orbit--1 { animation: orbit1 8s linear infinite; }
  .hero__stage-orbit--2 { animation: orbit2 12s linear infinite; }
  .hero__stage-orbit--3 { animation: orbit3 6s linear infinite; }
}

/* ── 業種別ランディング用インターナルリンクブロック ── */
.internal-links-block {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 24px;
}
.internal-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.internal-link-pill:hover {
  background: rgba(249,186,26,.1);
  border-color: rgba(249,186,26,.3);
  color: #f9ba1a;
}

/* ═══════════════════════════════════════════════════════════════
   65. DARK THEME UNIFICATION — 全セクション色・配置修正
   2026-03-21 文字色・配置・ライトテーマ混在問題の完全修正
═══════════════════════════════════════════════════════════════ */

/* ── VOICE セクション：ダーク統一 ── */
.voice {
  background: var(--ink-800, #091528) !important;
}
.vcard {
  background: rgba(255,255,255,.045) !important;
  border: 1.5px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.35) !important;
}
.vcard:hover {
  background: rgba(255,255,255,.07) !important;
  border-color: rgba(249,186,26,.22) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.45) !important;
}
.vcard__text {
  color: rgba(255,255,255,.72) !important;
  border-left-color: var(--b-400) !important;
}
.vcard__info strong { color: #fff !important; }
.vcard__info span   { color: rgba(255,255,255,.45) !important; }
.vcard__stars span  { color: rgba(255,255,255,.55) !important; }

/* ── TARGET セクション：ダーク統一 ── */
.tgt {
  background: linear-gradient(180deg, var(--ink-900,#050d1a) 0%, var(--ink-800,#091528) 100%) !important;
}
.tgt__item span {
  color: rgba(255,255,255,.65) !important;
  font-weight: 600;
}
.tgt__icon {
  background: rgba(255,255,255,.055) !important;
  border-color: rgba(255,255,255,.1) !important;
  color: var(--b-300, #6fa0ff) !important;
}
.tgt__ok {
  background: linear-gradient(135deg, rgba(255,255,255,.055) 0%, rgba(29,92,232,.1) 100%) !important;
  border-color: rgba(255,255,255,.1) !important;
}
.tgt__ok-body h3 {
  color: #fff !important;
}
.tgt__ok-body h3 em { color: var(--g-400, #f9ba1a) !important; }
.tgt__ok-list li {
  color: rgba(255,255,255,.72) !important;
}
.tgt__ok-list i { color: var(--green2, #10c97d) !important; }

/* ── sec-title ライト表示統一（ダーク背景セクション） ── */
.voice .sec-title,
.tgt  .sec-title,
.faq  .sec-title,
.comp .sec-title,
.worry .sec-title,
.nums .sec-title {
  color: #fff !important;
}
.voice .sec-title em,
.tgt  .sec-title em,
.faq  .sec-title em,
.comp .sec-title em {
  color: var(--g-400, #f9ba1a) !important;
}
.voice .sec-lead,
.tgt  .sec-lead,
.faq  .sec-lead,
.comp .sec-lead {
  color: rgba(255,255,255,.52) !important;
}

/* ── FAQ セクション：ダーク統一 ── */
.faq {
  background: var(--ink-900, #050d1a) !important;
}
.faq__item {
  background: rgba(255,255,255,.04) !important;
  border-color: rgba(255,255,255,.08) !important;
}
.faq__item.open {
  border-color: rgba(29,92,232,.35) !important;
  background: rgba(255,255,255,.065) !important;
}
.faq__q > span:nth-child(2) {
  color: rgba(255,255,255,.88) !important;
}
.faq__q:hover { background: rgba(255,255,255,.06) !important; }
.faq__a p { color: rgba(255,255,255,.68) !important; }

/* ── COMPANY セクション：ダーク統一 ── */
.comp {
  background: var(--ink-800, #091528) !important;
}
.comp__table th {
  background: rgba(255,255,255,.04) !important;
  color: rgba(255,255,255,.45) !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
}
.comp__table td {
  color: rgba(255,255,255,.82) !important;
  border-bottom: 1px solid rgba(255,255,255,.05) !important;
}
.comp__table tr { border-bottom: none !important; }
.comp__badges span {
  background: rgba(255,255,255,.05) !important;
  border-color: rgba(255,255,255,.1) !important;
  color: rgba(255,255,255,.72) !important;
}

/* ── WORRY セクション：見出しテキスト修正 ── */
.worry .sec-eye { color: var(--b-300, #6fa0ff) !important; }

/* ── sec-eye 視認性改善 ── */
.voice .sec-eye   { color: var(--b-300, #6fa0ff) !important; }
.tgt  .sec-eye    { color: var(--g-400, #f9ba1a) !important; }
.faq  .sec-eye    { color: var(--b-300, #6fa0ff) !important; }
.comp .sec-eye    { color: var(--g-400, #f9ba1a) !important; }

/* ── hero__trust テキスト色を視認性向上 ── */
.hero__trust-item {
  color: rgba(255,255,255,.72) !important;
}

/* ── hero__sub テキスト視認性 ── */
.hero__sub { color: rgba(255,255,255,.78) !important; }
.hero__sub strong { color: #fff !important; }

/* ── KPI ストリップ数値の視認性 ── */
.hero__kpi-label { color: rgba(255,255,255,.55) !important; font-size: .78rem; }

/* ── nums__val 数値強調 ── */
.nums__val { color: #fff; }
.nums__val em { color: var(--g-400, #f9ba1a); font-style: normal; }
.nums__lbl { color: rgba(255,255,255,.72); font-weight: 700; }
.nums__item > p { color: rgba(255,255,255,.42); font-size: 12px; }

/* ── FAQサイドパネルの整合 ── */
.faq__side-inner {
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.09) !important;
}

/* ── worry__card テキスト色 ── */
.worry__card h3 { color: #fff; }
.worry__card p  { color: rgba(255,255,255,.55); }

/* ── flow__body テキスト修正 ── */
.flow__body h3 { color: #fff !important; }
.flow__body p  { color: rgba(255,255,255,.52) !important; }

/* ── feat__card テキスト ── */
.feat__card h3 { color: #fff !important; }
.feat__card p  { color: rgba(255,255,255,.55) !important; }

/* ── fee__card テキスト ── */
.fee__card h3   { color: #fff !important; }
.fee__features li { color: rgba(255,255,255,.68) !important; }

/* ── SECTION HEAD underline 色統一 ── */
.voice .sec-head::after { background: linear-gradient(90deg, var(--b-400), var(--g-400)) !important; }
.tgt   .sec-head::after { background: linear-gradient(90deg, var(--g-500), var(--b-400)) !important; }
.faq   .sec-head::after { background: linear-gradient(90deg, var(--b-500), var(--g-400)) !important; }
.comp  .sec-head::after { background: linear-gradient(90deg, var(--g-500), var(--b-400)) !important; }

/* ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ──
   配置修正（Alignment Fixes）
── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── */

/* hero__wrap 中央揃え改善 */
@media (max-width: 768px) {
  .hero__badge { margin-left: auto; margin-right: auto; }
  .hero__h1    { text-align: center; }
  .hero__typing { justify-content: center; }
  .hero__sub   { text-align: center; }
  .hero__media { justify-content: center; }
}

/* fee__grid モバイル修正 */
@media (max-width: 880px) {
  .fee__grid { grid-template-columns: 1fr !important; max-width: 480px; margin: 0 auto 30px; }
  .fee__card--star { transform: none !important; }
}

/* tgt__ok モバイル改善 */
@media (max-width: 768px) {
  .tgt__ok {
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 32px 24px !important;
    text-align: center !important;
  }
  .tgt__ok-list {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .tgt__ok-list li { justify-content: flex-start; }
}
@media (max-width: 480px) {
  .tgt__ok-list { grid-template-columns: 1fr !important; }
}

/* comp__layout モバイル修正 */
@media (max-width: 768px) {
  .comp__layout { grid-template-columns: 1fr !important; gap: 28px !important; }
}

/* faq__layout モバイル修正 */
@media (max-width: 900px) {
  .faq__layout { grid-template-columns: 1fr !important; }
  .faq__side   { display: none; }
}

/* ── 最終リニューアル：全体整合性チェック ── */
/* z-index 管理表：
   loading = 9999, cursor = 9000, hdr = 7100, fcta = 200,
   rt-notif-bar = 150, ai-chat = 500, modal = 8000 */

/* ── CTAフローティングボタン最終調整 ── */
#fcta { z-index: 200; }
#ai-chat-btn { z-index: 500; }
#rt-notif-bar { z-index: 150; }

/* ── モバイル：CTAフローティング + rt-notif-bar の重なり防止 ── */
@media (max-width: 640px) {
  #fcta .fcta__inner { padding-bottom: env(safe-area-inset-bottom, 0); }
  #rt-notif-bar { bottom: calc(60px + env(safe-area-inset-bottom, 0)) !important; }
}

/* ── テキスト読み込み速度対策：font-display swap強制 ── */
@font-face {
  font-family: 'FallbackFont';
  src: local('Hiragino Sans'), local('Yu Gothic'), local('Meiryo'), local('sans-serif');
  font-display: swap;
}

/* ── 印刷用：余白とフォントサイズ最適化 ── */
@media print {
  body { font-size: 12pt; line-height: 1.6; color: #000 !important; background: #fff !important; }
  h1,h2,h3 { page-break-after: avoid; color: #000 !important; }
  .seo-text-section, .comp__table { break-inside: avoid; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  a[href^="#"]::after, a[href^="tel:"]::after { content: ""; }
}

/* ═══════════════════════════════════════════════════════════════
   PRO PREMIUM v6.0 — トッププロ品質デザイン完全統合
   2026-03-21 最高峰品質への昇格
═══════════════════════════════════════════════════════════════ */

/* ── ① グローバル：ガラスモーフィズム強化 ── */
.glass-card {
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
}

/* ── ② ヒーロー：視差効果強化 ── */
.hero__h1 {
  letter-spacing: -.03em;
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
}
.hero__h1-num {
  background: linear-gradient(135deg, #fff 0%, #f9ba1a 50%, #f0940a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 28px rgba(249,186,26,.5));
}

/* ── ③ ヒーロー：信頼バッジアニメーション ── */
.hero__badge {
  animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* ── ④ ヒーロー：KPIカウンター強化 ── */
.hero__kpi-item {
  position: relative;
  overflow: hidden;
}
.hero__kpi-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(249,186,26,.08) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.hero__kpi-item:hover::after { opacity: 1; }

/* ── ⑤ ヒーロー右側：Tiger 3D浮遊 ── */
.hero__tiger-wrap {
  animation: tigerFloat 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes tigerFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  33%     { transform: translateY(-14px) rotate(0deg); }
  66%     { transform: translateY(-6px) rotate(1deg); }
}

/* ── ⑥ 数字セクション：グラデーションボーダー ── */
.nums {
  position: relative;
}
.nums::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--b-500,#1d5ce8) 20%, var(--g-500,#f0940a) 50%, var(--b-500,#1d5ce8) 80%, transparent 100%);
  background-size: 200% 100%;
  animation: numBorderShift 3s linear infinite;
}
@keyframes numBorderShift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.nums__num {
  background: linear-gradient(135deg, #fff 0%, var(--g-300,#fcd96a) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(249,186,26,.3));
}

/* ── ⑦ フィーチャーカード：プリズム光彩効果 ── */
.feat__card {
  position: relative;
  overflow: hidden;
}
.feat__card::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(
    transparent 270deg,
    rgba(249,186,26,.06) 285deg,
    transparent 300deg
  );
  animation: prism 6s linear infinite;
  pointer-events: none;
}
@keyframes prism {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── ⑧ 手数料カード：ネオングロー強化 ── */
.fee__card--star {
  box-shadow:
    0 0 0 1px rgba(249,186,26,.3),
    0 8px 40px rgba(249,186,26,.18),
    0 32px 80px rgba(0,0,0,.5) !important;
  transition: box-shadow .3s, transform .3s !important;
}
.fee__card--star:hover {
  box-shadow:
    0 0 0 2px rgba(249,186,26,.5),
    0 12px 60px rgba(249,186,26,.28),
    0 40px 100px rgba(0,0,0,.6) !important;
  transform: translateY(-8px) scale(1.02) !important;
}

/* ── ⑨ お客様の声：スター強化 ── */
.vcard__stars {
  display: flex;
  gap: 2px;
  align-items: center;
}
.vcard__stars i {
  color: #f9ba1a !important;
  font-size: .95rem;
  filter: drop-shadow(0 1px 4px rgba(249,186,26,.4));
}

/* ── ⑩ フォームボックス：プレミアム強化 ── */
.contact__form-box {
  position: relative;
  overflow: hidden;
}
.contact__form-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--b-500,#1d5ce8), var(--g-400,#f9ba1a), var(--b-500,#1d5ce8));
  background-size: 200% 100%;
  animation: formBorder 2.5s linear infinite;
}
@keyframes formBorder {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.cform__submit {
  position: relative;
  overflow: hidden;
}
.cform__submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .5s;
}
.cform__submit:hover::after { transform: translateX(100%); }

/* ── ⑪ FAQアコーディオン：プレミアム ── */
.faq__item {
  transition: box-shadow .25s, border-color .25s;
}
.faq__item.open {
  border-color: rgba(249,186,26,.25) !important;
  box-shadow: 0 4px 24px rgba(249,186,26,.08), 0 2px 8px rgba(0,0,0,.3);
}

/* ── ⑫ フローティングCTA：より目立つパルス ── */
.fcta__pulse {
  animation: fctaPulse 2s ease-out infinite !important;
}
@keyframes fctaPulse {
  0%   { transform: scale(1); opacity: .8; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}
.fcta__btn {
  background: linear-gradient(135deg, #091528 0%, #0d1e40 100%);
  border: 1px solid rgba(249,186,26,.3);
  box-shadow:
    0 8px 32px rgba(0,0,0,.5),
    0 0 0 1px rgba(249,186,26,.15),
    inset 0 1px 0 rgba(255,255,255,.07);
  transition: transform .25s, box-shadow .25s, border-color .25s !important;
}
.fcta__btn:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(249,186,26,.55) !important;
  box-shadow:
    0 16px 48px rgba(0,0,0,.6),
    0 0 0 2px rgba(249,186,26,.3),
    0 0 40px rgba(249,186,26,.12) !important;
}

/* ── ⑬ スクロールバー：ブランドカラー ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink-900,#050d1a); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--b-500,#1d5ce8), var(--g-500,#f0940a));
  border-radius: 10px;
}

/* ── ⑭ セクションヘッド：アクセントライン強化 ── */
.sec-head {
  position: relative;
}
.sec-head::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--b-500,#1d5ce8), var(--g-400,#f9ba1a));
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ── ⑮ ヘッダー：スクロール後シャドウ ── */
.hdr.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,.5), 0 1px 0 rgba(255,255,255,.06) !important;
}

/* ── ⑯ ボタン：ゴールドボタン最終強化 ── */
.btn-gold--lg {
  font-size: clamp(1rem,2.5vw,1.15rem) !important;
  min-height: 62px;
  padding: 16px 40px !important;
  border-radius: 36px !important;
  box-shadow:
    0 6px 28px rgba(249,186,26,.45),
    0 2px 8px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.25) !important;
  background-image: linear-gradient(135deg, #f0940a 0%, #f9ba1a 40%, #fcd03a 60%, #f9ba1a 80%, #f0940a 100%) !important;
  background-size: 200% 100%;
  animation: goldPulse 3s ease-in-out infinite;
}
@keyframes goldPulse {
  0%,100% { background-position: 0% 0%; box-shadow: 0 6px 28px rgba(249,186,26,.45), 0 2px 8px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.25); }
  50%     { background-position: 100% 0%; box-shadow: 0 8px 36px rgba(249,186,26,.6), 0 4px 16px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.3); }
}
.btn-gold--lg:hover {
  transform: translateY(-5px) scale(1.02) !important;
  animation-play-state: paused;
  box-shadow: 0 16px 50px rgba(249,186,26,.65), 0 6px 20px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.3) !important;
}

/* ── ⑰ プロセスフロー：コネクターライン ── */
.flow__steps {
  position: relative;
}
.flow__step {
  transition: transform .25s, border-color .25s, box-shadow .25s !important;
}
.flow__step:hover {
  transform: translateX(6px) !important;
  border-color: rgba(249,186,26,.25) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.45), -4px 0 0 rgba(249,186,26,.4) !important;
}

/* ── ⑱ ページ全体：スムーズフェードイン ── */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,.61,.36,1), transform .65s cubic-bezier(.22,.61,.36,1);
}
.rv.in {
  opacity: 1;
  transform: none;
}
.rv[data-delay="100"] { transition-delay: .1s; }
.rv[data-delay="200"] { transition-delay: .2s; }
.rv[data-delay="300"] { transition-delay: .3s; }
.rv[data-delay="400"] { transition-delay: .4s; }
.rv[data-delay="500"] { transition-delay: .5s; }

/* ── ⑲ 比較テーブル：AHF列の強調アニメ ── */
.cmp__th-ahf, .cmp__td-ahf {
  transition: background .3s;
}
.cmp__table tr:hover .cmp__td-ahf {
  background: rgba(249,186,26,.12) !important;
}

/* ── ⑳ トラスト要素：ソーシャルプルーフバー ── */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: rgba(13,165,110,.08);
  border: 1px solid rgba(13,165,110,.2);
  border-radius: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  margin: 8px 0;
}
.trust-bar i { color: #10c97d; flex-shrink: 0; }
.trust-bar strong { color: #fff; }

/* ── ㉑ モバイル：フォーム ── */
@media (max-width: 640px) {
  .cform__row { flex-direction: column; gap: 14px !important; }
  .cform__group { width: 100% !important; }
}

/* ── ㉒ ニュースバッジ：カラーバリエーション ── */
.news-cat--update  { background: rgba(61,125,245,.15); color: var(--b-300,#6fa0ff); border-color: rgba(61,125,245,.3); }
.news-cat--campaign{ background: rgba(249,186,26,.15); color: var(--g-400,#f9ba1a); border-color: rgba(249,186,26,.3); }
.news-cat--info    { background: rgba(13,165,110,.15); color: #4cd891; border-color: rgba(13,165,110,.3); }

/* ── ㉓ 会社概要表：ホバー行ハイライト ── */
.comp__table tr:hover td,
.comp__table tr:hover th {
  background: rgba(255,255,255,.04) !important;
}
.comp__table th {
  color: rgba(255,255,255,.55) !important;
  font-weight: 700 !important;
}
.comp__table td {
  color: rgba(255,255,255,.82) !important;
}

/* ── ㉔ ページ遷移：滑らか ── */
html { scroll-behavior: smooth; }

/* ── ㉕ キャリアページ/法人ページ用：テーブルデザイン ── */
.data-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  font-size: .92rem;
}
.data-table th {
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.6);
  font-weight: 700; font-size: .8rem;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.08);
  letter-spacing: .06em; text-transform: uppercase;
}
.data-table td {
  padding: 14px 16px;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.05);
  line-height: 1.7;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255,255,255,.025); }

/* ── ㉖ ローディング画面：完成度UP ── */
.loading__logo-ring {
  animation: ringRotate 1.8s linear infinite !important;
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── ㉗ 電話番号：クリックエフェクト ── */
a[href^="tel"] {
  transition: color .2s, text-shadow .2s;
}
a[href^="tel"]:hover {
  color: var(--g-400,#f9ba1a) !important;
  text-shadow: 0 0 12px rgba(249,186,26,.4);
}

/* ── ㉘ 内部リンク強化：コラムカードプレミアム ── */
.blog-card {
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  border-radius: 16px !important;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.22,.61,.36,1), border-color .28s, box-shadow .28s !important;
}
.blog-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(249,186,26,.2) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,.45), 0 0 0 1px rgba(249,186,26,.12) !important;
}
.blog-card__cat {
  font-size: .72rem !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  padding: 3px 10px !important;
  border-radius: 5px !important;
  text-transform: uppercase !important;
}

/* ── ㉙ AIスクリーニングブロック：最終仕上げ ── */
#ai-screening .ai-form__input,
#ai-screening input {
  background: rgba(255,255,255,.07) !important;
  border: 1.5px solid rgba(255,255,255,.12) !important;
  color: #fff !important;
  border-radius: 10px !important;
  transition: border-color .2s, box-shadow .2s !important;
}
#ai-screening .ai-form__input:focus,
#ai-screening input:focus {
  border-color: rgba(29,92,232,.55) !important;
  box-shadow: 0 0 0 3px rgba(29,92,232,.15) !important;
  outline: none !important;
}

/* ── ㉚ フッター：プレミアムグラデーション ── */
.footer {
  background: linear-gradient(180deg, #07101f 0%, #030810 100%) !important;
}
.footer__copy {
  color: rgba(255,255,255,.28) !important;
  font-size: .78rem !important;
}

/* ── ㉛ セクション背景：深みのあるグラデーション ── */
.features  { background: linear-gradient(180deg, var(--ink-900,#050d1a) 0%, #070f1c 100%); }
.flow      { background: linear-gradient(180deg, #060e1b 0%, var(--ink-900,#050d1a) 100%); }
.contact   { background: linear-gradient(160deg, #040c1d 0%, #060e1b 50%, #040b18 100%); }

/* ── ㉜ タブレット最適化（768px〜1024px） ── */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero__wrap     { gap: 40px !important; }
  .feat__grid     { grid-template-columns: repeat(2, 1fr) !important; }
  .flow__steps    { grid-template-columns: repeat(2, 1fr) !important; }
  .nums__inner    { gap: 0 !important; }
}

/* ── ㉝ 最高品質：selection カラー ── */
::selection {
  background: rgba(249,186,26,.25);
  color: #fff;
}
::-moz-selection {
  background: rgba(249,186,26,.25);
  color: #fff;
}

/* ── ㉞ アクセシビリティ：ハイコントラストモード ── */
@media (forced-colors: active) {
  .btn-gold, .btn-gold--lg { forced-color-adjust: none; }
}

/* ── ㉟ パフォーマンス：will-change 最適化 ── */
.hdr,
.fcta__btn,
.feat__card,
.fee__card {
  will-change: transform;
}
.hero__aurora--1,
.hero__aurora--2 {
  will-change: opacity, transform;
}

/* ═══════════════════════════════════════════════════════════════
   PRO ELITE v6.1 — トッププロ最終品質
   2026-03-21 全機能完成・最高峰仕上げ
═══════════════════════════════════════════════════════════════ */

/* ── ① ヘッダー：シミュレーターリンク特別スタイル ── */
.hdr__nav-a--sim {
  background: rgba(249,186,26,.1);
  border: 1px solid rgba(249,186,26,.25);
  border-radius: 20px;
  padding: 5px 12px;
  color: var(--g-300, #fdd057) !important;
  font-weight: 700;
  transition: background .2s, border-color .2s, box-shadow .2s !important;
}
.hdr__nav-a--sim:hover {
  background: rgba(249,186,26,.18) !important;
  border-color: rgba(249,186,26,.5) !important;
  box-shadow: 0 0 16px rgba(249,186,26,.25);
  color: var(--g-400, #f9ba1a) !important;
}

/* ── ② ヒーロー：KPIアイテムホバー ── */
.hero__kpi-item {
  transition: transform .2s;
}
.hero__kpi-item:hover {
  transform: translateY(-2px);
}
.hero__kpi-num {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  background: linear-gradient(135deg, #fff 0%, #a3c2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ── ③ ヒーロー：バッジ・チップのグロー ── */
.hero__chip {
  transition: transform .2s, box-shadow .2s !important;
}
.hero__chip:hover {
  transform: scale(1.06) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.5) !important;
}

/* ── ④ セクションヘッド：タイポグラフィ強化 ── */
.sec-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.2;
}
.sec-lead {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,.55);
  line-height: 1.85;
  max-width: 580px;
  margin: 0 auto;
}

/* ── ⑤ CTA section：ネオングロー強化 ── */
.contact__form-box {
  background: rgba(255,255,255,.038) !important;
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255,255,255,.09) !important;
  box-shadow:
    0 0 0 1px rgba(29,92,232,.12),
    0 24px 64px rgba(0,0,0,.5),
    0 8px 24px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.06) !important;
}

/* ── ⑥ FAQ：アイコン強化 ── */
.faq__q-icon {
  color: var(--g-400, #f9ba1a) !important;
  filter: drop-shadow(0 2px 6px rgba(249,186,26,.4));
}

/* ── ⑦ フォーム：input focus グロー強化 ── */
.cform input:focus,
.cform select:focus,
.cform textarea:focus {
  border-color: rgba(61,125,245,.7) !important;
  box-shadow:
    0 0 0 3px rgba(29,92,232,.18),
    0 2px 16px rgba(29,92,232,.12) !important;
}

/* ── ⑧ ナビゲーション：アクティブ状態強化 ── */
.hdr__nav-a {
  position: relative;
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  transition: color .2s;
  padding: 6px 2px;
  text-decoration: none;
}
.hdr__nav-a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--b-400), var(--g-400));
  transition: right .25s cubic-bezier(.22,.61,.36,1);
  border-radius: 2px;
}
.hdr__nav-a:hover { color: #fff; }
.hdr__nav-a:hover::after { right: 0; }
.hdr__nav-a.active { color: var(--b-200); }
.hdr__nav-a.active::after { right: 0; }

/* ── ⑨ ページ遷移：フェードイン高品質 ── */
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
body {
  animation: pageEnter .4s cubic-bezier(.22,.61,.36,1) both;
}

/* ── ⑩ スクロールトップボタン：プレミアム ── */
.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(5,13,26,.88);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  cursor: pointer;
  z-index: 180;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  transition: background .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.scroll-top-btn:hover {
  background: rgba(29,92,232,.25);
  border-color: rgba(61,125,245,.5);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.5);
}
.scroll-top-btn.show { display: flex; }

/* ── ⑪ パフォーマンス：リソースヒント ── */
/* 画像：aspect-ratio 自動設定（CLS防止） */
img:not([width]):not([style*="width"]) {
  aspect-ratio: auto;
}

/* ── ⑫ アクセシビリティ：フォーカスリング ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(249,186,26,.75) !important;
  outline-offset: 3px !important;
}

/* ── ⑬ セクション区切り線：プレミアム ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08) 30%, rgba(255,255,255,.08) 70%, transparent);
  margin: 0;
}

/* ── ⑭ 数値セクション：カウンターアニメ後グロー ── */
.counter.done {
  filter: drop-shadow(0 0 12px rgba(249,186,26,.3));
}

/* ── ⑮ テキスト選択：ブランドカラー（強化） ── */
::selection {
  background: rgba(29,92,232,.35);
  color: #fff;
}

/* ── ⑯ SP menu: 改善 ── */
.sp-menu {
  background: linear-gradient(180deg, #061020 0%, #030b18 100%) !important;
  box-shadow: 4px 0 40px rgba(0,0,0,.6) !important;
}
.sp-menu__cta-main {
  background: linear-gradient(135deg, var(--g-400,#f9ba1a), var(--g-500,#f0940a)) !important;
  color: var(--n-900,#050d1a) !important;
  font-weight: 900 !important;
}
.sp-menu__cta-tel {
  background: rgba(29,92,232,.15) !important;
  border: 1px solid rgba(61,125,245,.3) !important;
}

/* ── ⑰ ページヘッダー（コラムページ共通） ── */
.page-header {
  padding: 100px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--n-900,#050d1a) 0%, #091628 100%);
}
.page-header h1 {
  font-size: clamp(22px,5vw,42px);
  font-weight: 900;
  line-height: 1.25;
  background: linear-gradient(135deg, #fff, var(--b-200,#a3c2ff));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249,186,26,.12);
  border: 1px solid rgba(249,186,26,.3);
  color: var(--g-400,#f9ba1a);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: .06em;
}

/* ── ⑱ スクロールバー：ファイン調整 ── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.12);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(61,125,245,.4);
}

/* ── ⑲ ブログ・コラムページ：記事サムネイルアスペクト比 ── */
.blog-card__img,
.article-thumb {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

/* ── ⑳ 全ページ共通：ローディング完了後のフェード ── */
body.loaded {
  animation: none;
}
.loading.out ~ body {
  animation: pageEnter .6s cubic-bezier(.22,.61,.36,1) both;
}
