/* ============================================================
   資産Navi LP - Main Stylesheet  v3.0
   Design: Clean white base × Orange accent
   Font: Noto Sans JP + Inter
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --orange-50:  #FFF7ED;
  --orange-100: #FFEDD5;
  --orange-200: #FED7AA;
  --orange-300: #FDBA74;
  --orange-400: #FB923C;
  --orange-500: #F97316;
  --orange-600: #EA580C;
  --orange-700: #C2410C;

  --bg:         #FFFFFF;
  --bg-sub:     #FAFAFA;
  --bg-warm:    #FFF8F4;
  --text-dark:  #1A1A1A;
  --text-body:  #3D3D3D;
  --text-muted: #6B6B6B;
  --text-light: #A3A3A3;
  --border:     #E8E8E8;
  --border-soft:#F0F0F0;

  --blue:    #3B82F6;
  --green:   #22C55E;
  --purple:  #8B5CF6;
  --amber:   #F59E0B;
  --teal:    #14B8A6;
  --red:     #EF4444;

  --shadow-xs: 0 1px 4px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.11);

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  --ease: cubic-bezier(.4,0,.2,1);
  --max-width: 1280px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
@media (max-width: 768px) {
  html { font-size: 15px; }
}
body {
  overflow-x: hidden;
  font-family: 'Noto Sans JP', 'Inter', 'Hiragino Sans', sans-serif;
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .01em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Container ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Section Commons ---------- */
.section { padding: 88px 0; }
.bg-sub { background: var(--bg-sub); }
.bg-warm { background: var(--bg-warm); }

/* セクションラベル（小バッジ） */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-600);
  background: var(--orange-50);
  border: 1px solid var(--orange-200);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

/* セクション見出し */
.section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 14px;
  letter-spacing: -.025em;
}

/* セクションリード文 */
.section-lead {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 52px;
}

.text-accent { color: var(--orange-500); }
.section-title--center { text-align: center; }
.sp-only { display: none; }
.pc-only { display: inline; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-500);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--r-md);
  padding: 14px 28px;
  box-shadow: 0 3px 14px rgba(249,115,22,.32);
  transition: all .25s var(--ease);
  letter-spacing: .01em;
}
.btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
  box-shadow: 0 7px 22px rgba(249,115,22,.40);
}
.btn-primary.btn-large { padding: 16px 34px; font-size: 1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--r-md);
  padding: 14px 28px;
  border: 1.5px solid var(--border);
  background: #fff;
  transition: all .25s var(--ease);
}
.btn-ghost:hover { border-color: var(--orange-300); color: var(--orange-600); background: var(--orange-50); }
.btn-ghost.btn-large { padding: 16px 34px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-600);
  font-weight: 600;
  font-size: .9rem;
  border-radius: var(--r-md);
  padding: 11px 24px;
  border: 1.5px solid var(--orange-300);
  background: #fff;
  transition: all .25s var(--ease);
}
.btn-outline:hover { background: var(--orange-50); border-color: var(--orange-500); }

/* デモ体験ボタン */
.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--orange-600);
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--r-md);
  padding: 14px 28px;
  border: 2px solid var(--orange-300);
  transition: all .25s var(--ease);
  box-shadow: var(--shadow-xs);
}
.btn-demo:hover {
  background: var(--orange-50);
  border-color: var(--orange-500);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-demo.btn-large { padding: 16px 34px; font-size: 1rem; }

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp .65s var(--ease) forwards;
}
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }
.delay-4 { animation-delay: .48s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.fade-slide {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s var(--ease) var(--delay, 0s),
              transform .55s var(--ease) var(--delay, 0s);
}
.fade-slide.visible { opacity: 1; transform: translateY(0); }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}


/* ============================================================
   QUICK NAV（ヒーロー直下アンカーナビ）
   ============================================================ */
.quick-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.quick-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 12px 0;
  flex-wrap: wrap;
}
.quick-nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-sub);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.quick-nav-list a i {
  font-size: .75rem;
  color: var(--orange-400);
}
.quick-nav-list a:hover {
  background: var(--orange-50);
  border-color: var(--orange-300);
  color: var(--orange-600);
}
/* スマホ：センタリング */
@media (max-width: 768px) {
  .quick-nav-list {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
  }
  .quick-nav-list a {
    font-size: .78rem;
    padding: 5px 12px;
  }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-400), var(--orange-600));
  z-index: 1100;
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo { display: flex; align-items: center; }
.logo-img-header { height: 34px; width: auto; object-fit: contain; display: block; }
.logo-img-footer { height: 30px; width: auto; object-fit: contain; display: block; }
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 6px 14px;
  margin-bottom: 12px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav a {
  font-size: .86rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.header-nav a:hover { color: var(--orange-500); }

.btn-header-cta {
  background: var(--orange-500) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: var(--r-sm) !important;
  padding: 8px 20px !important;
  font-size: .84rem !important;
  box-shadow: 0 2px 10px rgba(249,115,22,.28);
  transition: all .25s var(--ease);
}
.btn-header-cta:hover {
  background: var(--orange-600) !important;
  transform: translateY(-1px);
}

/* ヘッダー：ログインボタン */
.btn-header-login {
  font-size: .84rem !important;
  font-weight: 600 !important;
  color: var(--text-muted) !important;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 7px 16px !important;
  background: #fff;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-header-login:hover {
  color: var(--text-dark) !important;
  border-color: var(--text-muted);
}

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 68px;
  background: linear-gradient(180deg, #FAFAFA 0%, #fff 60%);
  position: relative;
}

/* ① キャッチ：全幅 */
.hero-top {
  padding-top: 44px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.4;
  letter-spacing: -.025em;
}
.hero-accent { color: var(--orange-500); }
.hero-title-line1 { display: block; margin-bottom: -0.2em; }

/* ② コピー＋ビジュアル：2カラム */
.hero-bottom {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 48px;
}

.hero-sub {
  font-size: .96rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}
.hero-sub strong { color: var(--text-dark); font-weight: 700; }

.hero-logo-wrap {
  margin-top: 28px;
  margin-bottom: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}
.hero-app-label {
  font-size: .73rem;
  color: #2B7CC1;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: .05em;
}
.hero-logo-img { height: 58px; width: auto; display: block; image-rendering: -webkit-optimize-contrast; }

.hero-cta-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-demo-wrap {
  margin-bottom: 4px;
}
.hero-demo-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px dashed var(--border);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.hero-demo-link:hover {
  color: var(--orange-500);
  border-color: var(--orange-300);
}
.hero-demo-link i {
  color: var(--orange-400);
  font-size: .9rem;
}

/* ヒーロー：ストアダウンロードボタン */
.hero-store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: var(--r-md);
  padding: 13px 22px;
  min-width: 175px;
  transition: all .25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.hero-store-btn--apple {
  background: #1A1A1A;
  color: #fff;
}
.hero-store-btn--apple:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.hero-store-btn--google {
  background: #fff;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
}
.hero-store-btn--google:hover {
  border-color: var(--orange-300);
  background: var(--orange-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.hero-store-btn i {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.hero-store-btn--google i { color: #EA4335; }
.hero-store-btn-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hero-store-btn-text span {
  font-size: .65rem;
  opacity: .65;
  font-weight: 500;
  line-height: 1;
}
.hero-store-btn--apple .hero-store-btn-text span { color: rgba(255,255,255,.7); }
.hero-store-btn-text strong {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
}

/* 無料メモ */
.hero-free-note {
  font-size: .78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-free-note i { color: var(--green); font-size: .8rem; }

/* ビジュアル側 */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* バッジ2枚 */
.hero-stats-wrap {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.hero-badge-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.hero-badge-img:hover { transform: scale(1.06); }

/* アプリ画像 */
.hero-screenshot {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 44px rgba(0,0,0,.13)) drop-shadow(0 4px 10px rgba(249,115,22,.09));
  animation: floatY 5.5s ease-in-out infinite;
}

/* ウェーブ */
.hero-wave { display: none; }


/* ============================================================
   DEVELOPER MESSAGE
   ============================================================ */
/* ============================================================
   DEVELOPER MESSAGE
   ============================================================ */
.developer {
  background: var(--bg-warm);
  border-top: 1px solid var(--orange-100);
  border-bottom: 1px solid var(--orange-100);
  padding-bottom: 0 !important; /* カード下余白はカードに任せる */
}
/* placeholder */

.developer-header {
  margin-bottom: 48px;
  text-align: center;
}
.developer-header .section-label { display: block; text-align: center; }
.developer-header .section-title { margin-bottom: 0; }

/* ── カード本体 ── */
.developer-card {
  position: relative;
  background: linear-gradient(160deg, #F8F8F8 0%, #FAFAFA 50%, #F2F2F2 100%);
  border: 1px solid #E8E8E8;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-height: 520px;
}

/* 右半分に写真を大きく表示 */
.dev-card-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  z-index: 0;
}

/* テキストエリア：左側55% */
.developer-message {
  position: relative;
  z-index: 1;
  width: 55%;
  padding: 44px 52px;
}

.dev-quote-mark { display: none; }

.developer-message p {
  font-size: .97rem;
  line-height: 2;
  color: var(--text-body);
  margin-bottom: 18px;
}
.developer-message strong { color: var(--text-dark); }

.dev-emphasis {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem !important;
  font-weight: 700;
  color: var(--text-dark) !important;
  line-height: 1.9 !important;
  margin: 8px 0 22px !important;
  padding: 0;
  background: none;
  border: none;
}
.dev-emphasis-accent {
  color: var(--orange-600);
  font-weight: 700;
}
.dev-close {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem !important;
  color: var(--text-dark) !important;
  line-height: 1.9 !important;
}
.dev-close strong { color: var(--orange-600) !important; }

.dev-signature {
  margin-top: 28px;
  font-size: .8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(0,0,0,.12);
  padding-top: 18px;
  line-height: 1.8;
}
.dev-signature-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Noto Serif JP', serif;
  letter-spacing: .08em;
  margin-top: 4px;
}

/* スマホ：縦積み・テキスト→写真の順 */
@media (max-width: 768px) {
  .developer-card-wrap {
    flex-direction: column !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .developer-card-wrap .dev-photo-left {
    order: 2;
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 1 !important;
    padding: 0 20px 24px !important;
  }
  .developer-card-wrap .dev-photo-left img {
    max-width: 280px;
    margin: 0 auto;
  }
  .developer-card-wrap .developer-message {
    order: 1;
    width: 100% !important;
    max-width: 100% !important;
    padding: 28px 20px 4px !important;
    box-sizing: border-box !important;
  }
}


/* ============================================================
   STORY（共感セクション）
   ============================================================ */
.story { background: var(--bg); }
.story .section-label { display: block; text-align: center; }
.story .section-title  { text-align: center; }
.story .section-lead   { text-align: center; }

.story-owner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.owner-icon {
  width: 60px;
  height: 60px;
  background: var(--orange-50);
  border: 1.5px solid var(--orange-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange-500);
}
.owner-label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--orange-50);
  border: 1px solid var(--orange-200);
  border-radius: 100px;
  padding: 4px 16px;
}

.story-flow {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.story-plus {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-light);
  flex-shrink: 0;
}
.story-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  width: 220px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .25s var(--ease);
}
.story-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange-200);
  transform: translateY(-3px);
}
.story-card-num {
  font-size: .74rem;
  font-weight: 700;
  color: var(--orange-500);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.story-card-icon { font-size: 1.85rem; margin-bottom: 8px; }
.story-card-name { font-size: .91rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.story-card-mgr  { font-size: .78rem; color: var(--text-muted); margin-bottom: 12px; }

.tool-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 4px 9px;
}
.tool-app   { background: #EFF6FF; color: var(--blue);  border: 1px solid #BFDBFE; }
.tool-paper { background: #F0FDF4; color: #059669;       border: 1px solid #BBF7D0; }
.tool-excel { background: #ECFDF5; color: #047857;       border: 1px solid #A7F3D0; }

.story-problem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.problem-arrow {
  font-size: 1.4rem;
  color: var(--orange-400);
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}
.problem-box {
  background: linear-gradient(135deg, #FFF1F1, #FEF2F2);
  border: 1.5px solid #FECACA;
  border-radius: var(--r-lg);
  padding: 32px 40px;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
}
.problem-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.problem-icon  { font-size: 1.05rem; color: var(--red); flex-shrink: 0; }
.problem-title { font-size: 1.05rem; font-weight: 700; color: #B91C1C; margin: 0; }
.problem-list  { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.problem-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-body);
}
.problem-list i { color: var(--red); font-size: .82rem; flex-shrink: 0; }

.empathy-quote {
  margin-top: 64px;
  text-align: center;
}
.empathy-quote blockquote {
  position: relative;
  display: inline-block;
  max-width: 680px;
  text-align: center;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}
.empathy-quote blockquote::before { display: none; }
.empathy-quote-main {
  display: block;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}
.empathy-quote-main em {
  font-style: normal;
  color: var(--orange-600);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  display: block;
  margin-top: 4px;
}
.empathy-quote-sub {
  display: block;
  font-size: .95rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.empathy-quote strong { color: var(--orange-600); }


/* ============================================================
   SERVICE START（はじめ方）
   ============================================================ */
.service-start { background: var(--bg-sub); }
.service-start .section-title { text-align: center; margin-bottom: 52px; }
.service-start .section-label { display: block; text-align: center; }
.service-start .section-lead  { text-align: center; }

.ss-steps {
  display: flex;
  align-items: stretch;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: nowrap;
}
.ss-arrow {
  color: var(--orange-300);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ss-step {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 14px 18px;
  text-align: center;
  width: 185px;
  flex-shrink: 0;
  position: relative;
  transition: all .25s var(--ease);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ss-step:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange-200);
  transform: translateY(-3px);
}
.ss-step--highlight {
  border-color: var(--orange-400);
  border-width: 2px;
  box-shadow: 0 4px 20px rgba(249,115,22,.14);
  width: 250px;
}
.ss-step--highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-400), var(--amber));
  border-radius: 3px 3px 0 0;
}
.ss-self-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-600);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 3px 12px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(234,88,12,.3);
}

.ss-step-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange-500);
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
  line-height: 1;
}
.ss-step--highlight .ss-step-num { color: var(--orange-600); }

.ss-step-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--orange-50);
  border: 1.5px solid var(--orange-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange-500);
  margin: 0 auto 12px;
  transition: all .25s var(--ease);
}
.ss-step:hover .ss-step-icon { background: var(--orange-100); color: var(--orange-600); }
.ss-step--highlight .ss-step-icon {
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 5px 16px rgba(249,115,22,.28);
}
.ss-step-label { font-size: .85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.45; }
.ss-step-desc  { font-size: .74rem; color: var(--text-muted); line-height: 1.6; }

.ss-store-links { display: flex; flex-direction: column; gap: 7px; margin-top: 12px; width: 100%; }
.ss-store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #1A1A1A;
  color: #fff;
  border-radius: var(--r-sm);
  padding: 8px 10px;
  font-size: .76rem;
  font-weight: 700;
  transition: all .25s var(--ease);
}
.ss-store-btn:hover { background: #333; transform: translateY(-1px); }
.ss-store-btn i { font-size: .95rem; }
.ss-store-btn--android { background: #1a3a2a; }
.ss-store-btn--android:hover { background: #1e4a35; }

.ss-input-methods { display: flex; flex-direction: column; gap: 7px; margin-top: 10px; width: 100%; text-align: left; }
.ss-input-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .76rem;
  color: var(--text-body);
  background: var(--bg-sub);
  border-radius: 8px;
  padding: 9px 12px;
  font-weight: 500;
  border: 1px solid var(--border);
}
.ss-input-row i { color: var(--orange-500); width: 16px; text-align: center; flex-shrink: 0; }
.ss-input-row span { flex: 1; line-height: 1.4; }
.ss-input-row em { font-style: normal; font-size: .62rem; color: var(--text-light); display: block; }
.ss-input-row--biz { background: #F5F3FF; border-color: #DDD6FE; }
.ss-input-row--biz i { color: #7C3AED; }
.biz-em { display: inline-block !important; background: #7C3AED; color: #fff !important; border-radius: 4px; padding: 1px 6px; font-size: .58rem !important; }

.ss-banners { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
.ss-banner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-radius: var(--r-md);
  padding: 24px;
  border: 1.5px solid var(--border);
}
.ss-banner--proxy { background: var(--orange-50); border-color: var(--orange-200); }
.ss-banner--biz   { background: #F5F3FF;          border-color: #DDD6FE; }

.ss-banner-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ss-banner--proxy .ss-banner-icon { background: var(--orange-500); color: #fff; box-shadow: 0 5px 14px rgba(249,115,22,.28); }
.ss-banner--biz   .ss-banner-icon { background: linear-gradient(135deg, #A78BFA, #7C3AED); color: #fff; }

.ss-banner-title { font-size: .9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.ss-banner-desc  { font-size: .8rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.ss-banner-link  {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  font-weight: 700;
  color: #7C3AED;
  transition: gap .2s, color .2s;
}
.ss-banner-link:hover { gap: 8px; color: #6D28D9; }


/* ============================================================
   FEATURES（主な機能）
   ============================================================ */
.features { background: var(--bg); }
.features .section-label { display: block; text-align: center; }
.features .section-title { text-align: center; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: all .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  border-radius: 3px 3px 0 0;
  transition: opacity .25s var(--ease);
}
.feature-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.feature-card:hover::after { opacity: 1; }
.feature-card:nth-child(1)::after { background: linear-gradient(90deg, var(--orange-400), var(--orange-600)); }
.feature-card:nth-child(2)::after { background: linear-gradient(90deg, #60A5FA, #2563EB); }
.feature-card:nth-child(3)::after { background: linear-gradient(90deg, #34D399, #059669); }
.feature-card:nth-child(4)::after { background: linear-gradient(90deg, #FBBF24, #D97706); }
.feature-card:nth-child(5)::after { background: linear-gradient(90deg, #A78BFA, #7C3AED); }
.feature-card:nth-child(6)::after { background: linear-gradient(90deg, #2DD4BF, #0D9488); }

.feature-icon-wrap {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: #fff;
}
.feature-icon-wrap.orange { background: linear-gradient(135deg, var(--orange-400), var(--orange-600)); }
.feature-icon-wrap.blue   { background: linear-gradient(135deg, #60A5FA, #2563EB); }
.feature-icon-wrap.green  { background: linear-gradient(135deg, #34D399, #059669); }
.feature-icon-wrap.amber  { background: linear-gradient(135deg, #FBBF24, #D97706); }
.feature-icon-wrap.purple { background: linear-gradient(135deg, #A78BFA, #7C3AED); }
.feature-icon-wrap.teal   { background: linear-gradient(135deg, #2DD4BF, #0D9488); }

.feature-title { font-size: .97rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.5; }
.feature-desc  { font-size: .85rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }

.feature-tag { display: flex; flex-wrap: wrap; gap: 5px; }
.feature-tag span {
  font-size: .68rem;
  font-weight: 600;
  background: var(--orange-50);
  color: var(--orange-600);
  border: 1px solid var(--orange-200);
  border-radius: 100px;
  padding: 3px 10px;
}


/* ============================================================
   SUMMARY GRID（4枚サマリー）
   ============================================================ */
.features { background: var(--bg); }
.features .section-label { display: block; text-align: center; }
.features .section-title { text-align: center; }
.features .section-lead  { text-align: center; }

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.summary-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.summary-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
}
.summary-card:nth-child(1)::before { background: linear-gradient(90deg, #FBBF24, #D97706); }
.summary-card:nth-child(2)::before { background: linear-gradient(90deg, #60A5FA, #2563EB); }
.summary-card:nth-child(3)::before { background: linear-gradient(90deg, var(--orange-400), var(--orange-600)); }
.summary-card:nth-child(4)::before { background: linear-gradient(90deg, #A78BFA, #7C3AED); }
.summary-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.summary-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.summary-icon-wrap.amber  { background: linear-gradient(135deg, #FBBF24, #D97706); }
.summary-icon-wrap.blue   { background: linear-gradient(135deg, #60A5FA, #2563EB); }
.summary-icon-wrap.orange { background: linear-gradient(135deg, var(--orange-400), var(--orange-600)); }
.summary-icon-wrap.purple { background: linear-gradient(135deg, #A78BFA, #7C3AED); }

.summary-title { font-size: .95rem; font-weight: 700; color: var(--text-dark); line-height: 1.5; }
.summary-desc  { font-size: .83rem; color: var(--text-muted); line-height: 1.75; flex: 1; }
.summary-link  {
  font-size: .78rem;
  font-weight: 700;
  color: var(--orange-500);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}
.summary-link:hover { color: var(--orange-600); }

/* ============================================================
   ANALYSIS（分析項目）
   ============================================================ */
.analysis { background: var(--bg-sub); }
.analysis .section-label { display: block; text-align: center; }
.analysis .section-title { text-align: center; }
.analysis .section-lead  { text-align: center; }

.analysis-count-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 48px auto 40px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 48px;
  max-width: 640px;
  box-shadow: var(--shadow-md);
}
.analysis-count-num {
  font-size: 6rem;
  font-weight: 800;
  color: var(--orange-500);
  line-height: 1;
  font-family: 'Inter', sans-serif;
  letter-spacing: -.04em;
}
.analysis-count-num span {
  font-size: 3.5rem;
  color: var(--orange-400);
}
.analysis-count-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.8;
}

.atag-more-btn { display: none; }
.atag--sp-hidden { display: inline-flex; }
.sp-dl-btn { display: none; }
.cta-title-sp-br { display: none; }

.analysis-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto 24px;
}
.atag {
  font-size: .82rem;
  font-weight: 600;
  background: #fff;
  color: var(--text-body);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  transition: all .2s var(--ease);
}
.atag:hover { border-color: var(--orange-300); color: var(--orange-600); }
.atag--highlight {
  background: var(--orange-50);
  color: var(--orange-600);
  border-color: var(--orange-300);
  font-weight: 700;
}
.atag--more {
  background: var(--text-dark);
  color: #fff;
  border-color: var(--text-dark);
  font-weight: 700;
}

/* タグアニメーション */
.atag {
  opacity: 0;
  transform: translateY(10px) scale(0.92);
  transition: opacity .35s ease, transform .35s ease, border-color .2s, color .2s;
}
.atag.tag-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.analysis-note {
  text-align: center;
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================================
   MOCKUP CAROUSEL（分析画面カルーセル）
   ============================================================ */
.mockup-carousel {
  position: relative;
  margin-top: 48px;
  overflow: hidden;
}
.mockup-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}
.mockup-carousel-item {
  flex: 0 0 calc(20% - 20px);
  text-align: center;
}
.mockup-carousel-item img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}
.mockup-carousel-label {
  margin-top: 10px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
}
.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  color: var(--text-dark);
  font-size: 1rem;
  z-index: 10;
  transition: box-shadow 0.2s;
}
.carousel-btn:hover { box-shadow: var(--shadow-md); }
.carousel-btn--prev { left: -8px; display: none; }
.carousel-btn--next { right: -8px; display: none; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
  display: none;
}
.carousel-dot.active { background: var(--orange-500); }

/* ============================================================
   INHERITANCE（相続・家族共有）
   ============================================================ */
.inheritance { background: #F8F4FF; }
.inheritance .section-label { display: block; text-align: center; }
.inheritance .section-title { text-align: center !important; display: block; width: 100%; margin-left: auto; margin-right: auto; }
.inheritance .section-lead  { text-align: center; }

/* 家族画像 */
.inheritance-img-wrap {
  max-width: 760px;
  margin: 32px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(124,58,237,.1);
}
.inheritance-hero-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* lead-box → シンプルテキストに変更 */
.inheritance-lead-text {
  max-width: 860px;
  margin: 20px auto 0;
  font-size: 1.01rem;
  color: var(--text-body);
  line-height: 2;
  text-align: center;
}
.inheritance-lead-text strong { color: #7C3AED; }

.inheritance-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 52px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ① よくある現実 → 資産Naviがあれば */
.inheritance-scenes {
  display: grid;
  grid-template-columns: 400px auto 400px;
  gap: 20px;
  align-items: stretch;
  margin-top: 44px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.inheritance-scenes-arrow {
  color: #C4B5FD;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ② メリット3項目（カードなし・アイコン＋テキスト） */
.inheritance-benefits-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 44px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-top: 1.5px solid #DDD6FE;
  padding-top: 36px;
}

/* sceneカード（縦構造・見出し大） */
.inheritance-scene {
  background: #fff;
  border: 1.5px solid #E8E2FC;
  border-radius: 16px;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  height: 100%;
  box-sizing: border-box;
}
.inheritance-scene--solution {
  border-color: #C4B5FD;
  background: linear-gradient(160deg, #FAF8FF 0%, #F3EEFF 100%);
}

/* タグバッジ（上部） */
.inheritance-scene-tag {
  font-size: .78rem;
  font-weight: 700;
  color: #EF4444;
  background: #FEF2F2;
  border-radius: 100px;
  padding: 3px 12px;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: .03em;
}
.inheritance-scene-tag.solution {
  color: #7C3AED;
  background: #EDE9FE;
}

/* アイコン＋見出しの横並びヘッダー */
.inheritance-scene-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

/* アイコン */
.inheritance-scene-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #FEF2F2;
  color: #EF4444;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.inheritance-scene--solution .inheritance-scene-icon {
  background: #EDE9FE;
  color: #7C3AED;
}

/* 見出し（大きく・太く） */
.inheritance-scene-heading {
  font-size: 1.21rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.5;
  margin: 0;
  letter-spacing: -.02em;
}

/* リスト（現実カード） */
.inheritance-scene-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inheritance-scene-list li {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.7;
  padding-left: 1.2em;
  position: relative;
}
.inheritance-scene-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #EF4444;
}

/* 本文（解決カード） */
.inheritance-scene-body {
  font-size: .86rem;
  color: var(--text-body);
  line-height: 1.9;
  margin: 0;
}
.inheritance-scene-body strong {
  color: #7C3AED;
  font-weight: 700;
}

/* 注釈 */
.inheritance-scene-note {
  font-size: .84rem;
  color: var(--text-muted);
  font-style: normal;
  margin-top: 8px;
  text-align: center;
  width: 100%;
}

.inheritance-arrow {
  text-align: center;
  color: #A78BFA;
  font-size: 1.4rem;
  padding: 10px 0;
}

/* 右：メリットカード（旧縦並び用・後方互換） */
.inheritance-benefits { display: flex; flex-direction: column; gap: 14px; height: 100%; }

/* 新：アイコン＋テキスト列 */
.inheritance-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  gap: 14px;
}
.inheritance-benefit-item + .inheritance-benefit-item {
  border-left: 1px solid #DDD6FE;
}
.inheritance-benefit-icon-sm {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #EDE9FE;
  color: #7C3AED;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.inheritance-benefit-title { font-size: .98rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.inheritance-benefit-desc  { font-size: .88rem; color: var(--text-muted); line-height: 1.75; }

.inheritance-cta {
  margin-top: 52px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 40px;
  background: #EDE9FE;
  border: 1.5px solid #DDD6FE;
  border-radius: var(--r-lg);
  text-align: center;
}
.inheritance-cta-text {
  font-size: .94rem;
  color: #5B21B6;
  margin-bottom: 14px;
  line-height: 1.6;
  font-weight: 600;
}
.inheritance-cta .btn-primary {
  background: #7C3AED;
  color: #fff;
  border: none;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  transition: all .2s var(--ease);
}
.inheritance-cta .btn-primary:hover { background: #6D28D9; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,58,237,.25); }

/* パルスアニメーション */
.inheritance-cta-btn-wrap {
  position: relative;
  display: inline-block;
}
.inheritance-cta-btn-wrap::before,
.inheritance-cta-btn-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(124, 58, 237, 0.35);
  animation: ctaPulse 2.2s ease-out infinite;
  pointer-events: none;
}
.inheritance-cta-btn-wrap::after {
  animation-delay: 1.1s;
}
@keyframes ctaPulse {
  0%   { transform: scale(1);   opacity: .7; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.inheritance-cta-btn {
  position: relative;
  z-index: 1;
}

/* ============================================================
   CASHFLOW（CF管理）
   ============================================================ */
.cashflow { background: var(--bg-sub); }
.cashflow .section-label { display: block; text-align: center; }
.cashflow .section-title { text-align: center; }
.cashflow .section-lead  { text-align: center; }

.cashflow-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: center;
}

.cf-mockup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cf-mockup-img-combined {
  width: 100%;
  max-width: 360px;
  height: auto;
  margin-bottom: -40px;
}

.cf-chart-wrap {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-xs);
}
.cf-chart-wrap canvas { max-height: 210px; }
.cf-chart-title { font-size: .82rem; font-weight: 700; color: var(--text-dark); margin-bottom: 18px; }

.cf-metrics {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.cf-metric { background: #fff; padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; }
.cf-metric.highlight { background: var(--orange-50); }
.cf-metric-label { font-size: .8rem; color: var(--text-muted); font-weight: 500; }
.cf-metric-val { font-size: 1.08rem; font-weight: 800; color: var(--text-dark); }
.cf-metric-val small { font-size: .62rem; font-weight: 500; color: var(--text-muted); }
.cf-metric-val.positive { color: #059669; }
.cf-metric-val.negative { color: var(--red); }
.cf-metric.highlight .cf-metric-val { color: var(--orange-600); }

.cf-point {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}
.cf-point:last-child { border-bottom: none; }
.cf-point-icon {
  width: 42px; height: 42px;
  background: var(--orange-50);
  border: 1.5px solid var(--orange-200);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-500);
  font-size: .95rem;
  flex-shrink: 0;
}
.cf-point-body h4 { font-size: 1.0rem; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.cf-point-body p  { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }


/* ============================================================
   VOICES（利用者の声）
   ============================================================ */
.voices { background: var(--bg-sub); }
.voices .section-label { display: block; text-align: center; }
.voices .section-title { text-align: center; }
.voices .section-lead  { text-align: center; }

.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.voice-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px 28px;
  box-shadow: var(--shadow-xs);
  transition: all .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.voice-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange-200); transform: translateY(-4px); }

/* 引用符の装飾 */
.voice-card::before {
  content: '“';
  font-size: 4rem;
  line-height: 1;
  color: var(--orange-200);
  font-family: Georgia, serif;
  margin-bottom: -8px;
  display: none;
}

.voice-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.voice-stars i { color: #FBBF24; font-size: .95rem; }

.voice-text {
  font-size: .93rem;
  line-height: 2;
  color: var(--text-body);
  margin-bottom: 0;
  font-style: normal;
  flex: 1;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--border-soft);
}
.voice-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.voice-name   { font-size: .87rem; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.voice-detail { font-size: .75rem; color: var(--text-muted); }


/* ============================================================
   SECURITY（安心・安全）
   ============================================================ */
.security { background: var(--bg-sub); }
.security .section-label { display: block; text-align: center; }
.security .section-title { text-align: center; }
.security .section-lead  { text-align: center; }

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.security-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px 18px;
  text-align: center;
  transition: all .25s var(--ease);
  box-shadow: var(--shadow-xs);
}
.security-item:hover { box-shadow: var(--shadow-md); border-color: var(--orange-200); transform: translateY(-3px); }

.security-icon {
  width: 48px; height: 48px;
  background: var(--orange-50);
  border: 1.5px solid var(--orange-200);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: var(--orange-500);
  margin: 0 auto 14px;
}
.security-item h4 { font-size: .87rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.security-item p  { font-size: .78rem; color: var(--text-muted); line-height: 1.7; }

.security-badge-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-xs);
}
.security-badge i { color: var(--orange-500); }


/* ============================================================
   COLUMN（コラム）
   ============================================================ */
.column { background: var(--bg-warm); }
.column .section-label { display: block; text-align: center; }
.column .section-title { text-align: center; }
.column .section-lead  { text-align: center; }

.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.column-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-xs);
  transition: all .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.column-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange-200); transform: translateY(-3px); }

.column-cat {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 12px;
  letter-spacing: .04em;
  width: fit-content;
}
.column-cat.asset      { background: var(--orange-50); color: var(--orange-600); border: 1px solid var(--orange-200); }
.column-cat.tax        { background: #EFF6FF; color: #2563EB; border: 1px solid #BFDBFE; }
.column-cat.succession { background: #F0FDF4; color: #059669; border: 1px solid #BBF7D0; }

.column-title { font-size: .93rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; line-height: 1.6; }
.column-img-wrap {
  width: calc(100% + 52px);
  margin: 0 -26px 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.column-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.column-card:hover .column-img { transform: scale(1.04); }
.column-desc  { font-size: .8rem;  color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.column-meta  {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}
.column-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--orange-500);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s, color .2s;
}
.column-link:hover { color: var(--orange-600); gap: 7px; }
.column-more { text-align: center; margin-top: 40px; }

/* スケルトンUI（APIローディング中） */
@keyframes skeletonShimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}
.column-skeleton {
  pointer-events: none;
}
.column-skeleton .skeleton-cat,
.column-skeleton .skeleton-title,
.column-skeleton .skeleton-desc {
  border-radius: 6px;
  background: linear-gradient(90deg, #ede9e9 25%, #f5f5f5 50%, #ede9e9 75%);
  background-size: 800px 100%;
  animation: skeletonShimmer 1.4s infinite linear;
}
.column-skeleton .skeleton-cat   { height: 22px; width: 72px; margin-bottom: 16px; }
.column-skeleton .skeleton-title { height: 18px; width: 90%; margin-bottom: 12px; }
.column-skeleton .skeleton-title + .skeleton-title { width: 70%; }
.column-skeleton .skeleton-img   { width: calc(100% + 52px); margin: 0 -26px 16px; aspect-ratio: 16/9; }
.column-skeleton .skeleton-desc  { height: 13px; width: 100%; margin-bottom: 8px; }
.column-skeleton .skeleton-desc.short { width: 60%; }


/* ============================================================
   SOLUTION NEW（解決セクション）
   ============================================================ */
.solution-new { background: var(--bg-sub); }
.solution-new .section-label { display: block; text-align: center; }
.solution-new .section-title { text-align: center; }
.solution-new .section-lead  { text-align: center; }

.sol-compare {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.sol-compare-col {
  flex: 1;
  border-radius: var(--r-lg);
  padding: 32px 28px;
}
.sol-compare-before {
  background: #FFF1F1;
  border: 1.5px solid #FECACA;
}
.sol-compare-after {
  background: #F0FDF4;
  border: 1.5px solid #BBF7D0;
}
.sol-compare-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.sol-compare-before .sol-compare-head { color: #B91C1C; }
.sol-compare-after  .sol-compare-head { color: #059669; }
.sol-compare-head i { font-size: 1rem; }

.sol-compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sol-compare-list li {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--text-body);
  padding-left: 16px;
  position: relative;
}
.sol-compare-before .sol-compare-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #EF4444;
  font-size: .75rem;
  top: 2px;
}
.sol-compare-after .sol-compare-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #059669;
  font-size: .75rem;
  font-weight: 700;
  top: 2px;
}

.sol-compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 1.6rem;
  color: var(--orange-400);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .sol-compare { flex-direction: column; gap: 12px; }
  .sol-compare-arrow { padding: 4px 0; transform: rotate(90deg); }
}

/* --- sol-cards（新デザイン） --- */
.sol-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.sol-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all .25s var(--ease);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}
.sol-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-400), var(--orange-500));
}
.sol-card--center::before {
  background: linear-gradient(90deg, var(--orange-500), var(--orange-600));
}
.sol-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange-200); transform: translateY(-4px); }

.sol-card-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--orange-50), #FFF0E0);
  border: 2px solid var(--orange-200);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--orange-500);
  margin: 0 auto 16px;
}
.sol-card-problem {
  font-size: .75rem;
  color: #DC2626;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 100px;
  padding: 4px 14px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
}
.sol-card-arrow {
  font-size: .9rem;
  color: var(--orange-400);
  margin-bottom: 12px;
}
.sol-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 14px;
}
.sol-card-desc {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .sol-cards { grid-template-columns: 1fr; gap: 16px; }
  .sol-card { padding: 24px 20px; }
}


/* ============================================================
   DATA ENTRY（データ登録セクション）
   ============================================================ */
.dataentry { background: var(--bg); }
.dataentry .section-label { display: block; text-align: center; }
.dataentry .section-title { text-align: center; }
.dataentry .section-lead  { text-align: center; }

.de-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}
/* データ登録カード内画像 */
.de-method-img-wrap {
  margin: -30px -24px 20px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
}
.de-method-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.de-method {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  overflow: hidden;
  transition: all .25s var(--ease);
  box-shadow: var(--shadow-xs);
}
.de-method:hover { box-shadow: var(--shadow-md); border-color: var(--orange-200); transform: translateY(-3px); }

.de-method-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 18px;
}
.de-method-icon.orange { background: linear-gradient(135deg, var(--orange-400), var(--orange-600)); }
.de-method-icon.blue   { background: linear-gradient(135deg, #60A5FA, #2563EB); }
.de-method-icon.purple { background: linear-gradient(135deg, #A78BFA, #7C3AED); }

.de-method-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.de-method-desc  { font-size: .85rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }

.de-method-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  background: var(--orange-50);
  color: var(--orange-600);
  border: 1px solid var(--orange-200);
  border-radius: 100px;
  padding: 3px 12px;
}
.de-method-tag--biz {
  background: #EDE9FE;
  color: #6D28D9;
  border-color: #DDD6FE;
}

/* 自己入力補足 */
.de-self-input {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .83rem;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 28px;
}
.de-self-input i { color: var(--text-light); font-size: .8rem; }
.de-self-input strong { color: var(--text-body); font-weight: 600; }

/* 管理会社紹介バナー */
/* --- de-biz-banner 全面改修 --- */
.de-biz-banner {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
  padding-top: 40px;
  position: relative;
}
.de-biz-banner::before {
  content: '';
  display: block;
  width: 100vw;
  max-width: 860px;
  height: 1px;
  border-top: 1px dashed var(--orange-200);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ヘッダーブロック */
.de-biz-banner-header {
  padding: 0 0 20px;
}
.de-biz-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange-50);
  color: var(--orange-600);
  border: 1px solid var(--orange-200);
  font-size: .75rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 14px;
  letter-spacing: .02em;
}
.de-biz-banner-title {
  font-size: 1.16rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 10px;
}
.de-biz-banner-lead {
  font-size: .935rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ボディブロック */
.de-biz-banner-body {
  padding: 20px 0;
}
.de-biz-banner-intro {
  font-size: .935rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.de-biz-banner-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
  padding: 0;
}
.de-biz-banner-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .935rem;
  font-weight: 600;
  color: var(--text-dark);
}
.de-biz-banner-list li i {
  width: 30px; height: 30px;
  background: var(--orange-50);
  color: var(--orange-500);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}
.de-biz-banner-detail {
  font-size: .935rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 18px;
}
.de-biz-banner-note {
  background: var(--orange-50);
  border-left: 3px solid var(--orange-400);
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
}
.de-biz-banner-note p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}
.de-biz-banner-note strong {
  color: var(--text-dark);
}

/* フッターブロック */
.de-biz-banner-footer {
  padding: 4px 0 0;
  display: flex;
  justify-content: center;
}
.de-biz-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-500);
  color: #fff;
  font-size: .96rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 13px 32px;
  white-space: nowrap;
  transition: all .25s var(--ease);
}
.de-biz-btn:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(234,88,12,.25); color: #fff; }
.de-biz-btn--sub {
  background: #fff;
  color: var(--orange-500);
  border: 1.5px solid var(--orange-300);
}
.de-biz-btn--sub:hover { background: var(--orange-50); color: var(--orange-600); transform: translateY(-1px); }
.de-biz-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.de-biz-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: .78rem;
  font-weight: 600;
  color: #7C3AED;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.de-biz-link:hover { color: #5B21B6; }

@media (max-width: 768px) {
  .de-methods { grid-template-columns: 1fr; }
  .de-biz-banner-header,
  .de-biz-banner-body,
  .de-biz-banner-footer { padding-left: 20px; padding-right: 20px; }
  .de-biz-banner-title { font-size: 1.1rem; }
  .de-biz-banner-footer { padding: 18px 20px; }
  .de-biz-btn { width: 100%; justify-content: center; }
  .de-biz-btns { flex-direction: column; width: 100%; }
}


/* ============================================================
   STEPS SIMPLE（簡略版始め方）
   ============================================================ */
/* ============================================================
   STEPS（はじめ方）
   ============================================================ */
.steps-simple { background: var(--bg-sub); }

/* ヘッダー */
.steps-simple-header {
  text-align: center;
  margin-bottom: 56px;
}
.steps-simple-header .section-label { display: block; text-align: center; }
.steps-simple-header .section-title { margin-bottom: 12px; }
.steps-simple-header .section-lead  { margin-bottom: 0; }

/* ステップ全体ラッパー */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 横並び4カード行 */
.steps-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 0;
}

/* 各ステップカード */
.step-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px 24px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
  position: relative;
  overflow: hidden;
}
.step-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange-200);
  transform: translateY(-3px);
}

/* 上の番号帯 */
.step-card-num {
  font-size: .72rem;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  color: var(--orange-500);
  background: var(--orange-50);
  border: 1px solid var(--orange-200);
  border-radius: 100px;
  padding: 3px 12px;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

/* カード本体：縦並び */
.step-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
}

/* アイコン */
.step-card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(249,115,22,.22);
}

/* テキスト */
.step-card-content { flex: 1; }
.step-card-title {
  font-size: .92rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.step-card-desc {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}
.step-store-link {
  color: var(--orange-500);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--orange-200);
  transition: color .2s;
}
.step-store-link:hover { color: var(--orange-600); }
.step-store-sep {
  margin: 0 4px;
  color: var(--text-light);
}

/* カード間の矢印 */
.step-arrow {
  display: flex;
  align-items: center;
  padding: 0 6px;
  color: var(--orange-300);
  font-size: .85rem;
  flex-shrink: 0;
  align-self: center;
}

/* 下向き矢印コネクター（ゴールへ） */
.step-connector {
  text-align: center;
  color: var(--orange-300);
  font-size: .9rem;
  padding: 10px 0;
}

/* ゴールカード */
.step-goal {
  background: linear-gradient(135deg, #FB923C, #F97316);
  border-radius: 16px;
  padding: 22px 32px;
  box-shadow: 0 6px 24px rgba(249,115,22,.15);
  text-align: center;
}
.step-goal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}
.step-goal-check {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 700;
  color: #F97316;
  background: #fff;
  border-radius: 100px;
  padding: 4px 12px;
  letter-spacing: .06em;
  white-space: nowrap;
  flex-shrink: 0;
}
.step-goal-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.step-goal-desc {
  font-size: .935rem;
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  margin: 0;
}

/* SP */
@media (max-width: 768px) {
  .steps-simple-header { margin-bottom: 36px; }
  .steps-row { flex-wrap: wrap; gap: 12px; }
  .step-arrow { display: none; }
  .step-card { width: calc(50% - 6px); flex: none; padding: 22px 14px 18px; }
  .step-card-icon { width: 46px; height: 46px; font-size: 1.1rem; border-radius: 13px; }
  .step-card-title { font-size: .85rem; }
  .step-goal { padding: 22px 18px; }
  .step-goal-title { font-size: 1rem; }
  .step-card:first-child .step-card-desc { text-align: center; }
  .step-card:first-child .step-store-suffix { display: block; text-align: center; }
}


/* ============================================================
   FAQ
   ============================================================ */
.faq .section-label { display: block; text-align: center; }

.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* アイテム */
.faq-item {
  background: #fff;
  border: 1.5px solid #EBEBEB;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item:hover {
  border-color: var(--orange-200);
  box-shadow: 0 4px 16px rgba(234,88,12,.07);
}

/* 質問ボタン */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .2s var(--ease);
}
.faq-question:hover { background: var(--orange-50); }
.faq-question[aria-expanded="true"] { background: var(--orange-50); }

.faq-q-badge {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Georgia', serif;
}
.faq-q-text {
  flex: 1;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
}
.faq-chevron {
  flex-shrink: 0;
  color: var(--orange-400);
  font-size: .8rem;
  transition: transform .3s var(--ease);
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

/* 回答エリア */
.faq-answer {
  display: flex;
  gap: 14px;
  padding: 4px 26px 24px;
  border-top: 1px solid #F0F0F0;
}
.faq-answer[hidden] { display: none; }

.faq-a-badge {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: #F1F5F9;
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 800;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Georgia', serif;
  margin-top: 20px;
}
.faq-a-body {
  flex: 1;
  padding-top: 20px;
}
.faq-a-body p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 12px;
}
.faq-a-body p:last-child { margin-bottom: 0; }

/* 注意書き */
.faq-note {
  display: block;
  background: #FFFBF5;
  border-left: 3px solid var(--orange-300);
  border-radius: 0 6px 6px 0;
  padding: 10px 12px;
  font-size: .8rem !important;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-note i { color: var(--orange-400); margin-right: 4px; }

/* 料金リスト */
.faq-privacy-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0 14px;
}
.faq-privacy-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--text-dark);
}
.faq-privacy-list li i {
  color: var(--green);
  font-size: .85rem;
  flex-shrink: 0;
}

.faq-price-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0 14px;
}
.faq-price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: var(--text-dark);
}
.faq-price-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 3px 9px;
  white-space: nowrap;
  flex-shrink: 0;
}
.faq-price-label.free  { background: #DCFCE7; color: #16A34A; }
.faq-price-label.paid  { background: #FEF3C7; color: #D97706; }

/* アニメーション（開閉） */
.faq-answer {
  animation: faqFadeIn .25s var(--ease);
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .faq-list { margin-top: 28px; gap: 12px; }
  .faq-question { padding: 18px 18px; gap: 12px; }
  .faq-q-text { font-size: .875rem; }
  .faq-answer { padding: 4px 18px 20px; }
}


/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: linear-gradient(150deg, var(--orange-50) 0%, #fff 50%, var(--orange-100) 100%);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(249,115,22,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(249,115,22,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-inner { position: relative; z-index: 1; }

/* 2カラムレイアウト */
.cta-body {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 左：テキスト */
.cta-content {
  flex: 1;
  min-width: 0;
}
.cta-content .section-label { display: inline-flex; padding-left: 32px; padding-right: 32px; }
.cta-content .store-btns { justify-content: flex-start; }
.cta-content .cta-free-note { justify-content: flex-start; }
.cta-content .cta-sublink { text-align: left; }

/* 右：人物画像 */
.cta-photo {
  flex-shrink: 0;
  width: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: -88px; /* section の padding-bottom 分だけ下に伸ばす */
}
.cta-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 8px 32px rgba(0,0,0,.06))
    contrast(0.82)
    saturate(0.75)
    brightness(1.12)
    opacity(0.88);
}

/* SP：縦積み・画像は非表示 */
@media (max-width: 900px) {
  .cta-body { flex-direction: column; align-items: center; }
  .cta-content { text-align: center; }
  .cta-content .section-label { display: block; text-align: center; }
  .cta-content .store-btns { justify-content: center; }
  .cta-content .cta-free-note { justify-content: center; }
  .cta-content .cta-sublink { text-align: center; }
  .cta-photo { display: none; }
}
.cta-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-500);
  background: rgba(249,115,22,.07);
  border: 1px solid var(--orange-200);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 14px;
}
.cta-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 12px;
}
.cta-accent { color: var(--orange-500); }
.cta-title-gap { display: block; margin-bottom: 0.35em; }
.cta-lead { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; }

.store-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--text-dark);
  color: #fff;
  border-radius: var(--r-md);
  padding: 14px 24px;
  min-width: 196px;
  box-shadow: var(--shadow-md);
  transition: all .25s var(--ease);
}
.store-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); background: #333; }
.store-btn i { font-size: 2rem; }
.store-btn-text { display: flex; flex-direction: column; gap: 2px; }
.store-btn-text span   { font-size: .68rem; color: rgba(255,255,255,.55); }
.store-btn-text strong { font-size: .93rem; }

.cta-free-note {
  font-size: .83rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-free-note i { color: var(--green); }
.cta-sublink { font-size: .83rem; color: var(--text-muted); }
.cta-sublink a { color: var(--orange-500); font-weight: 600; text-decoration: underline; text-decoration-color: var(--orange-300); }
.cta-sublink a:hover { color: var(--orange-600); }


/* ============================================================
   FOOTER
   ============================================================ */
/* ---------- Store Badges ---------- */
.badge-store-link {
  display: inline-block;
  line-height: 0;
}
.badge-store-img {
  display: block;
  height: 44px;
  width: auto;
}
/* Google PlayはAppleより横長なので高さを合わせて調整 */
.badge-googleplay {
  height: 52px;
  margin-top: -4px;
}
/* フッター用：少し小さく */
.badge-footer {
  height: 36px;
}
.badge-googleplay.badge-footer {
  height: 43px;
  margin-top: -3px;
}
/* 始め方ステップ用 */
.step-store-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.badge-step {
  height: 36px;
}
.badge-googleplay.badge-step {
  height: 43px;
  margin-top: -3px;
}

.site-footer {
  background: #111111;
  color: rgba(255,255,255,.6);
  padding: 56px 0 0;
}

/* ── ブランドエリア（左カラム） ── */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-logo-wrap { margin-bottom: 20px; }
.footer-tagline {
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-store-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 9px 16px;
  transition: all .2s;
  white-space: nowrap;
}
.footer-store-btn:hover {
  background: rgba(255,255,255,.13);
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.footer-store-btn i { font-size: 1rem; }

/* ── メインエリア（2カラム） ── */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  padding: 52px 0 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* リンク群ラッパー（4列） */
.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 2px;
}
.footer-col a {
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  line-height: 1.4;
}
.footer-col a:hover { color: var(--orange-300); }

/* ── ボトムバー ── */
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-copyright {
  font-size: .75rem;
  color: rgba(255,255,255,.22);
}

/* ── SP ── */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 0 40px;
  }
  .footer-links-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
}


/* ============================================================
   SOLUTION（使われている場合の互換CSS）
   ============================================================ */
.solution { background: var(--bg); }
.solution .section-label { display: block; text-align: center; }
.solution .section-title { text-align: center; }
.solution .section-lead  { text-align: center; }
.sol-flow { display: flex; flex-direction: column; align-items: center; gap: 0; max-width: 820px; margin: 0 auto 36px; }
.sol-flow-step { width: 100%; background: var(--bg-sub); border-radius: var(--r-lg); padding: 26px 30px; border: 1.5px solid var(--border); }
.sol-flow-step-label { display: flex; align-items: center; gap: 12px; font-size: .97rem; font-weight: 700; color: var(--text-dark); margin-bottom: 18px; flex-wrap: wrap; }
.sol-step-num { background: var(--orange-500); color: #fff; font-size: .7rem; font-weight: 800; border-radius: 100px; padding: 3px 11px; }
.sol-step-note { font-size: .76rem; color: var(--text-muted); background: #fff; border: 1px solid var(--border); border-radius: 100px; padding: 2px 11px; margin-left: auto; }
.sol-methods-grid { display: flex; gap: 10px; align-items: stretch; flex-wrap: nowrap; }
.sol-or { display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; color: var(--text-light); background: var(--border); border-radius: 100px; width: 30px; height: 30px; flex-shrink: 0; align-self: center; }
.sol-method-card { flex: 1; background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-md); padding: 18px 14px; transition: all .25s var(--ease); display: flex; flex-direction: column; gap: 7px; }
.sol-method-card:hover { border-color: var(--orange-300); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.sol-method-card--biz { border-color: #DDD6FE; background: #FAFAFF; }
.sol-mc-icon { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; color: #fff; flex-shrink: 0; }
.sol-mc-icon.orange { background: linear-gradient(135deg, var(--orange-400), var(--orange-600)); }
.sol-mc-icon.blue   { background: linear-gradient(135deg, #60A5FA, #2563EB); }
.sol-mc-icon.purple { background: linear-gradient(135deg, #A78BFA, #7C3AED); }
.sol-mc-title { font-size: .85rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; }
.sol-mc-desc  { font-size: .74rem; color: var(--text-muted); line-height: 1.5; flex: 1; }
.sol-mc-formats { display: flex; flex-wrap: wrap; gap: 4px; margin-top: auto; }
.sol-mc-formats span { font-size: .62rem; font-weight: 700; background: var(--orange-50); color: var(--orange-600); border: 1px solid var(--orange-200); border-radius: 4px; padding: 2px 6px; }
.biz-tag { font-size: .62rem !important; font-weight: 700 !important; background: #EDE9FE !important; color: #6D28D9 !important; border: 1px solid #DDD6FE !important; border-radius: 4px !important; padding: 2px 7px !important; }
.sol-flow-arrow { display: flex; flex-direction: column; align-items: center; gap: 0; padding: 4px 0; }
.sol-flow-arrow-line { width: 2px; height: 18px; background: var(--orange-300); }
.sol-flow-arrow-label { font-size: .7rem; font-weight: 600; color: var(--orange-600); background: var(--orange-50); border: 1px solid var(--orange-200); border-radius: 100px; padding: 3px 12px; margin: 3px 0; }
.sol-flow-arrow-head { color: var(--orange-400); font-size: .95rem; }
.sol-flow-app { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px; background: var(--orange-50); border-color: var(--orange-200) !important; text-align: center; }
.sol-app-logo-img { width: 72px; height: 72px; object-fit: contain; border-radius: 18px; box-shadow: 0 7px 20px rgba(249,115,22,.18); }
.sol-app-caption { font-size: .9rem; color: var(--text-body); line-height: 1.6; }
.sol-app-caption strong { color: var(--orange-600); }
.sol-results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.sol-result-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-sm); padding: 13px 15px; display: flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 600; color: var(--text-dark); transition: all .2s; }
.sol-result-card:hover { border-color: var(--orange-200); box-shadow: var(--shadow-xs); }
.sol-result-card i { color: var(--orange-500); font-size: .95rem; flex-shrink: 0; }
.sol-biz-banner { display: flex; align-items: center; gap: 22px; background: linear-gradient(135deg, #1E1B4B, #2D2A6E); border-radius: var(--r-lg); padding: 26px 30px; color: #fff; max-width: 820px; margin: 0 auto; flex-wrap: wrap; }
.sol-biz-banner-icon { width: 52px; height: 52px; background: rgba(255,255,255,.13); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #A78BFA; flex-shrink: 0; }
.sol-biz-banner-body { flex: 1; min-width: 200px; }
.sol-biz-banner-title { font-size: .97rem; font-weight: 700; color: #fff; margin-bottom: 7px; }
.sol-biz-banner-desc  { font-size: .82rem; color: rgba(255,255,255,.68); line-height: 1.7; }
.sol-biz-banner-btn { display: inline-flex; align-items: center; gap: 7px; background: var(--orange-500); color: #fff; font-size: .82rem; font-weight: 700; border-radius: 100px; padding: 10px 20px; white-space: nowrap; transition: all .25s; flex-shrink: 0; }
.sol-biz-banner-btn:hover { background: var(--orange-400); transform: translateY(-1px); }


/* ============================================================
   RESPONSIVE - Tablet (1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }

  .sol-methods-grid { flex-wrap: wrap; }
  .sol-results-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .ss-steps { flex-wrap: wrap; align-items: flex-start; gap: 14px; justify-content: center; }
  .ss-arrow { display: none; }
  .ss-step { width: 155px; }
  .ss-step--highlight { width: 100%; max-width: 460px; }
  .ss-input-methods { flex-direction: row; flex-wrap: wrap; }
  .ss-input-row { flex: 1; min-width: 130px; }
}

@media (max-width: 900px) {
  .cashflow-layout { grid-template-columns: 1fr !important; gap: 0 !important; }
  .cf-mockup-wrap { margin-top: -60px; margin-bottom: 0; }
  .cf-mockup-img-combined { max-width: 240px; }
  .voices-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
  .voice-card { padding: 28px 22px 22px; }
  .column-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .sol-biz-banner { flex-direction: column; text-align: center; padding: 22px 18px; }
  .sol-biz-banner-desc { text-align: left; }
}


/* ============================================================
   RESPONSIVE - Mobile (768px)
   ============================================================ */
@media (max-width: 768px) {
  .sp-only { display: block; }
  .pc-only { display: none; }
  .section { padding: 40px 0; }
  .container { padding: 0 20px; }

  /* セクション共通：ラベル・タイトル・リード余白を縮小 */
  .section-label { margin-bottom: 14px; }
  .section-title { margin-bottom: 12px; }
  .section-lead { margin-bottom: 28px; }

  /* 始め方カードアイコン縮小 */
  .step-card-icon {
    width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    aspect-ratio: 1 / 1;
    font-size: 1.0rem;
    border-radius: 10px;
  }

  /* かんたんデータ登録カードアイコン縮小 */
  .de-method-icon {
    width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    aspect-ratio: 1 / 1;
    font-size: 1.0rem;
    border-radius: 10px;
    margin-bottom: 12px;
  }

  /* キャッシュフローポイントアイコン縮小 */
  .cf-point-icon {
    width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
    aspect-ratio: 1 / 1;
    font-size: .85rem;
    border-radius: 9px;
  }

  /* できることカード（summary）アイコン縮小 */
  .summary-icon-wrap {
    width: 36px !important;
    height: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    aspect-ratio: 1 / 1;
    font-size: .95rem;
    border-radius: 10px;
  }

  /* ソリューションカードアイコン縮小 */
  .sol-card-icon {
    width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    aspect-ratio: 1 / 1;
    font-size: 1.05rem;
    border-radius: 11px;
    margin-bottom: 12px;
  }

  /* アイコンサイズを一回り小さく（正方形を強制） */
  .feature-icon-wrap {
    width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    aspect-ratio: 1 / 1;
    font-size: 1.0rem;
    margin-bottom: 12px;
    border-radius: 10px;
  }
  .ss-step-icon {
    width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    aspect-ratio: 1 / 1;
    font-size: 1.05rem;
    border-radius: 11px;
    margin-bottom: 8px;
  }
  .security-icon {
    width: 36px !important;
    height: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    aspect-ratio: 1 / 1;
    font-size: .95rem;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  /* 代表メッセージ 行間を詰める */
  .developer-message p {
    line-height: 1.7;
  }

  /* 家族共有・相続セクション リード文 左寄せ・行間調整 */
  .inheritance-lead-text {
    text-align: left;
    line-height: 1.65;
  }

  /* カード内・セクション内テキスト左寄せ */
  .sol-card-desc,
  .step-card-desc,
  .step-store-suffix,
  .step-goal-desc,
  .security p {
    text-align: left;
  }

  /* 副題（section-lead）行間を詰める・左寄せ（全セクション共通） */
  .section-lead,
  .story .section-lead,
  .features .section-lead,
  .cashflow .section-lead,
  .voices .section-lead,
  .security .section-lead,
  .column .section-lead,
  .solution-new .section-lead {
    line-height: 1.55;
    font-size: .93rem;
    text-align: left !important;
  }
  /* はじめかたセクションの副題はセンタリング維持 */
  .service-start .section-lead,
  #service-start .section-lead {
    line-height: 1.55;
    font-size: .93rem;
    text-align: center !important;
  }
  /* 分析機能セクションの副題はセンタリング維持 */
  .analysis .section-lead {
    line-height: 1.55;
    font-size: .93rem;
    text-align: center !important;
  }
  /* 家族共有・相続セクションの副題はセンタリング維持 */
  .inheritance .section-lead {
    line-height: 1.55;
    font-size: .93rem;
    text-align: center !important;
  }

  /* カルーセル：スマホは1枚表示 */
  .mockup-carousel-item { flex: 0 0 44%; }
  .carousel-btn--prev, .carousel-btn--next { display: flex; }
  .carousel-dot { display: block; }

  /* Header */
  .hamburger { display: flex; }
  .header-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 14px 24px 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
    z-index: 999;
    border-top: 1px solid var(--border);
  }
  .header-nav.open { transform: translateY(0); opacity: 1; }
  .header-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: .97rem;
    width: 100%;
    color: var(--text-body);
  }
  .header-nav a:last-child { border-bottom: none; margin-top: 10px; }
  .btn-header-cta {
    display: block !important;
    text-align: center;
    padding: 13px !important;
    border-radius: 10px !important;
    background: #1E3A5F !important;
    box-shadow: 0 2px 10px rgba(30,58,95,.28) !important;
  }
  .btn-header-cta:hover {
    background: #162d4a !important;
  }

  /* Header demo btn */
  .btn-header-login { border: none !important; text-align: left; color: var(--text-muted) !important; padding: 13px 0 !important; }

  /* Hero */
  .hero-top { padding-top: 36px; padding-bottom: 20px; text-align: center; padding-left: 4px; padding-right: 4px; }
  .hero-title { font-size: clamp(1.55rem, 7vw, 2.3rem); white-space: normal; line-height: 1.15; }
  .hero-title-line1 { font-size: clamp(1.25rem, 5.8vw, 1.8rem); white-space: nowrap; display: block; letter-spacing: -0.02em; margin-bottom: 0.3em; }
  .hero-bottom { grid-template-columns: 1fr; gap: 28px; padding-bottom: 44px; text-align: center; }
  .hero-visual { order: -1; }
  .hero-cta-wrap { justify-content: center; }
  .hero-store-btn { min-width: 0; flex: 1; max-width: 200px; padding: 11px 16px; }
  .hero-store-btn i { font-size: 1.5rem; }
  .hero-free-note { justify-content: center; }
  .hero-logo-wrap { text-align: center; }
  .hero-app-label { text-align: center; }
  .hero-logo-img { margin: 0 auto; height: 52px; }
  .hero-screenshot { max-width: 280px; }
  .hero-stats-wrap { max-width: 300px; gap: 12px; }
  .hero-badge-img { width: 110px; height: 110px; }

  /* Developer（旧スタイル削除済み） */

  /* Story */
  .story-scenario { overflow: clip; }
  .story-owner { margin-bottom: 16px; }
  .story-flow { flex-direction: column; align-items: center; margin-bottom: 16px; }
  .story-plus { transform: rotate(90deg); }
  .story-card { width: 100%; max-width: 100%; box-sizing: border-box; padding: 12px 14px; }
  .story-card-num  { font-size: .78rem; margin-bottom: 6px; }
  .story-card-icon { font-size: 1.7rem; margin-bottom: 5px; }
  .story-card-name { font-size: .97rem; margin-bottom: 2px; }
  .story-card-mgr  { font-size: .83rem; margin-bottom: 8px; }
  .problem-box { padding: 16px 14px; max-width: 100%; box-sizing: border-box; min-height: 0; }
  .empathy-quote blockquote {
    padding: 10px 12px;
    max-width: 100%;
    text-align: center;
  }
  .empathy-quote-main {
    font-size: .95rem;
    line-height: 1.7;
    white-space: nowrap;
    margin-bottom: 8px;
  }
  .empathy-quote-main em {
    font-size: 1.05rem;
    white-space: nowrap;
  }
  .empathy-quote-sub {
    font-size: .85rem;
    white-space: nowrap;
  }
  .empathy-quote { margin-top: 16px; }

  /* Service Start */
  .ss-step { width: calc(50% - 8px); }
  .ss-step--highlight { width: 100%; max-width: 100%; }
  .ss-input-methods { flex-direction: column; }
  .ss-banners { grid-template-columns: 1fr; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Voices */
  .voices-grid { grid-template-columns: 1fr; }

  /* Security */
  .security-grid { grid-template-columns: 1fr; }

  /* Cashflow：モックアップ上下余白 */
  .cf-mockup-wrap { margin-top: 0; margin-bottom: 12px; }

  /* Step01：App Store / Google Playを改行・スラッシュ非表示 */
  .step-store-sep { display: none; }
  .step-store-link { display: block; }

  /* Cashflow：cf-point縦並び */
  .cf-point { flex-direction: column; align-items: flex-start; padding: 14px 0; }

  /* Data Entry：3列→1列 */
  .de-methods { grid-template-columns: 1fr; }

  /* Solution cards：4列→1列 */
  .sol-cards { grid-template-columns: 1fr; }

  /* Columns */
  .column-grid { grid-template-columns: 1fr; }

  /* CTA スマホ専用 */

  /* ① 背景・見出し強化 */
  .cta {
    background: linear-gradient(160deg, #FFF7ED 0%, #FFF 40%, #FFF7ED 100%);
  }
  .cta-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
    line-height: 1.2;
    text-align: left;
  }
  .cta-title-sp-br { display: block; }
  .cta-content { text-align: left !important; }
  .cta-content .section-label { display: block !important; text-align: center !important; }
  .cta-content .store-btns { justify-content: center !important; }
  .cta-content .cta-free-note { justify-content: flex-start !important; align-items: flex-start !important; }
  .cta-content .cta-sublink { text-align: left !important; }
  .cta-lead { font-size: .95rem; margin-bottom: 24px; text-align: left; }

  /* ② ダウンロードボタン */
  .store-btns { flex-direction: row; justify-content: center; align-items: center; }

  /* ③ フリーノート */
  .cta-free-note { flex-direction: column; gap: 8px; align-items: center; }
  .cta-free-note > * { white-space: nowrap; }

  /* Footer */
  .footer-links { flex-direction: column; gap: 20px; }

  /* Solution */
  .sol-methods-grid { flex-direction: column; }
  .sol-or { width: 100%; height: 22px; border-radius: 5px; }
  .sol-results-grid { grid-template-columns: 1fr; }
  .sol-biz-banner { flex-direction: column; text-align: center; padding: 20px 16px; }
  .sol-flow-step { padding: 18px 14px; }

  /* Analysis */
  .analysis-count-wrap { flex-direction: column; gap: 8px; padding: 18px 16px; text-align: center; }
  .analysis-count-num { font-size: 4.5rem; }
  .analysis-count-num span { font-size: 2.5rem; }
  .analysis-tags {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .atag--sp-hidden { display: none; }
  .analysis-tags.sp-expanded .atag--sp-hidden { display: inline-flex; }
  .atag-more-btn {
    display: block;
    margin: 12px auto 20px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 1px dashed var(--border);
    border-radius: 0;
    padding: 2px 0;
    cursor: pointer;
    transition: color .2s, border-color .2s;
    letter-spacing: .02em;
  }
  .atag-more-btn::after { content: ' ↓'; font-size: .78rem; }
  .atag-more-btn:hover { color: var(--orange-500); border-color: var(--orange-300); }
  .atag-more-btn.hidden { display: none; }

  /* Summary */
  .summary-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 20px; }

  /* Inheritance */
  .inheritance-inner { grid-template-columns: 1fr; gap: 16px; margin-top: 20px; }
  .inheritance-scenes {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }
  .inheritance-scenes-arrow {
    transform: rotate(90deg);
    font-size: 1.2rem;
    padding: 4px 0;
  }
  .inheritance-benefits-list {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 16px;
    margin-top: 16px;
  }
  .inheritance-benefit-item {
    flex-direction: row;
    text-align: left;
    padding: 0;
  }
  .inheritance-benefit-item + .inheritance-benefit-item {
    border-left: none;
    border-top: 1px solid #DDD6FE;
    padding-top: 20px;
  }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.5rem; }
  .hero-title { font-size: 1.75rem; }
  .security-grid { grid-template-columns: 1fr; }
  .story-scenario { overflow: clip; }
}
