        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #006634;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
 /* お問い合せだけボタン風に */
            .contact-btn {
                background: linear-gradient(135deg, #FF8630, #fbbf24);
                padding: 2px 8px;
                border-radius: 5px;
                font-weight: bold;
                color: #92400e;
                }

            
        /* Header 
        header {
            background: linear-gradient(135deg, #2d5a3d, #4a7c59);
            color: white;
            padding: 20px 0;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        Navigation 
        nav {
            background: rgba(45, 90, 61, 0.9);
            padding: 15px 0;
            text-align: center;
            backdrop-filter: blur(10px);
        }
        
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-weight: 500;
            display: inline-block;
        }
        
        nav a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }*/
        
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .subtitle {
            font-size: 1.2em;
            opacity: 0.9;
        }
    
        
        /* Main Content */
        main {
            padding: 40px 0;
        }
        
        .hero-section {
            text-align: center;
            padding: 60px 0;
            background: linear-gradient(135deg, rgba(45, 90, 61, 0.1), rgba(74, 124, 89, 0.1));
            border-radius: 30px;
            margin-bottom: 40px;
        }
        
        .hero-title {
            font-size: 3em;
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        
        .hero-subtitle {
            font-size: 1.3em;
            color: #4a7c59;
            margin-bottom: 30px;
        }
        
        .catchphrase {
            font-size: 1.5em;
            color: #d97706;
            font-weight: bold;
            background: linear-gradient(135deg, #fef3c7, #fbbf24);
            padding: 15px 30px;
            border-radius: 50px;
            display: inline-block;
            box-shadow: 0 5px 20px rgba(249, 115, 22, 0.3);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        /* Facility Grid */
        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .facility-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .facility-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(135deg, #4a7c59, #2d5a3d);
        }
        
        .facility-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: #4a7c59;
        }
        
        .facility-icon {
            font-size: 3em;
            margin-bottom: 20px;
            display: block;
            text-align: center;
        }
        
        .facility-title {
            font-size: 1.5em;
            font-weight: bold;
            color: #2d5a3d;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .facility-description {
            color: #666;
            line-height: 1.7;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .facility-features {
            list-style: none;
            padding: 0;
        }
        
        .facility-features li {
            padding: 8px 0;
            color: #666;
            border-bottom: 1px solid #f0f0f0;
            position: relative;
            padding-left: 25px;
        }
        
        .facility-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #4a7c59;
            font-weight: bold;
        }
        
        /* Special cards */
        .driving-range {
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            border-color: #22c55e;
        }
        
        .putting-practice {
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            border-color: #3b82f6;
        }
        
        .bunker-practice {
            background: linear-gradient(135deg, #fefce8, #fef3c7);
            border-color: #f59e0b;
        }
        
        .amenities {
            background: linear-gradient(135deg, #fdf2f8, #fce7f3);
            border-color: #ec4899;
        }
        
        /* Statistics section */
        .stats-section {
            background: linear-gradient(135deg, #2d5a3d, #4a7c59);
            color: white;
            padding: 50px 0;
            border-radius: 20px;
            margin: 40px 0;
            text-align: center;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 3em;
            font-weight: bold;
            color: #a7d4a7;
            display: block;
        }
        
        .stat-label {
            font-size: 1.1em;
            opacity: 0.9;
            margin-top: 10px;
        }
        
        /* Footer */
        footer {
            background: #2d5a3d;
            color: white;
            padding: 40px 0;
            text-align: center;
            margin-top: 60px;
        }
        
        .contact-info {
            font-size: 1.1em;
            line-height: 1.8;
        }
        
        .contact-info strong {
            color: #a7d4a7;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            .logo {
                font-size: 2em;
            }
            
            .hero-title {
                font-size: 2.2em;
            }
            
            .hero-subtitle {
                font-size: 1.1em;
            }
            
            .catchphrase {
                font-size: 1.2em;
                padding: 12px 25px;
            }
            
            .facilities-grid {
                grid-template-columns: 1fr;
            }
            
            .facility-card {
                padding: 20px;
            }
            
            nav a {
                margin: 0 8px;
                padding: 8px 15px;
                font-size: 0.9em;
            }
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .facility-card {
            animation: fadeInUp 0.6s ease-out;
        }
        
        .facility-card:nth-child(1) { animation-delay: 0.1s; }
        .facility-card:nth-child(2) { animation-delay: 0.2s; }
        .facility-card:nth-child(3) { animation-delay: 0.3s; }
        .facility-card:nth-child(4) { animation-delay: 0.4s; }
        .facility-card:nth-child(5) { animation-delay: 0.5s; }
        .facility-card:nth-child(6) { animation-delay: 0.6s; }
