  /* =================================
           基本リセットとフォント設定
        ================================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }



        nav.breadcrumb li {
            display: inline-block;
            margin-top: .5em
        }

        .breadcrumb {
            margin-bottom: 10px;
        }

        .full-width h3 {
            line-height: 1.5;
        }

        .notes h4,
        .notes h5 {
            font-weight: 700;
            margin-bottom: 1em;
            font-size: 1.5rem;
            padding: 0.5em;
            margin: 1em 0 1em
        }

        nav.breadcrumb li:first-child:before {
            content: "\f015";
            margin-right: .5em;
            font-family: 'Font Awesome 5 Free';
            font-weight: 900
        }

        nav.breadcrumb li:after {
            content: "\f105";
            margin: 0 .5em;
            font-family: 'Font Awesome 5 Free';
            font-weight: 900
        }

        nav.breadcrumb li:last-child:after {
            content: "";
            margin-left: 0
        }


        img {
            max-width: 100%;
            height: auto;
        }

        a {
            color: #218b00;
            text-decoration: none !important;
            transition: all 0.3s ease;
        }

        a:hover {
            color: #003d7a;
            text-decoration: underline;
        }

        p {
            font-size: 16px;
            font-weight: 400;
            letter-spacing: .1px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* =================================
   フローティングCTA
================================= */
.floating-cta-container {
    position: fixed;
    bottom: 70px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.floating-cta-container.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.floating-cta-btn:hover::before {
    left: 100%;
}

.floating-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.floating-cta-diagnosis {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.floating-cta-diagnosis:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #e0841a 100%);
    color: white;
}

.floating-cta-consultation {
    background: linear-gradient(135deg, #218b00 0%, #2da600 100%);
    color: white;
}

.floating-cta-consultation:hover {
    background: linear-gradient(135deg, #1a6d00 0%, #218b00 100%);
    color: white;
}

.floating-cta-diagnosis .cta-icon,
.floating-cta-consultation .cta-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.cta-content {
    flex: 1;
    text-align: left;
}

.cta-main-text {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
}

.cta-sub-text {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
}

/* スマホ対応（768px以下） */
@media (max-width: 768px) {
    .floating-cta-container {
        bottom: 0;
        left: 0;
        right: 0;
        flex-direction: row;
        gap: 0;
        padding: 15px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
    }

    .floating-cta-container.visible {
        transform: translateY(0);
    }

    .floating-cta-btn {
        flex: 1;
        min-width: auto;
        padding: 14px 16px;
        border-radius: 25px;
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
        gap: 6px;
        margin: 0 5px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .floating-cta-btn:hover {
        transform: translateY(-2px) scale(1.02);
    }

    .cta-content {
        text-align: center;
    }

    .cta-main-text {
        font-size: 1.7rem;
        margin-bottom: 0;
    }

    .cta-sub-text {
        font-size: 1.1rem;
        display: none;
    }

    .cta-icon {
        display: none;
    }
}

/* 極小画面対応（480px以下） */
@media (max-width: 480px) {
    .floating-cta-container {
        padding: 12px;
    }

    .floating-cta-btn {
        padding: 12px 14px;
        font-size: 1.2rem;
        margin: 0 3px;
        border-radius: 20px;
    }

    .cta-main-text {
        font-size: 1.2rem;
        line-height: 1.1;
    }
}
        /* =================================
           ヘッダーセクション
        ================================= */
        .hero-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4f2e6 100%);
            padding: 60px 0 10px;
            margin-bottom: 20px;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .hero-section img {
            max-width: 400px;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }

        .hero-text,
        .hero-image {
            flex: 1;
            min-width: 300px;
        }

        .hero-title {
            font-size: 3.9rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #2c3e50;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 2.4rem;
            color: #218b00;
            margin-bottom: 20px;
        }

        .hero-description {
            font-size: 1.6rem;
            line-height: 27px;
            margin-bottom: 30px;
        }

        .hero-image {
            text-align: center;
        }

        /* =================================
           ナビゲーション
        ================================= */
        .page-nav {
            background-color: white;
            border-radius: 10px;
            padding: 15px 20px;
            margin-bottom: 40px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0px;
            z-index: 100;
        }

        .page-nav h3 {
            margin-bottom: 15px;
            font-size: 2.0rem;
            color: #218b00;
        }

        .nav-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            list-style: none;
        }

        .nav-item a {
            display: block;
            padding: 8px 12px;
            background-color: #e9ecef;
            border-radius: 20px;
            color: #495057;
            font-size: 1.4rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-item a:hover,
        .nav-item a.active {
            background-color: #218b00;
            color: white;

        }

        .nav-toggle {
            display: none;
            background: #218b00;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            cursor: pointer;
            margin-bottom: 10px;
        }

        /* =================================
           コンテンツセクション
        ================================= */
        .content-section {
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .section-title {
            font-size: 2.9rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #218b00;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100px;
            height: 3px;
            background-color: #218b00;
        }

        .section-subtitle {
            font-size: 2.2rem;
            font-weight: 600;
            color: #218b00;
            margin: 30px 0 20px;
            padding-left: 15px;
            border-left: 4px solid #218b00;
        }

        .content-flex {
            display: flex;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .content-image,
        .content-text {
            flex: 1;
            min-width: 250px;
        }

        /* =================================
           比較カード
        ================================= */
        .comparison-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 30px 0;
        }

        .comparison-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        /* .comparison-card:hover {
            transform: translateY(-5px);
        } */

        .card-title {
            font-size: 1.9rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #218b00;
            text-align: center;
            position: relative;
            padding-bottom: 10px;
        }

        .card-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: #218b00;
        }

        /* =================================
           比較表
        ================================= */
        .table-container {
            overflow-x: auto;
            margin-bottom: 30px;
            position: relative;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            font-size: 1.4rem;
            min-width: 800px;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 15px;
            border: 1px solid #dee2e6;
            text-align: left;
			vertical-align: baseline;
        }

        .comparison-table th {
            background-color: #e9ecef;
            font-weight: 600;
            color: #495057;
            position: sticky;
            top: 0;
            z-index: 0;
            text-align: center;
            vertical-align: middle
        }

        .comparison-table td {
            background-color: white;
        }

        .comparison-table tr:nth-child(even) td {
            background-color: #f8f9fa;
        }

        .table-image {
            width: 100px;
            height: 60px;
            object-fit: contain;
        }

        .feature-check {
            color: #28a745;
            font-weight: bold;
        }

        .feature-minus {
            color: #dc3545;
        }

        /* =================================
           歴史スライダー
        ================================= */
        .history-slider-container {
            margin: 40px 0;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .history-timeline-header {
            margin-bottom: 20px;
        }

        .timeline-progress {
            width: 100%;
            height: 6px;
            background: #e9ecef;
            border-radius: 3px;
            margin-bottom: 10px;
            position: relative;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #218b00, #76a729);
            border-radius: 3px;
            width: 16.66%;
            transition: width 0.5s ease;
        }

        .timeline-years {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .year-marker {
            background: #e9ecef;
            color: #6c757d;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 1.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .year-marker.active {
            background: linear-gradient(135deg, #218b00, #76a729);
            color: white;
            transform: scale(1.1);
        }

        .year-marker:hover {
            background: #218b00;
            color: white;
        }

        .history-slider {
            position: relative;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease;
        }

        .history-slide {
            min-width: 100%;
            padding: 0 40px;

        }

        .slide-content {
            max-width: 870px;
            margin: 0 auto;

            position: relative;
        }

        .slide-year {
            display: inline-block;
            background: linear-gradient(135deg, #218b00, #76a729);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 1.8rem;
            position: absolute;
            top: 0;
        }

        .slide-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin-top: 20px;
            margin-bottom: 30px;
            text-align: center;
        }

        .slide-layout {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .slide-image {
            flex: 0 0 350px;
            text-align: center;
        }

        .slide-image img {
            max-width: 100%;
            max-height: 200px;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .image-caption {
            margin-top: 10px;
            margin-bottom: 10px;
            font-size: 1.2rem;
            color: #6c757d;
            font-style: italic;
        }

        .slide-text {
            flex: 1;
        }

        .slide-text p {
            font-size: 1.4rem;
            line-height: 1.5;
            color: #555;
            margin-bottom: 15px;
        }

        .slider-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
            pointer-events: none;
        }

        .slider-btn {
            background: #76a729;
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: all;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .slider-btn:hover {
            background: #218b00;
            transform: scale(1.1);
        }

        .slider-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 20px;
            background: #f8f9fa;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #218b00;
            transform: scale(1.3);
        }

        /* =================================
           評価記号と店舗規模（更新版）
        ================================= */
        .evaluation-content {
            /* display: flex; */
            align-items: flex-start;
            gap: 12px;
            padding: 5px 0;
            text-align: center;

        }

        .evaluation-symbol {
            font-size: 4rem;
            font-weight: bold;
            line-height: 1;
            flex-shrink: 0;
            margin-top: 2px;
            margin-bottom: 10px;
        }

        .evaluation-symbol.excellent {
            color: #0066cc;
        }

        .evaluation-symbol.good {
            color: #28a745;
        }

        .evaluation-symbol.fair {
            color: #ffc107;
        }

        .evaluation-symbol.poor {
            color: #dc3545;
        }

        .evaluation-text {
            flex: 1;
            line-height: 1.5;

            text-align: justify;
        }

        .store-scale {
            text-align: center;
            /* padding: 15px; */
        }

        .scale-bars {
            display: flex;
            justify-content: center;
            align-items: end;
            gap: 10px;
            margin-bottom: 10px;
            height: 40px;
        }

        .scale-bar {
            width: 30px;
            background: #dee2e6;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .scale-bar.large {
            height: 35px;
        }

        .scale-bar.medium {
            height: 25px;
        }

        .scale-bar.small {
            height: 15px;
        }

        .scale-bar.active {
            background: linear-gradient(135deg, #218b00, #e1ff00);
        }

        .scale-labels {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .scale-label {
            font-size: 1.1rem;
            color: #6c757d;
            width: 34px;
            text-align: center;
        }

        .scale-text {
            font-size: 1.3rem;
            color: #6c757d;
            font-weight: 500;
            line-height: 1.3;
        }

        /* 比較表の強調 */
        .comparison-table td:first-child {
            font-weight: 600;
            background-color: #f8fff8 !important;
            border-right: 3px solid #218b00;
            writing-mode: sideways-rl;
            letter-spacing: 1px;
        }

        /* 既存 CSS の一番下あたりに追記 */

        .comparison-table .img-row td {
            padding: 0;
            /* パディングなし */
        }

        .comparison-table .img-row td:first-child {
            padding: 15px;
            text-align: center;
        }


        .comparison-table .img-row img {
            width: 100%;
            /* セルの幅いっぱいに表示 */
            height: auto;
            /* 縦横比を維持して拡大 */
            object-fit: contain;
            /* はみ出さないよう調整（任意） */
            display: block;
            /* 余計な下余白を消す */
            height: 186px;
            object-fit: contain;
        }

        /* =================================
           メリット・機能グリッド
        ================================= */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin: 30px 0;
        }

        .benefit-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            text-align: center;
        }

        .benefit-card p {

            text-align: left;
        }

        /* 
        .benefit-card:hover {
            transform: translateY(-5px);
        } */

        .benefit-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #218b00, #76a729);
            border-radius: 50%;
            color: white;
            font-size: 24px;
        }

        .benefit-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #218b00;
        }

        /* =================================
           選択ガイド
        ================================= */
        .selection-guide {
            margin: 30px 0;
        }

        .selection-intro {
            background: linear-gradient(135deg, #f2fff7 0%, #f2f5e5 100%);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 40px;
            border-left: 5px solid #218b00;
        }

        .selection-points {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .selection-point {
            display: flex;
            gap: 20px;
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        /* .selection-point:hover {
            transform: translateY(-5px);
        } */

        .point-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #218b00, #76a729);
            border-radius: 50%;
            color: white;
            font-size: 3rem;
            flex-shrink: 0;
        }

        .point-content {
            flex: 1;
        }

        .point-title {
            font-size: 2.1rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .point-summary {
            font-size: 1.6rem;
            font-weight: 600;
            color: #218b00;
            background: #f8f9fa;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 15px;
        }

        /* =================================
           最新動向
        ================================= */
        .trends-container {
            margin: 30px 0;
        }

        /* トレンドカード改善 */
        .trend-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        /* .trend-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        } */

        /* トレンドヘッダー */
        .trend-header {
            background: linear-gradient(135deg, #218b00 0%, #72bb00 100%);
            color: white;
            padding: 25px 40px;
            position: relative;
            overflow: hidden;
        }

        .trend-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .trend-number {
            position: absolute;
            top: 20px;
            right: 40px;
            font-size: 3rem;
            font-weight: 700;
            opacity: 0.2;
        }

        .trend-title {
            font-size: 2.3rem;
            font-weight: 700;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        /* トレンドコンテンツ */
        .trend-body {
            padding: 40px;
        }

        /* グリッドレイアウト */
        .trend-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            align-items: anchor-center;
            margin-bottom: 0px;
        }

        .trend-grid.reverse {
            direction: rtl;
        }

        .trend-grid.reverse>* {
            direction: ltr;
        }

        /* フルワイドレイアウト */
        .trend-full {
            margin-bottom: 30px;
        }

        /* 画像コンテナ改善 */
        .trend-visual {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            background: #f8f9fa;
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom:20px;
        }

        .trend-visual img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
            max-height: 280px;
            /* 画像上限を付ける──必要なら 240-320px で調整 */
            width: auto;
            height: auto;
            object-fit: contain;
            /* 拡大で切れないように */
        }

        /* .trend-visual:hover img {
            transform: scale(1.05);
        } */

        /* テキストコンテンツ */
        .trend-content {
            padding: 10px 0;
        }

        .trend-content h4 {
            color: #218b00;
            font-size: 2.1rem;
            font-weight: 600;
            margin: 25px 0 15px;
            padding-left: 15px;
            border-left: 4px solid #218b00;
        }

        .trend-content p {
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .trend-content ul {
            padding-left: 20px;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .trend-content li {
            margin-bottom: 12px;
            line-height: 1.7;
            list-style: disc;
        }

        /* 特別なハイライトボックス */
        .trend-highlight {
            background: linear-gradient(135deg, #f2fff7 0%, #f2f5e5 100%);
            border-radius: 15px;
            padding: 25px;
            margin: 25px 0;
            border-left: 5px solid #218b00;
        }

        .trend-highlight h4 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: #218b00;
        }

        /* バナーリンク改善 */
        .trend-banner-link {
            display: block;
            margin: 20px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .trend-banner-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
        }

        .trend-banner-link img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* 決済端末グリッド改善 */
        .terminals-showcase {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 10px 30px;
            margin: 30px 0;
        }

        .terminals-title {
            font-size: 2.3rem;
            font-weight: 600;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 10px;
        }

        .terminals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 10px;
        }

        .terminal-card {
            background: white;
            border-radius: 12px;
            padding: 10px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .terminal-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

		.terminal-card2 {
            background: white;
            border-radius: 12px;
            padding: 10px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor:auto;
        }


        .terminal-card img,.terminal-card2 img {
            width: 80px;
            height: 60px;
            object-fit: contain;
            margin-bottom: 12px;
        }

        .terminal-card p,   .terminal-card2 p {
            font-size: 1.3rem;
            color: #333;
            font-weight: 500;
            margin-bottom: 8px;
            line-height: 1.3;
        }


        /* =================================
           製品ショーケース
        ================================= */
        .products-showcase {
            margin: 40px 0;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            position: relative;
            border: 1px solid #e9ecef;
        }

        /* .product-card:hover {
            transform: translateY(-5px);
        } */

        .product-label {
            position: absolute;
            top: -10px;
            left: 10px;
            background: #2c3e50;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 1.2rem;
            font-weight: 500;
        }

        .product-link {
            display: block;

            color: inherit;
        }

        .product-image {
            text-align: center;
            margin: 20px 0;
            padding: 20px;
            border: 1px solid #f0f0f0;
            border-radius: 8px;
        }

        .product-image img {
            max-height: 50px;
            width: auto;
        }

        .product-content p {
            font-size: 1.4rem;
            line-height: 1.5;
            color: #333;
            margin: 15px 0;
        }

        .product-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 15px;
        }

        .tag {
            display: inline-block;
            padding: 3px 8px;
            background-color: #e9ecef;
            border-radius: 15px;
            font-size: 1rem;
            color: #495057;
        }

        .tag::before {
            content: '#';
            margin-right: 2px;
        }

        /* 改善案2: カード風レイアウト */
        .bcpos-card-intro {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        /* .bcpos-card-intro:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    } */

        .bcpos-card-header {
            background: linear-gradient(135deg, #218b00 0%, #72bb00 100%);
            padding: 10px 40px;
            color: #fff;
        }

        .bcpos-card-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .bcpos-card-tagline {
            font-size: 1.6rem;
            opacity: 0.9;
        }

        .bcpos-card-body {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            padding: 40px;
            align-items: center;
        }

        .bcpos-card-image {
            text-align: center;
        }

        .bcpos-card-image img {
            width: 100%;
            max-width: 300px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .bcpos-card-content p {
            font-size: 1.4rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }

        .bcpos-badge-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .bcpos-badge {
            display: inline-flex;
            align-items: center;
            background: #f0fff9;
            color: rgb(255, 255, 255);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 1.1rem;
            font-weight: 500;
            border: 1px solid #afeda8;
            gap: 4px;
        }

        .bcpos-badge i {
            margin-right: 6px;
            font-size: 0.9rem;
        }

        /* レスポンシブ対応（必要なら他セクションと共通化可） */
        @media (max-width: 768px) {
            .bcpos-card-body {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
/*  */
.mini-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.mini-solution-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f5f5f5;
}

.mini-solution-card img {
    height: 40px;
    max-width: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.mini-ec-logos {
    height: 40px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.mini-ec-logos img {
    height: 20px;
    margin-bottom: 0;
}

.function-badge {
    display: block;
    background: #218b00;
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.mini-solution-card p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 12px;
}

.mini-solution-card a {
    color: #218b00;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.1rem;
}

.mini-solution-card a:hover {
    text-decoration: underline;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
    justify-content: center;
}

.feature-tag {
    background: #f0f9f5;
    color: #218b00;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid #d4f0d4;
}

.solutions-summary {
    background: linear-gradient(135deg, #f2fff7 0%, #e8f5e8 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
    border: 1px solid #d4f0d4;
}

.summary-content {
    max-width: 700px;
    margin: 0 auto;
}

.summary-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.summary-description {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.summary-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.summary-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.summary-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.summary-btn.primary {
    background: linear-gradient(135deg, #218b00, #2da600);
    color: white;
}

.summary-btn.primary:hover {
    background: linear-gradient(135deg, #1a6d00, #218b00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 139, 0, 0.3);
    color: white;
}

.summary-btn.secondary {
    background: white;
    color: #218b00;
    border: 2px solid #218b00;
}

.summary-btn.secondary:hover {
    background: #f8fff8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 139, 0, 0.2);
    color: #218b00;
}

@media (max-width: 768px) {
    .header-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .header-icon::before {
        width: 80px;
        height: 80px;
    }
    
    .header-icon i {
        font-size: 2rem;
    }
    
    .software-section-header .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
    }
    
    .mini-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .mini-solution-card {
        padding: 15px;
    }
    
    .solutions-summary {
        padding: 30px 20px;
    }
    
    .summary-title {
        font-size: 2rem;
    }
    
    .summary-description {
        font-size: 1.3rem;
    }
    
    .summary-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .summary-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .software-section-header .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
    
    .mini-solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-title {
        font-size: 1.8rem;
    }
}.mini-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.mini-solution-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f5f5f5;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
}
.mini-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: inherit;
}

.mini-solution-card::after {
    content: "詳細を見る →";
    position: absolute;
    bottom: 15px;
    right: 20px;
    color: #218b00;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}


.mini-solution-card img {
    height: 40px;
    max-width: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.mini-ec-logos {
    height: 40px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.mini-ec-logos img {
    height: 20px;
    margin-bottom: 0;
}

.function-badge {
    display: block;
    background: #218b00;
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 10px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.mini-solution-card p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 12px;
}

.mini-solution-card a {
    color: #218b00;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.1rem;
}

.mini-solution-card a:hover {
    text-decoration: underline;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
    justify-content: center;
}

.feature-tag {
    background: #f0f9f5;
    color: #218b00;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    border: 1px solid #d4f0d4;
}

.solutions-summary {
    background: linear-gradient(135deg, #f2fff7 0%, #e8f5e8 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
    border: 1px solid #d4f0d4;
}

.summary-content {
    max-width: 700px;
    margin: 0 auto;
}

.summary-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.summary-description {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.summary-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.summary-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.summary-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.summary-btn.primary {
    background: linear-gradient(135deg, #218b00, #2da600);
    color: white;
}

.summary-btn.primary:hover {
    background: linear-gradient(135deg, #1a6d00, #218b00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 139, 0, 0.3);
    color: white;
}

.summary-btn.secondary {
    background: white;
    color: #218b00;
    border: 2px solid #218b00;
}

.summary-btn.secondary:hover {
    background: #f8fff8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 139, 0, 0.2);
    color: #218b00;
}

@media (max-width: 768px) {
    .header-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .header-icon::before {
        width: 80px;
        height: 80px;
    }
    
    .header-icon i {
        font-size: 2rem;
    }
    
    .software-section-header .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
    }
    
    .mini-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .mini-solution-card {
        padding: 15px;
    }
    
    .solutions-summary {
        padding: 30px 20px;
    }
    
    .summary-title {
        font-size: 2rem;
    }
    
    .summary-description {
        font-size: 1.3rem;
    }
    
    .summary-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .summary-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .software-section-header .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
    
    .mini-solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-title {
        font-size: 1.8rem;
    }
}

        /* =================================
           用語集
        ================================= */
        .glossary-container {
            display: flex;
            gap: 30px;
            margin: 30px 0;
        }

        .glossary-nav {
            flex: 0 0 200px;
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }

        .glossary-nav-list {
            list-style: none;
        }

        .glossary-nav-list li {
            margin-bottom: 10px;
        }

        .glossary-nav-link {
            display: block;
            padding: 10px;
            color: #218b00;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 1.6rem;
        }

        .glossary-nav-link:hover,
        .glossary-nav-link.active {
            background-color: #218b00;
            color: white;

        }

        .glossary-content {
            flex: 1;
        }

        .term-section {
            margin-bottom: 40px;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .term-title {
            font-size: 2.1rem;
            font-weight: 600;
            color: #218b00;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9ecef;
        }

        .term-subtitle {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 20px 0 10px;
        }

        /* =================================
           改善されたBCPOS詳細セクション
        ================================= */
        .bcpos-hero {
            background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
            border-radius: 20px;
            padding: 60px;
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
        }

        .bcpos-hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 86, 179, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .bcpos-hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .bcpos-hero-text h3 {
            font-size: 2rem;
            color: #218b00;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .bcpos-hero-text p {
            font-size: 1.4rem;
            line-height: 1.8;
            color: #555;
        }

        .bcpos-hero-visual {
            text-align: center;
        }

        .bcpos-hero-visual img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
        }

        /* 特徴カード改善 */
        
        .bcpos-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .bcpos-feature span {font-size: 13px;}

        .bcpos-feature-card {
            background: white;
            border-radius: 15px;
            padding: 35px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .bcpos-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #218b00, #76a729);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        /* .bcpos-feature-card:hover::before {
            transform: scaleX(1);
        } */

        /* .bcpos-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        } */

        .feature-icon-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #218b00, #76a729);
            border-radius: 50%;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
        }

        .feature-icon-wrapper i {
            font-size: 1.8rem;
            color: white;
        }

        .bcpos-feature-card h4 {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .bcpos-feature-card p {
            color: #666;
            line-height: 1.7;
        }

        /* =================================
           CTA セクション
        ================================= */

        .cta-section {
            background: linear-gradient(135deg, #0f949c 0%, #44bc1e 100%);
            color: white;
            padding: 30px 30px;
            text-align: center;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 10px 30px rgba(0, 86, 179, 0.3);
            position: relative;
            /* ← ★必須 */
            overflow: hidden;
            /* hover時の変形でハミ出さないため */
            cursor: pointer;
            /* 全域でポインタ表示 */
            transition: transform .3s ease, filter .3s ease;

        }

        /* 全面リンク */
        .cta-full-link {
            position: absolute;
            inset: 0;
            /* top:0; right:0; bottom:0; left:0 と同義 */
            z-index: 10;
            /* コンテンツより上にしてクリックを拾う */
            display: block;
        }

        /* ===== ホバー演出をセクション全体に ===== */
        .cta-section:hover {
            filter: brightness(1.06);
            transform: translateY(-3px);
            transition: all .3s ease;

        }

        /* === セクション自体に Hover が乗ったとき (古いブラウザ用にも残す) */
        .cta-section:hover {
            filter: brightness(1.06);
            transform: translateY(-6px);
            /* 好きな値に調整 */
        }

        /* === .cta-full-link が Hover されたときに親 .cta-section を動かす === */
        @supports(selector(:has(*))) {
            .cta-section:has(.cta-full-link:hover) {
                filter: brightness(1.06);
                transform: translateY(-6px);
            }
        }


        /* (任意) ボタンだけも強調したい場合 */
        .cta-section:hover .cta-button {
            background: #f1f1f1;

        }

        .cta-title {
            font-size: 3rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .cta-description {
            font-size: 1.7rem;
            max-width: 700px;
            margin: 0 auto 20px;
            line-height: 1.7;
        }

        .cta-button {
            display: inline-block;
            background-color: white;
            color: #218b00;
            font-size: 1.7rem;
            font-weight: 600;
            padding: 15px 35px;
            border-radius: 30px;

            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .cta-button:hover {
            background-color: #f8f9fa;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);

            color: #218b00;
        }



        /* ===============================
           1. 製品詳細CTAボタン（コンパクトカード改良版）
        =============================== */
        .product-cta-compact {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgb(23 143 122) 0%, #1e8fbc 100%);
            /* border: 1px solid #2c3e50; */
            border-radius: 15px;
            padding: 20px 25px;
            transition: all 0.3s ease;

            color: white;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
            position: relative;
            overflow: hidden;
        }

        .product-cta-compact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, #0f949c 0%, #44bc1e 100%);
            transition: width 0.3s ease;
            z-index: 0;
        }

        .product-cta-compact:hover::before {
            width: 5px;
        }

        .product-cta-compact:hover {
            transform: translateX(5px) translateY(-3px);
            box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
            color: #fff;

        }

        .product-cta-compact-image {
            width: 240px;
            height: 110px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 25px;
            position: relative;
            z-index: 1;
            overflow: hidden;
            background: #fff;
   
        }

        .product-cta-compact-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 10px;
     
            padding: 10px;
        }

        .product-cta-compact-content {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .product-cta-compact-title {
            font-size: 2.6rem;
            font-weight: 700;
            color: white;
            margin-bottom: 5px;
            line-height: 1;
        }

        .product-cta-compact-feature {
            font-size: 1.8rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .product-cta-compact-text {
            font-size: 1.6rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
        }

        .product-cta-compact-arrow {
            font-size: 1.8rem;
            color: rgba(255, 255, 255, 0.8);
            margin-left: 20px;
            transition: transform 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .product-cta-compact:hover .product-cta-compact-arrow {
            transform: translateX(8px);
            color: white;
        }

        /* 詳しくはこちらのテキストを白背景のボタンに変更 */
        .product-cta-compact-text {
            background: white;
            color: #008b86;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 1.4rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 8px;
        }

        /* angle-rightアイコンを追加 */
        .product-cta-compact-text::after {
            content: "\f105";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        /* ホバー時のボタン効果 */
        .product-cta-compact:hover .product-cta-compact-text {
            background: #f8f9fa;
            transform: translateX(3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* ホバー時のアイコン動作 */
        .product-cta-compact:hover .product-cta-compact-text::after {
            transform: translateX(3px);
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .product-cta-compact-text {
                font-size: 1.3rem;
                padding: 6px 14px;
            }
        }

        /* ===============================
           2. 問い合わせCTA（リンクバナー風・濃い背景）
        =============================== */
        .inquiry-cta-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 30px;
        }

        .inquiry-cta-card {
            display: block;
            background: linear-gradient(135deg, #218b00 0%, #2da600 100%);
            border-radius: 15px;
            padding: 35px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;

            color: white;
            box-shadow: 0 5px 15px rgba(33, 139, 0, 0.3);
        }

        .inquiry-cta-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); */
            transition: left 0.6s ease;
        }

        .inquiry-cta-card:hover::before {
            left: 100%;
        }

        .inquiry-cta-card:hover {
            transform: translateY(-3px);
            /* box-shadow: 0 8px 25px rgba(33, 139, 0, 0.4); */
            opacity: .8;
            /* background: linear-gradient(135deg, #1a6d00 0%, #218b00 100%); */

        }

        .inquiry-cta-title {
            font-size: 2.7em;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .inquiry-cta-description {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .inquiry-cta-link {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            font-size: 1.5rem;
            font-weight: 600;
            position: relative;
            z-index: 1;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .inquiry-cta-card:hover .inquiry-cta-link {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .inquiry-cta-link i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .inquiry-cta-card:hover .inquiry-cta-link i {
            transform: translateX(5px);
        }

        /* 別バージョン: より強調したバナー */
        .inquiry-banner-strong {
            display: block;
            background: #2c3e50;
            border-radius: 20px;
            padding: 40px;
            position: relative;
            overflow: hidden;

            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .inquiry-banner-strong::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(33, 139, 0, 0.1) 100%);
        }

        .inquiry-banner-strong:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .inquiry-banner-content {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .inquiry-banner-text {
            flex: 1;
        }

        .inquiry-banner-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }

        .inquiry-banner-subtitle {
            font-size: 1.6rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
        }

        .inquiry-banner-button {
            background: linear-gradient(135deg, #218b00, #2da600);
            color: white;
            padding: 15px 35px;
            border-radius: 30px;
            font-size: 1.6rem;
            font-weight: 600;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .inquiry-banner-strong:hover .inquiry-banner-button {
            background: linear-gradient(135deg, #2da600, #3dc700);
            transform: scale(1.05);
        }

        /* ===============================
           3. POSレジ選び方CTA（改良版）
        =============================== */
        .selection-guide-cta {
            background: linear-gradient(135deg, #f2fff7 0%, #e8f5e8 100%);
            border-radius: 20px;
            padding: 50px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
            border: 1px solid #d4f0d4;
        }

        .selection-guide-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .selection-guide-icon {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 3rem;
            color: #218b00;
            box-shadow: 0 5px 20px rgba(33, 139, 0, 0.15);
        }

        .selection-guide-title {
            font-size: 3.2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .selection-guide-subtitle {
            font-size: 1.8rem;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .selection-guide-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .selection-feature {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .selection-feature-icon {
            width: 50px;
            height: 50px;
            background: #f0f9f5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.5rem;
            color: #218b00;
        }

        .selection-feature-title {
            font-size: 1.6rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .selection-feature-text {
            font-size: 1.3rem;
            color: #666;
            line-height: 1.5;
        }

        .selection-guide-button {
            display: inline-block;
            background: linear-gradient(135deg, #218b00, #2da600);
            color: white;
            padding: 18px 50px;
            border-radius: 35px;
            font-size: 1.8rem;
            font-weight: 700;

            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(33, 139, 0, 0.3);
        }

        .selection-guide-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(33, 139, 0, 0.4);
            background: linear-gradient(135deg, #1a6d00, #218b00);
        }

        /* 別バージョン: シンプル版 */
        .guide-simple-cta {
            background: white;
            border: 2px solid #218b00;
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .guide-simple-cta:hover {
            background: #f8fff8;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(33, 139, 0, 0.15);
        }

        .guide-simple-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .guide-simple-text {
            font-size: 1.6rem;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .guide-simple-points {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .guide-point {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            color: #218b00;
            font-weight: 600;
        }

        .guide-point i {
            margin-right: 10px;
            font-size: 1.3rem;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            h2 {
                font-size: 2.2rem !important;
            }

            h3 {
                font-size: 2rem !important;
            }

            h3

            /*  */
            .nav-toggle {
                display: block;
                margin-bottom: 0px;
            }

            /* 修正: page-navをflexレイアウトに変更 */
            .page-nav {
                display: flex;
                align-items: center;
                gap: 15px;
            }

            /* 修正: 目次のh3をインライン表示 */
            .page-nav h3 {
                margin-bottom: 0;
                flex-shrink: 0;
            }

            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                /* 修正: ハンバーガーと目次の下に表示するため */
                position: absolute;
                top: 100%;
                left: 0;
                background: white;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
                border-radius: 0 0 10px 10px;
                padding: 15px 20px;
                z-index: 10;
            }

            .nav-list.show {
                display: flex;
            }

            .slider-controls {

                top: 44%;
            }


            /*  */

            .product-cta-compact {
                flex-direction: column;
                text-align: center;
            }

            .product-cta-compact-image {
                margin-right: 0;
                margin-bottom: 20px;
            }

            .product-cta-compact-arrow {
                display: none;
            }

            .inquiry-cta-container {
                grid-template-columns: 1fr;
            }

            .inquiry-banner-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .inquiry-banner-text {
                text-align: center;
            }

            .selection-guide-features {
                grid-template-columns: 1fr;
            }

            .selection-guide-title {
                font-size: 2.4rem;
            }

            .guide-simple-points {
                flex-direction: column;
                gap: 15px;
            }

            .cta-section {

                padding: 30px 12px;
            }
        }

        /* =================================
           フッター
        ================================= */
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 60px 0 30px;
            margin-top: 60px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #f8f9fa;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #adb5bd;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: white;

        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #495057;
            color: #adb5bd;
            font-size: 0.9rem;
        }

        /* =================================
           アニメーション
        ================================= */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* =================================
  2カラム製品紹介セクション
================================= */

        /* ビジコム接続性ショーケースのスタイル */
        /* .busicom-connection-showcase {
    background: linear-gradient(135deg, #f8fff8 0%, #f0f8f0 100%);
    border-radius: 20px;
    padding: 50px 40px;
    margin: 40px 0 50px;
    text-align: center;
    border-left: 5px solid #218b00;
    position: relative;
    overflow: hidden;
}

.busicom-connection-showcase::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(33, 139, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
} */

        .connection-title {
            font-size: 3.2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .connection-image-container {
            position: relative;
            z-index: 1;
            margin: 40px 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .connection-image {
            max-width: 800px;
            height: auto;
            border-radius: 15px;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
            transition: transform 0.3s ease;
			width: 100%;
        }


        .connection-description {
            font-size: 1.6rem;
            line-height: 1.8;
            color: #555;
            max-width: 900px;
            margin: 30px auto 0;
            position: relative;
            z-index: 1;
        }

        /* 製品ラインナップタイトル */
        .product-lineup-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2c3e50;
            text-align: center;
            margin: 50px 0 40px;
            padding-bottom: 15px;
            border-bottom: 3px solid #218b00;
            position: relative;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .product-lineup-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 3px;
            background-color: #218b00;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .busicom-connection-showcase {
                padding: 30px 20px;
                margin: 30px 0 40px;
            }

            .connection-title {
                font-size: 2.4rem;
                margin-bottom: 25px;
            }

            .connection-description {
                font-size: 1.4rem;
                margin-top: 25px;
            }

            .product-lineup-title {
                font-size: 2.2rem;
                margin: 40px 0 30px;
            }

            .connection-image-container {
                margin: 30px 0;
            }
        }

        @media (max-width: 480px) {
            .connection-title {
                font-size: 2rem;
            }

            .connection-description {
                font-size: 1.3rem;
            }

            .product-lineup-title {
                font-size: 1.9rem;
            }
        }

        /*  */

        .busicom-intro {
            background: linear-gradient(135deg, #f8fff8 0%, #f0f8f0 100%);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            border-left: 5px solid #218b00;
            font-size: 1.6rem;
            line-height: 1.7;
        }

        .two-column-products {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }

        .product-column {
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
        }



        .bcpos-column {
            border-top: 6px solid #218b00;
        }

        .rearegi-column {
            border-top: 6px solid #2a7a94;
        }

        .product-hero {
            position: relative;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 40px 30px 20px;
            overflow: hidden;
        }

        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            z-index: 2;
        }

        .bcpos-badge {
            background: linear-gradient(135deg, #218b00, #2da600);
        }

        .rearegi-badge {
            background: linear-gradient(135deg, #2a7a94, #4ba3c7);
        }

        .product-hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: center;
        }

        .product-logo-section {
            text-align: left;
        }

        .main-product-logo {
            width: 170px;
            height: 60px;
            object-fit: contain;
            margin-bottom: 15px;
        }

        .product-name {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #2c3e50;
            line-height: 1.1;
        }

        .product-catchphrase {
            font-size: 1.4rem;
            color: #6c757d;
            font-weight: 500;
            line-height: 1.3;
        }

        .product-image-section {
            text-align: center;
        }

        .product-main-image {
            max-width: 100%;
            max-height: 150px;
            object-fit: contain;
            border-radius: 10px;
            /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
        }

        .product-details {
            padding: 30px;
        }

        .product-details h4 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e9ecef;
        }

        .product-overview p {
            font-size: 1.4rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 25px;
        }

        .product-specs {
            margin-bottom: 25px;
        }

        .spec-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .spec-item {
            display: flex;
            flex-direction: column;
            background: #f8f9fa;
            padding: 12px 15px;
            border-radius: 8px;
            border-left: 3px solid #dee2e6;
        }

        .spec-label {
            font-size: 1.2rem;
            color: #6c757d;
            font-weight: 500;
            margin-bottom: 3px;
        }

        .spec-value {
            font-size: 1.7rem;
            color: #004c99;
            font-weight: 600;
        }

        .product-features {
            margin-bottom: 25px;
        }

        .feature-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: all 0.3s ease;
        }



        .feature-item i {
            color: #218b00;
            font-size: 1.6rem;
            width: 20px;
            text-align: center;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .rearegi-column .feature-item i {
            color: #2a7a94;
        }

        .feature-item div {
            flex: 1;
        }

        .feature-item strong {
            font-size: 1.4rem;
            color: #2c3e50;
            display: block;
            margin-bottom: 4px;
        }

        .feature-item p {
            font-size: 1.2rem;
            color: #6c757d;
            margin: 0;
            line-height: 1.4;
        }

        .recommended-for {
            margin-bottom: 30px;
        }

        .recommend-list {
            list-style: none;
            padding-left: 0;
        }

        .recommend-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            font-size: 1.5rem;
            line-height: 1.5;
            color: #555;
        }

        .recommend-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: #28a745;
            font-weight: bold;
            font-size: 1.4rem;
        }

        .product-cta {
            text-align: center;
            border-top: 1px solid #e9ecef;
            padding-top: 25px;
        }

        .product-detail-btn {
            display: inline-block;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1.5rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            color: white;
        }

        .bcpos-btn {
            background: linear-gradient(135deg, #218b00, #2da600);
        }

        .bcpos-btn:hover {
            background: linear-gradient(135deg, #1a6d00, #218b00);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(33, 139, 0, 0.3);
            color: white;
            text-decoration: none;
        }

        .rearegi-btn {
            background: linear-gradient(135deg, #2a7a94, #4ba3c7);
        }

        .rearegi-btn:hover {
            background: linear-gradient(135deg, #1e5a6b, #2a7a94);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(42, 122, 148, 0.3);
            color: white;
            text-decoration: none;
        }

        .products-summary {
            margin-top: 50px;
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            border: 1px solid #e9ecef;
        }

        .products-summary h3 {
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .products-summary p {
            font-size: 1.5rem;
            line-height: 1.7;
            color: #555;
            max-width: 800px;
            margin: 0 auto;
        }

        /* レスポンシブ対応 */
        @media (max-width: 1024px) {
            .two-column-products {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .product-hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 25px;
            }

            .product-logo-section {
                text-align: center;
            }

            .spec-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .product-hero {
                padding: 30px 20px 15px;
            }

            .product-details {
                padding: 25px 20px;
            }

            .product-name {
                font-size: 2.5rem;
            }

            .main-product-logo {
                width: 100px;
                height: 50px;
            }

            .product-main-image {
                max-height: 120px;
            }

            .feature-item {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .feature-item i {
                align-self: center;
            }

            /* 既存のコードに追加 */
            .feature-list {
                grid-template-columns: 1fr;
                /* モバイルでは1列に戻す */
            }
        }

        /* =================================
           BCPOS詳細セクション
        ================================= */
        .bcpos-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            padding: 40px;
            margin: 40px 0;
        }

        .bcpos-intro {
            text-align: center;
            margin-bottom: 40px;
        }

        .bcpos-image {
            max-width: 300px;
            margin: 20px auto;
        }

        .bcpos-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 0px 0;
        }

        .bcpos-feature {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #218b00, #76a729);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .feature-text h4 {
            color: #218b00;
            margin-bottom: 10px;
            font-size: 1.8rem;
        }

        /* =================================
           関連記事セクション
        ================================= */
        .related-articles {
            margin: 40px 0;
            padding: 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .article-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .article-card:hover {
            transform: translateY(-5px);
        }

        .article-image {
            width: 100%;
            height: 150px;
            background: #dee2e6;
            border-radius: 8px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
        }

        .article-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .article-summary {
            font-size: 1.3rem;
            color: #6c757d;
            line-height: 1.5;
        }

        /* =================================
           レスポンシブ対応
        ================================= */
        @media (max-width: 992px) {
            .hero-section {
                padding: 40px 0;
            }

            .hero-title {
                font-size: 3rem;
            }

            .history-slider-container {
                margin: 20px 0;
            }

            .slide-layout {
                flex-direction: column;
                gap: 10px;
            }

            .slide-image {
                flex: none;
            }

            .slide-title {
                font-size: 1.5rem;
            }

            .glossary-container {
                flex-direction: column;
            }

            .glossary-nav {
                flex: none;
                position: static;
            }
        }

        @media (max-width: 768px) {
            .hero-section img {
                max-width: 230px;
            }

            .nav-toggle {
                display: block;
            }

            .hero-description {
                margin-bottom: 0px;
            }

            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
            }

            .nav-list.show {
                display: flex;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .content-section {
                padding: 20px;
            }

            .content-flex {
                flex-direction: column;
            }

            .selection-point {
                flex-direction: column;
                text-align: center;
            }

            .point-icon {
                align-self: center;
            }

            .trend-content {
                flex-direction: column;
            }

            /* 歴史スライダー モバイル対応 */
            .history-slide {
                padding: 20px 50px;
            }

            .slide-title {
                font-size: 2rem;
                margin-bottom: 20px;
                margin-top: 10px;
            }

            .slide-year {
                display: inline-block;
                background: linear-gradient(135deg, #218b00, #76a729);
                color: white;
                padding: 7px 20px;
                border-radius: 25px;
                font-weight: 700;
                font-size: 1.3rem;
                position: relative;
                top: 0;
                display: flex;
                /* text-align: center; */
                justify-content: center;
                width: 70%;
                margin: auto;
            }

            .slide-image {
                flex: none;
                margin-bottom: 0px;
            }

            .slide-image img {
                max-height: 180px;
            }

            .slider-btn {
                width: 40px;
                height: 40px;
            }

            .timeline-years {
                flex-wrap: wrap;
                gap: 5px;
            }

            .year-marker {
                padding: 6px 12px;
                font-size: 1rem;
            }

            /* 比較表 モバイル対応 */
            .comparison-table {
                font-size: 1.3rem;
            }

            .table-image {
                width: 50px;
                height: 35px;
            }

            .evaluation-symbol {
                font-size: 3rem;
            }

            .evaluation-cell {
                padding: 15px !important;
            }

            .scale-bars {
                gap: 6px;
                height: 30px;
            }

            .scale-bar {
                width: 26px;
            }

            .scale-bar.large {
                height: 25px;
            }

            .scale-bar.medium {
                height: 18px;
            }

            .scale-bar.small {
                height: 12px;
            }

            .scale-labels {
                gap: 6px;
            }

            .scale-label {
                width: 33px;
                font-size: 1rem;
            }

            .table-details {
                padding: 20px;
            }

            .detail-section h4 {
                font-size: 1rem;
            }

            /*  */
            .trend-grid {
                grid-template-columns: 1fr;
                gap: 0px;
            }

            .trend-grid.reverse {
                direction: ltr;
            }

            .trend-visual {
                min-height: 200px;
                padding: 20px 0;
                gap
            }

            .bcpos-hero {
                padding: 40px 30px;
            }

            .bcpos-hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .bcpos-hero-text h3 {
                font-size: 1.5rem;
            }

            .bcpos-features {
                grid-template-columns: 1fr;
            }

            .terminals-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 15px;
            }
			
			.bcpos-section {
				padding: 20px 10px;
			}
			.trend-body {
				padding: 10px 20px;
			}
			.terminals-title {
				font-size: 2.1rem;
			}			
			.terminals-showcase {
				padding: 20px 20px;
			
			}

			.trend-highlight h4 {
				font-size: 2rem;
			}

			.trend-highlight p{	font-size: 1.3rem;}
			
			.inquiry-cta-title {
				font-size: 2em;
			}			
			.product-cta-compact-title {
				font-size: 2rem;}
				.feature-text p{font-size: 16px!important;}
				#bcpos-detail p{font-size: 1.3rem;}

				.glossary-nav-link {
					padding: 5px;
		
					font-size: 1.3rem;
				}

				.glossary-content p{font-size: 1.3rem;}
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.5rem;
            }

            .history-slider-container {
                margin: 10px -10px;
            }

            .history-slide {
                padding: 15px;
            }

            .slide-year {
                font-size: 1rem;
                padding: 8px 16px;
            }

            .slide-title {
                font-size: 1.2rem;
            }

            .slider-controls {
                padding: 0 10px;
            }

            .slider-btn {
                width: 35px;
                height: 35px;
            }

            .timeline-years {
                justify-content: center;
            }

            .year-marker {
                padding: 4px 8px;
                font-size: 0.7rem;
            }

            .evaluation-symbol {
                font-size: 1.8rem;
            }
        }

        /* trend-number のスマホ対応修正 */

        /* 既存の @media (max-width: 768px) 内に以下を追加 */
        @media (max-width: 768px) {

            /* trend-header のパディング調整 */
            .trend-header {
                padding: 20px 20px;
            }

            /* trend-number のモバイル調整 */
            .trend-number {
                font-size: 2rem;
                /* 3rem から 2rem に縮小 */
                top: 15px;
                /* 20px から 15px に調整 */
                right: 20px;
                /* 40px から 20px に調整 */
                opacity: 0.15;
                /* 0.2 から 0.15 に下げて、より目立たなくする */
            }

            /* trend-title のモバイル調整 */
            .trend-title {
                font-size: 2rem;
                /* 2.3rem から 2rem に縮小 */
                line-height: 1.2;
                padding-right: 60px;
                /* 右側にスペースを確保 */
            }
        }

        /* さらに小さい画面（480px以下）での調整 */
        @media (max-width: 480px) {

            .trend-header {
                padding: 15px 15px;
            }

            .trend-number {
				font-size: 3rem;
				top: 17px;
                right: 15px;
                opacity: 0.1;
                /* より薄く */
            }

            .trend-title {
                font-size: 1.8rem;
                padding-right: 50px;
            }

        }

        /* オプション: 非常に小さい画面では数字を非表示にする場合 */
        @media (max-width: 360px) {
            .trend-number {
                display: none;
                /* 数字を完全に非表示 */
            }

            .trend-title {
                padding-right: 0;
                /* パディングをリセット */
            }
        }