 @font-face {
    font-family: "PPWoodland";
    src: url(/fonts/PPWoodland-Bold.otf);
    font-weight: normal;
    font-style: normal;
}
 
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
    font-family: "Geist", sans-serif;
            overflow-x: hidden; background-image: url(../image/WEB\ ILLU.svg);
    background-size: cover;
            background-position: center 50%;
            background-repeat: no-repeat;
            background-attachment: fixed;
            min-height: 50vh;
        }

        .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
             

            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .hero-content {
            max-width: 1200px;
            width: 100%;
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 400;
            color: white;
            margin-bottom: 15rem;
    font-family: "PPWoodland", sans-serif;
            letter-spacing: -0.02em;
        }


       




        .hero-text-block {
            max-width: 650px;
            margin-bottom: 9rem;
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            font-weight: 600;
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
        }

        .hero-description {
            font-size: clamp(1rem, 1.8vw, 1.125rem);
            color: white;
            line-height: 1.6;
            margin-bottom: 2.5rem;
        }

        .cta-button {
            display: inline-block;
            background: #D6872b;
            color: white;
            padding: 1rem 2.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(46, 25, 7, 0.4);
        }

        .cta-button:hover {
            background: #d35400;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(97, 53, 14, 0.4);
        }

        .social-icons {
            position: absolute;
            bottom: 3rem;
            right: 3rem;
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #7a9d9e;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            background: #f8f9fa;
        }

        @media (max-width: 768px) {
            .hero-title {
                margin-bottom: 4rem;
            }

            .social-icons {
                position: static;
                margin-top: 3rem;
                justify-content: center;
            }

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

            .hero-text-block {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .social-icon {
                width: 45px;
                height: 45px;
            }

            .cta-button {
                padding: 0.875rem 2rem;
                font-size: 1rem;
            }
        }





        
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    z-index: -1;
    width: 50%;
    height: 65%;
    background-image: url(/image/image.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-section::before {
    left: 0;
    background-position: top left;
}

.hero-section::after {
    right: 0;
    background-position: top left;
    transform: scaleX(-1);
}