/* ========================================
   IZNM Main Styles v1.0
   All styles consolidated — no inline CSS
   ======================================== */

/* ----------------------------------------
   1. Reset & Base
   ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { background: var(--iznm-black); }

body {
  background-color: var(--iznm-black);
  color: var(--iznm-text-main);
  font-family: var(--iznm-font-ja);
  font-size: var(--iznm-text-base);
  line-height: var(--iznm-leading-normal);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* ----------------------------------------
   2. Typography
   ---------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--iznm-text-main);
  font-family: var(--iznm-font-ja);
  font-weight: var(--iznm-font-bold);
  margin-bottom: 1rem;
}
h1 { font-size: var(--iznm-text-3xl); }
h2 { font-size: var(--iznm-text-2xl); }
h3 { font-size: var(--iznm-text-xl); }

p, div, span, li {
  color: var(--iznm-text-main);
  font-family: var(--iznm-font-ja);
}

a {
  color: var(--iznm-text-main);
  text-decoration: none;
  transition: color var(--iznm-transition-normal);
}
a:hover { color: var(--iznm-text-sub); }

/* ----------------------------------------
   3. Layout — GeneratePress Overrides
   ---------------------------------------- */
/* GP Premium handles header background */

/* GP Premium navigation — display rules removed */

.site-title, .site-description { display: none; }
/* .site-branding visible for GP logo */

.site-main, .content-area, #primary, .hentry, .entry-content, article,
.inside-article, .grid-container { background: transparent; box-shadow: none; border: none; }

.separate-containers .inside-article,
.separate-containers .comments-area,
.separate-containers .page-header,
.one-container .container,
.inside-page-header { background-color: transparent; }

.inside-article { padding: 0; }

.sidebar, .widget-area { display: none; }
.content-area { width: 100%; }

/* ----------------------------------------
   4. Header
   ---------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #121212 !important;
  background-color: #121212 !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--iznm-border-dark);
  padding: 0;
}

.inside-header {
  padding: var(--iznm-space-3) var(--iznm-space-5);
  justify-content: space-between;
  min-height: unset;
  display: flex;
  align-items: center;
}

.site-logo img,
.site-header .header-image.is-logo-image {
  height: 58px;
  width: auto;
  max-width: 220px;
  max-height: 46px;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity var(--iznm-transition-slow);
}
.site-logo img:hover { opacity: 1; }

.site-content { margin-top: 76px; }
body.home .site-content { margin-top: 0; padding-top: 0; }

/* ----------------------------------------
   5. Footer
   ---------------------------------------- */
.site-footer,
#colophon,
footer {
  display: block;
  background-color: var(--iznm-black);
  border-top: 1px solid var(--iznm-border-dark);
  padding: var(--iznm-space-10) 0 var(--iznm-space-6);
  margin: 0;
}

/* GP Premium footer elements — display rules adjusted */
.footer-widgets-container { display: none; }

.site-info {
  display: block;
  background: transparent;
}

.inside-site-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--iznm-space-5);
  padding: 0 var(--iznm-space-5);
  max-width: var(--iznm-width-wide);
  margin: 0 auto;
}

.iznm-footer-links {
  background: var(--iznm-black);
  border-top: 1px solid var(--iznm-border-dark);
  padding: var(--iznm-space-5) 0;
  text-align: center;
  margin-top: var(--iznm-space-10);
  display: flex;
  gap: var(--iznm-space-6);
  justify-content: center;
  flex-wrap: wrap;
}

.iznm-footer-links a {
  color: var(--iznm-text-muted);
  text-decoration: none;
  font-size: var(--iznm-text-xs);
  letter-spacing: var(--iznm-tracking-wider);
  text-transform: uppercase;
  transition: color var(--iznm-transition-normal);
}
.iznm-footer-links a:hover { color: var(--iznm-text-sub); }

.iznm-footer-copyright {
  background: var(--iznm-black);
  border-top: 1px solid var(--iznm-border-dark);
  padding: var(--iznm-space-4) 0;
  text-align: center;
  font-size: var(--iznm-text-xs);
  color: var(--iznm-text-muted);
  letter-spacing: var(--iznm-tracking-wide);
}
.iznm-footer-copyright span,
.iznm-footer-copyright a { color: var(--iznm-text-muted); font-size: var(--iznm-text-xs); text-decoration: none; }
.iznm-footer-copyright a:hover { color: var(--iznm-text-sub); }

/* ----------------------------------------
   6. Background Animation
   ---------------------------------------- */
#iznm-bg-animation {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.iznm-bg-logo {
  position: absolute;
  opacity: 0;
  animation: iznmBlink var(--duration, 3s) ease-in-out var(--delay, 0s) infinite;
  filter: brightness(0) invert(1);
}
@keyframes iznmBlink {
  0%, 100% { opacity: 0; }
  50% { opacity: var(--max-opacity, 0.04); }
}

.site-header, .site-main, .site-content, .content-area { position: relative; z-index: 10; }

/* ----------------------------------------
   7. Components — Buttons
   ---------------------------------------- */
.wp-block-button .wp-block-button__link,
.button, .btn,
input[type="submit"],
button {
  background: var(--iznm-text-main);
  color: var(--iznm-black);
  border: none;
  padding: var(--iznm-space-3) var(--iznm-space-6);
  border-radius: var(--iznm-radius-md);
  font-weight: var(--iznm-font-medium);
  font-family: var(--iznm-font-ja);
  transition: background var(--iznm-transition-normal);
  cursor: pointer;
}
.button:hover, .btn:hover, input[type="submit"]:hover, button:hover {
  background: var(--iznm-text-sub);
  color: var(--iznm-black);
}

/* ----------------------------------------
   8. Components — Forms
   ---------------------------------------- */
input[type="text"], input[type="email"], input[type="password"],
input[type="tel"], textarea, select {
  background: var(--iznm-bg-raised);
  color: var(--iznm-text-main);
  border: 1px solid var(--iznm-border-light);
  border-radius: var(--iznm-radius-md);
  padding: var(--iznm-space-2) var(--iznm-space-3);
  font-family: var(--iznm-font-ja);
  font-size: var(--iznm-text-sm);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--iznm-text-muted);
}

/* ----------------------------------------
   9. Components — Tables
   ---------------------------------------- */
table { background: transparent; color: var(--iznm-text-main); border: 1px solid var(--iznm-border-dark); border-collapse: collapse; }
th, td { border: 1px solid var(--iznm-border-dark); color: var(--iznm-text-main); padding: var(--iznm-space-2); }
th { background: var(--iznm-bg-raised); }

/* ----------------------------------------
   10. Page — Content Pages (not home)
   ---------------------------------------- */
body:not(.home) .inside-article {
  background-color: var(--iznm-black);
  max-width: var(--iznm-width-wide);
  margin: 0 auto;
  padding: var(--iznm-space-16) var(--iznm-space-6);
}

body:not(.home) .entry-title {
  font-size: var(--iznm-text-sm);
  font-weight: var(--iznm-font-medium);
  letter-spacing: 0.3em;
  color: var(--iznm-text-main);
  text-transform: uppercase;
  margin-bottom: var(--iznm-space-12);
  padding-bottom: var(--iznm-space-4);
  border-bottom: 1px solid var(--iznm-border-dark);
}
body:not(.home) .entry-title::before { content: "/ "; color: var(--iznm-text-muted); }

body:not(.home) .entry-content {
  font-size: var(--iznm-text-sm);
  font-weight: 300;
  line-height: 2;
  letter-spacing: var(--iznm-tracking-wide);
  color: var(--iznm-text-sub);
}
body:not(.home) .entry-content p { color: var(--iznm-text-sub); margin-bottom: 1.5em; }
body:not(.home) .entry-content h2 { font-size: var(--iznm-text-base); border-left: 2px solid var(--iznm-text-main); padding-left: var(--iznm-space-3); }
body:not(.home) .entry-content h3 { font-size: var(--iznm-text-sm); color: var(--iznm-text-sub); letter-spacing: var(--iznm-tracking-wider); }
body:not(.home) .entry-content a { color: var(--iznm-text-main); border-bottom: 1px solid var(--iznm-border-light); }
body:not(.home) .entry-content a:hover { border-bottom-color: var(--iznm-text-main); }

/* Home — hide content area */
body.home .entry-header, body.home .entry-content, body.home .entry-summary { display: none; }
.home .site-content, .home .content-area, .home #primary { display: none; }
body.home .inside-article, body.home .entry, body.home .post { background: transparent; border: none; box-shadow: none; }
body.home .site-footer, body.home #colophon, body.home footer, body.home .footer-widgets, body.home .site-info { display: none; }

/* ----------------------------------------
   11. Page — countdown-lp (ID: 8103)
   ---------------------------------------- */
body.page-id-8103 .site-footer,
body.page-id-8103 .iznm-footer-links,
body.page-id-8103 .iznm-footer-copyright,
body.page-id-8103 .site-header { display: none; }
body.page-id-8103 .site-content { margin-top: 0; padding: 0; }
body.page-id-8103 .inside-article { padding: 0; }
body.page-id-8103 .entry-content { margin: 0; padding: 0; }
body.page-id-8103 .separate-containers .inside-article { background: transparent; padding: 0; }
body.page-id-8103 { display: flex; align-items: center; justify-content: center; min-height: 100vh; overflow-x: hidden; }
body.page-id-8103 #page, body.page-id-8103 #content, body.page-id-8103 #primary, body.page-id-8103 #main { width: 100%; max-width: 100%; padding: 0; margin: 0; }
body.page-id-8103 #iznm-bg-animation { z-index: 0; }
body.page-id-8103 #logo-container { z-index: 0; }
body.page-id-8103 .iznm-lp-content { z-index: 10; position: relative; }

/* ----------------------------------------
   12. Page — Founder Wall (shortcodes.php inline → extracted)
   ---------------------------------------- */
:root { --vh: 1vh; }

body.page-id-8074 { background: var(--iznm-black); margin: 0; padding: 0; }
body.page-id-8074 .site-header,
body.page-id-8074 .site-footer,
body.page-id-8074 .entry-header,
body.page-id-8074 .main-navigation,
body.page-id-8074 .footer-widgets,
body.page-id-8074 .iznm-footer-links,
body.page-id-8074 .iznm-footer-copyright,
body.page-id-8074 .widget-area,
body.page-id-8074 #right-sidebar { display: none; }

body.page-id-8074 .site-content,
body.page-id-8074 #content,
body.page-id-8074 #primary,
body.page-id-8074 #main,
body.page-id-8074 .inside-article,
body.page-id-8074 .entry-content { padding: 0; margin: 0; background: transparent; max-width: 100%; width: 100%; }

#iznm-founder-wall-wrap { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; height: 100dvh; height: calc(var(--vh, 1vh) * 100); background: var(--iznm-black); overflow: hidden; z-index: 1000; }
#iznm-founder-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; background: var(--iznm-black); z-index: 1001; }
#iznm-founder-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; pointer-events: none; z-index: 1010; padding: var(--iznm-space-5); box-sizing: border-box; }
#iznm-founder-header { text-align: center; }
.iznm-fw-logo-tag { width: clamp(140px, 30vw, 220px); height: auto; opacity: 1; margin-bottom: var(--iznm-space-5); display: block; margin-left: auto; margin-right: auto; filter: drop-shadow(0 0 24px rgba(255,255,255,0.3)); }
.iznm-fw-title { font-family: var(--iznm-font-ja); font-size: clamp(1.2rem, 4vw, 2.2rem); font-weight: 900; color: var(--iznm-text-main); letter-spacing: 0.3em; margin: 0 0 10px; text-shadow: 0 0 30px rgba(255,255,255,0.5); }
.iznm-fw-sub { font-family: var(--iznm-font-ja); font-size: clamp(0.6rem, 2vw, 0.75rem); color: rgba(255,255,255,0.6); letter-spacing: 0.15em; margin: 0; }
#iznm-founder-count-wrap { margin-top: var(--iznm-space-6); font-family: var(--iznm-font-ja); color: rgba(255,255,255,0.7); letter-spacing: 0.15em; line-height: 1; text-align: center; }
#iznm-founder-count { font-size: clamp(2.5rem, 8vw, 4.5rem); font-weight: 900; color: var(--iznm-text-main); text-shadow: 0 0 40px rgba(255,255,255,0.7); display: block; line-height: 1; }
.iznm-fw-count-label { font-size: clamp(0.7rem, 2.2vw, 0.9rem); color: rgba(255,255,255,0.5); letter-spacing: 0.1em; display: block; margin-top: var(--iznm-space-2); }
#iznm-founder-tooltip { position: fixed; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(12px); color: var(--iznm-text-main); font-family: var(--iznm-font-ja); font-size: var(--iznm-text-xs); letter-spacing: 0.1em; padding: var(--iznm-space-2) var(--iznm-space-3); border-radius: var(--iznm-radius-md); pointer-events: none; opacity: 0; transition: opacity var(--iznm-transition-fast); z-index: 1020; white-space: nowrap; }
#iznm-founder-tooltip.visible { opacity: 1; }

/* ----------------------------------------
   13. Page — WooCommerce
   ---------------------------------------- */
.woocommerce div.product .product_title { color: var(--iznm-text-main); }
.woocommerce .price { color: var(--iznm-text-main); }

body.single-product .product_title { font-size: var(--iznm-text-lg); font-weight: var(--iznm-font-bold); letter-spacing: var(--iznm-tracking-wider); color: var(--iznm-text-main); }
body.single-product .price { font-size: var(--iznm-text-xl); font-weight: 300; letter-spacing: var(--iznm-tracking-wider); }
body.single-product .woocommerce-product-details__short-description { color: var(--iznm-text-sub); font-size: var(--iznm-text-sm); line-height: 2; }
body.single-product .single_add_to_cart_button { background-color: var(--iznm-text-main); color: var(--iznm-black); border: none; border-radius: 0; font-size: var(--iznm-text-xs); font-weight: var(--iznm-font-bold); letter-spacing: var(--iznm-tracking-wider); padding: var(--iznm-space-4) var(--iznm-space-10); }
body.single-product .single_add_to_cart_button:hover { background-color: var(--iznm-text-sub); }

.woocommerce-account .woocommerce { font-family: var(--iznm-font-ja); color: var(--iznm-text-sub); }
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: var(--iznm-space-1); border-bottom: 1px solid var(--iznm-border-dark); padding-bottom: var(--iznm-space-4); }
.woocommerce-account .woocommerce-MyAccount-navigation ul li a { font-size: var(--iznm-text-xs); letter-spacing: 0.15em; color: var(--iznm-text-muted); text-transform: uppercase; padding: var(--iznm-space-2) var(--iznm-space-3); display: block; transition: color var(--iznm-transition-normal); }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover { color: var(--iznm-text-main); }

/* ----------------------------------------
   14. Page — My Account (page-id-8133)
   ---------------------------------------- */
body.page-id-8133 .card-title,
body.page-id-8133 .iznm-card-title,
body.page-id-8133 h2,
body.page-id-8133 h3 {
  font-size: var(--iznm-text-lg);
  font-weight: var(--iznm-font-bold);
  letter-spacing: var(--iznm-tracking-wider);
  color: var(--iznm-text-main);
  display: flex;
  align-items: center;
  gap: var(--iznm-space-2);
}
body.page-id-8133 .card-title::before,
body.page-id-8133 .iznm-card-title::before,
body.page-id-8133 h2::before,
body.page-id-8133 h3::before {
  content: '';
  display: inline-block;
  width: 18px; height: 18px;
  background-image: url('https://staging2.iznm.jp/wp-content/uploads/2026/03/iznm-logo-slash-w.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.75;
  flex-shrink: 0;
}

/* ----------------------------------------
   15. Utilities
   ---------------------------------------- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ----------------------------------------
   16. Responsive
   ---------------------------------------- */
@media (max-width: 768px) {
  h1 { font-size: var(--iznm-text-3xl); }
  h2 { font-size: var(--iznm-text-xl); }
  h3 { font-size: var(--iznm-text-lg); }

  .site-content { margin-top: 72px; padding: var(--iznm-space-2); }
  body:not(.home) .site-content { padding-top: var(--iznm-space-16); }

  .site-logo img, .site-header .header-image.is-logo-image { height: 40px; max-width: 160px; max-height: 36px; }
  .inside-header { padding: var(--iznm-space-2) var(--iznm-space-4); min-height: 64px; }

  .iznm-footer-links a { display: block; margin: var(--iznm-space-2) 0; }
  .site-footer { padding: var(--iznm-space-8) 0 var(--iznm-space-5); }

  body:not(.home) .inside-article { padding: var(--iznm-space-10) var(--iznm-space-5); }
  body:not(.home) .entry-title { font-size: var(--iznm-text-xs); margin-bottom: var(--iznm-space-8); }

  .iznm-fw-logo-tag { width: clamp(120px, 40vw, 200px); }
  #iznm-founder-tooltip { display: none; }

  body.page-id-8133 .card-title, body.page-id-8133 .iznm-card-title,
  body.page-id-8133 h2, body.page-id-8133 h3 { font-size: 1.05rem; gap: var(--iznm-space-2); }
  body.page-id-8133 .card-title::before, body.page-id-8133 .iznm-card-title::before,
  body.page-id-8133 h2::before, body.page-id-8133 h3::before { width: 14px; height: 14px; }
}

/* ========================================
   8. Founder Wall + Founder LP Styles
   Extracted from staging iznm-style-pages.css
   ======================================== */
}

/* ===========================
   Founder Wall ( ifw-* )
   v1.0 - 2026-03-28
   =========================== */

.iznm-founder-wall {
    background: #1a1a1a;
    min-height: 60vh;
    padding: 64px 32px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    color: #dddddd;
    box-sizing: border-box;
}

/* Hero */
.ifw-hero {
    text-align: center;
    margin-bottom: 72px;
}

.ifw-slash-pattern {
    font-size: 13px;
    color: #333333;
    letter-spacing: 0.6em;
    margin-bottom: 28px;
    user-select: none;
}

.ifw-eyebrow {
    font-size: 13px;
    letter-spacing: 0.25em;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ifw-title {
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.06em;
    margin: 0 0 12px;
    line-height: 1.2;
}

.ifw-slash {
    color: #c0c0c0;
    font-weight: 300;
}

.ifw-sub {
    font-size: 13px;
    color: #666666;
    letter-spacing: 0.06em;
    margin: 0;
}

.ifw-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 8px 20px;
    border: 1px solid #333333;
    border-radius: 4px;
    font-size: 13px;
    color: #888888;
    letter-spacing: 0.08em;
    background: #2a2a2a;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.ifw-count-num {
    color: #d4a574;
    font-weight: 500;
}

/* Section header */
.ifw-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.ifw-sec-slash {
    color: #c0c0c0;
    font-size: 14px;
}

.ifw-sec-label {
    font-size: 13px;
    letter-spacing: 0.2em;
    color: #888888;
    text-transform: uppercase;
    white-space: nowrap;
}

.ifw-sec-line {
    flex: 1;
    height: 1px;
    background: #333333;
}

/* Grid */
.ifw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2px;
    margin-bottom: 72px;
}

/* Card */
.ifw-card {
    background: #2a2a2a;
    border: 1px solid #333333;
    padding: 20px 22px;
    position: relative;
    overflow: hidden;
    transition: background 0.15s ease, border-color 0.15s ease;
    min-height: 88px;
    box-sizing: border-box;
}

.ifw-card--linked {
    cursor: pointer;
}

.ifw-card--linked:hover {
    background: #323232;
    border-color: #444444;
}

.ifw-card--linked:hover .ifw-card-number {
    color: #d4a574;
}

.ifw-card--empty {
    opacity: 0.25;
    cursor: default;
}

/* Corner accent */
.ifw-card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 24px solid transparent;
    border-top: 24px solid #d4a574;
    opacity: 0.35;
}

.ifw-card-number {
    font-size: 10px;
    font-weight: 500;
    color: #666666;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    font-family: 'Inter', monospace;
    transition: color 0.15s;
}

.ifw-card-name {
    font-size: 14px;
    font-weight: 500;
    color: #dddddd;
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ifw-card-link {
    margin-top: 10px;
    font-size: 13px;
    color: #555555;
    letter-spacing: 0.06em;
    transition: color 0.15s;
}

.ifw-card--linked:hover .ifw-card-link {
    color: #c0c0c0;
}

/* Footer */
.ifw-footer {
    padding-top: 24px;
    border-top: 1px solid #333333;
    text-align: center;
}

.ifw-footer-text {
    font-size: 13px;
    color: #444444;
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 768px) {
    .iznm-founder-wall {
        padding: 40px 16px;
    }
    .ifw-title {
        font-size: 26px;
    }
    .ifw-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}


/* ===========================
 *    Founder Wall - page title hidden
 *    =========================== */
body:has(.iznm-founder-wall) header.entry-header {
	    display: none !important;
}
body:has(.iznm-founder-wall) .inside-article {
	    padding-top: 0 !important;
}
}
}
/* ==========================================
   IZNM Founder LP v4.0
   Miro LPコピー詳細 v4.0 準拠
   2026-03-29
========================================== */

.lp-wrap {
    background: #1a1a1a;
    color: #dddddd;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    overflow-x: hidden;
}
.lp-sec {
    padding: 96px 32px;
    border-bottom: 1px solid #2a2a2a;
}
.lp-sec__inner {
    max-width: 1080px;
    margin: 0 auto;
}
.lp-sec-label {
    font-size: 13px;
    letter-spacing: 0.25em;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.lp-sec__title {
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.04em;
    line-height: 1.3;
    margin-bottom: 32px;
}
.lp-sec__body {
    font-size: 15px;
    line-height: 1.9;
    color: #888888;
}
.lp-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}
.lp-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: opacity 0.15s ease, transform 0.1s ease;
    cursor: pointer;
}
.lp-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.lp-btn--primary { background: #d4a574; color: #000000; border: none; }
.lp-btn--secondary { background: transparent; color: #dddddd; border: 1px solid #666666; }
.lp-btn--ghost { background: transparent; color: #666666; border: none; font-size: 13px; padding: 14px 8px; }

/* FV */
.lp-fv { padding: 80px 32px; background: #000000; min-height: 80vh; display: flex; align-items: center; }
.lp-fv__inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lp-fv__img { width: 100%; max-width: 480px; display: block; border-radius: 4px; }
.lp-fv__img-caption { font-size: 13px; color: #444444; letter-spacing: 0.15em; margin-top: 12px; text-align: center; text-transform: uppercase; }
.lp-fv__title { font-size: 42px; font-weight: 600; color: #ffffff; line-height: 1.25; letter-spacing: 0.04em; margin-bottom: 24px; }
.lp-fv__date { font-size: 18px; color: #888888; font-weight: 400; letter-spacing: 0.15em; }
.lp-fv__lead { font-size: 15px; line-height: 1.9; color: #888888; margin-bottom: 32px; }

/* Founderカウンター */
.lp-founder-counter { background: #1a1a1a; border: 1px solid #333333; border-radius: 4px; padding: 20px 24px; margin-bottom: 32px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.04); }
.lp-founder-counter__label { font-size: 13px; color: #888888; letter-spacing: 0.1em; margin-bottom: 8px; }
.lp-founder-counter__text { font-size: 14px; color: #dddddd; margin-bottom: 12px; }
.lp-founder-counter__text strong { color: #d4a574; }
.lp-founder-counter__nums { display: flex; gap: 32px; }
.lp-founder-counter__num, .lp-founder-counter__remain { font-size: 28px; font-weight: 600; color: #d4a574; font-family: 'Inter', monospace; }
.lp-founder-counter__unit { font-size: 13px; color: #666666; margin-left: 4px; }

/* Problem */
.lp-problem__body { display: flex; flex-direction: column; gap: 12px; }
.lp-problem__body p { font-size: 18px; color: #888888; line-height: 1.7; padding-left: 16px; border-left: 2px solid #333333; }

/* Solution */
.lp-solution__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lp-solution__img { width: 100%; border-radius: 4px; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }

/* How it works */
.lp-how__steps { display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; margin-top: 48px; }
.lp-how__step { flex: 1; min-width: 180px; background: #2a2a2a; border: 1px solid #333333; padding: 28px 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.lp-how__arrow { color: #444444; font-size: 20px; padding: 40px 12px; flex-shrink: 0; }
.lp-how__step-num { font-size: 10px; letter-spacing: 0.2em; color: #d4a574; margin-bottom: 8px; font-family: 'Inter', monospace; }
.lp-how__step-name { font-size: 13px; font-weight: 600; color: #ffffff; letter-spacing: 0.05em; margin-bottom: 12px; line-height: 1.4; }
.lp-how__step-desc { font-size: 13px; color: #888888; line-height: 1.7; }

/* Safety */
.lp-safety__flow { display: flex; align-items: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.lp-safety__flow-item { background: #2a2a2a; border: 1px solid #333333; padding: 16px 28px; font-size: 13px; font-weight: 500; color: #dddddd; letter-spacing: 0.1em; border-radius: 4px; }
.lp-safety__flow-arrow { color: #444444; font-size: 18px; }

/* Real Scenes */
.lp-scenes__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 48px; }
.lp-scene-card { background: #2a2a2a; border: 1px solid #333333; padding: 32px 28px; transition: border-color 0.15s ease; }
.lp-scene-card:hover { border-color: #444444; }
.lp-scene-card__tag { font-size: 10px; letter-spacing: 0.2em; color: #666666; text-transform: uppercase; margin-bottom: 16px; }
.lp-scene-card__title { font-size: 18px; font-weight: 500; color: #ffffff; line-height: 1.4; margin-bottom: 16px; }
.lp-scene-card__body { font-size: 13px; color: #888888; line-height: 1.8; }

/* Pricing */
.lp-pricing__header { text-align: center; margin-bottom: 32px; }
.lp-pricing__campaign { font-size: 16px; color: #d4a574; font-weight: 500; line-height: 1.7; margin-bottom: 8px; }
.lp-pricing__remain-label { font-size: 14px; color: #888888; }
.lp-pricing__table-wrap { overflow-x: auto; margin: 32px 0; }
.lp-pricing__table { width: 100%; border-collapse: collapse; font-size: 14px; }
.lp-pricing__table th, .lp-pricing__table td { padding: 14px 18px; text-align: center; border: 1px solid #333333; color: #dddddd; }
.lp-pricing__table th { background: #2a2a2a; font-weight: 500; color: #ffffff; letter-spacing: 0.05em; }
.lp-pricing__table td:first-child { text-align: left; color: #888888; background: #222222; }
.lp-pricing__col--featured { border-color: #d4a574 !important; background: rgba(212,165,116,0.06) !important; color: #ffffff !important; }
.lp-pricing__founder-badge { display: block; background: #d4a574; color: #000000; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; padding: 2px 8px; border-radius: 2px; margin-top: 4px; }
.lp-pricing__note { font-size: 13px; color: #666666; margin-top: 16px; line-height: 1.8; }

/* Founder */
.lp-founder__body { margin-bottom: 40px; }
.lp-founder__body p { font-size: 16px; line-height: 2; color: #888888; }
.lp-founder__body strong { color: #d4a574; }
.lp-founder-wall-embed { margin: 48px 0; border: 1px solid #333333; border-radius: 4px; overflow: hidden; }
.lp-founder-wall-embed iframe { display: block; width: 100%; height: 600px; border: none; }
.lp-roadmap { background: #2a2a2a; border: 1px solid #333333; padding: 40px 36px; margin: 48px 0; border-radius: 4px; }
.lp-roadmap__title { font-size: 22px; font-weight: 500; color: #ffffff; margin: 16px 0 24px; line-height: 1.4; }
.lp-roadmap__list { list-style: none; padding: 0; margin: 0 0 24px; }
.lp-roadmap__list li { font-size: 14px; color: #888888; line-height: 1.8; padding-left: 20px; position: relative; }
.lp-roadmap__list li::before { content: '/'; position: absolute; left: 0; color: #d4a574; }
.lp-roadmap__note { font-size: 13px; color: #666666; line-height: 1.8; border-top: 1px solid #333333; padding-top: 20px; }

/* FAQ */
.lp-faq__list { margin-top: 48px; display: flex; flex-direction: column; gap: 2px; }
.lp-faq__item { background: #2a2a2a; border: 1px solid #333333; overflow: hidden; }
.lp-faq__item[open] { border-color: #444444; }
.lp-faq__q { padding: 20px 24px; font-size: 15px; font-weight: 500; color: #dddddd; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.lp-faq__q::-webkit-details-marker { display: none; }
.lp-faq__q::after { content: '+'; color: #666666; font-size: 18px; flex-shrink: 0; transition: transform 0.2s; }
.lp-faq__item[open] .lp-faq__q::after { transform: rotate(45deg); }
.lp-faq__a { padding: 0 24px 24px; font-size: 14px; color: #888888; line-height: 1.8; }

/* Final CTA */
.lp-final-cta { text-align: center; background: #000000; padding: 120px 32px; }
.lp-final-cta__title { font-size: 52px; font-weight: 600; color: #ffffff; letter-spacing: 0.06em; margin: 32px 0 20px; }
.lp-final-cta__body { font-size: 15px; color: #888888; line-height: 1.9; margin-bottom: 0; }

/* Responsive */
@media (max-width: 768px) {
    .lp-sec { padding: 64px 20px; }
    .lp-fv { padding: 60px 20px; min-height: auto; }
    .lp-fv__inner, .lp-solution__inner { grid-template-columns: 1fr; gap: 40px; }
    .lp-fv__title { font-size: 30px; }
    .lp-sec__title { font-size: 26px; }
    .lp-final-cta__title { font-size: 34px; }
    .lp-how__steps { flex-direction: column; }
    .lp-how__arrow { padding: 8px 0; transform: rotate(90deg); }
    .lp-scenes__grid { grid-template-columns: 1fr; }
    .lp-cta-group { flex-direction: column; align-items: stretch; }
    .lp-btn { text-align: center; }
    .lp-founder-counter__nums { flex-direction: column; gap: 8px; }
}

/* ==========================================
   Founder LP v4.0 スマホ対応 + フィードバック反映
   2026-03-29
========================================== */

/* ① セクションラベル スラッシュ画像 */
.lp-sec-slash-img {
    height: 16px;
    width: auto;
    vertical-align: middle;
    margin-right: 6px;
}

/* ② CTAボタン修正 */
.lp-btn--primary { color: #1a1a1a !important; font-weight: 700 !important; }
.lp-cta-group { gap: 8px !important; margin-top: 32px !important; }

/* ③ FVロゴ */
.lp-fv__logo { text-align: center; padding: 40px 0 24px; }
.lp-fv__logo-img { height: 150px; width: auto; }

/* ⑤ Founderカウンター コンパクト */
.lp-founder-counter { padding: 14px 18px; margin-bottom: 24px; }
.lp-founder-counter__label { font-size: 10px; margin-bottom: 4px; }
.lp-founder-counter__text { font-size: 13px; margin-bottom: 8px; }
.lp-founder-counter__inline {
    display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; margin: 0;
}
.lp-founder-counter__num,
.lp-founder-counter__remain {
    font-size: 20px; font-weight: 600; color: #d4a574; font-family: 'Inter', monospace;
}
.lp-founder-counter__sep { color: #444; font-size: 14px; }
.lp-founder-counter__unit { font-size: 13px; color: #666; margin-left: 2px; }

/* ⑦ THE PROBLEM 画像 */
.lp-problem__img-wrap { margin-top: 40px; }
.lp-problem__img { width: 100%; border-radius: 4px; }

/* ⑪ HOW IT WORKS リード文 */
.lp-how__lead { font-size: 15px; line-height: 1.9; color: #888; margin-bottom: 40px; }

/* ⑬ STEP SVGアニメーション */
.lp-how__step-visual { margin-bottom: 16px; text-align: center; }
.lp-how-svg { width: 100%; max-width: 160px; height: auto; }
.lp-how__steps { justify-content: center !important; align-items: stretch !important; }
.lp-how__step {
    flex: 1 1 160px !important; max-width: 200px !important;
    display: flex !important; flex-direction: column !important;
    align-items: center !important; text-align: center !important;
}

/* ⑭ FOR SAFETY SVG */
.lp-safety__visual { margin-top: 40px; text-align: center; }
.lp-safety-svg { width: 100%; max-width: 320px; height: auto; }

/* ⑮ REAL SCENES カード画像 */
.lp-scene-card__img-wrap { margin: -32px -28px 20px; overflow: hidden; }
.lp-scene-card__img { width: 100%; height: 160px; object-fit: cover; display: block; }

/* ⑯ FINAL ロゴ */
.lp-final-logo { text-align: center; margin-top: 64px; padding-top: 48px; border-top: 1px solid #2a2a2a; }
.lp-final-logo__img { height: 200px; width: auto; opacity: 0.9; }

/* ④ スマホFVレイアウト */
@media (max-width: 768px) {
    .lp-fv__inner { display: flex !important; flex-direction: column !important; }
    .lp-fv__visual { order: 3; margin: 24px 0; }
    .lp-fv__copy { order: 2; }
    .lp-fv__img-caption { display: none; }
    .lp-how__step { max-width: 100% !important; flex: 1 1 100% !important; }
    .lp-how-svg { max-width: 120px; }
}

/* ==========================================
   Founder LP v4.0 第2回フィードバック反映
   2026-03-29
========================================== */

/* セクションラベル inline修正 */
.lp-sec-label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.lp-sec-slash-img {
    height: 14px !important;
    width: auto !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

/* FV全体 */
.lp-fv { background: #000 !important; padding: 0 0 64px !important; min-height: auto !important; display: block !important; }
.lp-fv__logo { padding: 32px 24px 0; text-align: left; }
.lp-fv__logo-img { height: 150px; width: auto; display: block; }
.lp-fv__inner { max-width: 1080px; margin: 0 auto; display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 48px; align-items: start; padding: 32px 32px 0; }
.lp-fv__date { font-size: 13px; color: #666; letter-spacing: 0.15em; margin-bottom: 4px; font-family: 'Inter', monospace; }
.lp-fv__subtitle { font-size: 14px; color: #888; letter-spacing: 0.1em; margin-bottom: 24px; }
.lp-fv__title { font-size: 42px !important; }
.lp-fv__visual--mobile { display: none; margin: 20px 0 28px; }
.lp-fv__right { display: block; }

@media (max-width: 768px) {
    .lp-fv { padding: 0 0 48px !important; }
    .lp-fv__logo { padding: 24px 20px 0; }
    .lp-fv__logo-img { height: 120px; }
    .lp-fv__inner { grid-template-columns: 1fr !important; gap: 0 !important; padding: 20px 20px 0; }
    .lp-fv__title { font-size: 32px !important; }
    .lp-fv__visual--mobile { display: block !important; }
    .lp-fv__right { display: none !important; }
}

/* HOW IT WORKS SVGサイズ統一・拡大 */
.lp-how__step-visual { margin-bottom: 20px; text-align: center; width: 100%; }
.lp-how-svg { width: 200px !important; height: 160px !important; display: block; margin: 0 auto; max-width: none !important; }
@media (max-width: 768px) {
    .lp-how-svg { width: 240px !important; height: 192px !important; }
}

/* FOR SAFETY SVGサイズ拡大 */
.lp-safety__visual { margin-top: 40px; text-align: center; overflow-x: auto; }
.lp-safety-svg { width: 100% !important; max-width: 480px !important; height: auto !important; min-width: 320px; }

/* REAL SCENES 画像トリミング上端固定 */
.lp-scene-card__img {
    height: 200px !important;
    object-position: top center !important;
}

/* FINAL CTA ロゴセンタリング */
.lp-final-logo {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.lp-final-logo__img {
    display: block !important;
    margin: 0 auto !important;
}

/* FVロゴ コンテンツエリア内に収める */
.lp-fv__logo {
    max-width: 1080px !important;
    margin: 0 auto !important;
    padding: 32px 32px 0 !important;
    text-align: left !important;
    box-sizing: border-box !important;
}
@media (max-width: 768px) {
    .lp-fv__logo { padding: 24px 20px 0 !important; }
}

/* HOW IT WORKS SVGセンタリング */
.lp-how__step {
    justify-content: flex-start !important;
}
.lp-how__step-visual {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.lp-how-svg {
    margin: 0 auto !important;
}


/* === IZNM Footer Bar === */
.iznm-footer-bar {
  background: var(--iznm-black);
  border-top: 1px solid var(--iznm-border-dark);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}
.iznm-footer-bar .iznm-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  border-top: none;
  padding: 0;
  margin: 0;
  text-align: left;
  justify-content: flex-start;
}
.iznm-footer-bar .iznm-footer-links a {
  color: var(--iznm-text-muted);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--iznm-transition-normal);
  display: inline;
  margin: 0;
}
.iznm-footer-bar .iznm-footer-links a:hover { color: var(--iznm-text-sub); }
.iznm-footer-bar .iznm-footer-copyright {
  color: var(--iznm-text-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  border-top: none;
  padding: 0;
  margin: 0;
  text-align: right;
}

/* GPカスタマイザーのCopyright出力を非表示 */
.site-footer .copyright-bar,
.site-footer .site-info {
  display: none !important;
}

@media (max-width: 768px) {
  .iznm-footer-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .iznm-footer-bar .iznm-footer-links { justify-content: center; }
  .iznm-footer-bar .iznm-footer-copyright { text-align: center; }
}

/* === No.10 Standard月額 非アクティブ化 (5/1公開予定) === */
.lp-btn--secondary[href*="standard-monthly"] {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}
.lp-btn--secondary[href*="standard-monthly"]:hover {
  opacity: 0.5;
  transform: none;
}
.lp-monthly-coming {
  display: block;
  font-size: 11px;
  color: #888888;
  letter-spacing: 0.05em;
  margin-top: 2px;
  text-align: center;
}
