/* ==========================================================================
   RAWCLUTCH サービス詳細LP用 統一デザインシステム (service-lp.css)
   本物の集客特化LPの迫力とグラフィック感を完全再現するプロ仕様スタイル
   ========================================================================== */

:root {
    --lp-dark-bg: #070d1d;
    --lp-dark-card: #0c1730;
    --lp-dark-surface: #102044;
    --lp-orange: #ff5700;
    --lp-orange-grad: linear-gradient(135deg, #ff7a00 0%, #ff4500 100%);
    --lp-orange-hover: #e03e00;
    --lp-yellow: #ffc107;
    --lp-blue-accent: #38bdf8;
    --lp-text-main: #0f172a;
    --lp-text-muted: #64748b;
    --lp-text-light: #94a3b8;
    --lp-bg-light: #f8fafc;
    --lp-bg-white: #ffffff;
    --lp-border-light: #e2e8f0;
    --lp-border-dark: rgba(255, 255, 255, 0.12);
    --lp-radius: 14px;
    --lp-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --lp-shadow-md: 0 12px 30px rgba(0, 0, 0, 0.1);
    --lp-shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* 基本リセット & タイポグラフィ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--lp-bg-light);
    color: var(--lp-text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* 蛍光ハイライトマーカー */
.marker-yellow {
    background: linear-gradient(transparent 65%, rgba(255, 193, 7, 0.85) 65%);
    color: #ffffff;
    padding: 0 0.2rem;
}

.marker-orange {
    background: linear-gradient(transparent 65%, rgba(255, 87, 0, 0.85) 65%);
    color: #ffffff;
    padding: 0 0.2rem;
}

/* ==========================================================================
   コンポーネント: ヘッダー
   ========================================================================== */
.site-header {
    background: rgba(7, 13, 29, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--lp-border-dark);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.9rem 0;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 900;
    font-size: 1.3rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.brand-sub {
    font-size: 0.75rem;
    font-weight: 700;
    color: #38bdf8;
    padding-left: 0.6rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.header-nav a {
    color: #cbd5e1;
    font-size: 0.88rem;
    font-weight: 700;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: #ffffff;
}

.header-cta {
    background: var(--lp-orange-grad);
    color: #ffffff !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 800 !important;
    box-shadow: 0 4px 15px rgba(255, 87, 0, 0.4);
    transition: all 0.2s !important;
}

.header-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(255, 87, 0, 0.6);
}

/* ==========================================================================
   コンポーネント: ファーストビュー (HERO - 本格LP仕様)
   ========================================================================== */
.hero {
    background: linear-gradient(180deg, #070d1d 0%, #0c1730 100%);
    color: #ffffff;
    padding: 4.5rem 0 5.5rem 0;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
}

.hero::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 65%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow {
    font-size: 0.9rem;
    font-weight: 800;
    color: #38bdf8;
    margin-bottom: 0.8rem;
    display: inline-block;
    letter-spacing: 0.04em;
    background: rgba(56, 189, 248, 0.1);
    padding: 0.3rem 0.9rem;
    border-radius: 30px;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero h1 .accent {
    color: #38bdf8;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.hero-lead {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-weight: 500;
}

/* 3つのチェックタグ */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-tag-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-tag-item i {
    color: #38bdf8;
    font-size: 1.05rem;
}

/* ボタン群 (Pulse アニメーション付き) */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2.4rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--lp-orange-grad);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(255, 87, 0, 0.4);
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 87, 0, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 87, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 0, 0);
    }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 87, 0, 0.5);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

/* 右側: 縦長すぎないプロ仕様のMacBook / スマホデュアルモックアップ */
.hero-mockup-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero-badge-circle {
    position: absolute;
    top: -15px;
    right: -10px;
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, #ffc107 0%, #f59e0b 100%);
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.82rem;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.5);
    z-index: 10;
    transform: rotate(10deg);
    border: 2px solid #ffffff;
}

.hero-mockup-card {
    background: #0f172a;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: -15px 20px 45px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(56, 189, 248, 0.2);
    position: relative;
    max-height: 380px; /* 縦長化を防止！横長で美しく収める */
    transform: rotateY(-6deg) rotateX(3deg);
    transition: transform 0.4s ease;
}

.hero-mockup-card:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.macbook-header-bar {
    height: 26px;
    background: #1e293b;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.hero-mockup-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top center;
}

/* ==========================================================================
   コンポーネント: ロゴ帯 (TRUST STRIP)
   ========================================================================== */
.trust-strip {
    background: #ffffff;
    border-bottom: 1px solid var(--lp-border-light);
    padding: 1.8rem 0;
    text-align: center;
}

.trust-title {
    font-size: 0.85rem;
    color: var(--lp-text-muted);
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: 0.05em;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.trust-logo-item {
    font-weight: 800;
    font-size: 1.15rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s;
}

.trust-logo-item:hover {
    opacity: 1;
    color: #0f172a;
}

/* ==========================================================================
   共通セクション構造
   ========================================================================== */
.section {
    padding: 5.5rem 0;
}

.section.dark {
    background: var(--lp-dark-bg);
    color: #ffffff;
}

.section.white {
    background: #ffffff;
}

.section-head {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3.8rem auto;
}

.section-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--lp-text-muted);
    font-weight: 500;
}

.section.dark .section-intro {
    color: #94a3b8;
}

/* ==========================================================================
   コンポーネント: お悩み解決 (PROBLEM)
   ========================================================================== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.5rem;
}

.problem-card {
    background: #ffffff;
    border: 1px solid var(--lp-border-light);
    border-radius: var(--lp-radius);
    padding: 2rem 1.4rem;
    text-align: center;
    box-shadow: var(--lp-shadow-sm);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--lp-shadow-md);
    border-color: #cbd5e1;
}

.problem-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.2rem auto;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.problem-card h3 {
    font-size: 0.98rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: var(--lp-text-main);
    line-height: 1.45;
}

.problem-card p {
    font-size: 0.84rem;
    color: var(--lp-text-muted);
    line-height: 1.6;
}

.problem-summary-banner {
    margin-top: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1.5px solid #bfdbfe;
    padding: 1.4rem;
    border-radius: 12px;
    font-weight: 800;
    color: #1e3a8a;
    font-size: 1.15rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

/* ==========================================================================
   コンポーネント: 選ばれる理由 (STRENGTH)
   ========================================================================== */
.strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.strength-card {
    background: #ffffff;
    border-radius: var(--lp-radius);
    padding: 2.2rem 2rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    color: var(--lp-text-main);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.strength-card:hover {
    transform: translateY(-5px);
}

.strength-icon {
    width: 52px;
    height: 52px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.strength-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.strength-card p {
    font-size: 0.9rem;
    color: var(--lp-text-muted);
    line-height: 1.65;
}

/* ==========================================================================
   コンポーネント: 制作内容 / メニュー (DELIVERABLES)
   ========================================================================== */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.8rem;
}

.deliverable-card {
    background: #ffffff;
    border: 1px solid var(--lp-border-light);
    border-radius: var(--lp-radius);
    padding: 1.8rem;
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
    box-shadow: var(--lp-shadow-sm);
    transition: all 0.2s;
}

.deliverable-card:hover {
    border-color: #cbd5e1;
    box-shadow: var(--lp-shadow-md);
}

.deliverable-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.deliverable-info h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.deliverable-info p {
    font-size: 0.88rem;
    color: var(--lp-text-muted);
    line-height: 1.55;
}

/* ==========================================================================
   コンポーネント: 制作の流れ (FLOW)
   ========================================================================== */
.flow-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.2rem;
}

.flow-step {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.8rem 1rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.flow-num {
    width: 40px;
    height: 40px;
    background: var(--lp-dark-bg);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
    margin: 0 auto 1rem auto;
    border: 2px solid #38bdf8;
}

.flow-step h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.flow-step p {
    font-size: 0.8rem;
    color: var(--lp-text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   コンポーネント: 料金プラン (PRICE)
   ========================================================================== */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.2rem;
    align-items: stretch;
}

.price-card {
    background: #ffffff;
    border: 1px solid var(--lp-border-light);
    border-radius: 20px;
    padding: 3rem 2.2rem 2.5rem 2.2rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--lp-shadow-sm);
}

.price-card.recommend {
    border: 3px solid var(--lp-orange);
    box-shadow: 0 20px 45px rgba(255, 87, 0, 0.2);
}

.recommend-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-orange-grad);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 900;
    padding: 0.35rem 1.6rem;
    border-radius: 30px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(255, 87, 0, 0.4);
}

.price-card h3 {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
}

.price-val {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--lp-text-main);
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
}

.price-val span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--lp-text-muted);
}

.price-features {
    list-style: none;
    text-align: left;
    margin: 1.8rem 0 2.2rem 0;
}

.price-features li {
    font-size: 0.92rem;
    padding: 0.6rem 0;
    border-bottom: 1px stroke var(--lp-border-light);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--lp-text-main);
    font-weight: 500;
}

.price-features li i {
    color: #10b981;
    font-size: 1.1rem;
}

/* ==========================================================================
   コンポーネント: 制作事例 / 成果事例 (CASE STUDY)
   ========================================================================== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.case-card {
    background: #ffffff;
    border-radius: var(--lp-radius);
    overflow: hidden;
    color: var(--lp-text-main);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #0f172a;
}

.case-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.case-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--lp-dark-bg);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.case-info {
    padding: 1.8rem;
}

.case-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.case-info p {
    font-size: 0.88rem;
    color: var(--lp-text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.case-result-badge {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
    padding: 0.7rem 1.1rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.case-result-badge strong {
    font-size: 1.15rem;
    color: #059669;
}

/* ==========================================================================
   コンポーネント: 比較テーブル (COMPARISON TABLE)
   ========================================================================== */
.comp-table-wrap {
    overflow-x: auto;
    background: #ffffff;
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border-light);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 0.9rem;
    color: var(--lp-text-main);
}

.comp-table th, .comp-table td {
    padding: 1.3rem 1.1rem;
    border-bottom: 1px solid var(--lp-border-light);
    border-right: 1px solid var(--lp-border-light);
}

.comp-table th {
    background: #f8fafc;
    font-weight: 800;
}

.comp-table .rawclutch-col {
    background: #eff6ff;
    font-weight: 900;
    color: #1d4ed8;
}

/* ==========================================================================
   コンポーネント: よくあるご質問 (FAQ)
   ========================================================================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 1.4rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--lp-border-light);
    border-radius: 10px;
    padding: 1.4rem 1.6rem;
    box-shadow: var(--lp-shadow-sm);
}

.faq-item h4 {
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    line-height: 1.5;
}

.faq-answer {
    margin-top: 0.9rem;
    font-size: 0.88rem;
    color: var(--lp-text-muted);
    line-height: 1.65;
}

/* ==========================================================================
   コンポーネント: ボトムCTA & お問合せフォーム (BOTTOM CTA)
   ========================================================================== */
.bottom-cta-section {
    background: linear-gradient(180deg, #070d1d 0%, #040710 100%);
    color: #ffffff;
    padding: 5.5rem 0;
}

.bottom-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.bottom-cta-left h2 {
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1.4rem;
}

.bottom-cta-checklist {
    list-style: none;
    margin: 2rem 0 2.5rem 0;
}

.bottom-cta-checklist li {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #f1f5f9;
}

.bottom-cta-checklist li i {
    color: #10b981;
    font-size: 1.2rem;
}

.bottom-cta-form-card {
    background: #ffffff;
    color: var(--lp-text-main);
    border-radius: 20px;
    padding: 2.8rem 2.2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1px solid var(--lp-border-light);
    border-radius: 8px;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--lp-orange);
    box-shadow: 0 0 0 3px rgba(255, 87, 0, 0.15);
}

textarea.form-control {
    height: 110px;
    resize: vertical;
}

.btn-form-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--lp-orange-grad);
    color: #ffffff;
    font-weight: 900;
    font-size: 1.15rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 87, 0, 0.4);
    transition: all 0.25s;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 87, 0, 0.5);
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .hero-grid, .bottom-cta-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .flow-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .header-nav a:not(.header-cta) {
        display: none;
    }

    .flow-container {
        grid-template-columns: 1fr;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SHINJIDAI (shinjidai.co.jp) & キクバリDX (kikubari-dx.com) 
   完全デザイン移植・最先端サイバーDXテーマ
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;600;800;900&display=swap');

/* テーマコンテナ */
.shinjidai-system-theme {
    background-color: #040711;
    color: #f1f5f9;
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    overflow-x: hidden;
}

/* SHINJIDAIスタイル 英字アイブロウラベル (01 — LOGISTICS SOLUTION 等) */
.sj-eyebrow {
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: #00f0ff;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.sj-eyebrow::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 2px;
    background: #00f0ff;
    box-shadow: 0 0 8px #00f0ff;
}

/* SHINJIDAIヘッドライン */
.sj-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.sj-headline-cyan {
    color: #00f0ff;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.sj-headline-orange {
    color: #ff5500;
    text-shadow: 0 0 20px rgba(255, 85, 0, 0.5);
}

/* SHINJIDAIサイバーカード (.sj-card) */
.sj-card {
    background: linear-gradient(145deg, rgba(13, 22, 45, 0.85) 0%, rgba(7, 13, 27, 0.95) 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    padding: 2.2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    position: relative;
    backdrop-filter: blur(12px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sj-card:hover {
    border-color: rgba(0, 240, 255, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 240, 255, 0.15), 0 0 25px rgba(0, 240, 255, 0.1);
}

.sj-card-orange {
    border-color: rgba(255, 85, 0, 0.3);
}

.sj-card-orange:hover {
    border-color: rgba(255, 85, 0, 0.7);
    box-shadow: 0 20px 45px rgba(255, 85, 0, 0.2);
}

/* SHINJIDAIタグ & バッジ */
.sj-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00f0ff;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
}

.sj-tag-orange {
    background: rgba(255, 85, 0, 0.15);
    border-color: rgba(255, 85, 0, 0.4);
    color: #ffaa00;
}

/* ボタン */
.sj-btn-primary {
    background: linear-gradient(135deg, #ff5500 0%, #ff7700 100%);
    color: #ffffff !important;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.4), 0 0 20px rgba(255, 85, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.sj-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 85, 0, 0.6);
}

.sj-btn-cyan {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.4);
    color: #00f0ff !important;
    font-weight: 800;
    padding: 1rem 2.4rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.sj-btn-cyan:hover {
    background: rgba(0, 240, 255, 0.2);
    border-color: #00f0ff;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.3);
}

/* 軽貨物配送特化 WK-001 スタイルコンポーネント */
.wk-001-panel {
    background: linear-gradient(160deg, #09132b 0%, #050a18 100%);
    border: 2px solid rgba(0, 240, 255, 0.35);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 240, 255, 0.15);
}

.wk-header-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.wk-id-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #00f0ff;
    letter-spacing: 0.1em;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.4);
    padding: 0.2rem 0.8rem;
    border-radius: 6px;
}

.wk-cat-tag {
    background: #ff5500;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
}

.wk-grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.wk-feat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.6rem;
    transition: all 0.3s ease;
}

.wk-feat-item:hover {
    background: rgba(0, 240, 255, 0.06);
    border-color: rgba(0, 240, 255, 0.5);
    transform: translateY(-3px);
}

.wk-feat-icon {
    width: 46px;
    height: 46px;
    background: rgba(0, 240, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f0ff;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.wk-feat-item h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.wk-feat-item p {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.65;
}

/* キクバリDX風 現場密着ビフォーアフター対比 */
.kikubari-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    margin-top: 3rem;
}

.kikubari-before {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 16px;
    padding: 2rem;
}

.kikubari-after {
    background: rgba(16, 185, 129, 0.08);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.15);
}

@media (max-width: 992px) {
    .kikubari-compare-grid {
        grid-template-columns: 1fr;
    }
}

/* 内製化支援 & 業務自動化 特化スタイル */
.dx-hero-tagline {
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #ff5500;
    letter-spacing: 0.12em;
    background: rgba(255, 85, 0, 0.12);
    border: 1px solid rgba(255, 85, 0, 0.4);
    padding: 0.4rem 1.1rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.in-house-card {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08) 0%, rgba(13, 22, 45, 0.9) 100%);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    padding: 2.4rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    margin-top: 2rem;
}

.in-house-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.in-house-card h3 i {
    color: #00f0ff;
}

.stat-metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.stat-metric-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
}

.stat-metric-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: #00f0ff;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-metric-label {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 700;
}



.hero-system-subtag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 87, 0, 0.15) 0%, rgba(255, 193, 7, 0.15) 100%);
    border: 1px solid rgba(255, 87, 0, 0.4);
    color: #ffaa00;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* 軽貨物配送システム 特集セクション */
.logistics-solution-section {
    background: #0f172a;
    color: #ffffff;
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}

.logistics-solution-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.logistics-card-main {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid rgba(56, 189, 248, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    margin-top: 2rem;
}

.logistics-badge-pill {
    display: inline-block;
    background: #0284c7;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.logistics-card-title {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 1rem;
    color: #ffffff;
}

.logistics-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.logistics-feat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.logistics-feat-box:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: #38bdf8;
    transform: translateY(-3px);
}

.logistics-feat-icon {
    width: 44px;
    height: 44px;
    background: rgba(56, 189, 248, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.logistics-feat-box h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.logistics-feat-box p {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* キクバリDX風 現場業務自動化グリッド */
.kikubari-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.kikubari-card {
    background: #ffffff;
    border: 1px solid var(--lp-border-light);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.kikubari-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--lp-orange);
}

.kikubari-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.kikubari-card h3 i {
    color: var(--lp-orange);
}

.kikubari-card p {
    font-size: 0.88rem;
    color: var(--lp-text-muted);
    line-height: 1.65;
}

/* SaaSサブスク月額 vs 自社専用買い切り対比カード */
.custom-vs-saas-banner {
    background: linear-gradient(135deg, #070d1d 0%, #1e293b 100%);
    border: 2px solid var(--lp-orange);
    border-radius: 20px;
    padding: 3rem 2rem;
    color: #ffffff;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.custom-vs-saas-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffffff;
}

.custom-benefits-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.custom-benefit-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.4rem;
}

.custom-benefit-item h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #ffaa00;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.custom-benefit-item p {
    font-size: 0.84rem;
    color: #cbd5e1;
    line-height: 1.55;
}

