@charset "utf-8";

  :root {
    --orange: #E85C1A;
    --orange-dark: #C44A10;
    --orange-light: #FF7A3D;
    --orange-pale: #FFF3ED;
    --dark: #1A1A1A;
    --dark-2: #2D2D2D;
    --gray: #6B6B6B;
    --gray-light: #F5F5F5;
    --white: #FFFFFF;
    --border: #E8E8E8;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    word-break: auto-phrase;
  }

  /* ===== HEADER ===== */
  header {
    position: fixed;
    top: 48px; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .logo img {
    height: 36px;
    width: auto;
    display: block;
  }

  /* フッター用ロゴ */
  .logo-footer img {
    height: 32px;
  }

  /* ===== VIDEO MODAL ===== */
  .video-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .video-modal-overlay.open {
    display: flex;
  }

  .video-modal-inner {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
  }

  .video-modal-inner video {
    width: 100%;
    display: block;
  }

  .video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
    z-index: 10;
  }

  .video-modal-close:hover { background: rgba(255,255,255,0.3); }

  /* ===== FEATURE CARD WITH VIDEO ===== */
  .feature-video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
    cursor: pointer;
  }

  .feature-video-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }

  .feature-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    transition: background 0.2s;
  }

  .feature-video-thumb:hover .feature-play-btn {
    background: rgba(232,92,26,0.45);
  }

  .play-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    transition: transform 0.2s;
    flex-shrink: 0;
  }

  .play-icon svg {
    width: 20px;
    height: 20px;
    margin-left: 3px;
    fill: var(--orange);
  }

  .feature-video-thumb:hover .play-icon {
    transform: scale(1.1);
  }

  .feature-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
  }

  .feature-detail-link {
    font-size: 12px;
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .feature-detail-link:hover { opacity: 0.75; }

  /* ===== HERO VIDEO ===== */
  .hero-video-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    cursor: pointer;
  }

  .hero-video-wrap video {
    width: 100%;
    display: block;
    border-radius: 12px;
  }

  .hero-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    transition: background 0.2s;
    border-radius: 12px;
  }

  .hero-video-wrap:hover .hero-video-play {
    background: rgba(232,92,26,0.3);
  }

  .hero-play-icon {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transition: transform 0.2s;
    flex-shrink: 0;
  }

  .hero-play-icon svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
    fill: var(--orange);
  }

  .hero-video-wrap:hover .hero-play-icon {
    transform: scale(1.08);
  }

  /* ===== FINAL CTA IMAGES ===== */
  .demo-screenshot {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: block;
  }

  .resource-thumb {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
    display: block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }

  /* ===== HUBSPOT FORM OVERRIDE ===== */
  .hs-form-frame {
    margin-top: 8px;
  }

  /* HubSpotフォームをLP背景に合わせてオーバーライド */
  .hs-form-frame iframe {
    width: 100% !important;
    border: none !important;
  }

  /* iframeが読み込む前のローディング表示 */
  .hs-form-loading {
    text-align: center;
    padding: 20px;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
  }

  /* HubSpotフォーム本体のスタイル上書き（同一ドメイン内注入時） */
  .hs-form-frame .hs-form fieldset {
    max-width: 100% !important;
  }
  .hs-form-frame .hs-input {
    width: 100% !important;
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 6px !important;
    color: white !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
  }
  .hs-form-frame .hs-button {
    background: #E85C1A !important;
    border: none !important;
    border-radius: 4px !important;
    color: white !important;
    font-weight: 700 !important;
    padding: 12px 28px !important;
    width: 100% !important;
    cursor: pointer !important;
  }
  .hs-form-frame label {
    color: rgba(255,255,255,0.6) !important;
    font-size: 11px !important;
  }
  .hs-form-frame .hs-error-msgs {
    color: #FF6B6B !important;
    font-size: 11px !important;
  }

  nav { display: flex; gap: 32px; align-items: center; }
  nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--orange); }
  nav a.nav-current { color: var(--orange); font-weight: 700; }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: 'Noto Sans JP', sans-serif;
  }

  .btn-primary {
    background: var(--orange);   
    color: white;
  }
  .btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232,92,26,0.35);
  }

  .btn-outline {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
  }
  .btn-outline:hover {
    background: var(--orange-pale);
  }

  .btn-white {
    background: white;
    color: var(--orange);
    font-weight: 700;
  }
  .btn-white:hover {
    background: var(--orange-pale);
    transform: translateY(-1px);
  }

  .btn-lg { padding: 16px 40px; font-size: 16px; }
  .btn-sm { padding: 10px 20px; font-size: 13px; }

  /* ===== HERO ===== */
  #hero {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 112px;
    border-bottom: 1px solid var(--border);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 70% 50%, rgba(232,92,26,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(232,92,26,0.04) 0%, transparent 60%);
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 60px;
    align-items: center;
  }

  /* サムネイル画像（videoタグの代わり） */
  .hero-video-thumb-img {
    width: 100%;
    display: block;
    border-radius: 12px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,92,26,0.2);
    border: 1px solid rgba(232,92,26,0.4);
    color: var(--orange-light);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
  }

  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--orange-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  .hero-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--orange-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
  }

  .hero-title {
    font-size: clamp(28px, 3.2vw, 46px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 32px;
  }

  .hero-title .accent { color: var(--orange); }

  .hero-sub {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* Hero stats */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 24px;
    max-width: 100%;
    border: 1px solid var(--border);
  }

  .stat-item {
    background: var(--gray-light);
    padding: 24px;
    text-align: center;
  }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 11px;
    color: var(--gray);
    line-height: 1.5;
  }

  /* Hero right visual */
  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .dashboard-mock {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    animation: floatUp 0.8s ease both;
  }

  @keyframes floatUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .mock-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .mock-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
  }

  .mock-title {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-family: 'Inter', sans-serif;
  }

  .mock-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .mock-metric {
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 12px;
  }

  .mock-metric-label {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
  }

  .mock-metric-val {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: white;
  }

  .mock-metric-val.up { color: #4ADE80; }

  .mock-bar {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
  }

  .mock-bar-fill {
    height: 100%;
    border-radius: 2px;
    background: var(--orange);
    animation: fillBar 2s ease both 0.5s;
  }

  @keyframes fillBar {
    from { width: 0; }
  }

  /* ===== SECTION COMMON ===== */
  section { padding: 40px 40px; }

  .container { max-width: 1200px; margin: 0 auto; }

  .section-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
  }

  .section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .section-sub {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    max-width: 640px;
  }

  /* ===== PAIN SECTION ===== */
  #pain {
    background: var(--gray-light);
  }

  .pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 56px;
  }

  .pain-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    border-left: 4px solid var(--orange);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
  }

  .pain-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .pain-icon {
    width: 44px; height: 44px;
    background: var(--orange-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }

  .pain-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--dark);
  }

  /* ===== SOLUTION SECTION ===== */
  #solution {
    background: white;
  }

  .solution-list {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .solution-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    align-items: flex-start;
    padding: 28px;
    background: var(--gray-light);
    border-radius: 12px;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
  }

  .solution-item:hover { background: var(--orange-pale); }

  .solution-num {
    width: 48px; height: 48px;
    background: var(--orange);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    flex-shrink: 0;
  }

  .solution-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
  }

  .solution-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
  }

  /* ===== FEATURES ===== */
  #features {
    background: var(--gray-light);
    color: var(--dark);
  }

  #features .section-title { color: var(--dark); }
  #features .section-sub { color: var(--gray); }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 60px;
  }

  .feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }

  .feature-card:hover {
    background: var(--orange-pale);
    border-color: var(--orange);
    transform: translateY(-4px);
  }

  .feature-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--orange);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
  }

  .feature-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
  }

  .feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
  }

  .feature-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
  }

  .feature-tag {
    display: inline-block;
    margin-top: 16px;
    background: var(--orange-pale);
    color: var(--orange);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 600;
  }

  /* ===== CTA BLOCK ===== */
  .cta-block {
    background: var(--orange-pale);
    border-top: 2px solid rgba(232,92,26,0.2);
    border-bottom: 2px solid rgba(232,92,26,0.2);
    padding: 80px 40px;
  }

  .cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .cta-text h2 {
    font-size: 30px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .cta-text p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
  }

  .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .cta-card {
    background: white;
    border: 1px solid rgba(232,92,26,0.3);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(232,92,26,0.08);
  }

  .cta-card:hover {
    background: white;
    box-shadow: 0 4px 16px rgba(232,92,26,0.15);
  }

  .cta-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .cta-card-label {
    font-size: 11px;
    color: var(--orange);
    font-weight: 500;
  }

  .cta-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
  }

  .cta-arrow {
    color: var(--orange);
    font-size: 20px;
    flex-shrink: 0;
  }

  /* ===== CASES ===== */
  #cases {
    background: var(--gray-light);
  }

  .cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 56px;
  }

  .case-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  }

  .case-header {
    background: var(--orange);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .case-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .case-company {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
  }

  .case-type {
    font-size: 15px;
    font-weight: 700;
    color: white;
  }

  .case-body {
    padding: 24px;
  }

  .case-effects {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .case-effect {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .effect-dot {
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
  }

  .case-effect p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--dark-2);
  }

  .case-metrics {
    display: flex;
    gap: 10px;
    padding: 16px 24px;
    background: #FFF5F0;
    border-bottom: 1px solid #FFE0D0;
  }

  .case-metric {
    flex: 1;
    text-align: center;
    background: white;
    border-radius: 8px;
    padding: 10px 8px;
    border: 1.5px solid #FFD0B8;
  }

  .case-metric-value {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1.1;
  }

  .case-metric-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    margin-top: 3px;
    letter-spacing: 0.05em;
  }

  /* ===== HOW TO START ===== */
  #howto {
    background: white;
  }

  .howto-steps {
    display: flex;
    gap: 0;
    position: relative;
    margin-top: 48px;
  }

  .howto-step {
    flex: 1;
    padding: 28px;
    background: var(--gray-light);
    position: relative;
    border-right: 1px solid var(--border);
  }

  .howto-step:last-child { border-right: none; }

  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--orange);
    margin-bottom: 8px;
    display: block;
  }

  .howto-step h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .howto-step p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
  }

  .coming-box {
    background: var(--orange-pale);
    border: 1px solid rgba(232,92,26,0.2);
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
  }

  .coming-box p {
    font-size: 14px;
    color: var(--orange-dark);
    font-weight: 500;
  }

  /* ===== PRICING ===== */
  #pricing {
    background: var(--gray-light);
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px;
  }

  .plan-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
  }

  .plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  }

  .plan-card.featured {
    border-color: var(--orange);
    box-shadow: 0 8px 32px rgba(232,92,26,0.15);
  }

  .plan-head {
    padding: 28px 24px 20px;
    border-bottom: 1px solid var(--border);
  }

  .plan-card.featured .plan-head {
    background: var(--orange);
  }

  .plan-badge {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
  }

  .plan-card.featured .plan-badge {
    background: rgba(255,255,255,0.25);
  }

  .plan-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
  }

  .plan-card.featured .plan-name { color: white; }

  .plan-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--orange);
    line-height: 1;
  }

  .plan-card.featured .plan-price { color: white; }

  .plan-price small {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--gray);
  }

  .plan-card.featured .plan-price small { color: rgba(255,255,255,0.7); }

  .plan-desc {
    font-size: 11px;
    color: var(--gray);
    margin-top: 8px;
    line-height: 1.5;
  }

  .plan-card.featured .plan-desc { color: rgba(255,255,255,0.7); }

  .plan-features {
    padding: 20px 24px 24px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }

  .plan-features li {
    font-size: 12px;
    color: var(--dark-2);
    display: flex;
    gap: 8px;
    align-items: flex-start;
  }

  .plan-features li::before {
    content: '✓';
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .plan-features li.coming {
    color: var(--gray);
    font-style: italic;
  }

  .plan-features li.coming::before {
    content: '◷';
    color: var(--gray);
  }

  .plan-footer {
    padding: 0 24px 24px;
    margin-top: auto;
  }

  .plan-footer .btn { width: 100%; justify-content: center; }

  /* Subsidy box */
  .subsidy-box {
    margin-top: 40px;
    background: white;
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    border: 1px solid var(--border);
  }

  .subsidy-icon {
    font-size: 32px;
    flex-shrink: 0;
  }

  .subsidy-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
  }

  .subsidy-text p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
  }

  /* Options */
  .options-toggle {
    margin-top: 32px;
    text-align: center;
  }

  .options-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 13px;
    color: var(--dark);
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.2s;
  }

  .options-trigger:hover {
    border-color: var(--orange);
    color: var(--orange);
  }

  .options-panel {
    display: none;
    margin-top: 24px;
    background: white;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--border);
  }

  .options-panel.open { display: block; }

  .options-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
  }

  .options-table th {
    text-align: left;
    padding: 10px 16px;
    font-weight: 700;
    color: var(--gray);
    border-bottom: 2px solid var(--border);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .options-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--dark-2);
    vertical-align: top;
    line-height: 1.6;
  }

  .options-table tr:last-child td { border-bottom: none; }

  /* ===== FAQ ===== */
  #faq {
    background: white;
  }

  .faq-list {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-item:last-child { border-bottom: none; }

  .faq-question {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
    transition: background 0.2s;
  }

  .faq-question:hover { background: var(--orange-pale); }

  .faq-q-text {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .faq-q-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--orange);
    flex-shrink: 0;
    line-height: 1.1;
  }

  .faq-question h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
  }

  .faq-toggle {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--orange-pale);
    border: none;
    color: var(--orange);
    font-size: 18px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
  }

  .faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--orange);
    color: white;
  }

  .faq-answer {
    display: none;
    padding: 0 28px 24px 60px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
  }

  .faq-item.open .faq-answer { display: block; }

  /* ===== FINAL CTA ===== */
  #final-cta {
    background: var(--gray-light);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
  }

  #final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232,92,26,0.05) 0%, transparent 70%);
  }

  #final-cta .container {
    position: relative;
    z-index: 2;
  }
  #final-cta .cta-card-text {
    text-align: left;
  }

  #final-cta h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 16px;
  }

  #final-cta > .container > p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 48px;
  }

  .final-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }

  .final-cta-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }

  .final-cta-card:hover { box-shadow: 0 8px 32px rgba(232,92,26,0.12); }

  .final-cta-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
  }

  .final-cta-card p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.5;
  }

  /* Form */
  .form-group {
    margin-bottom: 12px;
    text-align: left;
  }

  .form-group label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .form-group input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    color: white;
    font-size: 13px;
    font-family: 'Noto Sans JP', sans-serif;
    outline: none;
    transition: border-color 0.2s;
  }

  .form-group input:focus {
    border-color: var(--orange);
  }

  .form-group input::placeholder { color: rgba(255,255,255,0.2); }

  /* ===== FOOTER ===== */
  footer {
    background: white;
    padding: 60px 40px 32px;
    color: var(--gray);
    border-top: 1px solid var(--border);
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
  }

  .footer-brand .logo-text { color: var(--dark); }

  .footer-tagline {
    font-size: 12px;
    margin-top: 12px;
    line-height: 1.7;
  }

  .footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-col ul li {
    font-size: 12px;
  }

  .footer-col ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col ul li a:hover { color: var(--orange); }

  .footer-contact dt {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    margin-top: 12px;
  }

  .footer-contact dd {
    font-size: 13px;
    color: var(--dark);
  }

  .footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: var(--gray);
  }

  .footer-bottom a {
    color: var(--gray) !important;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-bottom a:hover { color: var(--orange) !important; }

  /* ===== SCROLL ANIMATIONS ===== */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: block; margin-top: 32px; }
    .cta-inner { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .final-cta-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    nav { display: none; }
    .howto-steps { flex-direction: column; }
  }

  @media (max-width: 768px) {
    header { top: 56px; }
    #hero { padding-top: 120px; }
  }

  @media (max-width: 600px) {
    section { padding: 56px 20px; }
    header { padding: 0 20px; }
    #magazine-hero { padding-top: 120px; }
    #article-hero { padding-top: 120px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr; }
  }

/* ===== FEATURE SUBPAGES (共通コンポーネント) ===== */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--dark); font-weight: 500; }

/* Video layout */
.video-sound-hint {
  flex-direction: column;
  gap: 8px;
  background: rgba(0,0,0,0.18) !important;
  transition: background 0.25s !important;
}
.video-wrap:hover .video-sound-hint {
  background: rgba(232,92,26,0.45) !important;
}
.video-layout {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 56px;
  align-items: center;
}
.video-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  aspect-ratio: 16/9;
  background: #1a1a1a;
  position: relative;
}
.video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}
.video-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.video-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.video-point-icon {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 16px;
}
.video-point-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.65;
  padding-top: 6px;
}

/* Pain cards (feature pages) */
.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.pain-card-feature {
  background: white;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  border-top: 4px solid var(--orange);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pain-card-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.pain-card-feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.pain-card-feature-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.6;
}

/* Blindspot comparison */
.blindspot-layout {
  max-width: 1000px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.blindspot-col {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border);
}
.blindspot-col.col-bad { border-color: #555; }
.blindspot-col.col-good { border-color: var(--orange); }
.blindspot-col-head {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.blindspot-col.col-bad .blindspot-col-head { background: #f0f0f0; }
.blindspot-col.col-good .blindspot-col-head { background: var(--orange); }
.blindspot-col-head-icon {
  font-size: 20px;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
}
.blindspot-col.col-bad .blindspot-col-head-icon { color: #999; }
.blindspot-col.col-good .blindspot-col-head-icon { color: white; }
.blindspot-col-head-title {
  font-size: 14px;
  font-weight: 700;
}
.blindspot-col.col-bad .blindspot-col-head-title { color: #666; }
.blindspot-col.col-good .blindspot-col-head-title { color: white; }
.blindspot-col-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blindspot-item {
  display: block;
  position: relative;
  padding: 12px 16px 12px 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.col-bad .blindspot-item { background: #f9f9f9; color: #555; }
.col-good .blindspot-item { background: var(--orange-pale); color: var(--dark); }
.blindspot-item-mark {
  position: absolute;
  left: 16px;
  top: 13px;
  font-size: 14px;
  font-weight: 700;
}
.col-bad .blindspot-item-mark { color: #ccc; }
.col-good .blindspot-item-mark { color: var(--orange); }
.blindspot-img-wrap {
  margin-top: 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.blindspot-img-wrap img {
  width: 100%;
  display: block;
}

/* Step cards */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(to right, var(--orange), rgba(232,92,26,0.2));
  z-index: 0;
}
.step-card {
  background: white;
  border-radius: 16px;
  padding: 28px 24px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.step-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232,92,26,0.12);
}
.step-badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.step-num-large {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.step-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.5;
}
.step-card p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.65;
}
.step-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

/* Before/After cards */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.ba-card {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.ba-card-head {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ba-card.ba-before .ba-card-head { background: #f5f5f5; }
.ba-card.ba-after .ba-card-head { background: var(--orange); }
.ba-card-head-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.ba-card.ba-before .ba-card-head-label { color: #999; }
.ba-card.ba-after .ba-card-head-label { color: rgba(255,255,255,0.75); }
.ba-card-head-title {
  font-size: 15px;
  font-weight: 700;
}
.ba-card.ba-before .ba-card-head-title { color: var(--dark); }
.ba-card.ba-after .ba-card-head-title { color: white; }
.ba-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ba-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 4px;
}
.ba-before .ba-tag { background: #fee; color: #c00; }
.ba-after .ba-tag { background: var(--orange-pale); color: var(--orange); }
.ba-product-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.ba-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}
.ba-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
}
.ba-before .ba-result { background: #fef2f2; color: #c00; }
.ba-after .ba-result { background: var(--orange-pale); color: var(--orange); }
.ba-result-icon { font-size: 16px; }

/* Feature page CTA */
.feature-cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.feature-cta-left h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.45;
  margin-bottom: 12px;
}
.feature-cta-left p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.feature-cta-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.feature-cta-right .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 16px;
}
.feature-cta-divider {
  font-size: 11px;
  color: var(--gray);
  text-align: center;
  width: 100%;
}

/* Responsive — feature subpages */
@media (max-width: 900px) {
  .video-layout { grid-template-columns: 1fr; }
  .blindspot-layout { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .ba-grid { grid-template-columns: 1fr; }
  .feature-cta-inner { grid-template-columns: 1fr; }
  .pain-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* Feature Hero (共通) */
#feature-hero {
  padding: 100px 40px 56px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#feature-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(232,92,26,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 30% 50% at 10% 80%, rgba(232,92,26,0.03) 0%, transparent 60%);
}
.feature-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.feature-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.feature-hero-label {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
}
.feature-hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-hero-title .main-title {
  color: var(--orange);
  display: inline-block;
}
.feature-hero-title .product-name {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 6px;
}
.feature-hero-catch {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin: 20px auto 20px;
  max-width: 640px;
}
.feature-hero-sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto;
}

/* Feature section background overrides (共通) */
#feature-pain, #feature-steps { background: var(--gray-light); }
#feature-cta {
  background: var(--orange-pale);
  border-top: 2px solid rgba(232,92,26,0.2);
  border-bottom: 2px solid rgba(232,92,26,0.2);
}

@media (max-width: 600px) {
  #feature-hero { padding: 84px 20px 40px; }
}

/* ===== ARTICLES NAV BLOCK ===== */
#articles-nav-wrap {
  background: var(--gray-light);
  border-top: 1px solid var(--border);
}

.articles-nav {
  padding: 64px 40px;
  max-width: 1080px;
  margin: 0 auto;
}

.articles-nav-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* メインLPカード */
.articles-nav-grid + .articles-nav-main {
  margin-top: 24px;
}
.articles-nav-main {
  display: flex;
  align-items: center;
  gap: 24px;
  background: white;
  border: 2px solid var(--orange);
  border-radius: 16px;
  padding: 28px 36px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 24px;
  transition: background 0.2s, transform 0.2s;
}

.articles-nav-main:hover {
  background: var(--orange-pale);
  transform: translateY(-2px);
}

.articles-nav-main-badge {
  flex-shrink: 0;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.articles-nav-main-body {
  flex: 1;
}

.articles-nav-main-body h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 4px;
}

.articles-nav-main-body p {
  font-size: 13px;
  color: var(--gray);
}

.articles-nav-main-arrow {
  font-size: 22px;
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* 機能サブページグリッド */
.articles-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.articles-nav-card {
  display: block;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.articles-nav-card:hover {
  background: var(--orange-pale);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.articles-nav-card-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.articles-nav-card-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.articles-nav-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.articles-nav-card p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .articles-nav {
    padding: 48px 20px;
  }
  .articles-nav-main {
    padding: 20px 20px;
    gap: 16px;
  }
  .articles-nav-main-body h3 {
    font-size: 17px;
  }
  .articles-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .articles-nav-grid {
    grid-template-columns: 1fr;
  }
}

/* おすすめコラム セクション */
.articles-nav-section {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.articles-nav-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.articles-nav-col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.articles-nav-col-card {
  display: block;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.articles-nav-col-card.available:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.articles-nav-col-card.coming {
  opacity: 0.6;
  cursor: default;
}

.articles-nav-col-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-light);
}

.articles-nav-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.articles-nav-col-card.available:hover .articles-nav-col-img img {
  transform: scale(1.03);
}

.articles-nav-col-coming-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(30,30,30,0.7);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
}

.articles-nav-col-body {
  padding: 14px 16px 16px;
}

.articles-nav-col-body p {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.6;
  margin: 0;
}

.articles-nav-col-more-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.articles-nav-col-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  border: 2px solid var(--orange);
  border-radius: 100px;
  padding: 12px 32px;
  transition: background 0.2s, color 0.2s;
}

.articles-nav-col-more:hover {
  background: var(--orange);
  color: white;
}

@media (max-width: 768px) {
  .articles-nav-col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 代理店カード */
.articles-nav-agency-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--orange-pale);
  border: 1px solid rgba(232,92,26,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
  margin-top: 16px;
}

.articles-nav-agency-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(232,92,26,0.12);
}

.articles-nav-agency-body {
  flex: 1;
}

.articles-nav-agency-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.articles-nav-agency-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.articles-nav-agency-body p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== AGENCY PAGE ===== */
.agency-target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.agency-target-item {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}

.agency-target-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.agency-target-item p {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.7;
  font-weight: 500;
}

.agency-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.agency-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.agency-benefit-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}

.agency-benefit-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.agency-benefit-item p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

.agency-sub-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 3px solid var(--orange);
}

.agency-goal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.agency-goal-list li {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.agency-goal-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.agency-curriculum {
  overflow-x: auto;
}

.agency-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.agency-table th {
  background: var(--dark);
  color: white;
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
}

.agency-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  vertical-align: top;
  line-height: 1.6;
}

.agency-table tr:nth-child(even) td {
  background: var(--gray-light);
}

.agency-table-total td {
  background: var(--orange-pale) !important;
  font-weight: 700;
}

@media (max-width: 768px) {
  .agency-target-grid { grid-template-columns: 1fr; }
  .agency-table th:nth-child(4),
  .agency-table td:nth-child(4) { display: none; }
}

/* ===== MAGAZINE LISTING ===== */

#magazine-hero {
  padding-top: 112px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#magazine-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 85% 40%, rgba(232,92,26,0.05) 0%, transparent 70%),
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}
.magazine-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 40px 56px;
}
.magazine-hero-label {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
}
.magazine-hero-title {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 16px;
}
.magazine-hero-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 580px;
}

/* Grid */
.magazine-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 40px 80px;
}
.magazine-count {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
}
.magazine-count strong {
  color: var(--orange);
  font-size: 18px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}
.magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.magazine-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
}
.magazine-card.available:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  border-color: var(--orange);
}
.magazine-card.coming {
  opacity: 0.65;
  cursor: default;
}
.magazine-card-img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-light);
}
.magazine-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.magazine-card.available:hover .magazine-card-img-wrap img {
  transform: scale(1.03);
}
.magazine-coming-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(30,30,30,0.75);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
}
.magazine-card-body {
  padding: 20px 22px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.magazine-card-badge {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
  align-self: flex-start;
}
.magazine-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.6;
}
.magazine-card-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}
.magazine-card-foot {
  padding: 0 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.magazine-card-read {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 4px;
}
.magazine-card-coming-tag {
  font-size: 11px;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Magazine bottom CTA */
.magazine-cta {
  background: var(--orange-pale);
  border-top: 2px solid rgba(232,92,26,0.15);
  border-bottom: 2px solid rgba(232,92,26,0.15);
  padding: 64px 40px;
}
.magazine-cta-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.magazine-cta-text h2 {
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.45;
  margin-bottom: 10px;
}
.magazine-cta-text p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.75;
}
.magazine-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.magazine-cta-actions .btn {
  justify-content: center;
}

@media (max-width: 960px) {
  .magazine-grid { grid-template-columns: repeat(2, 1fr); }
  .magazine-cta-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .magazine-grid { grid-template-columns: 1fr; }
  .magazine-container { padding: 40px 20px 60px; }
  .magazine-hero-inner { padding: 48px 20px 40px; }
  .magazine-cta { padding: 48px 20px; }
}

/* ===== MAGAZINE ARTICLE ===== */

/* --- Hero --- */
#article-hero {
  padding-top: 112px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 85% 40%, rgba(232,92,26,0.05) 0%, transparent 70%),
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}
.article-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 52px 40px 0;
}
.article-category-badge {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
}
.article-h1 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 40px;
}
.article-eyecatch {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  line-height: 0;
}
.article-eyecatch img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 400px;
  object-position: center top;
}

/* --- Layout --- */
.article-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: start;
  padding: 60px 0 80px;
}

/* --- Body Typography --- */
.article-body {
  min-width: 0;
}
.article-body [id] {
  scroll-margin-top: 84px;
}
.article-body h2 {
  font-size: 21px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.5;
  margin-top: 56px;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 4px solid var(--orange);
}
.article-body h2:first-child {
  margin-top: 0;
}
.article-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.55;
  margin-top: 36px;
  margin-bottom: 12px;
}
.article-body p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--dark);
  margin-bottom: 18px;
}
.article-body ul,
.article-body ol {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-body ul {
  list-style: none;
  padding-left: 0;
}
.article-body ul li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--dark);
  padding-left: 18px;
  position: relative;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.article-body ol {
  padding-left: 22px;
}
.article-body ol li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--dark);
}
.article-body strong {
  font-weight: 700;
  color: var(--dark);
}
.article-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 44px 0;
}

/* Callout block */
.article-note {
  background: var(--orange-pale);
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 18px 24px;
  margin: 24px 0;
}
.article-note p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.8;
}

/* Comparison cards */
.article-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 32px;
}
.article-compare-card {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border);
}
.article-compare-card.good {
  border-color: var(--orange);
}
.article-compare-head {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
}
.article-compare-card.bad .article-compare-head {
  background: #f0f0f0;
  color: #666;
}
.article-compare-card.good .article-compare-head {
  background: var(--orange);
  color: white;
}
.article-compare-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-compare-row {
  font-size: 13px;
  line-height: 1.65;
  color: var(--dark-2);
}
.article-compare-row span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

/* Indicator grid (4つの指標) */
.article-indicators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 32px;
}
.article-indicator-card {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 20px;
  border-top: 3px solid var(--orange);
}
.article-indicator-cond {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 8px;
}
.article-indicator-action {
  font-size: 13px;
  line-height: 1.7;
  color: var(--dark-2);
}

/* --- FAQ (article) --- */
.article-faq {
  margin-top: 56px;
}
.article-faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
}
.article-faq-item {
  border-bottom: 1px solid var(--border);
}
.article-faq-item:last-child {
  border-bottom: none;
}
.article-faq-q {
  padding: 18px 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s;
  user-select: none;
}
.article-faq-q:hover {
  background: var(--orange-pale);
}
.article-faq-q-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1.15;
}
.article-faq-q-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.55;
  flex: 1;
  padding-top: 1px;
}
.article-faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange-pale);
  border: none;
  color: var(--orange);
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  line-height: 1;
  margin-top: 1px;
}
.article-faq-item.open .article-faq-toggle {
  transform: rotate(45deg);
  background: var(--orange);
  color: white;
}
.article-faq-a {
  display: none;
  padding: 0 24px 18px 56px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}
.article-faq-item.open .article-faq-a {
  display: block;
}

/* --- CTA section at end of article --- */
.article-cta-section {
  margin-top: 60px;
  background: var(--orange-pale);
  border: 2px solid rgba(232,92,26,0.2);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.article-cta-section > h3 {
  font-size: 19px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 6px;
  margin-top: 0;
  line-height: 1.45;
}
.article-cta-section > p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.article-cta-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
}
.article-cta-card-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 8px;
}
.article-cta-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.45;
}
.article-cta-card > p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 18px;
}
.article-cta-card .btn {
  width: 100%;
  justify-content: center;
}
/* 「または」区切り */
.article-cta-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--gray);
  font-size: 12px;
}
.article-cta-divider::before,
.article-cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(232,92,26,0.25);
}

/* --- 記事内：画像＋テキスト 2カラムレイアウト --- */
/* 画像左・テキスト右（デフォルト） */
.article-img-row {
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 28px;
  align-items: center;
  margin: 28px 0;
}
/* テキスト左・画像右（反転） */
.article-img-row.reverse {
  grid-template-columns: 7fr 3fr;
}
.article-img-row.reverse .article-img-col {
  order: 2;
}
.article-img-row.reverse .article-img-text {
  order: 1;
}
.article-img-col img {
  width: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.article-img-text p {
  margin-bottom: 12px;
}
.article-img-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 680px) {
  .article-img-row,
  .article-img-row.reverse {
    grid-template-columns: 1fr;
  }
  .article-img-row.reverse .article-img-col,
  .article-img-row.reverse .article-img-text {
    order: unset;
  }
}

/* --- Sidebar --- */
.article-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article-toc {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.article-toc-heading {
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}
.article-toc ol {
  list-style: none;
  padding: 0;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
}
.article-toc ol li {
  counter-increment: toc;
}
.article-toc ol li a {
  display: flex;
  gap: 8px;
  align-items: baseline;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--gray);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background 0.15s, color 0.15s;
}
.article-toc ol li a::before {
  content: counter(toc);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: var(--orange);
  opacity: 0.45;
  flex-shrink: 0;
  line-height: 1.1;
}
.article-toc ol li a:hover {
  background: var(--orange-pale);
  color: var(--dark);
}
.article-toc ol li a.active {
  background: var(--orange-pale);
  color: var(--orange);
  font-weight: 600;
  border-left-color: var(--orange);
}
.article-toc ol li a.active::before {
  opacity: 1;
}

/* Sidebar mini CTA card */
.article-sidebar-cta {
  background: var(--orange);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.article-sidebar-cta p {
  font-size: 13px;
  font-weight: 700;
  color: white;
  line-height: 1.55;
  margin-bottom: 14px;
}
.article-sidebar-cta .btn-white {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 10px 16px;
}

/* --- Mobile TOC --- */
.article-toc-mobile {
  display: none;
  background: var(--gray-light);
  border-radius: 10px;
  margin-bottom: 36px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.article-toc-mobile-toggle {
  width: 100%;
  padding: 14px 20px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
}
.article-toc-mobile-icon {
  font-size: 16px;
  color: var(--orange);
  transition: transform 0.2s;
  line-height: 1;
}
.article-toc-mobile.open .article-toc-mobile-icon {
  transform: rotate(180deg);
}
.article-toc-mobile-list {
  display: none;
  padding: 0 20px 16px;
}
.article-toc-mobile.open .article-toc-mobile-list {
  display: block;
}
.article-toc-mobile-list ol {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: decimal;
}
.article-toc-mobile-list ol li a {
  font-size: 13px;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.5;
}
.article-toc-mobile-list ol li a:hover {
  color: var(--orange);
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    display: none;
  }
  .article-toc-mobile {
    display: block;
  }
  .article-container {
    padding: 0 24px;
  }
  .article-layout {
    padding: 40px 0 60px;
  }
  .article-cta-grid {
    grid-template-columns: 1fr;
  }
  .article-compare {
    grid-template-columns: 1fr;
  }
  .article-indicators {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .article-hero-inner {
    padding: 40px 20px 0;
  }
  .article-container {
    padding: 0 20px;
  }
  .article-cta-section {
    padding: 24px 20px;
  }
  .article-body h2 {
    font-size: 19px;
  }
}

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232,92,26,0.35);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
  z-index: 900;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover {
  background: #c94a12;
}
@media (max-width: 600px) {
  #back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; font-size: 17px; }
}

/* ===== DIAGNOSIS PAGE ===== */

.diagnosis-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.diagnosis-step.hidden,
.diagnosis-result.hidden {
  display: none;
}

/* Intro */
.diagnosis-intro-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--dark);
  margin-bottom: 36px;
}

/* Progress */
.diagnosis-progress {
  font-size: 13px;
  color: var(--gray);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.diagnosis-progress-cur {
  font-size: 28px;
  color: var(--orange);
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
}

/* Question */
.diagnosis-q {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 28px;
  color: var(--dark);
}

/* Options */
.diagnosis-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.diagnosis-option {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
}
.diagnosis-option:hover {
  border-color: var(--orange);
  background: #fff9f6;
}
.diagnosis-option-label {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--dark);
  font-weight: 700;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.diagnosis-option:hover .diagnosis-option-label {
  background: var(--orange);
  color: white;
}
.diagnosis-option-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.6;
}

/* Back / Restart */
.diagnosis-back {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  text-decoration: underline;
}
.diagnosis-back:hover { color: var(--dark); }

.diagnosis-restart {
  background: none;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 13px;
  color: var(--gray);
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 16px;
  transition: border-color 0.2s, color 0.2s;
}
.diagnosis-restart:hover { border-color: var(--dark); color: var(--dark); }

/* Result */
.diagnosis-result-label {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}
.diagnosis-result-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 16px;
  color: var(--dark);
}
.diagnosis-result-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--dark);
  margin-bottom: 28px;
}

/* Article card in result */
.diagnosis-article-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.diagnosis-article-card-label {
  display: block;
  background: var(--gray-light);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  padding: 8px 16px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}
.diagnosis-article-link {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  text-decoration: none;
  color: var(--dark);
  transition: background 0.2s;
}
.diagnosis-article-link:hover { background: #fff9f6; }
.diagnosis-article-link img {
  width: 100px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.diagnosis-article-link p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
}

/* Also read */
.diagnosis-also-read {
  margin-bottom: 32px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.diagnosis-also-read-label {
  color: var(--gray);
  font-weight: 700;
  white-space: nowrap;
}
.diagnosis-also-read a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}
.diagnosis-also-read a:hover { text-decoration: underline; }

/* Result CTA */
.diagnosis-result-cta {
  background: var(--gray-light);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-top: 40px;
}
.diagnosis-result-cta h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.diagnosis-result-cta p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .diagnosis-wrap { padding: 40px 16px 60px; }
  .diagnosis-q { font-size: 17px; }
  .diagnosis-option { padding: 16px; }
  .diagnosis-option-text { font-size: 14px; }
  .diagnosis-result-cta { padding: 24px 20px; }
  .diagnosis-article-link img { width: 72px; height: 40px; }
}

/* ===== DIAGNOSIS BANNER (index.html) ===== */
.diagnosis-banner-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px 60px;
}
.diagnosis-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
  border: 2px solid var(--orange);
  border-radius: 16px;
  padding: 28px 36px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, box-shadow 0.2s;
}
.diagnosis-banner:hover {
  background: linear-gradient(135deg, #fde8dd 0%, #fff9f6 100%);
  box-shadow: 0 4px 20px rgba(232,92,26,0.15);
}
.diagnosis-banner-thumb {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.diagnosis-banner-body { flex: 1; }
.diagnosis-banner-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: #fff0e8;
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 10px;
}
.diagnosis-banner-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.5;
}
.diagnosis-banner-sub {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}
.diagnosis-banner-arrow {
  font-size: 24px;
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .diagnosis-banner { padding: 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .diagnosis-banner-title { font-size: 15px; }
  .diagnosis-banner-arrow { display: none; }
  .diagnosis-banner-thumb { display: none; }
}

/* ===== MESSAGE PAGE ===== */
#article-hero.article-hero-compact {
  padding-top: 112px;
}
#article-hero.article-hero-compact .article-hero-inner {
  padding: 16px 40px 16px;
}
@media (max-width: 600px) {
  #article-hero.article-hero-compact {
    padding-top: 126px;
  }
  #article-hero.article-hero-compact .article-hero-inner {
    padding: 12px 20px 0%;
  }
}
.message-hero-layout {
  display: flex;
  align-items: center;
  gap: 40px;
}
.message-hero-text {
  flex: 1;
}
.message-hero-image {
  width: 46%;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}
.message-hero-image img {
  width: 100%;
  display: block;
  max-height: 280px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .message-hero-layout { flex-direction: column; gap: 24px; }
  .message-hero-image { width: 80%; align-self: center; }
}

.message-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.message-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  align-items: start;
}

.message-lead {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 20px;
}

.message-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--dark);
  margin-bottom: 16px;
}

.message-pain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.message-pain-list li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark);
  padding-left: 20px;
  position: relative;
}

.message-pain-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--orange);
}

.message-closing {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  color: var(--dark);
  text-align: center;
  margin-bottom: 40px;
}

.message-quote {
  background: var(--gray-light);
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  padding: 24px 32px;
  margin: 0 0 40px;
}

.message-quote p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--dark);
  margin-bottom: 12px;
}

.message-quote cite {
  font-size: 12px;
  color: var(--gray);
  font-style: normal;
}

.message-cta {
  text-align: center;
}

@media (max-width: 768px) {
  .message-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .message-closing { text-align: left; }
  .message-quote { padding: 20px; }
  .sp-none { display: none; }
}


/* ===== ARTICLE TABLE ===== */
.article-table-wrap { overflow-x: auto; margin: 24px 0; }
.article-table { width: 100%; border-collapse: collapse; font-size: 14px; line-height: 1.6; }
.article-table th { background: var(--orange); color: white; padding: 10px 14px; text-align: left; font-weight: 700; }
.article-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.article-table tr:last-child td { border-bottom: none; }
.article-table tr:nth-child(even) td { background: #fafafa; }
.article-table .col-plan { color: var(--orange); font-weight: 700; font-size: 13px; }
@media (max-width: 768px) {
  .article-table th, .article-table td { padding: 8px 10px; font-size: 13px; }
}

/* ===== ARTICLE CHALLENGE CARDS ===== */
.article-challenge-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.article-challenge-card { display: flex; gap: 16px; align-items: flex-start; background: #fff9f6; border-left: 4px solid var(--orange); border-radius: 0 8px 8px 0; padding: 16px 20px; }
.article-challenge-num { font-size: 22px; font-weight: 900; color: var(--orange); line-height: 1; min-width: 28px; }
.article-challenge-body strong { display: block; margin-bottom: 4px; font-size: 15px; }
.article-challenge-body p { font-size: 14px; color: var(--gray); margin: 0; }

/* ===== ARTICLE INLINE LINKS ===== */
.article-challenge-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
}
.article-challenge-link:hover { text-decoration: underline; }
.article-highlight-link {
  display: block;
  margin: 16px 0 0;
  padding: 12px 16px;
  background: #f5f5f5;
  border-left: 3px solid var(--orange);
  font-size: 13px;
  color: var(--dark);
  text-decoration: none;
  border-radius: 0 6px 6px 0;
}

/* ===== ANNOUNCEMENT BAR (H) ===== */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 102;
  background: var(--orange);
  color: white;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  padding: 0 20px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.announcement-bar a {
  display: inline-block;
  background: white;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.announcement-bar a:hover { background: var(--orange-pale); }
@media (max-width: 768px) {
  .announcement-bar { font-size: 12px; height: 56px; flex-wrap: wrap; gap: 6px; padding: 6px 16px; }
}

/* ===== HERO SUBSIDY BADGE (B) ===== */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.hero-badges .hero-badge {
  margin-bottom: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-pale);
  border: 1px solid rgba(232,92,26,0.3);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

/* ===== SUBSIDY BOX CTA (C) ===== */
.subsidy-box-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.subsidy-box-link {
  font-size: 12px;
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}
.subsidy-box-link:hover { text-decoration: underline; }

/* ===== SUBSIDY SECTION (F) ===== */
#subsidy {
  background: var(--gray-light);
  padding: 80px 40px;
}
@media (max-width: 600px) {
  #subsidy { padding: 56px 20px; }
}
.subsidy-num-grid {
  display: flex;
  margin: 40px 0 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: white;
}
.subsidy-num-item {
  flex: 1;
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--border);
}
.subsidy-num-item:last-child { border-right: none; }
.subsidy-num-val {
  font-size: 52px;
  font-weight: 900;
  color: var(--orange);
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}
.subsidy-num-label {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}
.subsidy-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 40px;
}
.subsidy-flow-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.subsidy-flow-arrow {
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
}
.subsidy-cert {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 40px;
}
.subsidy-cert a {
  color: var(--orange);
}
.subsidy-cta { text-align: center; }
@media (max-width: 768px) {
  .subsidy-num-grid { flex-direction: column; }
  .subsidy-num-item { border-right: none; border-bottom: 1px solid var(--border); }
  .subsidy-num-item:last-child { border-bottom: none; }
}

/* ===== FOOTER SUBSIDY BADGE (D) ===== */
.footer-subsidy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  background: var(--orange-pale);
  border: 1px solid rgba(232,92,26,0.25);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}
.article-highlight-link:hover { background: #fff0ea; color: var(--orange); }

/* ===== FOR NEW MAKESHOP USERS (B) ===== */
#for-new-makeshop {
  background: #f8f8f6;
  padding: 80px 0;
}
.new-ms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.new-ms-item {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 16px;
  padding: 32px 24px;
}
.new-ms-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.new-ms-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}
.new-ms-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}
.new-ms-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .new-ms-grid { grid-template-columns: 1fr; }
  .new-ms-cta { flex-direction: column; align-items: center; }
}

/* ===== BTN WITH SUBLABEL ===== */
.btn-with-sub {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.btn-sub-label {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.3px;
}
.hero-cta .btn-sub-label {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== HEADER CTA WRAP ===== */
.header-cta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-demo-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  text-decoration: none;
  white-space: nowrap;
}
.header-demo-link:hover {
  color: var(--orange);
}
.header-cta-wrap .btn-with-sub {
  align-items: flex-end;
}
.header-cta-wrap .btn-sub-label {
  font-size: 10px;
}

/* ===== CTA CARD PRIMARY ===== */
.cta-card-primary {
  background: var(--orange);
  border-color: var(--orange);
  width: 100%;
  box-sizing: border-box;
}
.cta-card-primary .cta-card-label,
.cta-card-primary .cta-card-title,
.cta-card-primary .cta-card-sub,
.cta-card-primary .cta-arrow {
  color: #fff;
}
.cta-card-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 4px 16px rgba(232,92,26,0.35);
}
.cta-card-sub {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .header-demo-link { display: none; }
}

/* ===== CTA CARD GROUP ===== */
.cta-card-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta-card-group-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.5px;
  text-transform: none;
}

/* ===== FOOTER SUBSIDY NOTE ===== */
.footer-subsidy-note {
  border-top: 1px solid var(--border);
  padding: 16px 40px;
  font-size: 11px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-subsidy-note a {
  color: var(--orange);
  text-decoration: none;
  white-space: nowrap;
}

.footer-subsidy-note a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .footer-subsidy-note { padding: 16px 20px; }
}

/* ===== HOWTO USECASE CARDS (index.html #howto) ===== */
.howto-usecase-intro {
  font-size: 15px;
  color: var(--gray);
  margin-top: 16px;
  line-height: 1.7;
}

.howto-usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.howto-usecase-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.howto-usecase-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(232,92,26,0.12);
  transform: translateY(-2px);
}

.howto-usecase-card.ne-card {
  grid-column: 1 / -1;
  background: var(--gray-light);
  border-color: transparent;
  align-items: center;
  padding: 20px 24px;
}

.howto-usecase-card.ne-card:hover {
  border-color: var(--orange);
  background: white;
}

.howto-usecase-body {
  flex: 1;
}

.howto-usecase-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.howto-usecase-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.howto-usecase-card p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.7;
}

.howto-usecase-card .cta-arrow {
  font-size: 18px;
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 768px) {
  .howto-usecase-grid {
    grid-template-columns: 1fr;
  }
  .howto-usecase-card.ne-card {
    grid-column: 1;
  }
}

/* ===== GET STARTED PAGES ===== */
.gs-hero {
  padding: 140px 40px 80px;
  background: var(--gray-light);
  text-align: center;
}

.gs-breadcrumb {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 20px;
}

.gs-breadcrumb a {
  color: var(--gray);
  text-decoration: none;
}

.gs-breadcrumb a:hover { color: var(--orange); }

.gs-breadcrumb-sep {
  margin: 0 8px;
}

.gs-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.gs-hero h1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 20px;
}

.gs-hero-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.gs-section {
  padding: 80px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.gs-section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.gs-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gs-step {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}

.gs-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.gs-step-num {
  width: 40px;
  height: 40px;
  background: var(--orange);
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.gs-step-body {
  padding-top: 6px;
  flex: 1;
}

.gs-step-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.gs-step-body p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}

.gs-step-note {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--orange);
  background: var(--orange-pale);
  border-radius: 6px;
  padding: 4px 10px;
}

.gs-cta-section {
  background: var(--orange-pale);
  padding: 80px 40px;
  text-align: center;
}

.gs-cta-section h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}

.gs-cta-section p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

.gs-cta-btn {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(232,92,26,0.3);
}

.gs-cta-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.gs-back-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
}

.gs-back-link:hover { color: var(--orange); }

@media (max-width: 768px) {
  .gs-hero { padding: 120px 24px 60px; }
  .gs-section { padding: 60px 24px; }
  .gs-cta-section { padding: 60px 24px; }
}
