@charset "UTF-8";

/* ── Stripe流 極限ハイエンド・カラーパレット ── */
:root {
    --black: #0A2540; 
    --white: #FFFFFF;
    --bg-gray: #F6F9FC; 
    --blue: #635BFF; 
    --blue-dark: #4F46E5;
    --muted: #425466; 
    --border: #E6EBFC; 
    --accent: #00D4B2; 
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg-gray);
    color: var(--black);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; transition: all 0.3s ease; }

/* 改行コントロール */
.pc-br { display: block; }
.sp-br { display: none; }

/* ── HEADER ── */
.sim-hd { 
    position: fixed; top: 0; left: 0; right: 0; height: 72px; z-index: 9999; 
    display: flex; align-items: center; background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); 
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); transition: background 0.3s ease;
}
.sim-hd-in { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.sim-hd-logo { font-size: 24px; font-weight: 900; letter-spacing: -.03em; color: var(--black); }
.sim-hd-logo span { color: var(--blue); }
.sim-hd-cta { 
    font-size: 14px; font-weight: 600; color: var(--white); background: var(--black);
    padding: 8px 20px; border-radius: 980px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
}
.sim-hd-cta:hover { background: var(--muted); transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); }

/* ── 共通セクション設定 ── */
.section { padding: 140px 24px; display: flex; justify-content: center; position: relative; }
.section-in { width: 100%; max-width: 1080px; }
.sec-title { font-size: clamp(32px, 4vw, 42px); font-weight: 800; letter-spacing: -0.04em; text-align: center; margin-bottom: 16px; line-height: 1.3; color: var(--black); }
.sec-sub { font-size: 18px; color: var(--muted); text-align: center; margin-bottom: 80px; line-height: 1.7; font-weight: 500; max-width: 700px; margin-left: auto; margin-right: auto; }

/* ── HERO SECTION ── */
.b2b-hero {
    min-height: 100vh; display: flex; align-items: center; background: #ffffff;
    padding: 140px 24px 100px; position: relative; overflow: hidden;
}
.b2b-hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
    overflow: hidden; pointer-events: none;
    background: linear-gradient(180deg, #F6F9FC 0%, #FFFFFF 100%);
}
.hero-glow-1 {
    position: absolute; top: -10%; left: -10%; width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(99, 91, 255, 0.12) 0%, transparent 60%);
    filter: blur(60px); animation: floatMesh 12s infinite ease-in-out alternate;
}
.hero-glow-2 {
    position: absolute; top: 20%; right: -10%; width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(0, 212, 178, 0.08) 0%, transparent 60%);
    filter: blur(50px); animation: floatMesh 15s infinite ease-in-out alternate-reverse;
}
.hero-glow-3 {
    position: absolute; bottom: -20%; left: 20%; width: 70vw; height: 70vw;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.05) 0%, transparent 60%);
    filter: blur(80px); animation: floatMesh 18s infinite ease-in-out alternate;
}
@keyframes floatMesh {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(5%, 5%) scale(1.1) rotate(5deg); }
}
.b2b-hero-bg::after {
    content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 200px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.b2b-hero-in { position: relative; z-index: 1; width: 100%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.b2b-hero-content { flex: 1; max-width: 520px; animation: stripeFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes stripeFadeUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }

.b2b-title { font-size: clamp(38px, 4.5vw, 56px); font-weight: 900; line-height: 1.5; color: var(--black); margin-bottom: 48px; letter-spacing: -0.04em; }
.b2b-sub { font-size: 18px; line-height: 1.6; color: var(--muted); font-weight: 500; margin-bottom: 40px; letter-spacing: -0.01em; }
.b2b-sub strong { color: var(--black); font-weight: 800; }
.b2b-microcopy { font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.b2b-microcopy svg { width: 16px; height: 16px; color: var(--blue); }

.b2b-btn {
    display: inline-flex; align-items: center; justify-content: center; background: var(--blue); color: var(--white); 
    padding: 16px 40px; border-radius: 980px; font-size: 16px; font-weight: 700; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
    box-shadow: 0 4px 14px rgba(99, 91, 255, 0.3), 0 1px 3px rgba(0,0,0,0.08); width: auto; letter-spacing: 0.02em;
}
.b2b-btn:hover { background: var(--black); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(10, 37, 64, 0.25), 0 4px 8px rgba(0,0,0,0.1); }

.b2b-hero-visual { position: relative; flex: 1.2; width: 100%; max-width: 720px; animation: stripeFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards; opacity: 0; perspective: 2000px; }
.mac-window { 
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: 16px; overflow: hidden; 
    box-shadow: -25px 25px 50px -12px rgba(50, 50, 93, 0.15), -12px 12px 24px -10px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 1), inset 0 1px 2px rgba(255, 255, 255, 0.9);
    transform: rotateY(-18deg) rotateX(10deg) rotateZ(2deg); transform-style: preserve-3d; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mac-window:hover { transform: rotateY(-8deg) rotateX(4deg) rotateZ(0deg) translateY(-10px); box-shadow: -35px 35px 70px -15px rgba(50, 50, 93, 0.2), -15px 15px 30px -10px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 1); }
.mac-header { background: rgba(247, 250, 252, 0.8); padding: 14px 20px; display: flex; gap: 8px; border-bottom: 1px solid rgba(0,0,0,0.05); position: relative; z-index: 10; }
.mac-dot { width: 10px; height: 10px; border-radius: 50%; box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); }
.mac-dot.r { background: #FF5F56; } .mac-dot.y { background: #FFBD2E; } .mac-dot.g { background: #27C93F; }
.mac-body-anim { position: relative; height: 460px; overflow: hidden; background: #F6F9FC; }

.anim-phase-input { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 2; animation: phaseSlideOut 16s infinite cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes phaseSlideOut { 0%, 45% { opacity: 1; transform: translateY(0); pointer-events: auto; } 50%, 95% { opacity: 0; transform: translateY(-30px); pointer-events: none; } 100% { opacity: 1; transform: translateY(0); pointer-events: auto; } }

.mock-google-map { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #E8ECEF; overflow: hidden; z-index: 0; }
.mock-map-grid { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background-image: linear-gradient(90deg, #FFFFFF 1px, transparent 1px), linear-gradient(0deg, #FFFFFF 1px, transparent 1px); background-size: 24px 24px; opacity: 0.7; transform: rotate(-8deg); z-index: 1; }
.mock-map-water { position: absolute; top: -10%; right: -5%; width: 100px; height: 120%; background: #C5E1FF; transform: rotate(15deg); z-index: 2; }
.mock-map-park.ueno { position: absolute; top: 10%; left: -10%; width: 45%; height: 55%; background: #D2ECC9; border-radius: 40px 100px 80px 30px; z-index: 2; }
.mock-map-park.small { position: absolute; top: 75%; left: 65%; width: 50px; height: 40px; background: #D2ECC9; border-radius: 8px; z-index: 2; }
.mock-map-train { position: absolute; top: -10%; left: 25%; width: 4px; height: 120%; background: repeating-linear-gradient(0deg, #777, #777 6px, #FFF 6px, #FFF 12px); transform: rotate(12deg); z-index: 3; }
.mock-map-road { position: absolute; background: #FFFFFF; z-index: 4; }
.mock-map-road.main-v { top: -10%; left: 32%; width: 16px; height: 120%; transform: rotate(12deg); }
.mock-map-road.main-h { top: 55%; left: -10%; width: 120%; height: 16px; transform: rotate(-5deg); }
.mock-map-hwy { position: absolute; top: 15%; left: -10%; width: 120%; height: 12px; background: #FFEAA1; transform: rotate(-8deg); z-index: 5; }

.mock-map-attr { position: absolute; top: 16px; left: 16px; z-index: 10; font-size: 11px; font-weight: 700; color: var(--black); background: rgba(255,255,255,0.95); padding: 6px 12px; border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); letter-spacing: 0.02em; }
.mock-poi { position: absolute; z-index: 6; display: flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 800; color: var(--black); text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF; white-space: nowrap; }
.poi-1 { top: 35%; left: 22%; } .poi-2 { top: 25%; left: 72%; } .poi-3 { top: 68%; left: 45%; } .poi-4 { top: 15%; left: 8%; }
.poi-icon { font-size: 12px; }

.mock-map-pin { position: absolute; top: 45%; left: 50%; margin-left: -16px; margin-top: -32px; color: #FF4A4A; width: 32px; height: 32px; z-index: 10; filter: drop-shadow(0 8px 12px rgba(255,74,74,0.3)); animation: pinDrop 16s infinite cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes pinDrop { 0%, 15% { opacity: 0; transform: translateY(-40px); } 20%, 95% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(0); } }

.anim-search-box { position: relative; z-index: 10; background: var(--white); padding: 14px 20px; border-radius: 12px; box-shadow: 0 20px 40px rgba(50,50,93,0.1), 0 4px 15px rgba(0,0,0,0.05), inset 0 0 0 1px rgba(0,0,0,0.02); display: flex; align-items: center; justify-content: space-between; width: 90%; max-width: 440px; margin-top: 200px; }
.anim-search-icon { width: 18px; height: 18px; color: var(--muted); margin-right: 12px; }
.anim-type-text { flex: 1; font-size: 15px; font-weight: 700; color: var(--black); white-space: nowrap; overflow: hidden; border-right: 2px solid var(--blue); padding-right: 4px; animation: typing 16s infinite; }
@keyframes typing { 0%, 20% { width: 0; opacity: 0; } 25%, 95% { width: 190px; opacity: 1; } 100% { width: 0; opacity: 0; } }

.anim-btn { background: var(--black); color: var(--white); padding: 10px 20px; border-radius: 8px; font-size: 13px; font-weight: 700; box-shadow: 0 2px 6px rgba(0,0,0,0.1); animation: buttonClick 16s infinite; }
@keyframes buttonClick { 0%, 45% { transform: scale(1); background: var(--black); } 48%, 95% { transform: scale(0.96); background: var(--blue); } 100% { transform: scale(1); background: var(--black); } }

.anim-phase-result { position: absolute; top: 0; left: 0; width: 100%; height: 100%; padding: 32px; background: var(--bg-gray); z-index: 1; display: flex; flex-direction: column; gap: 20px; opacity: 0; animation: phaseSlideIn 16s infinite cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes phaseSlideIn { 0%, 45% { opacity: 0; transform: translateY(30px); pointer-events: none; } 50%, 95% { opacity: 1; transform: translateY(0); pointer-events: auto; } 100% { opacity: 0; transform: translateY(30px); pointer-events: none; } }

.result-header { font-size: 20px; font-weight: 900; color: var(--black); letter-spacing: -0.03em; }
.result-cards { display: flex; gap: 16px; }
.result-card { flex: 1; background: var(--white); border-radius: 12px; padding: 24px; box-shadow: 0 4px 12px rgba(50,50,93,0.03); border: 1px solid rgba(0,0,0,0.03); }
.result-label { font-size: 11px; color: var(--muted); font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.result-val { font-size: 36px; font-weight: 900; color: var(--black); letter-spacing: -0.03em; line-height: 1; }
.result-val span { font-size: 14px; font-weight: 700; margin-left: 2px; color: var(--muted); }
.result-val.primary { color: var(--blue); }
.result-chart-card { background: var(--white); border-radius: 12px; padding: 24px; flex: 1; box-shadow: 0 4px 12px rgba(50,50,93,0.03); border: 1px solid rgba(0,0,0,0.03); display: flex; flex-direction: column; justify-content: flex-end; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 100px; border-bottom: 2px solid var(--border); padding-bottom: 4px; }
.chart-bar { flex: 1; background: linear-gradient(180deg, var(--blue) 0%, #A5B4FC 100%); border-radius: 4px 4px 0 0; animation: barGrow 16s infinite cubic-bezier(0.16, 1, 0.3, 1); transform-origin: bottom; }
@keyframes barGrow { 0%, 50% { transform: scaleY(0); } 56%, 100% { transform: scaleY(1); } }

/* ── FEATURE SECTION ── */
.sec-feature { background: linear-gradient(160deg, #0A1930 0%, #0d2847 100%); padding: 140px 24px; display: flex; justify-content: center; }
.sec-feature-in { display: flex; align-items: center; gap: 80px; width: 100%; max-width: 1200px; }
.feature-visual { flex: 2.8; }
.feature-img-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08); }
.feature-img-wrap-bottom { width: 100%; }
.feature-img-wrap-bottom img { width: 100%; display: block; }
.feature-img { width: 100%; display: block; }
.feature-list { flex: 1; }
.feature-list .sec-title { text-align: left; margin-bottom: 48px; color: #fff; }
.feature-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 36px; }
.feature-item:last-child { margin-bottom: 0; }
.feature-item-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(99,91,255,0.2); border: 1px solid rgba(99,91,255,0.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.feature-item-icon svg { width: 20px; height: 20px; color: #818CF8; }
.feature-item-title { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 6px; letter-spacing: -0.02em; }
.feature-item-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; font-weight: 400; }

/* ── STEP SECTION ── */
.sec-steps { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 16px; }
.step-card { background: var(--white); border-radius: 16px; padding: 48px 32px; border: 1px solid rgba(50,50,93,0.05); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; box-shadow: 0 2px 5px rgba(0,0,0,0.01); }
.step-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(50, 50, 93, 0.08), 0 4px 12px rgba(0,0,0,0.03); border-color: rgba(99, 91, 255, 0.2); }
.step-num { font-size: 13px; font-weight: 800; color: var(--blue); margin-bottom: 16px; letter-spacing: 0.05em; }
.step-title { font-size: 22px; font-weight: 900; margin-bottom: 16px; color: var(--black); letter-spacing: -0.03em; }
.step-desc { font-size: 15px; color: var(--muted); line-height: 1.6; font-weight: 500; flex-grow: 1; }
.step-ui { margin-top: 40px; height: 100px; display: flex; align-items: center; justify-content: center; background: var(--bg-gray); border-radius: 12px; padding: 16px; border: 1px solid rgba(50,50,93,0.05); }
.ui-mock-input { background: var(--white); padding: 10px 14px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.03); width: 100%; border: 1px solid rgba(50,50,93,0.05); font-size: 12px; color: var(--black); font-weight: 700; display: flex; justify-content: space-between; align-items: center; }
.ui-mock-input span:last-child { color: var(--white); background: var(--blue); padding: 4px 12px; border-radius: 4px; font-size: 11px; }
.ui-mock-map { width: 100%; height: 70px; border-radius: 8px; background: #E2E8F0 url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=600&q=80') center/cover; position: relative; overflow: hidden; border: 1px solid rgba(50,50,93,0.1); }
.ui-mock-map::after { content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(99, 91, 255, 0.4), transparent); animation: scan 2s infinite linear; }
@keyframes scan { 0% { left: -100%; } 100% { left: 100%; } }
.ui-mock-graph { width: 100%; display: flex; align-items: flex-end; gap: 4px; height: 65px; }
.ui-mock-graph div { flex: 1; background: var(--blue); border-radius: 3px 3px 0 0; opacity: 0.85; }

/* ── TESTIMONIALS SECTION ── */
.sec-integration { background: var(--bg-gray); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 16px; }
.testimonial-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(50, 50, 93, 0.03), 0 1px 3px rgba(0,0,0,0.01); border: 1px solid rgba(50,50,93,0.05); display: flex; flex-direction: column; position: relative; }
.testimonial-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.testimonial-card-body { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.testimonial-icon { width: 48px; height: 48px; background: rgba(99,91,255,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.testimonial-icon svg { width: 24px; height: 24px; color: var(--blue); }

/* ★ 修正ポイント：文字サイズ、行間、色を調整し、重要語句をハイライト */
.testimonial-body { font-size: 14.5px; color: var(--muted); line-height: 1.9; flex: 1; position: relative; z-index: 2; font-weight: 500; }
.testimonial-body strong { color: var(--black); font-weight: 800; background: linear-gradient(transparent 60%, rgba(99, 91, 255, 0.15) 60%); padding: 0 2px; }

.testimonial-author { border-top: 1px solid var(--border); padding-top: 20px; margin-top: 24px; }
.testimonial-role { font-size: 12px; color: var(--muted); font-weight: 700; margin-bottom: 4px; }
.testimonial-name { font-size: 16px; font-weight: 800; color: var(--black); letter-spacing: -0.01em; }

/* ── PRICING SECTION ── */
.sec-pricing { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 900px; margin: 0 auto; }
.price-card { background: var(--white); border-radius: 20px; padding: 48px 40px; box-shadow: 0 13px 27px -5px rgba(50,50,93,0.05), 0 8px 16px -8px rgba(0,0,0,0.02); border: 1px solid rgba(50,50,93,0.08); position: relative; transition: all 0.4s ease; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -12px rgba(50,50,93,0.12), 0 18px 36px -18px rgba(0,0,0,0.05); }
.price-card.popular { border: 2px solid var(--blue); }
.popular-badge { position: absolute; top: -14px; left: 40px; background: var(--blue); color: var(--white); font-size: 12px; font-weight: 800; padding: 4px 14px; border-radius: 980px; letter-spacing: 0.04em; }
.price-name { font-size: 26px; font-weight: 900; margin-bottom: 12px; color: var(--black); letter-spacing: -0.03em; }
.price-desc { font-size: 15px; color: var(--muted); margin-bottom: 32px; line-height: 1.6; min-height: 48px; font-weight: 500; }
.price-amount-wrap { margin-bottom: 24px; }
.price-amount-flex { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.price-old { font-size: 20px; font-weight: 800; color: #86868B; text-decoration: line-through; text-decoration-thickness: 3px; text-decoration-color: #FF4A4A; }
.price-arrow { width: 20px; height: 20px; color: var(--muted); }
.price-new { font-size: 46px; font-weight: 900; color: var(--black); line-height: 1; letter-spacing: -0.04em; }
.price-new span { font-size: 16px; font-weight: 700; color: var(--muted); letter-spacing: 0; margin-left: 2px; }
.price-free-badge { display: inline-flex; align-items: center; background: linear-gradient(135deg, #FF4A4A 0%, #D80000 100%); color: var(--white); padding: 6px 14px; border-radius: 6px; font-size: 14px; font-weight: 800; box-shadow: 0 4px 12px rgba(255, 74, 74, 0.3); letter-spacing: 0.05em; margin-bottom: 8px;}
.price-amount { font-size: 48px; font-weight: 900; color: var(--black); line-height: 1; margin-bottom: 24px; letter-spacing: -0.04em; }
.price-amount span { font-size: 16px; color: var(--muted); font-weight: 700; }
.price-init { font-size: 14px; color: var(--muted); font-weight: 700; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid rgba(50,50,93,0.08); }
.price-list { list-style: none; }
.price-list li { font-size: 15px; color: var(--black); font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.price-list svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }
.campaign-box { margin-top: 32px; background: rgba(99, 91, 255, 0.05); border: 1px solid rgba(99, 91, 255, 0.15); border-radius: 12px; padding: 20px; }
.campaign-title { font-size: 14px; font-weight: 800; color: var(--blue); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.campaign-desc { font-size: 13px; color: var(--black); line-height: 1.6; font-weight: 500; }

/* ── CONTACT SECTION ── */
.biz-contact-section { background: #0A2540; padding: 160px 24px; position: relative; overflow: hidden; }
.biz-contact-section::before { content: ""; position: absolute; bottom: -20%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(99, 91, 255, 0.2) 0%, transparent 60%); filter: blur(60px); z-index: 0; }
.biz-contact-in { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.biz-contact-label { font-size: 13px; font-weight: 800; letter-spacing: .15em; color: var(--accent); margin-bottom: 16px; display: block; text-align: center; }
.biz-contact-title { font-size: clamp(32px, 4.5vw, 44px); font-weight: 900; color: var(--white); line-height: 1.3; letter-spacing: -.03em; margin-bottom: 16px; text-align: center; }
.biz-contact-sub { font-size: 16px; color: #adbdcc; line-height: 1.65; margin-bottom: 56px; text-align: center; font-weight: 500; }
.biz-contact-box { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 48px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 30px 60px rgba(0,0,0,0.2); }
.biz-form-group { margin-bottom: 24px; }
.biz-form-label { display: block; font-size: 14px; font-weight: 700; color: rgba(255, 255, 255, 0.95); margin-bottom: 8px; }
.biz-form-label span.req { background: rgba(99, 91, 255, 0.3); color: #E6EBFC; font-size: 11px; padding: 2px 8px; border-radius: 4px; margin-left: 8px; font-weight: 800; }
.biz-form-label span.opt { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.6); font-size: 11px; padding: 2px 8px; border-radius: 4px; margin-left: 8px; font-weight: 700; }
.biz-plan-campaign { font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 8px; letter-spacing: 0.01em; background: rgba(0,212,178,0.08); border: 1px solid rgba(0,212,178,0.25); border-radius: 8px; padding: 8px 16px; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.biz-plan-campaign s { color: rgba(255,255,255,0.35); font-weight: 400; text-decoration-color: rgba(255,255,255,0.5); }
.biz-form-control { width: 100%; padding: 14px 16px; font-size: 15px; background: rgba(255,255,255,0.06) !important; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; color: #ffffff !important; transition: all 0.25s ease; font-family: inherit; -webkit-text-fill-color: #ffffff !important; }
.biz-form-control::placeholder { color: rgba(255,255,255,0.3) !important; -webkit-text-fill-color: rgba(255,255,255,0.3) !important; }
.biz-form-control:-webkit-autofill,
.biz-form-control:-webkit-autofill:hover,
.biz-form-control:-webkit-autofill:focus,
.biz-form-control:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #0d2847 inset !important;
    box-shadow: 0 0 0px 1000px #0d2847 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.15) !important;
    transition: background-color 5000s ease-in-out 0s !important;
}
.biz-form-control:focus { outline: none; background: rgba(255,255,255,0.1) !important; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(99,91,255,0.3); -webkit-text-fill-color: #ffffff !important; }
textarea.biz-form-control { min-height: 120px; resize: vertical; }
select.biz-form-control { appearance: none; cursor: pointer; }
select.biz-form-control option { background: #0A2540; color: #fff; }
.biz-form-submit { width: 100%; background: var(--blue); color: var(--white); border: none; border-radius: 8px; padding: 16px; font-size: 16px; font-weight: 800; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3); margin-top: 12px; font-family: inherit; }
.biz-form-submit:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(99, 91, 255, 0.4); }
.biz-form-note { font-size: 13px; color: rgba(255, 255, 255, 0.4); margin-top: 16px; text-align: center; }
.biz-form-note a { color: rgba(255, 255, 255, 0.6); text-decoration: underline; }
.biz-form-error { background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.4); border-radius: 8px; padding: 14px 16px; font-size: 14px; color: #FCA5A5; margin-bottom: 24px; font-weight: 600; }
.biz-form-success { text-align: center; padding: 32px 0; }
.biz-form-success-icon { width: 56px; height: 56px; background: rgba(0, 212, 178, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.biz-form-success-icon svg { width: 24px; height: 24px; color: var(--accent); }
.biz-form-success-title { font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.biz-form-success-body { font-size: 15px; color: #adbdcc; line-height: 1.7; }

/* ── FAQ SECTION ── */
.sec-faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(50,50,93,0.08); padding: 32px 0; }
.faq-item:first-child { border-top: 1px solid rgba(50,50,93,0.08); }
.faq-q { display: flex; align-items: flex-start; gap: 16px; cursor: pointer; }
.faq-q-icon { width: 28px; height: 28px; min-width: 28px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 900; margin-top: 2px; }
.faq-q-text { font-size: 17px; font-weight: 700; color: var(--black); line-height: 1.5; flex: 1; }
.faq-a { display: flex; align-items: flex-start; gap: 16px; margin-top: 16px; padding-left: 0; }
.faq-a-icon { width: 28px; height: 28px; min-width: 28px; background: rgba(99,91,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 13px; font-weight: 900; margin-top: 2px; }
.faq-a-text { font-size: 15px; color: var(--muted); line-height: 1.8; font-weight: 500; flex: 1; }

/* ── FOOTER ── */
.sim-ft { background: #0A2540; padding: 80px 0 40px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.sim-ft-in { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sim-ft-simple { margin-bottom: 48px; text-align: center; }
.sim-ft-logo { font-size: 22px; font-weight: 900; color: var(--white); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; letter-spacing: -0.02em; }
.sim-ft-logo span.dot { color: var(--blue); }
.sim-ft-logo span.kana { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 600; }
.sim-ft-desc { font-size: 15px; line-height: 1.7; color: #adbdcc; max-width: 600px; font-weight: 500; margin-left: auto; margin-right: auto; text-align: center; }
.sim-ft-powered-wrap { margin-bottom: 32px; }
.sim-ft-powered { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 600; }
.sim-ft-powered a { color: rgba(255,255,255,0.7); }
.sim-ft-powered a:hover { color: var(--white); }
.sim-ft-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.sim-ft-copy { font-size: 13px; color: rgba(255, 255, 255, 0.4); font-weight: 500; }
.sim-ft-legal a { color: rgba(255, 255, 255, 0.5); font-size: 13px; margin-left: 24px; font-weight: 600; }
.sim-ft-legal a:hover { color: var(--white); }

/* ── RESPONSIVE COMPATIBILITY ── */
@media (max-width: 1024px) {
    .b2b-hero-in { flex-direction: column; text-align: center; gap: 56px; }
    .b2b-hero-content { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    .b2b-microcopy { justify-content: center; }
    .b2b-hero-visual { max-width: 540px; margin: 0 auto; }
    .mac-window { transform: none !important; }
    .steps-grid, .testimonial-grid { grid-template-columns: 1fr; gap: 24px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
    .sec-feature-in { flex-direction: column; gap: 48px; }
    .feature-visual { min-height: 420px; width: 100%; }
    .feature-img-wrap-bottom { height: 400px; }
    .feature-img-wrap-top { width: 46%; bottom: -16px; }
}
@media (max-width: 768px) {
    .pc-br { display: none; } .sp-br { display: block; } .sim-hd-cta { display: none; }
    .section { padding: 100px 24px; }
    .mac-body-anim { height: 380px; }
    .anim-search-box { margin-top: 140px; }
    .biz-contact-box { padding: 32px 20px; }
    .sim-ft-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .sim-ft-legal a { margin: 0 10px; }
}
    /* ── フッター完全上書き（他LUMIQページと統一） ── */
    .sim-ft{background:#0A1930!important;padding:80px 0 40px!important;border-top:none!important;}
    .sim-ft-in{max-width:1200px!important;margin:0 auto!important;padding:0 40px!important;}
    .sim-ft-simple{text-align:center!important;margin-bottom:60px!important;}
    .sim-ft-logo{font-size:28px!important;font-weight:900!important;color:#fff!important;margin-bottom:24px!important;letter-spacing:-.02em!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:12px!important;}
    .sim-ft-logo span.dot{color:#3B82F6!important;}
    .sim-ft-logo span.kana{font-size:14px!important;font-weight:700!important;letter-spacing:0.15em!important;color:rgba(255,255,255,0.4)!important;font-family:'Inter',sans-serif!important;transform:translateY(2px)!important;}
    .sim-ft-desc{font-size:14px!important;line-height:2.2!important;color:rgba(255,255,255,0.5)!important;font-weight:400!important;text-align:center!important;}
    .sim-ft-desc strong{color:#fff!important;font-weight:700!important;}
    .sim-ft-bottom{border-top:1px solid rgba(255,255,255,0.1)!important;padding-top:32px!important;display:flex!important;justify-content:space-between!important;align-items:center!important;flex-wrap:wrap!important;gap:16px!important;}
    .sim-ft-copy{font-size:12px!important;color:rgba(255,255,255,0.3)!important;letter-spacing:.06em!important;}
    .sim-ft-legal a{color:rgba(255,255,255,0.5)!important;text-decoration:none!important;font-size:12px!important;margin-left:28px!important;transition:.2s!important;}
    .sim-ft-legal a:hover{color:#fff!important;}
    @media(max-width:768px){
        .sim-ft-bottom{flex-direction:column!important;text-align:center!important;}
        .sim-ft-legal a{margin:0 12px!important;}
    }
/* ── モバイル対応追加（SP強化） ── */
@media (max-width: 768px) {
    /* ヒーロー */
    .b2b-hero { padding: 100px 20px 60px; background: url('/lumiq/img/input_01.jpg') center center / cover no-repeat; min-height: 80vh; }
    .b2b-hero::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.82); z-index: 0; }
    .b2b-hero-in { position: relative; z-index: 1; flex-direction: column; align-items: center; text-align: center; }
    .b2b-hero-content { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
    .b2b-hero-visual { display: none; }
    .b2b-hero-bg { display: none; }
    .b2b-title { font-size: clamp(28px, 7.5vw, 38px); margin-bottom: 24px; line-height: 1.4; }
    .b2b-sub { font-size: 15px; margin-bottom: 28px; }
    .b2b-microcopy { font-size: 12px; flex-wrap: wrap; justify-content: center; }
    .b2b-cta { padding: 14px 28px; font-size: 15px; width: 100%; text-align: center; }

    /* セクション共通 */
    .section { padding: 80px 20px; }
    .sec-title { font-size: clamp(24px, 6vw, 32px); margin-bottom: 12px; }
    .sec-sub { font-size: 15px; margin-bottom: 48px; }

    /* アニメウィンドウ */
    .mac-window { border-radius: 12px; }
    .mac-body-anim { height: 320px; }
    .anim-search-box { margin-top: 100px; width: 95%; }
    .result-val { font-size: 28px; }
    .result-header { font-size: 16px; }

    /* 特徴セクション */
    .sec-feature { padding: 80px 20px; }
    .feature-visual { min-height: 300px; }
    .feature-img-wrap-bottom { height: 300px; }

    /* 料金 */
    .pricing-grid { gap: 20px; }
    .pricing-card { padding: 28px 20px; }

    /* お客様の声 */
    .testimonial-card { padding: 24px 20px; }
    .testimonial-grid { gap: 20px; }

    /* FAQ */
    .faq-q { font-size: 14px; }
    .faq-a { font-size: 14px; }

    /* お問い合わせ */
    .biz-contact-box { padding: 32px 20px; }
    .biz-form-control { font-size: 16px; } /* iOSズーム防止 */
}

@media (max-width: 480px) {
    .b2b-title { font-size: clamp(24px, 7vw, 30px); }
    .b2b-hero { padding: 80px 16px 48px; }
    .section { padding: 64px 16px; }
    .sec-feature { padding: 64px 16px; }
}