:root {
    /* カラーパレット */
    --primary-color: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8C61;
    --secondary-color: #0066CC;
    --secondary-dark: #0052A3;
    --secondary-light: #3385D6;
    --accent-color: #FFD700;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    
    /* グレースケール */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #757575;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #e9ecef;
    --border-color: #dee2e6;
    
    /* グラデーション */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
    --gradient-secondary: linear-gradient(135deg, #0066CC 0%, #3385D6 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
    
    /* シャドウ */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
    
    /* フォント */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-accent: 'Poppins', sans-serif;
    
    /* トランジション */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.footer-links a {
    color: #fbbf24;
    /* 黄色系で視認性向上 */
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* スクロールプログレスバー */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 32px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-color);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.header-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

/* ファーストビュー */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -80px;
    left: -80px;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    top: 50%;
    left: 10%;
}

/* メインキャッチコピー（新規追加） */
.main-catchcopy {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.main-catchcopy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 102, 204, 0.05) 100%);
    z-index: -1;
}

.catchcopy-subtitle {
    display: inline-block;
    padding: 10px 25px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 25px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(255, 107, 53, 0);
    }
}

.catchcopy-main {
    margin: 40px 0;
}

.catchcopy-line1,
.catchcopy-line2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.4;
    color: var(--text-primary);
    margin: 20px 0;
}

.highlight-text {
    position: relative;
    color: var(--primary-color);
    font-size: 56px;
    display: inline-block;
    padding: 0 10px;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(transparent 60%, rgba(255, 107, 53, 0.3) 40%);
    z-index: -1;
    animation: highlight 1.5s ease-in-out infinite;
}

@keyframes highlight {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.catchcopy-transform {
    margin: 50px 0;
}

.transform-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.transform-icon {
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 80px;
}

.excel-icon {
    color: #217346;
    animation: float 3s ease-in-out infinite;
}

.arrow-container {
    position: relative;
    display: flex;
    align-items: center;
}

.arrow-icon {
    color: var(--primary-color);
    animation: slide 2s ease-in-out infinite;
}

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

@keyframes slide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.sparkles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sparkle {
    position: absolute;
    font-size: 20px;
    color: var(--accent-color);
    animation: sparkle 1.5s ease-in-out infinite;
}

.sparkle-1 {
    top: -30px;
    left: -10px;
    animation-delay: 0s;
}

.sparkle-2 {
    top: -20px;
    left: 20px;
    animation-delay: 0.3s;
}

.sparkle-3 {
    top: 10px;
    left: 10px;
    animation-delay: 0.6s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

.system-icon {
    color: var(--secondary-color);
    animation: float 3s ease-in-out infinite 0.5s;
}

.highlight-system {
    position: relative;
    color: var(--secondary-color);
    font-size: 56px;
    display: inline-block;
    padding: 5px 20px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(51, 133, 214, 0.1) 100%);
    border-radius: 15px;
    border: 3px solid var(--secondary-color);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 102, 204, 0.6);
    }
}

.catchcopy-price {
    margin: 40px 0;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    font-size: 28px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    animation: bounce 2s ease-in-out infinite;
}

.price-badge i {
    font-size: 36px;
}

.price-number {
    font-size: 48px;
    font-family: var(--font-accent);
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

.catchcopy-description {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 30px;
}

.catchcopy-description i {
    color: var(--success-color);
    font-size: 20px;
}

.separator {
    color: var(--border-color);
    font-weight: 300;
}

/* 既存のヒーローコンテンツ */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--danger-color);
    color: var(--bg-white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-badge i {
    animation: flicker 1.5s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 30px;
}

.title-industry {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.title-main {
    display: block;
    font-size: 48px;
    color: var(--text-primary);
}

.title-price {
    display: block;
    font-size: 56px;
    color: var(--primary-color);
    margin: 15px 0;
}

.highlight {
    color: var(--primary-color);
    font-size: 72px;
    font-family: var(--font-accent);
    position: relative;
    display: inline-block;
}

.title-sub {
    display: block;
    font-size: 42px;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-light);
    border-radius: 25px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.benefit-item i {
    color: var(--success-color);
    font-size: 18px;
}

.hero-note {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 20px 0;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.cta-button i {
    font-size: 20px;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--bg-white);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: var(--bg-white);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.cta-button.secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.phone-number {
    font-size: 24px;
    font-family: var(--font-accent);
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.trust-item i {
    color: var(--secondary-color);
    font-size: 20px;
}

/* セクション共通スタイル */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-secondary);
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.section-subtitle .highlight {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

/* 依頼の流れセクション */
.flow-section {
    background: var(--bg-light);
}

.flow-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.flow-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.flow-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.flow-card.your-part {
    border: 3px solid var(--primary-color);
}

.flow-card.our-part {
    border: 3px solid var(--secondary-color);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    font-size: 28px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.flow-card.our-part .card-icon {
    background: var(--gradient-secondary);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.card-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.card-list {
    margin-bottom: 25px;
}

.card-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.card-list i {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 12px;
    margin-top: 3px;
}

.flow-card.our-part .card-list i {
    background: var(--secondary-light);
}

.card-list strong {
    display: block;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.card-list span {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 10px;
    margin-right: 10px;
}

.card-badge i {
    color: var(--success-color);
}

.card-badge.highlight {
    background: var(--gradient-primary);
    color: var(--bg-white);
}

.card-badge.highlight i {
    color: var(--bg-white);
}

.flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-color);
}

.flow-arrow i {
    font-size: 48px;
    animation: bounce-horizontal 2s ease-in-out infinite;
}

@keyframes bounce-horizontal {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.arrow-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-secondary);
    background: var(--bg-white);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

/* Before/After比較表 */
.comparison-section {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.comparison-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.comparison-title i {
    color: var(--primary-color);
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--border-color);
    border-radius: 15px;
    overflow: hidden;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.comparison-header {
    background: var(--bg-white);
}

.comparison-col {
    padding: 20px;
    background: var(--bg-white);
}

.comparison-header .comparison-col {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.comparison-col.before {
    color: var(--danger-color);
}

.comparison-col.after {
    color: var(--success-color);
}

.comparison-col.before i,
.comparison-col.after i {
    margin-right: 8px;
}

.comparison-row .comparison-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comparison-row .small {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

/* お悩みセクション */
.problems-section {
    background: var(--bg-white);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition-normal);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.problem-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.5;
}

.problems-solution {
    text-align: center;
    padding: 40px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.solution-text {
    font-size: 36px;
    font-weight: 900;
}

/* なぜ0円？セクション */
.reason-section {
    background: var(--bg-light);
}

.reason-content {
    max-width: 900px;
    margin: 0 auto;
}

.reason-box {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.reason-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.reason-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.reason-text.small {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
}

.reason-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid var(--warning-color);
    border-radius: 15px;
    margin: 30px 0;
}

.reason-warning i {
    color: var(--warning-color);
    font-size: 24px;
}

.reason-warning strong {
    color: var(--text-primary);
    font-size: 18px;
}

.reason-benefits {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.benefits-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefits-list li {
    display: flex;
    align-items: start;
    gap: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.benefits-list i {
    flex-shrink: 0;
    color: var(--success-color);
    font-size: 20px;
    margin-top: 2px;
}

/* 3つのオファーセクション */
.features-section {
    background: var(--bg-white);
}

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

.feature-card {
    position: relative;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition-normal);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    font-family: var(--font-accent);
    color: rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

.feature-list {
    margin-bottom: 25px;
}

.feature-list li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.feature-list i {
    flex-shrink: 0;
    color: var(--success-color);
    font-size: 16px;
    margin-top: 3px;
}

.feature-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
    margin-top: 10px;
}

/* IT補助金セクション */
.subsidy-section {
    background: linear-gradient(135deg, #0066CC 0%, #3385D6 100%);
    color: var(--bg-white);
}

.subsidy-section .section-badge {
    background: var(--bg-white);
    color: var(--secondary-color);
}

.subsidy-section .section-title {
    color: var(--bg-white);
}

.subsidy-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.subsidy-section .section-subtitle strong {
    color: var(--bg-white);
    font-weight: 700;
}

.subsidy-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.subsidy-list li {
    display: flex;
    align-items: start;
    gap: 15px;
    font-size: 18px;
    line-height: 1.6;
}

.subsidy-list i {
    flex-shrink: 0;
    color: var(--accent-color);
    font-size: 24px;
    margin-top: 2px;
}

.subsidy-highlight {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 40px 0;
}

.subsidy-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.subsidy-card {
    background: var(--bg-white);
    color: var(--text-primary);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.subsidy-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.subsidy-amount {
    font-size: 48px;
    font-weight: 900;
    font-family: var(--font-accent);
    color: var(--primary-color);
}

.amount-number,
.amount-fraction {
    font-size: 64px;
    color: var(--primary-color);
}

.subsidy-note {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* 3ステップセクション */
.steps-section {
    background: var(--bg-light);
}

.steps-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-normal);
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-radius: 20px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.step-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.step-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

.step-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.step-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.step-list i {
    color: var(--success-color);
    font-size: 16px;
}

.step-note {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    color: var(--primary-color);
}

.step-arrow i {
    font-size: 36px;
    animation: bounce-vertical 2s ease-in-out infinite;
}

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

.steps-footer {
    text-align: center;
    margin-top: 40px;
}

.steps-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    background: var(--bg-white);
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.steps-note i {
    color: var(--secondary-color);
    font-size: 24px;
}

/* 業種別システム例セクション */
.industries-section {
    background: var(--bg-white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.industry-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--bg-white);
}

.industry-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.industry-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.industry-list {
    text-align: left;
}

.industry-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
}

.industry-list i {
    color: var(--success-color);
    font-size: 16px;
}

.industries-note {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 18px;
    color: var(--text-secondary);
}

.industries-note strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* FAQセクション */
.faq-section {
    background: var(--bg-light);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-q {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 50%;
}

.faq-text {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 16px;
    transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-a {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 50%;
}

.faq-content {
    display: flex;
    gap: 15px;
    padding: 0 30px 25px 30px;
}

.faq-content > div {
    flex: 1;
}

.faq-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

.faq-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* お問い合わせセクション */
.contact-section {
    background: var(--bg-white);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-direct {
    margin-bottom: 60px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: var(--transition-normal);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.method-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--bg-white);
    font-size: 28px;
    border-radius: 50%;
}

.method-content {
    flex: 1;
}

.method-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.method-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.method-value.phone {
    color: var(--primary-color);
}

.method-value.email {
    color: var(--secondary-color);
    font-size: 20px;
}

.method-value:hover {
    opacity: 0.8;
}

.method-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.method-time i {
    color: var(--text-secondary);
}

/* お問い合わせフォーム */
.contact-form-wrapper {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-title i {
    color: var(--primary-color);
}

.form-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.required {
    display: inline-block;
    padding: 2px 8px;
    background: var(--danger-color);
    color: var(--bg-white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    margin-left: 8px;
}

.optional {
    display: inline-block;
    padding: 2px 8px;
    background: var(--text-light);
    color: var(--bg-white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    margin-left: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition-fast);
    background: var(--bg-white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}

.privacy-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 20px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.form-submit i {
    font-size: 20px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 20px;
    border: 3px solid var(--success-color);
}

.form-success.show {
    display: block;
}

.form-success i {
    font-size: 64px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.form-success h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-success p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 最終CTA */
.final-cta {
    margin-top: 80px;
}

.final-cta-content {
    text-align: center;
    padding: 60px 40px;
    background: var(--gradient-hero);
    border-radius: 30px;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.final-cta-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 32px;
    font-weight: 900;
    color: var(--danger-color);
    margin-bottom: 20px;
}

.final-cta-title i {
    font-size: 36px;
    animation: flicker 1.5s infinite;
}

.final-cta-text {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.final-cta-text strong {
    font-size: 20px;
    color: var(--primary-color);
}

.final-cta-buttons {
    margin-bottom: 20px;
}

.cta-button.large {
    font-size: 20px;
    padding: 25px 50px;
}

.final-cta-note {
    font-size: 14px;
    color: var(--text-secondary);
}

/* フッター */
.footer {
    background: var(--text-primary);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 32px;
    color: var(--primary-color);
}

.footer-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-contact-list,
.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-list li,
.footer-links-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-list i {
    color: var(--primary-color);
    width: 20px;
}

.footer-contact-list a,
.footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-contact-list a:hover,
.footer-links-list a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* トップに戻るボタン */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* アニメーション */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.fade-in-up.delay-1 {
    animation-delay: 0.1s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.2s;
}

.fade-in-up.delay-3 {
    animation-delay: 0.3s;
}

.fade-in-up.delay-4 {
    animation-delay: 0.4s;
}

.fade-in-up.delay-5 {
    animation-delay: 0.5s;
}

.fade-in-up.delay-6 {
    animation-delay: 0.6s;
}

.fade-in-up.delay-7 {
    animation-delay: 0.7s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .features-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .subsidy-cards {
        grid-template-columns: 1fr;
    }
    
    .subsidy-list {
        grid-template-columns: 1fr;
    }
    
    .flow-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    /* キャッチコピー */
    .catchcopy-line1,
    .catchcopy-line2 {
        font-size: 28px;
    }
    
    .highlight-text,
    .highlight-system {
        font-size: 32px;
    }
    
    .transform-icon {
        font-size: 48px;
        gap: 20px;
    }
    
    .price-badge {
        font-size: 20px;
        padding: 15px 30px;
    }
    
    .price-number {
        font-size: 32px;
    }
    
    .catchcopy-description {
        font-size: 14px;
        flex-direction: column;
        gap: 10px;
    }
    
    .separator {
        display: none;
    }
    
    /* ヘッダー */
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        transition: var(--transition-normal);
        padding: 20px;
        box-shadow: var(--shadow-md);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-phone {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* タイトル */
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .title-industry {
        font-size: 18px;
    }
    
    .title-main {
        font-size: 32px;
    }
    
    .title-price {
        font-size: 36px;
    }
    
    .highlight {
        font-size: 48px;
    }
    
    .title-sub {
        font-size: 28px;
    }
    
    /* グリッド */
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .step-list {
        grid-template-columns: 1fr;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* ボタン */
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
    }
    
    /* その他 */
    .hero {
        padding: 100px 0 60px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .final-cta-title {
        font-size: 24px;
    }
    
    .final-cta-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .catchcopy-line1,
    .catchcopy-line2 {
        font-size: 22px;
    }
    
    .highlight-text,
    .highlight-system {
        font-size: 24px;
    }
    
    .transform-icon {
        font-size: 36px;
        gap: 15px;
    }
    
    .price-badge {
        font-size: 16px;
        padding: 12px 24px;
    }
    
    .price-number {
        font-size: 24px;
    }
}
