
        /* ======== CSS Variables ======== */
        :root {
            --primary-color: #06C755;
            --primary-dark: #05a648;
            --secondary-color: #0056b3;
            --accent-color: #ff6b35;
            --accent-dark: #e55a2b;
            --text-color: #1a1a1a;
            --text-light: #666666;
            --bg-white: #ffffff;
            --bg-light: #f8f9fa;
            --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --border-light: #e9ecef;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
            --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
            --font-main: 'Noto Sans JP', sans-serif;
            --font-accent: 'Poppins', sans-serif;
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.5s ease;
        }

        /* ======== Reset & Base Styles ======== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-color);
            background-color: var(--bg-white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .container-small {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ======== Typography ======== */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 1rem;
        }

        .text-gradient {
            background: var(--bg-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .highlight {
            color: var(--primary-color);
            font-weight: 700;
        }

        .badge {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-primary {
            background-color: rgba(6, 199, 85, 0.1);
            color: var(--primary-color);
        }

        .badge-accent {
            background-color: var(--accent-color);
            color: white;
        }

        /* ======== Buttons ======== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
        }

        .btn-secondary {
            background: white;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }

        .btn-accent {
            background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
            color: white;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .btn-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        .btn-large {
            padding: 20px 40px;
            font-size: 1.125rem;
        }

        /* ======== Header ======== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            transition: all var(--transition-normal);
        }

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

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

        .logo {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        .nav-link {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color var(--transition-fast);
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width var(--transition-fast);
        }

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

        .nav-link:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--text-color);
            margin: 5px 0;
            transition: all var(--transition-normal);
        }

        /* ======== Hero Section ======== */
        .hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(6, 199, 85, 0.1) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-50px, -50px) rotate(180deg); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .hero-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow-sm);
        }

        .hero-feature-icon {
            width: 40px;
            height: 40px;
            background: rgba(6, 199, 85, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: var(--shadow-xl);
        }

        .hero-badge {
            position: absolute;
            top: -20px;
            right: -20px;
            background: var(--accent-color);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 50%;
            font-weight: 700;
            font-size: 1.125rem;
            box-shadow: var(--shadow-lg);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* ======== Section Styles ======== */
        .section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* ======== Problem Section ======== */
        .problem {
            background: var(--bg-light);
        }

        .problem-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .problem-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow-md);
            transition: transform var(--transition-normal);
            position: relative;
            overflow: hidden;
        }

        .problem-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
        }

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

        .problem-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }

        .problem-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .problem-list {
            list-style: none;
        }

        .problem-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }

        .problem-list li::before {
            content: '×';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .solution-bridge {
            text-align: center;
            font-size: 1.2rem;
            margin-top: 3rem;
        }

        .solution-bridge p {
            margin-bottom: 1rem;
        }

        .solution-bridge__emphasis {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .solution-bridge__solution {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary-color);
        }

        /* ======== Why LINE Section ======== */
        .why-line {
            background: white;
        }

        .why-line__grid {
            display: grid;
            grid-template-columns: 0.8fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .why-line__image-wrapper img {
            width: 100%;
            max-width: 450px;
            margin: 0 auto;
            display: block;
        }

        .why-line__title {
            font-size: 2.5rem;
            font-weight: 900;
            line-height: 1.5;
            color: var(--text-color);
            margin-bottom: 1.5rem;
        }

        .why-line__title .highlight-green {
            color: var(--primary-color);
        }

        .why-line__description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: var(--text-light);
        }

        .why-line__list {
            list-style: none;
        }

        .why-line__list li {
            padding-left: 35px;
            position: relative;
            margin-bottom: 15px;
            font-weight: 500;
            font-size: 1.1rem;
        }

        .why-line__list li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--primary-color);
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 1.3rem;
        }

        /* ======== Solution Section ======== */
        .solution {
            background: var(--bg-light);
        }

        .solution-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .solution-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 1rem;
        }

        .step-icon {
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 3rem;
            color: var(--primary-color);
        }

        .step-title {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .step-arrow {
            position: absolute;
            top: 60px;
            right: -20px;
            font-size: 1.5rem;
            color: var(--border-light);
        }

        .solution-image-wrapper {
            text-align: center;
            margin: 2rem 0 4rem;
        }

        .solution-image-wrapper img {
            max-width: 100%;
            width: 700px;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
        }

        .key-message {
            background-color: var(--bg-white);
            border-left: 5px solid var(--primary-color);
            padding: 25px 35px;
            text-align: center;
            font-size: 1.2rem;
            line-height: 1.6;
            border-radius: 8px;
            box-shadow: var(--shadow-md);
        }

        /* ======== Features Section ======== */
        .features {
            background: white;
        }

        .features__summary-image {
            text-align: center;
            margin-bottom: 5rem;
        }

        .features__summary-image img {
            max-width: 100%;
            width: 750px;
            border-radius: 12px;
        }

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

        .feature-card {
            background: var(--bg-light);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-normal);
            text-align: center;
        }

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

        .feature-icon {
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary-color);
            margin: 0 auto 1.5rem;
            box-shadow: 0 0 0 5px var(--bg-light), 0 0 0 7px var(--primary-color);
        }

        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .feature-description {
            color: var(--text-light);
        }

        /* ======== Statistics Section ======== */
        .stats {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .stat-item {
            position: relative;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            font-family: var(--font-accent);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .stat-label {
            font-size: 1.125rem;
            opacity: 0.9;
        }

        /* ======== SEO Content Section ======== */
        .seo-content-section {
            background: var(--bg-light);
        }

        .seo-content {
            background: white;
            padding: 60px;
            border-radius: 15px;
            box-shadow: var(--shadow-lg);
        }

        .seo-content h3 {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--text-color);
            margin-bottom: 2rem;
            padding-bottom: 15px;
            border-bottom: 4px solid var(--primary-color);
        }

        .seo-content h4 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            padding-left: 20px;
            border-left: 5px solid var(--secondary-color);
        }

        .seo-content p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .seo-content ul {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .seo-content ul li {
            padding-left: 30px;
            position: relative;
            margin-bottom: 12px;
        }

        .seo-content ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--primary-color);
            position: absolute;
            left: 0;
            top: 5px;
        }

        .seo-content-box {
            background: var(--bg-light);
            padding: 30px;
            border-radius: 10px;
            margin: 2.5rem 0;
            border: 1px solid var(--border-light);
        }

        .seo-content-box strong {
            display: block;
            text-align: center;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--text-color);
        }

        /* ======== Multi-Industry Section ======== */
        .multi-industry {
            background: white;
        }

        .tech-explanation {
            background: var(--bg-light);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow-md);
            margin-bottom: 4rem;
        }

        .tech-explanation__title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-color);
        }

        .tech-explanation__desc {
            max-width: 700px;
            margin: 0 auto 1.5rem;
        }

        .barcode-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .barcode-icons span {
            background: #e9ecef;
            padding: 5px 15px;
            border-radius: 5px;
            font-family: monospace;
            font-size: 0.9rem;
        }

        .industry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 20px;
            margin-top: 2rem;
        }

        .industry-card {
            background: var(--bg-light);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: transform var(--transition-normal);
        }

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

        .industry-card__icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        .industry-card__name {
            font-weight: 700;
        }

        /* ======== Comparison Section ======== */
        .comparison {
            background: var(--bg-light);
        }

        .comparison__table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            position: relative;
        }

        .comparison__table-wrapper::after {
            content: '← スクロールできます →';
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.8rem;
            color: #999;
            display: none;
        }

        .comparison__table {
            width: 100%;
            border-collapse: collapse;
            box-shadow: var(--shadow-lg);
            border-radius: 10px;
            overflow: hidden;
            min-width: 800px;
            background: white;
        }

        .comparison__table th,
        .comparison__table td {
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid var(--border-light);
        }

        .comparison__table thead th {
            background-color: var(--text-color);
            color: white;
            font-size: 1.2rem;
        }

        .comparison__table tbody tr:last-child td {
            border-bottom: none;
        }

        .comparison__table tbody tr:nth-child(even) {
            background-color: #fdfdfd;
        }

        .comparison__table td:first-child {
            font-weight: 700;
            text-align: left;
            background-color: var(--bg-light);
        }

        .comparison__table .win span {
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .comparison__table .lose span {
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: #e74c3c;
        }

        .comparison__table .win {
            background-color: #e8f5e9;
        }

        /* ======== Trust Section ======== */
        .trust {
            background: white;
        }

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

        .trust-card {
            text-align: center;
            padding: 30px;
        }

        .trust-card__icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .trust-card__title {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--text-color);
        }

        .trust-card__desc {
            color: var(--text-light);
        }

        /* ======== Custom Development Section ======== */
        .custom-dev {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .custom-dev__intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-color);
        }

        .custom-dev__intro strong {
            color: var(--text-color);
        }

        .custom-dev__examples {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            margin-bottom: 2.5rem;
        }

        .custom-dev__examples-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .custom-dev__examples-title i {
            font-size: 1.4rem;
        }

        .custom-dev__examples-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .custom-dev__example-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            background: var(--bg-light);
            border-radius: 10px;
            border-left: 3px solid var(--primary-color);
            transition: var(--transition-fast);
        }

        .custom-dev__example-item:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-sm);
        }

        .custom-dev__example-item i {
            color: var(--primary-color);
            font-size: 1.1rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .custom-dev__example-item span {
            font-size: 0.95rem;
            color: var(--text-color);
            line-height: 1.5;
        }

        .custom-dev__example-item small {
            display: block;
            font-size: 0.8rem;
            color: var(--text-light);
            margin-top: 2px;
        }

        .custom-dev__flow {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            margin-bottom: 2rem;
        }

        .custom-dev__flow-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-color);
            text-align: center;
            margin-bottom: 2rem;
        }

        .custom-dev__flow-steps {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
        }

        .custom-dev__flow-step {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: var(--bg-light);
            padding: 1.25rem 1.5rem;
            border-radius: 12px;
            flex: 1;
            max-width: 280px;
        }

        .custom-dev__flow-step-num {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .custom-dev__flow-step-content h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 0.25rem;
        }

        .custom-dev__flow-step-content p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin: 0;
            line-height: 1.4;
        }

        .custom-dev__flow-arrow {
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .custom-dev__notice {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            background: rgba(6, 199, 85, 0.08);
            border: 1px solid rgba(6, 199, 85, 0.2);
            border-radius: 12px;
            padding: 1.25rem 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .custom-dev__notice i {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .custom-dev__notice p {
            font-size: 0.95rem;
            color: var(--text-color);
            line-height: 1.7;
            margin: 0;
        }

        .custom-dev__notice strong {
            color: var(--primary-dark);
        }

        /* ======== Support Section ======== */
        .support {
            background: var(--bg-light);
        }

        .support__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .support__content-title {
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.5;
            color: var(--text-color);
        }

        .support__content p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }

        .support__flow-visual {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow-md);
        }

        .support__step {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .support__step-icon {
            background: var(--bg-light);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            font-size: 1.5rem;
            color: var(--secondary-color);
        }

        .support__step-number {
            display: inline-block;
            background: var(--secondary-color);
            color: white;
            padding: 3px 10px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .support__step-content h4 {
            font-size: 1.3rem;
            color: var(--text-color);
            margin-bottom: 5px;
        }

        .support__step-content p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        .support__arrow {
            text-align: center;
            font-size: 1.5rem;
            color: var(--border-light);
            margin: 15px 0;
        }

        .support__step--final .support__step-icon {
            background-color: var(--accent-color);
            color: white;
        }

        .support__step--final .support__step-number {
            background-color: var(--accent-color);
        }

        /* ======== Simple Plan Section ======== */
        .simple-plan {
            background-color: white;
            position: relative;
        }

        .simple-plan__grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
        }

        .simple-plan__visual-title {
            text-align: center;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .simple-plan__phone-mockup {
            background: #111;
            border-radius: 40px;
            padding: 15px;
            box-shadow: var(--shadow-lg);
            max-width: 350px;
            margin: 0 auto;
        }

        .simple-plan__phone-screen {
            background: var(--bg-light);
            border-radius: 25px;
            padding: 20px;
            aspect-ratio: 9 / 19;
            display: flex;
            flex-direction: column;
        }

        .simple-plan__card-header {
            text-align: center;
            font-weight: 500;
            padding-bottom: 10px;
            border-bottom: 1px dashed var(--border-light);
            color: var(--text-light);
        }

        .simple-plan__card-body {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .simple-plan__card-footer {
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-light);
            margin-top: auto;
            padding-top: 10px;
        }

        .simple-plan__card-label {
            font-size: 0.9rem;
            color: var(--text-light);
            letter-spacing: 2px;
        }

        .simple-plan__member-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-color);
            margin-top: 5px;
        }

        .simple-plan__member-id-box {
            background: white;
            border: 1px solid var(--border-light);
            border-radius: 10px;
            padding: 15px 25px;
            margin-top: 25px;
            box-shadow: var(--shadow-sm);
        }

        .simple-plan__member-id-label {
            display: block;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .simple-plan__member-id {
            display: block;
            font-size: 2.5rem;
            font-weight: 900;
            font-family: monospace;
            color: var(--secondary-color);
            letter-spacing: 2px;
        }

        .simple-plan__tag {
            display: inline-block;
            background: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .simple-plan__title {
            font-size: 2.5rem;
            font-weight: 900;
            line-height: 1.4;
            color: var(--text-color);
            margin-bottom: 1.5rem;
        }

        .simple-plan__description {
            font-size: 1.05rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .simple-plan__price-wrapper {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .simple-plan__price-box {
            background: linear-gradient(135deg, var(--bg-light), white);
            border: 1px solid var(--border-light);
            padding: 20px 30px;
            border-radius: 10px;
        }

        .simple-plan__price-value {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--secondary-color);
        }

        .simple-plan__discount-badge {
            background: #dc3545;
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            text-align: center;
        }

        .simple-plan__discount-badge strong {
            display: block;
            font-size: 1.5rem;
            font-weight: 900;
        }

        /* ======== Pricing Section ======== */
        .pricing {
            background: var(--bg-light);
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pricing-card {
            background: white;
            border: 2px solid var(--border-light);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            position: relative;
            transition: all var(--transition-normal);
        }

        .pricing-card.featured {
            border-color: var(--primary-color);
            transform: scale(1.05);
            box-shadow: var(--shadow-xl);
        }

        .pricing-card.featured::before {
            content: '人気No.1';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-color);
            color: white;
            padding: 5px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.875rem;
        }

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

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-plan {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .pricing-price {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .pricing-price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-light);
        }

        .pricing-features {
            list-style: none;
            margin: 2rem 0;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features i {
            color: var(--primary-color);
        }

        /* ======== スタンダードプラン単体表示用スタイル ======== */
        .pricing-cards--single {
            display: flex;
            justify-content: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .pricing-card--single {
            width: 100%;
            max-width: 500px;
            transform: none !important;
        }

        .pricing-card--single:hover {
            transform: translateY(-10px) !important;
        }

        .pricing-card__badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--accent-color), #e67e22);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .pricing-card__badge i {
            color: white;
        }

        .pricing-description {
            color: var(--text-light);
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        /* 複数店舗料金表示 */
        .pricing-multi-store {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            border: 2px solid #4caf50;
            border-radius: 12px;
            padding: 1.25rem;
            margin: 1.5rem 0;
            text-align: left;
        }

        .pricing-multi-store__icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background: #4caf50;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pricing-multi-store__icon i {
            color: white;
            font-size: 1.5rem;
        }

        .pricing-multi-store__content {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .pricing-multi-store__label {
            font-weight: 700;
            color: #2e7d32;
            font-size: 1rem;
        }

        .pricing-multi-store__price {
            color: var(--text-color);
            font-size: 0.95rem;
        }

        .pricing-multi-store__price strong {
            color: #2e7d32;
            font-size: 1.1rem;
        }

        .pricing-multi-store__example {
            font-size: 0.85rem;
            color: var(--text-light);
            background: white;
            padding: 4px 10px;
            border-radius: 4px;
            display: inline-block;
            margin-top: 4px;
        }

        .pricing-multi-store__highlight {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            border: 2px solid #ff9800;
            border-radius: 8px;
            padding: 10px 14px;
            margin-top: 10px;
        }

        .pricing-multi-store__highlight-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            background: #ff9800;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pricing-multi-store__highlight-icon i {
            color: white;
            font-size: 1rem;
        }

        .pricing-multi-store__highlight-text {
            font-size: 0.95rem;
            color: #e65100;
        }

        .pricing-multi-store__highlight-text strong {
            font-size: 1.1rem;
            color: #e65100;
        }

        .btn-lg {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
        }

        .btn-lg i {
            margin-right: 0.5rem;
        }

        /* ======== 一括買取プランセクション ======== */
        .onetime-purchase {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .onetime-purchase::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            border-radius: 50%;
        }

        .onetime-purchase__wrapper {
            position: relative;
            z-index: 1;
        }

        .onetime-purchase__header {
            text-align: center;
            margin-bottom: 40px;
        }

        .onetime-purchase__badge {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .onetime-purchase__badge i {
            margin-right: 6px;
            color: #ffd700;
        }

        .onetime-purchase__title {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--text-color);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .onetime-purchase__title .highlight {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .onetime-purchase__subtitle {
            font-size: 1.125rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* 店舗数選択セクション */
        .onetime-purchase__calculator {
            background: white;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .onetime-purchase__calculator-title {
            font-size: 1.25rem;
            color: var(--text-color);
            margin-bottom: 20px;
            text-align: center;
        }

        .onetime-purchase__store-selector {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .store-btn {
            padding: 12px 24px;
            border: 2px solid #e0e0e0;
            background: white;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .store-btn:hover {
            border-color: #667eea;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
        }

        .store-btn.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-color: transparent;
        }

        .onetime-purchase__custom-input {
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
            margin-top: 20px;
        }

        .onetime-purchase__custom-input label {
            font-weight: 600;
            color: var(--text-color);
        }

        .onetime-purchase__custom-input input {
            width: 100px;
            padding: 8px 12px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
        }

        #calculate-btn {
            padding: 8px 20px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        #calculate-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .onetime-purchase__content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            align-items: start;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 料金詳細セクション */
        .onetime-purchase__pricing-detail {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .onetime-purchase__pricing-title {
            font-size: 1.5rem;
            color: var(--text-color);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .onetime-purchase__breakdown {
            margin-bottom: 30px;
        }

        .breakdown-header {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--text-color);
            padding: 15px;
            background: var(--bg-light);
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .breakdown-monthly {
            margin-bottom: 25px;
        }

        .breakdown-monthly h4 {
            font-size: 0.875rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .breakdown-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .breakdown-item.additional-stores {
            color: #666;
        }

        .breakdown-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            font-weight: 700;
            font-size: 1.125rem;
            border-top: 2px solid var(--primary-color);
            margin-top: 10px;
        }

        .breakdown-calculation {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            border-radius: 15px;
            padding: 25px;
        }

        .calculation-box {
            display: flex;
            align-items: center;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 15px;
        }

        .calc-item {
            text-align: center;
        }

        .calc-item span:first-child {
            display: block;
            font-size: 0.875rem;
            color: var(--text-light);
            margin-bottom: 5px;
        }

        .calc-item span:last-child {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-color);
        }

        .calc-operator {
            font-size: 1.5rem;
            color: #667eea;
            font-weight: 700;
        }

        .calc-result {
            background: white;
            padding: 15px 25px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .calc-result span:first-child {
            display: block;
            font-size: 0.875rem;
            color: var(--text-light);
            margin-bottom: 5px;
        }

        .calc-result .final-price {
            font-size: 1.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .onetime-purchase__value-proposition {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .value-item {
            display: flex;
            align-items: start;
            gap: 15px;
            padding: 20px;
            background: var(--bg-light);
            border-radius: 12px;
        }

        .value-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .value-item p {
            font-size: 0.9375rem;
            line-height: 1.6;
        }

        .value-item strong {
            display: block;
            margin-bottom: 5px;
            color: var(--text-color);
        }

        /* 保守メンテナンス費用セクション */
        .maintenance-info {
            margin-top: 30px;
            padding: 25px;
            background: linear-gradient(135deg, rgba(6, 199, 85, 0.05) 0%, rgba(6, 199, 85, 0.08) 100%);
            border-radius: 15px;
            border-left: 4px solid var(--primary-color);
        }

        .maintenance-info h4 {
            font-size: 1.125rem;
            color: var(--text-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .maintenance-info h4 i {
            color: var(--primary-color);
        }

        .maintenance-detail {
            background: white;
            padding: 20px;
            border-radius: 10px;
            margin-top: 15px;
        }

        .maintenance-detail p {
            font-size: 0.9375rem;
            color: var(--text-light);
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .maintenance-bonus {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .maintenance-bonus i {
            font-size: 1.5rem;
            color: #ff9800;
        }

        .maintenance-bonus strong {
            font-size: 1.125rem;
            color: #333;
        }

        .maintenance-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background: var(--bg-light);
            border-radius: 8px;
            margin: 15px 0;
            border: 1px solid #e0e0e0;
        }

        .maintenance-label {
            font-weight: 600;
            color: var(--text-color);
            font-size: 0.9375rem;
        }

        .maintenance-amount {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-light);
        }

        .maintenance-note {
            font-size: 0.875rem;
            color: var(--text-light);
            margin-top: 10px;
            padding: 10px;
            background: var(--bg-light);
            border-radius: 6px;
        }

        .onetime-purchase__price-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            border: 3px solid transparent;
            background-clip: padding-box;
            position: relative;
            height: fit-content;
        }

        .onetime-purchase__price-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
            margin: -3px;
            border-radius: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .onetime-purchase__price-label {
            font-size: 0.875rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            text-align: center;
        }

        .onetime-purchase__price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            margin-bottom: 30px;
            gap: 5px;
        }

        .onetime-purchase__currency {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .onetime-purchase__amount {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .onetime-purchase__tax {
            font-size: 1rem;
            color: var(--text-light);
            align-self: flex-end;
            margin-bottom: 10px;
        }

        .onetime-purchase__formula {
            background: var(--bg-light);
            border-radius: 10px;
            padding: 12px;
            margin-bottom: 25px;
            text-align: center;
        }

        .onetime-purchase__formula p {
            font-size: 0.9375rem;
            color: var(--text-light);
            margin: 0;
        }

        .formula-monthly {
            font-weight: 700;
            color: var(--text-color);
        }

        .onetime-purchase__includes {
            margin-bottom: 30px;
        }

        .onetime-purchase__includes h4 {
            font-size: 0.9375rem;
            color: var(--text-light);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .onetime-purchase__includes ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .onetime-purchase__includes li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9375rem;
            color: var(--text-color);
        }

        .onetime-purchase__includes i {
            color: var(--primary-color);
            font-size: 0.875rem;
        }

        .onetime-purchase__cta {
            width: 100%;
            justify-content: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            font-size: 1.125rem;
            padding: 18px 40px;
            transition: all var(--transition-normal);
        }

        .onetime-purchase__cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .onetime-purchase__notice {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            padding: 20px 30px;
            margin-top: 40px;
            display: flex;
            align-items: start;
            gap: 15px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .onetime-purchase__notice i {
            color: var(--accent-color);
            font-size: 1.25rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .onetime-purchase__notice p {
            font-size: 0.9375rem;
            color: var(--text-color);
            line-height: 1.6;
        }

        .onetime-purchase__notice strong {
            color: var(--accent-color);
        }

        /* 比較表 */
        .onetime-purchase__comparison-table {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-top: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .onetime-purchase__comparison-table h3 {
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-align: center;
        }

        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 0 0 1px #e0e0e0;
        }

        .comparison-table thead {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .comparison-table th {
            padding: 15px;
            text-align: center;
            font-weight: 600;
        }

        .comparison-table td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #f0f0f0;
        }

        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }

        .comparison-table .onetime-cell {
            background: var(--bg-light);
            font-weight: 700;
            font-size: 1.125rem;
            vertical-align: middle;
        }

        .comparison-table .negative {
            color: #999;
        }

        .comparison-table .even {
            color: var(--text-color);
            font-weight: 600;
        }

        .comparison-table .positive {
            color: var(--primary-color);
            font-weight: 700;
        }

        .comparison-table .highlight-row {
            background: rgba(102, 126, 234, 0.05);
        }

        .table-note {
            text-align: center;
            margin-top: 15px;
            color: var(--text-light);
            font-size: 0.875rem;
        }

        /* ======== 一括買取プランリンクセクション ======== */
        .onetime-link {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.08) 100%);
            padding: 60px 0;
            border-top: 1px solid #e9ecef;
            border-bottom: 1px solid #e9ecef;
        }

        .onetime-link__wrapper {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
        }

        .onetime-link__wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
            margin: -2px;
            border-radius: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .onetime-link__content {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 30px;
            align-items: center;
            margin-bottom: 30px;
        }

        .onetime-link__icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .onetime-link__icon i {
            font-size: 2rem;
            color: #ffd700;
        }

        .onetime-link__title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .onetime-link__subtitle {
            font-size: 1.125rem;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .onetime-link__subtitle strong {
            color: var(--text-color);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .onetime-link__benefits {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--bg-light);
            border-radius: 25px;
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--text-color);
        }

        .benefit-item i {
            color: var(--primary-color);
            font-size: 1rem;
        }

        .onetime-link__cta {
            text-align: center;
        }

        .onetime-link__button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            font-size: 1.125rem;
            padding: 18px 40px;
            transition: all var(--transition-normal);
            margin-bottom: 15px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .onetime-link__button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .onetime-link__note {
            font-size: 0.875rem;
            color: var(--text-light);
            margin: 0;
        }

        /* ======== Flow Section ======== */
        .flow {
            background: white;
        }

        .flow__steps {
            display: flex;
            flex-direction: column;
            gap: 30px;
            position: relative;
        }

        .flow__steps::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: var(--border-light);
            border-radius: 2px;
        }

        .flow__step {
            padding-left: 70px;
            position: relative;
        }

        .flow__step-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            color: white;
            border-radius: 50%;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 4px solid white;
        }

        .flow__step-title {
            font-size: 1.4rem;
            color: var(--text-color);
            margin-bottom: 0.5rem;
        }

        .flow__step-desc {
            color: var(--text-light);
        }

        /* ======== FAQ Section ======== */
        .faq {
            background: var(--bg-light);
        }

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

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

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

        .faq-question {
            width: 100%;
            text-align: left;
            padding: 1.5rem;
            background: none;
            border: none;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all var(--transition-normal);
        }

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

        .faq-icon {
            transition: transform var(--transition-normal);
        }

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

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-normal);
        }

        .faq-answer-content {
            padding: 0 1.5rem 1.5rem;
            color: var(--text-light);
        }

        /* ======== Final CTA Section ======== */
        .final-cta {
            background: white;
            text-align: center;
        }

        .final-cta__message {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--text-light);
        }

        .final-cta__strong-message {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: var(--text-color);
        }

        .final-cta__campaign-notice {
            background: #fff3e0;
            border: 2px dashed var(--accent-color);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .form-title {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        /* ======== Contact Form ======== */
        .contact-form-wrapper {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }

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

        .form-label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .required-tag {
            background: #e53935;
            color: white;
            font-size: 0.7rem;
            padding: 2px 6px;
            border-radius: 3px;
            margin-left: 5px;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border-light);
            border-radius: 10px;
            font-size: 1rem;
            transition: all var(--transition-normal);
            font-family: inherit;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(6, 199, 85, 0.1);
        }

        .form-privacy {
            margin-bottom: 2rem;
            text-align: center;
        }

        .form-privacy input {
            margin-right: 5px;
            transform: translateY(1px);
        }

        .form-privacy a {
            color: var(--secondary-color);
            text-decoration: none;
        }

        .form-privacy a:hover {
            text-decoration: underline;
        }

        .form-submit {
            text-align: center;
        }

        .form-message {
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 5px;
            text-align: left;
        }

        .form-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .form-message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        /* ======== Footer ======== */
        .footer {
            background: #1a1a1a;
            color: white;
            padding: 3rem 0 2rem;
        }

        .footer__content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer__info {
            flex: 1;
        }

        .footer__logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }

        .footer__links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer__links a {
            color: #ccc;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        .footer__links a:hover {
            color: white;
        }

        .footer__copyright {
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px solid #4f6173;
            padding-top: 30px;
            color: #999;
        }

        /* ======== Animations ======== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ======== Responsive Design ======== */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .problem-cards, .trust__grid {
                grid-template-columns: 1fr;
            }

            .hero-grid, .why-line__grid, .support__grid, .simple-plan__grid {
                grid-template-columns: 1fr;
            }

            .hero-image {
                order: -1;
                margin-bottom: 2rem;
            }

            .why-line__image-wrapper {
                order: -1;
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: white;
                flex-direction: column;
                justify-content: center;
                transition: left var(--transition-normal);
            }

            .nav.active {
                left: 0;
            }

            .mobile-menu-btn {
                display: block;
                z-index: 1001;
            }

            .mobile-menu-btn.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .mobile-menu-btn.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-menu-btn.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }

            .section-title {
                font-size: 2rem;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .hero-text {
                text-align: center;
            }

            .hero-cta {
                justify-content: center;
            }

            .solution-steps {
                grid-template-columns: 1fr;
            }

            .solution-step .step-arrow {
                display: none;
            }

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

            .seo-content {
                padding: 40px 20px;
            }

            .seo-content h3 {
                font-size: 1.8rem;
            }

            .seo-content h4 {
                font-size: 1.3rem;
            }

            .comparison__table-wrapper::after {
                display: block;
            }

            .flow__steps::before {
                left: 15px;
            }

            .flow__step {
                padding-left: 50px;
            }

            .flow__step-number {
                width: 35px;
                height: 35px;
                left: 0;
            }

            .contact-form-wrapper {
                padding: 20px;
            }

            .footer__content {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }

            /* Custom Development Section Responsive */
            .custom-dev__examples-grid {
                grid-template-columns: 1fr;
            }

            .custom-dev__examples {
                padding: 1.5rem;
            }

            .custom-dev__flow {
                padding: 1.5rem;
            }

            .custom-dev__flow-steps {
                flex-direction: column;
                gap: 0.5rem;
            }

            .custom-dev__flow-step {
                max-width: 100%;
                width: 100%;
            }

            .custom-dev__flow-arrow {
                transform: rotate(90deg);
            }

            .custom-dev__notice {
                flex-direction: column;
                text-align: center;
                gap: 0.75rem;
            }

            .custom-dev__intro {
                font-size: 1rem;
            }
        }









/* ======== 秋田県の商業環境分析セクション ======== */
.akita-business-analysis {
    background: white;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.analysis-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-normal);
}

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

.analysis-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.analysis-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.analysis-data {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.data-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    font-family: var(--font-accent);
}

.data-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.analysis-description {
    text-align: left;
    line-height: 1.7;
    color: var(--text-light);
}

.analysis-description strong {
    color: var(--text-color);
    font-weight: 700;
}

.insight-box {
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    padding: 3rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    margin-top: 3rem;
}

.insight-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.insight-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* ======== 秋田県内エリア別導入ガイド ======== */
.akita-area-guide {
    background: var(--bg-light);
}

.area-tabs {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    background: var(--text-color);
    padding: 0.5rem;
    gap: 0.5rem;
}

.tab-button {
    flex: 1;
    min-width: 120px;
    padding: 1rem 1.5rem;
    background: transparent;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tab-button.active {
    background: var(--primary-color);
    color: white;
}

.tab-contents {
    padding: 3rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.area-name {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.area-characteristics,
.area-strategies {
    margin-bottom: 2rem;
}

.area-characteristics h4,
.area-strategies h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.area-characteristics ul {
    list-style: none;
    padding-left: 0;
}

.area-characteristics li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.area-characteristics li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.strategy-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.strategy-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.strategy-content strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.strategy-content p {
    color: var(--text-light);
    margin: 0;
}

.other-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.other-area-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.other-area-item h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.other-area-item p {
    color: var(--text-light);
    margin: 0;
}

/* ======== 秋田県の業種別活用事例 ======== */
.akita-industry-cases {
    background: white;
}

.industry-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.industry-case-card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

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

.case-header {
    background: var(--text-color);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.case-header i {
    font-size: 2rem;
}

.case-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.case-problem,
.case-solution,
.case-result {
    padding: 1.5rem;
}

.case-problem {
    background: white;
}

.case-problem h4,
.case-solution h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.case-problem p {
    color: var(--text-light);
    margin: 0;
}

.case-solution ul {
    list-style: none;
    padding: 0;
}

.case-solution li {
    margin-bottom: 0.8rem;
    padding-left: 25px;
    position: relative;
}

.case-solution li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.case-solution li strong {
    color: var(--text-color);
}

.case-result {
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.result-icon {
    font-size: 2rem;
}

.case-result p {
    margin: 0;
    font-weight: 600;
}

/* ======== 導入前の不安解消Q&A ======== */
.akita-detailed-faq {
    background: var(--bg-light);
}

.detailed-faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detailed-faq-item {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.faq-q {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.faq-q i {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.faq-a {
    padding-left: 2.5rem;
}

.faq-a p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.faq-a ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-a li {
    margin-bottom: 0.8rem;
}

.faq-a li strong {
    color: var(--secondary-color);
}

.emphasis {
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1.5rem;
    font-weight: 600;
}

.pos-compatibility {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.pos-compatibility h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.message-examples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.example-item {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
}

.example-item strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.example-item p {
    margin: 0;
    font-style: italic;
    color: var(--text-light);
}

/* ======== 秋田県特化型チェックリスト ======== */
.akita-checklist {
    background: white;
}

.checklist-container {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.checklist-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.checklist-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.checklist-checkbox {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checklist-text {
    flex: 1;
    font-size: 1.1rem;
    color: var(--text-color);
}

.checklist-result {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
    border: 3px solid var(--primary-color);
}

.result-title {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.result-content {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.result-content .result-count {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1rem;
}

/* ======== レスポンシブ対応（一括買取プラン） ======== */
@media (max-width: 968px) {
    .onetime-purchase__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .onetime-purchase__title {
        font-size: 2rem;
    }

    .onetime-purchase__amount {
        font-size: 3rem;
    }

    .onetime-purchase__value-proposition {
        grid-template-columns: 1fr;
    }

    .calculation-box {
        flex-direction: column;
        gap: 20px;
    }

    .calc-operator {
        transform: rotate(90deg);
    }
}

@media (max-width: 640px) {
    .onetime-purchase {
        padding: 60px 0;
    }

    .onetime-purchase__pricing-detail,
    .onetime-purchase__price-card,
    .onetime-purchase__comparison-table {
        padding: 25px 20px;
    }

    .onetime-purchase__title {
        font-size: 1.75rem;
    }

    .onetime-purchase__amount {
        font-size: 2.5rem;
    }

    .onetime-purchase__currency {
        font-size: 1.5rem;
    }

    .onetime-purchase__notice {
        flex-direction: column;
        padding: 20px;
    }

    .onetime-purchase__store-selector {
        flex-direction: column;
    }

    .store-btn {
        width: 100%;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 5px;
    }

    /* 一括買取プランリンクのレスポンシブ */
    .onetime-link__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .onetime-link__wrapper {
        padding: 30px 20px;
    }

    .onetime-link__title {
        font-size: 1.5rem;
    }

    .onetime-link__benefits {
        justify-content: center;
    }

    .benefit-item {
        font-size: 0.875rem;
    }
}

/* ======== レスポンシブデザイン ======== */
@media (max-width: 768px) {
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-button {
        width: 100%;
    }
    
    .industry-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .strategy-item {
        flex-direction: column;
        text-align: center;
    }
    
    .other-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-a {
        padding-left: 0;
    }
    
    .checklist-item {
        padding: 1rem;
    }
    
    .checklist-text {
        font-size: 1rem;
    }
}




/* ======== IT導入補助金セクション ======== */
.it-hojo {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #eaf3ef 100%);
  position: relative;
  overflow: hidden;
}
.it-hojo::before {
  content: "";
  position: absolute; inset: -40% -20% auto auto;
  width: 80vw; height: 80vw;
  background: radial-gradient(circle, rgba(6,199,85,.08) 0%, transparent 60%);
  filter: blur(1px);
  transform: rotate(25deg);
}
.it-hojo__wrap { position: relative; z-index: 1; }
.it-hojo__badge { margin-bottom: 14px; }
.it-hojo__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900; margin: 0 0 10px;
}
.it-hojo__ratio { font-variant-numeric: tabular-nums; }
.it-hojo__lead {
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 28px;
}
.it-hojo__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.it-hojo__card {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: 20px; padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.it-hojo__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.it-hojo__icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 10px;
  background: rgba(6,199,85,.1); color: var(--primary-color);
  font-size: 18px;
}
.it-hojo__cardTitle { font-size: 1.1rem; margin-bottom: 6px; }
.it-hojo__text { color: var(--text-light); }
.it-hojo__steps { padding-left: 20px; margin: 0; color: var(--text-light); }
.it-hojo__cta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px;
}
.it-hojo__notes {
  margin-top: 16px; font-size: .85rem; color: var(--text-light);
  background: #fff; border: 1px dashed var(--border-light);
  padding: 16px; border-radius: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .it-hojo__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .it-hojo { padding: 60px 0; }
  .it-hojo__grid { grid-template-columns: 1fr; }
  .it-hojo__cta { flex-direction: column; }
}

/* ========================================
   Beauty Salon Specific Sections
   (美容室向けページ専用セクション)
   ======================================== */

/* System Integration Section (HPB/SALON BOARD棲み分け) */
.system-integration {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.system-integration__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.system-integration__card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.system-integration__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.system-integration__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.system-integration__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.system-integration__desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.system-integration__message {
  text-align: center;
  margin-top: 3rem;
}

.system-integration__message p {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* POS Scanner Section */
.pos-scanner {
  background: var(--bg-light);
}

.pos-scanner__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.pos-scanner__requirement,
.pos-scanner__alternative,
.pos-scanner__support {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.pos-scanner__requirement h3,
.pos-scanner__alternative h3,
.pos-scanner__support h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pos-scanner__requirement h3 i {
  color: #06c755;
}

.pos-scanner__alternative h3 i {
  color: #4a90e2;
}

.pos-scanner__support h3 i {
  color: #ff6b35;
}

.pos-scanner__requirement p,
.pos-scanner__alternative p,
.pos-scanner__support p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Sendai Local Context Section (仙台ローカルコンテキスト) */
.sendai-context {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 5rem 0;
}

.sendai-context__content {
  max-width: 900px;
  margin: 0 auto;
}

.sendai-context__insight {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
  border-left: 4px solid #06c755;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sendai-context__insight:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sendai-context__subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sendai-context__subtitle i {
  color: #06c755;
  font-size: 1.5rem;
}

.sendai-context__text {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
}

.sendai-context__text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.sendai-context__note {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #06c755;
  margin-top: 3rem;
}

.sendai-context__note p {
  margin: 0;
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.sendai-context__note i {
  color: #06c755;
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .system-integration__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .system-integration__grid {
    grid-template-columns: 1fr;
  }

  .system-integration__icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .system-integration__title {
    font-size: 1.25rem;
  }

  .pos-scanner__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sendai-context {
    padding: 3rem 0;
  }

  .sendai-context__insight {
    padding: 1.5rem;
  }

  .sendai-context__subtitle {
    font-size: 1.1rem;
  }

  .sendai-context__note {
    padding: 1.5rem;
  }
}

/* ======== Industry Pages Section ======== */
.industry-pages {
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.industry-pages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.industry-pages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.industry-page-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.industry-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(6, 199, 85, 0.15);
    border-color: rgba(6, 199, 85, 0.2);
}

.industry-page-card:hover::before {
    opacity: 1;
}

.industry-page-card__icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(6, 199, 85, 0.1), rgba(6, 199, 85, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.industry-page-card:hover .industry-page-card__icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    transform: scale(1.05);
}

.industry-page-card__content {
    flex: 1;
    min-width: 0;
}

.industry-page-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.industry-page-card__desc {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.industry-page-card__arrow {
    width: 32px;
    height: 32px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.industry-page-card:hover .industry-page-card__arrow {
    background: var(--primary-color);
    color: white;
    transform: translateX(4px);
}

.industry-pages__cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(6, 199, 85, 0.05), rgba(6, 199, 85, 0.02));
    border-radius: 20px;
    border: 1px dashed rgba(6, 199, 85, 0.3);
}

.industry-pages__cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Industry Pages - Responsive */
@media (max-width: 1200px) {
    .industry-pages__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .industry-pages__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .industry-page-card {
        padding: 1rem;
    }

    .industry-page-card__icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .industry-page-card__title {
        font-size: 0.9rem;
    }

    .industry-page-card__desc {
        font-size: 0.75rem;
    }

    .industry-page-card__arrow {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 600px) {
    .industry-pages__grid {
        grid-template-columns: 1fr;
    }

    .industry-page-card {
        padding: 1.25rem;
    }

    .industry-page-card__icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .industry-page-card__title {
        font-size: 1rem;
    }

    .industry-page-card__desc {
        font-size: 0.8rem;
        -webkit-line-clamp: 1;
    }
}

/* ========================================
   Partner LP Styles
   ======================================== */

/* Partner Hero */
.partner-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.partner-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 199, 85, 0.15) 0%, transparent 60%);
    animation: float 25s ease-in-out infinite;
}

.partner-hero .hero-text h1 {
    color: white;
}

.partner-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.partner-hero .hero-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.partner-hero .hero-feature strong {
    color: white;
}

.partner-hero .hero-feature p {
    color: rgba(255, 255, 255, 0.8);
}

.badge-partner {
    background: linear-gradient(135deg, var(--primary-color), #00a341);
    color: white;
    font-size: 0.9rem;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badge-partner i {
    font-size: 1rem;
}

/* Partner Hero Visual */
.partner-hero-visual {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.partner-visual-card {
    background: linear-gradient(135deg, var(--primary-color), #00a341);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    color: white;
}

.partner-visual-card i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.partner-visual-card span {
    font-size: 1.2rem;
    font-weight: 700;
}

.partner-visual-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.partner-visual-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 15px 10px;
    color: white;
    transition: all 0.3s ease;
}

.partner-visual-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.partner-visual-item i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.partner-visual-item span {
    font-size: 0.75rem;
    font-weight: 600;
}

/* Target Section */
.partner-target {
    background: var(--bg-light);
}

.target-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.target-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.target-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(6, 199, 85, 0.1), rgba(6, 199, 85, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
}

.target-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

.target-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Why Partner Section */
.why-partner {
    background: white;
}

.why-partner-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-partner-card {
    display: flex;
    gap: 30px;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.why-partner-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.why-partner-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-color), #00a341);
}

.why-partner-number {
    font-family: var(--font-accent);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(6, 199, 85, 0.2);
    line-height: 1;
    flex-shrink: 0;
}

.why-partner-content {
    flex: 1;
}

.why-partner-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-partner-content h3 i {
    color: var(--primary-color);
}

.why-partner-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.why-partner-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-partner-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.why-partner-list li i {
    color: var(--primary-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.why-partner-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(6, 199, 85, 0.1), rgba(6, 199, 85, 0.05));
    padding: 12px 20px;
    border-radius: 50px;
    margin-top: 15px;
}

.why-partner-highlight i {
    font-size: 1.5rem;
    color: #06C755;
}

.why-partner-highlight span {
    font-weight: 600;
    color: var(--text-color);
}

/* Features Note */
.features-note {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
    border-left: 5px solid var(--accent-color);
}

.features-note h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-note h4 i {
    color: var(--accent-color);
}

.features-note p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.features-note strong {
    color: var(--text-color);
}

/* Partner Industries */
.partner-industries {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
}

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

.industry-item {
    background: white;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.industry-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(6, 199, 85, 0.1), rgba(6, 199, 85, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.industry-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
}

.industries-note {
    background: white;
    border-radius: 12px;
    padding: 20px 30px;
    text-align: center;
}

.industries-note p {
    margin: 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.industries-note i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Partner Types */
.partner-types {
    background: white;
}

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

.partner-type-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.partner-type-card.featured {
    background: linear-gradient(135deg, rgba(6, 199, 85, 0.05), rgba(6, 199, 85, 0.02));
    border-color: var(--primary-color);
}

.partner-type-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #00a341);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    font-family: var(--font-accent);
}

.partner-type-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 10px;
    margin-bottom: 5px;
}

.partner-type-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.partner-type-content {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.partner-type-role {
    margin-bottom: 15px;
}

.partner-type-role h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-type-role h4 i {
    color: var(--primary-color);
}

.partner-type-role p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin: 0;
    padding-left: 24px;
}

.partner-type-reward {
    background: rgba(6, 199, 85, 0.1);
    border-radius: 10px;
    padding: 12px 15px;
    margin-top: 15px;
}

.partner-type-reward span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 3px;
    text-transform: uppercase;
}

.partner-type-reward p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
}

.partner-type-examples {
    margin-bottom: 15px;
}

.partner-type-examples p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.partner-type-benefit {
    background: linear-gradient(135deg, rgba(6, 199, 85, 0.1), rgba(6, 199, 85, 0.05));
    border-radius: 10px;
    padding: 15px;
}

.partner-type-benefit p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.partner-type-benefit i {
    color: var(--accent-color);
    margin-top: 2px;
}

.partner-types-note {
    text-align: center;
    color: var(--text-light);
}

.partner-types-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Partner Support */
.partner-support {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.support-item {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.support-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #00a341);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: white;
}

.support-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.support-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Partner Flow */
.partner-flow {
    background: white;
}

.flow-steps-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.flow-step-h {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    position: relative;
}

.flow-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #00a341);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    font-family: var(--font-accent);
    margin: 0 auto 15px;
}

.flow-step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.flow-step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.flow-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Partner Welcome */
.partner-welcome {
    background: var(--bg-light);
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.welcome-good h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.welcome-good ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.welcome-good li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.6;
}

.welcome-good li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.welcome-note {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-radius: 12px;
    padding: 20px 25px;
    border-left: 4px solid var(--accent-color);
}

.welcome-note p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.welcome-note i {
    color: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Partner CTA */
.partner-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.partner-cta .section-title {
    color: white;
}

.partner-cta .final-cta__message {
    color: rgba(255, 255, 255, 0.85);
}

.partner-cta .final-cta__message strong {
    color: var(--primary-color);
}

.partner-cta .final-cta__strong-message {
    color: white;
}

/* Form Enhancements */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-light);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.checkbox-item:hover {
    background: rgba(6, 199, 85, 0.1);
}

.checkbox-item input:checked + span,
.checkbox-item:has(input:checked) {
    background: rgba(6, 199, 85, 0.15);
    border-color: var(--primary-color);
}

.checkbox-item input {
    margin: 0;
}

.form-note {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    text-align: center;
}

.form-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

/* Back to Main */
.back-to-main {
    background: var(--bg-light);
    padding: 60px 0;
}

.back-to-main-content {
    text-align: center;
}

.back-to-main-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Partner LP Responsive */
@media (max-width: 1024px) {
    .target-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .partner-types-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .partner-hero .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-hero-visual {
        display: none;
    }
    
    .partner-visual-items {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-partner-card {
        flex-direction: column;
        gap: 15px;
    }
    
    .why-partner-number {
        font-size: 2rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .flow-steps-horizontal {
        flex-direction: column;
    }
    
    .flow-step-h {
        max-width: 100%;
        width: 100%;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .partner-visual-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .checkbox-group {
        flex-direction: column;
    }
    
    .checkbox-item {
        width: 100%;
        justify-content: flex-start;
    }
}
