* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --main-color: #9DCC01;
    --primary-color: #9DCC01;
    --primary-dark: #7AA201;
    --primary-light: #B8E033;
    --primary-lighter: #D4EC66;

    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --text-light: #888888;

    /* Background Colors */
    --bg-light: #FAFBFC;
    --bg-white: #FFFFFF;
    --white: #ffffff;

    /* Borders & Shadows */
    --border-color: #E8E8E8;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #9DCC01, #7AA201);
    --gradient-secondary: linear-gradient(135deg, #f5f7fa, #e9ecef);
}

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(5px);
    z-index: 3000;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

nav > a {
    display: flex;
    align-items: center;
    line-height: 0;
}

.logo {
    height: 40px;
    display: block;
}


.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section with Blocks Animation */
        .hero {
            position: relative;
            height: 100vh;
            max-width: 100vw;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f5f5 100%);
            overflow: hidden;
        }

        /* アニメーション背景 */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(157, 204, 1, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(157, 204, 1, 0.12) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

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

        /* 幾何学パターン */
        .geometric-pattern {
            position: absolute;
            width: 100vw;
            height: 100%;
            opacity: 0;
        }

        .geometric-pattern span {
            position: absolute;
            display: block;
            border: 1px solid #9DCC01;
        }

        .geo-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            right: 10%;
            animation: float 6s ease-in-out infinite;
        }

        .geo-2 {
            width: 200px;
            height: 200px;
            bottom: 15%;
            left: 5%;
            animation: float 8s ease-in-out infinite 1s;
        }

        .geo-3 {
            width: 150px;
            height: 150px;
            top: 40%;
            left: 15%;
            transform: rotate(45deg);
            animation: rotate-float 10s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        @keyframes rotate-float {
            0%, 100% {
                transform: translateY(0) rotate(45deg);
            }
            50% {
                transform: translateY(-30px) rotate(50deg);
            }
        }

        /* コンテンツコンテナ */
        .hero-content {
            position: relative;
            z-index: 10;
            text-align: left;
            padding: 0 40px;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        /* ロゴ/タイトル */
        .hero-logo {
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeInDown 1s ease-out 0.3s forwards;
        }

        .hero-logo h1 {
            font-size: 1.2rem;
            font-weight: 400;
            letter-spacing: 0.3em;
            color: #2c3e50;
            /*text-transform: uppercase;*/
            margin-bottom: 10px;
        }
        .hero-logo h1 > .green {
            color: #9DCC01;
        }

        .logo-underline {
            width: 62px;
            height: 2px;
            background: #9DCC01;
            margin: 0;
            margin-top: 8px;
            animation: expandWidth 1s ease-out 0.8s forwards;
            transform-origin: left;
            transform: scaleX(0);
        }

        /* キャッチコピー */
        .hero-tagline {
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.6s forwards;
        }

        .hero-tagline h2 {
            font-size: clamp(2.5rem, 8vw, 5.5rem);
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.2;
            letter-spacing: 0.02em;
            margin-bottom: 20px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }

        .tagline-accent {
            color: #9DCC01;
            display: inline-block;
            position: relative;
        }

        .tagline-accent::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #9DCC01;
            animation: slideIn 0.8s ease-out 1.2s forwards;
            transform: scaleX(0);
            transform-origin: left;
        }

        /* サブテキスト */
        .hero-subtitle {
            font-size: clamp(0.9rem, 1vw, 1.2rem);
            color: #666666;
            line-height: 1.9;
            max-width: 700px;
            margin: 0 0 50px 0;
            padding-top: 12px;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.9s forwards;
        }

        /* CTA ボタン */
        .hero-cta {
            opacity: 0;
            animation: fadeInUp 1s ease-out 1.2s forwards;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 50px;
            background: transparent;
            color: #9DCC01;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            border: 2px solid #9DCC01;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            text-transform: uppercase;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #9DCC01;
            transition: left 0.4s ease;
            z-index: -1;
        }

        .cta-button:hover {
            color: #000000;
        }

        .cta-button:hover::before {
            left: 0;
        }

        /* スクロールインジケーター */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            animation: fadeIn 1s ease-out 1.5s forwards;
        }

        .scroll-indicator span {
            display: block;
            width: 2px;
            height: 40px;
            background: linear-gradient(to bottom, transparent, #9DCC01);
            margin: 0 auto 10px;
            animation: scrollDown 2s ease-in-out infinite;
        }

        .scroll-indicator p {
            color: #9DCC01;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        @keyframes scrollDown {
            0%, 100% {
                transform: translateY(0);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateY(20px);
                opacity: 0;
            }
        }

        /* アニメーション定義 */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

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

        @keyframes expandWidth {
            from {
                transform: scaleX(0);
            }
            to {
                transform: scaleX(1);
            }
        }

        @keyframes slideIn {
            from {
                transform: scaleX(0);
            }
            to {
                transform: scaleX(1);
            }
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .hero {
                min-height: 500px;
                padding-top: 20px;
            }

            .hero-content {
                padding: 0 40px;
            }

            .hero-logo h1 {
                font-size: 1rem;
                letter-spacing: 0.2em;
            }

            .hero-subtitle {
                font-size: 0.95rem;
            }

            .cta-button {
                padding: 15px 40px;
                font-size: 0.9rem;
            }

            .geo-1 {
                width: 200px;
                height: 200px;
            }

            .geo-2 {
                width: 150px;
                height: 150px;
            }

            .geo-3 {
                width: 100px;
                height: 100px;
            }

            .scroll-indicator {
                bottom: 30px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding-top: 110px;
            }

            .hero-content {
                padding: 0 20px;
            }

            .hero-logo h1 {
                font-size: 0.85rem;
            }

            .hero-subtitle {
                margin-bottom: 40px;
            }

            .scroll-indicator {
                bottom: 20px;
            }

            .scroll-indicator span {
                height: 30px;
            }
        }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--main-color));
    margin: 0 auto 10px;
    animation: scrollDown 2s ease-in-out infinite;
}

.scroll-indicator p {
    color: var(--main-color);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

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

/* Page Hero (for about.html) */
.page-hero {
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    min-width: 100%;
    padding: 160px 40px 70px;
    margin-top: 0;
    margin-bottom: 10px;
}
.hero-accent {
    width: 60px;
    height: 4px;
    background-color: #9DCC01;
    margin-bottom: 20px;
}

.page-hero-content {
    text-align: left;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0;
    color: var(--text-dark);
    font-weight: 800;
}

.page-hero p {
    font-size: 1.5rem;
    color: var(--main-color);
    font-weight: 600;
    letter-spacing: 2px;
}

/* Page Hero Responsive */
@media (max-width: 768px) {
    .page-hero {
        /*padding: 30px 20px 0 20px;*/
        margin-top: 0;
    }

    .page-hero h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .page-hero p {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }

}
    .pc {
        display: inline;
    }
    .sp {
        display: none;
    }
@media (max-width: 480px) {
    .pc {
        display: none;
    }
    .sp {
        display: inline;
    }
    .page-hero {
        width:100%;
        max-width:100%;
        box-sizing: border-box!important;
        padding:120px 24px 0px 24px;
        margin:0;
    }

    .page-hero h1 {
        font-size: clamp(2.2rem, 6vw, 2rem);
    }

    .page-hero p {
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

/* Section Styles */
section > .container {
    padding: 0 6px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Subpage specific styles */
body.subpage section {
    max-width: 1200px;
}

/* Section Responsive */



/* Member Section Styles */
        .members-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
            gap: 50px;
            margin-bottom: 80px;
            padding: 60px 0;
        }

        .member-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            padding: 50px;
            display: flex;
            gap: 35px;
        }

        .member-photo {
            flex-shrink: 0;
        }

        .member-photo img {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            object-fit: cover;
            background-color: #f5f5f5;
        }

        .member-info {
            flex: 1;
        }

        .member-role {
            font-size: 12px;
            color: #9DCC01;
            font-weight: 700;
            letter-spacing: 0.15em;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .member-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 0.05em;
        }

        .member-bio {
            font-size: 14px;
            line-height: 1.9;
            color: #666;
        }

/* Members Grid Responsive */
@media (max-width: 1024px) {
    .members-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .members-grid {
        gap: 35px;
        margin-bottom: 50px;
        padding: 40px 0;
    }

    .member-card {
        padding: 40px;
        gap: 30px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .member-photo img {
        width: 140px;
        height: 140px;
    }

    .member-role {
        font-size: 11px;
    }

    .member-name {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .member-bio {
        font-size: 13px;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .members-grid {
        gap: 30px;
        margin-bottom: 80px;
        padding: 0;
    }

    .member-card {
        padding: 0px 35px;
        gap: 6px;
    }

    .member-photo img {
        width: 100%;
        height: 100%;
    }

    .member-role {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .member-name {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .member-bio {
        font-size: 12px;
        line-height: 1.8;
    }
}
å
/* Section Header Styles */

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

.section-title-en {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    text-align: center;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header.keiei {
    text-align: left;
    margin-bottom: 0px;
    padding-top:90px;
}
.section-header.keiei > .section-title {
    margin-bottom: 0px;
}

/* Section Header Responsive */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 50px;
    }

    .section-title-en {
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 1rem;
        max-width: 90%;
        line-height: 1.7;
    }
    .section-header.keiei {
    text-align: left;
    margin-bottom: 0px;
    padding-top:20px;
}
.section-header.keiei > .section-title {
    margin-bottom: 0px;
}
}

@media (max-width: 480px) {
    .section-header {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .section-title-en {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    .section-header.keiei {
    text-align: left;
    margin-bottom: 20px;
}
.section-header.keiei > .section-title {
    margin-bottom: 10px;
}
}  

/* セクション */
.section {
    margin-bottom: 30px;
}

.section-title-t {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.section-title-accent-t {
    width: 60px;
    height: 3px;
    background-color: #9DCC01;
    margin-bottom: 40px;
}
/* About Section */
        .about-section {
            width: 100vw;
            position: relative;
            padding: 120px 0;
            overflow: hidden;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

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

        .section-label {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.15em;
            color: #9DCC01;
            text-transform: uppercase;
            margin-bottom: 20px;
            position: relative;
            padding: 0 40px;
        }

        .section-label::before,
        .section-label::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 30px;
            height: 1px;
            background: #9DCC01;
        }

        .section-label::before {
            left: 0;
        }

        .section-label::after {
            right: 0;
        }

        .section-title {
            font-size: 48px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 30px;
            letter-spacing: 0.02em;
        }

        .company-name {
            color: #9DCC01;
            font-weight: 800;
        }

        .title-underline {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #9DCC01 0%, rgba(157, 204, 1, 0.3) 100%);
            margin: 0 auto;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
            margin-top: 60px;
        }

        .intro-text {
            font-size: 20px;
            line-height: 2;
            color: #2d2d2d;
            text-align: center;
            font-weight: 500;
            max-width: 900px;
            margin: 0 auto;
        }

        .intro-text span {
            display: inline-block;
            position: relative;
        }

        .highlight {
            color: #9DCC01;
            font-weight: 700;
            background: linear-gradient(transparent 60%, rgba(157, 204, 1, 0.13) 40%);
        }

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

        .feature-card {
            background: #ffffff;
            padding: 50px 35px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(157, 204, 1, 0.1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #9DCC01 0%, rgba(157, 204, 1, 0.5) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(157, 204, 1, 0.1) 0%, rgba(157, 204, 1, 0.2) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
            font-size: 32px;
            color: #9DCC01;
            font-weight: 700;
        }

        .feature-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 16px;
            letter-spacing: 0.02em;
        }

        .feature-description {
            font-size: 15px;
            line-height: 1.8;
            color: #555;
        }

        /* レスポンシブデザイン */
        @media (max-width: 1024px) {
            .about-section {
                padding: 100px 0;
            }

            .about-container {
                padding: 0 30px;
            }

            .section-title {
                font-size: 40px;
            }

            .intro-text {
                font-size: 18px;
            }

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

        @media (max-width: 768px) {
            .about-section {
                padding: 80px 0;
            }

            .about-container {
                padding: 0 24px;
            }

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

            .section-title {
                font-size: 32px;
                margin-bottom: 24px;
            }

            .intro-text {
                font-size: 16px;
                line-height: 1.9;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                margin-top: 60px;
            }

            .feature-card {
                padding: 40px 28px;
            }

            .section-label {
                font-size: 12px;
                padding: 0 30px;
            }

            .section-label::before,
            .section-label::after {
                width: 20px;
            }
        }

        @media (max-width: 480px) {
            .about-section {
                padding: 60px 0;
            }

            .about-container {
                padding: 0 20px;
            }

            .section-title {
                font-size: 28px;
            }

            .intro-text {
                font-size: 15px;
            }

            .feature-card {
                padding: 35px 24px;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }

            .feature-title {
                font-size: 18px;
            }
        }

/* Company Info Section */
.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-item {
    background: var(--bg-light);
    padding: 25px;
    border-left: 3px solid var(--main-color);
}

.info-item h3 {
    color: var(--main-color);
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-item p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Business Section */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.business-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.business-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.business-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.business-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* History Section */
.history {
    background: var(--bg-white);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 10px 0;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 97.8%;
    background: linear-gradient(180deg, var(--primary-light), var(--primary-color));
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(50px);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-content {
    width: 45%;
    padding: 20px 25px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.timeline-date {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

.timeline-text {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 5px solid var(--bg-white);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.3);
}

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


/* Management Section - Responsive */
@media (max-width: 768px) {
    .management-section {
        padding: 60px 20px;
    }

    .management-grid {
        gap: 30px;
    }

    .member-card {
        padding: 30px 35px;
    }

    .member-header {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .member-photo {
        width: 130px;
        height: 130px;
        font-size: 1.3rem;
        margin-right: 16px;
    }

    .member-name {
        font-size: 1.4rem;
    }

    .member-role {
        font-size: 0.8rem;
    }

    .member-bio {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .member-card {
        padding: 38px 30px;
    }

    .member-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .member-photo {
        margin-right: 0;
        margin-bottom: 16px;
    }
}

/* Investment Section */
.investment-section {
    background: var(--bg-white);
    padding: 3rem 2rem 1rem 2rem;
    margin: 6rem calc(50% - 50vw) 6rem calc(50% - 50vw);
    width: 100vw;
}

.investment-category {
    margin-bottom: 4rem;
}

.investment-category h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--main-color);
    display: inline-block;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
}

.investment-card {
    background: white;
    padding: 2.2rem;
    border: 1px solid var(--border-color);
    display: flex;
    border-radius: 12px;
    flex-direction: column;
    height: 100%;
}


.company-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    flex-shrink: 0;
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.investment-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.investment-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.investment-card a {
    color: var(--main-color);
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.investment-card a:hover {
    opacity: 0.7;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
    padding: 100px;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 1px 0 10px 0;
}

.contact-item {
    padding: 20px;
    background: white;
}

.contact-item h3 {
    color: var(--main-color);
    margin-bottom: 10px;
}

.contact-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--main-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.contact-button:hover {
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #f5f5f5;
    color: var(--text-dark);
    padding: 60px 40px 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.footer-logo {
    height: 35px;
    margin-bottom: 20px;
}

.footer-copyright {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: left;
}

.footer-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    flex-shrink: 0;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.footer-section-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    text-align: left;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.footer-section-title:hover {
    color: var(--primary-color);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.footer-nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-align: left;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .portfolio-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .timeline::before {
        left: 25px;
        transform: none;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        margin-left: 50px;
        transform: translateX(0) !important;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-dot {
        left: -24px;
        top: 23px;
        transform: translateX(-50%);
    }

    /* Investment Section Responsive */
    .investment-section {
        padding: 4rem 1.5rem;
        margin: 4rem 0;
    }

    .investment-category h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

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

    .investment-card {
        padding: 1.8rem;
    }

    .investment-card h4 {
        font-size: 1rem;
    }

    .investment-card p {
        font-size: 0.85rem;
    }

    /* Contact Section Responsive */
    .contact {
        padding: 40px 20px;
    }

    .contact-info {
        gap: 30px;
        margin: 30px 0;
    }

    section {
        padding: 40px 20px 2px 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 0;
    }
    .section-title-jigyo {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .business-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer Responsive */
    .footer-content {
        flex-direction: column-reverse;
        gap: 40px;
        align-items: flex-start;
    }

    .footer-right {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    footer {
        padding: 50px 30px 30px;
    }
}

@media (max-width: 480px) {
    /* Investment Section Mobile */
    .investment-section {
        padding: 2rem 1.5rem;
        margin: 4rem 0 1rem 0;
    }

    .investment-category {
        margin-bottom: 4rem;
    }

    .investment-category h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .investment-grid {
        gap: 1.8rem;
    }

    .investment-card {
        padding: 2rem;
    }

    .company-logo {
        height: 70px;
        margin-bottom: 1.2rem;
        padding: 0.8rem;
    }

    .investment-card h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .investment-card p {
        font-size: 0.8rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .investment-card a {
        font-size: 0.8rem;
    }

    /* Contact Section Mobile */
    .contact {
        padding: 50px 20px;
    }

    .contact .section-title {
        font-size: 1.8rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 35px 0;
    }

    .contact-button {
        padding: 15px 35px;
        font-size: 0.9rem;
    }

    /* Footer Mobile */
    footer {
        padding: 60px 25px 35px;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-logo {
        height: 30px;
        margin-bottom: 20px;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .footer-right {
        gap: 35px;
        width: 100%;
    }

    .footer-section-title {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .footer-nav {
        gap: 18px;
    }

    .footer-nav a {
        font-size: 0.85rem;
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    position: relative;
    min-height: 600px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    padding: 80px 40px 0 40px;
}

.hero::before {
    display: none;
}

.hero-inner {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.hero-copy {
    text-align: left;
}
.hero-media {
    position: relative;
    width: 100%;
    max-width: 520px;
    justify-self: end;
    opacity: 0;
    animation: fadeInRight 1s ease-out 0.6s forwards;
}
.hero-media > img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.block-cluster {
    position: relative;
    width: 100%;
    padding-top: 90%;
}

.hero-block {
    position: absolute;
    width: clamp(66px, 10vw, 96px);
    height: clamp(66px, 10vw, 96px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial Black', sans-serif;
    font-size: clamp(1.5rem, 3.2vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    transform-style: preserve-3d;
    color: #ffffff;
}

/* 正面カラー */
.block-green {
    background: rgb(157, 204, 1);
    border: 2px solid rgb(157, 204, 1);
}

.block-white {
    background: #ffffff;
    color: rgb(157, 204, 1);
    border: 2px solid rgb(157, 204, 1);
}

/* 擬似 3D 面 */
.hero-block::before,
.hero-block::after {
    content: '';
    position: absolute;
}

.hero-block::before {
    /* 天面 */
    top: -18%;
    left: 8%;
    width: 84%;
    height: 24%;
    transform: skewX(-45deg);
    background: currentColor;
    opacity: 0.75;
}

.hero-block::after {
    /* 右側面 */
    top: 6%;
    right: -18%;
    width: 24%;
    height: 88%;
    transform: skewY(-45deg);
    background: currentColor;
    opacity: 0.65;
}

/* 影（緑 or 白ベース） */
.block-green {
    filter: drop-shadow(0 12px 0 rgba(157, 204, 1, 0.35));
}

.block-white {
    filter: drop-shadow(0 12px 0 rgba(255, 255, 255, 0.6));
}

/* ランダム配置をさらに散らす */
.block-1 { top: 2%;  right: 4%;  transform: rotate(-7deg); }
.block-2 { top: 18%; right: 26%; transform: rotate(6deg); }
.block-3 { top: -4%; right: 34%; transform: rotate(-13deg); }
.block-4 { top: 42%; right: 10%; transform: rotate(4deg); }
.block-5 { top: 30%; right: -4%; transform: rotate(-9deg); }
.block-6 { bottom: 8%; right: 30%; transform: rotate(7deg); }
.block-7 { bottom: -6%; right: 6%;  transform: rotate(-5deg); }

/* レスポンシブ */
@media (max-width: 1500px) {
    .hero-inner {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 1024px) {
    .hero-inner {
        gap: 50px;
    }
    .hero-media {
        max-width: 450px;
    }
}

@media (max-width: 1000px) {
    .hero {
        padding-top: 180px;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr 0.7fr;
        gap: 20px;
    }
    .hero-copy {
        text-align: left;
    }
    .hero-media {
        justify-self: end;
        max-width: 220px;
        width: 100%;
    }
    .block-cluster { padding-top: 110%; }
}

@media (max-width: 825px) {
    .hero {
        padding-top: 30px;
        padding-bottom: 80px;
        min-height: 500px;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .hero-media {
        display: none;
    }
    .hero-copy {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 0px;
        padding-bottom: 10px;
    }
    .hero-inner {
        padding: 0 10px;
    }
}


/* About Section - New Professional Design */
#about {
    padding: 100px 0;
}

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

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-lead {
    font-size: 1.4rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-top: 20px;
    font-weight: 300;
}

.about-main {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.about-text {
    padding-left: 20px;
}

.about-description {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: justify;
}

.about-stats {
    background: var(--gradient-primary);
    padding: 50px 40px;
    border: none;
    position: sticky;
    top: 120px;
}

.stat-item {
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number span {
    font-size: 2.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 1px;
    font-weight: 500;
}

/* About Section - Responsive */
@media (max-width: 1024px) {
    .about-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-stats {
        position: static;
    }
}

@media (max-width: 768px) {
    #about {
        padding: 60px 0;
    }

    .about-container {
        padding: 0 20px;
    }

    .about-header {
        margin-bottom: 50px;
    }

    .about-lead {
        font-size: 1.1rem;
    }

    .about-description {
        font-size: 0.95rem;
        text-align: left;
    }

    .about-stats {
        padding: 40px 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    #about {
        padding: 60px 0;
    }

    .about-container {
        padding: 0 20px;
    }

    .about-header {
        margin-bottom: 50px;
    }

    .about-lead {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-main {
        gap: 40px;
    }

    .about-text {
        padding-left: 0;
    }

    .about-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .about-stats {
        padding: 40px 25px;
    }

    .stat-item {
        padding: 25px 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-number span {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

/* Stats Section (New) */
.stats-section {
    background: var(--gradient-primary);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.stat-card .stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.stat-card .stat-number span {
    font-size: 3rem;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Business Section (New) */
.business-section {
    background: var(--bg-light);
    padding: 100px 0;
    width: 100vw;
    min-width: 100vw;
}

.business-section .section-header {
    margin-bottom: 60px;
    padding: 0 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;

}

.business-section .business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.business-section .business-card {
    background: var(--bg-white);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.business-section .business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform-origin: left;
}

.business-section .business-icon {
    font-size: 3rem;
    margin-bottom: 4px;
    display: inline-block;
}

.business-section .business-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 0.03em;
}

.business-section .business-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

 /* 会社概要 */
        .company-overview {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 30px;
        }

        .overview-left {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .overview-right {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .overview-item {
            background-color: #fff;
            padding: 30px 40px;
            position: relative;
            border: none;
        }

        .overview-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background-color: #9DCC01;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .overview-label {
            font-size: 11px;
            font-weight: 700;
            color: #999;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .overview-content {
            color: #1a1a1a;
            font-size: 15px;
            line-height: 1.9;
            font-weight: 400;
        }

        .overview-content a {
            color: #1a1a1a;
            text-decoration: none;
            border-bottom: 1px solid #9DCC01;
            transition: color 0.3s ease;
        }

        .overview-content a:hover {
            color: #9DCC01;
        }

        .overview-map-item {
            background-color: #fff;
            border: none;
            padding: 0;
            height: 400px;
            position: relative;
            overflow: hidden;
        }

        .overview-map-item iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

/* Company Overview Responsive */
@media (max-width: 1024px) {
    .company-overview {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .overview-map-item {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .company-overview {
        gap: 15px;
    }

    .overview-item {
        padding: 25px 30px;
    }

    .overview-label {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .overview-content {
        font-size: 14px;
        line-height: 1.8;
    }

    .overview-map-item {
        height: 300px;
    }

    .section-title-t {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .overview-item {
        padding: 8px 10px;
    }

    .overview-label {
        font-size: 0.8em;
        letter-spacing: 0.1em;
        margin-bottom: 2px;
    }

    .overview-content {
        font-size: 1em;
        line-height: 1.8;
    }

    .overview-map-item {
        height: 280px;
    }

    .section-title-t {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .section-title-accent-t {
        width: 50px;
        height: 2px;
        margin-bottom: 40px;
    }
}

        /* 企業理念セクション */
        .philosophy {
            background-color: #fafafa;
            padding: 60px;
            width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-bottom: 100px;
        }

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

        .philosophy-text {
            font-size: 18px;
            line-height: 2;
            color: #333;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

/* Stats & Business Responsive */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 30px 15px;
    }

    .stat-card .stat-number {
        font-size: 3rem;
    }

    .stat-card .stat-number span {
        font-size: 2rem;
    }

    .business-section {
        padding: 60px 0;
    }

    .business-section .section-header {
        padding: 0 20px;
    }

    .business-section .business-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .business-section .business-card {
        padding: 24px 25px;
    }

    .business-section .business-card h3 {
        font-size: 1.2rem;
    }

    .business-section .business-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card .stat-number {
        font-size: 2.5rem;
    }

    .business-section {
        padding: 60px 0;
    }

    .business-section .section-header {
        padding: 0 20px;
        margin-bottom: 50px;
    }

    .business-section .business-grid {
        padding: 0 20px;
        gap: 25px;
    }

    .business-section .business-card {
        padding: 35px 25px;
    }

    .business-section .business-icon {
        font-size: 2.5rem;
        margin-bottom: 4px;
    }

    .business-section .business-card h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .business-section .business-card p {
        font-size: 0.85rem;
        line-height: 1.7;
    }
}

/* ==========================================
   Contact Form Styles
   ========================================== */

.contact-form-section {
    padding: 100px 40px;
    width:100vw!important;
    min-width:100vw!important;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.contact-form-section.active {
    opacity: 1;
    transform: translateY(0);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-section .section-header {
    text-align: center;
    margin-bottom: 20px;
}
.contact .section-header {
    text-align: center;
    margin-bottom: 2px;
}

.contact-form-section .section-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 20px;
    line-height: 1.8;
}

.form-wrapper {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.form-label.required::after {
    content: ' *';
    color: #EF4444;
    font-weight: 700;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(157, 204, 1, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
}

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

.error-message {
    font-size: 13px;
    color: #EF4444;
    display: block;
    margin-top: 5px;
    min-height: 18px;
}

/* Privacy Policy Styles */
.privacy-policy {
    margin-top: 20px;
}

.policy-box {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    max-height: 400px;
    overflow-y: auto;
}

.policy-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.policy-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 20px 0 10px 0;
}

.policy-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.policy-content ul {
    list-style: disc;
    padding-left: 25px;
    margin: 10px 0;
}

.policy-content li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 6px;
}

/* Checkbox Styles */
.agree-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-text {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

/* reCAPTCHA Container */
.g-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

/* Submit Button */
.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 48px;
    background: var(--gradient-primary);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(157, 204, 1, 0.3);
    letter-spacing: 0.05em;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 204, 1, 0.4);
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(157, 204, 1, 0.3);
}

.submit-button svg {
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 20px;
    }

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

    .contact-form {
        gap: 20px;
    }

    .policy-box {
        padding: 20px;
        max-height: 300px;
    }

    .submit-button {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 40px 15px;
    }

    .form-wrapper {
        padding: 25px 15px;
    }

    .form-input,
    .form-textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .policy-box {
        padding: 15px;
    }

    .policy-title {
        font-size: 16px;
    }

    .policy-content h4 {
        font-size: 14px;
    }

    .policy-content p,
    .policy-content li {
        font-size: 13px;
    }
}