* { margin: 0; padding: 0; box-sizing: border-box; } :root { --primary-color: #6366f1; --primary-dark: #4f46e5; --secondary-color: #f59e0b; --text-dark: #1f2937; --text-light: #6b7280; --bg-light: #f9fafb; --bg-white: #ffffff; --border-color: #e5e7eb; --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1); --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1); --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1); } body { font-family: 'Noto Sans JP', sans-serif; line-height: 1.6; color: var(--text-dark); background-color: var(--bg-white); } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* Header */ .header { position: fixed; top: 0; width: 100%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); z-index: 1000; box-shadow: var(--shadow-sm); } .navbar { padding: 1rem 0; } .nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; } .nav-logo h2 { color: var(--primary-color); font-weight: 700; } .nav-menu { display: flex; list-style: none; gap: 2rem; } .nav-link { text-decoration: none; color: var(--text-dark); font-weight: 500; transition: color 0.3s ease; } .nav-link:hover { color: var(--primary-color); } .hamburger { display: none; flex-direction: column; cursor: pointer; } .bar { width: 25px; height: 3px; background-color: var(--text-dark); margin: 3px 0; transition: 0.3s; } /* Hero Section */ .hero { padding: 120px 0 80px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; overflow: hidden; } .hero-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .hero-title { font-size: 3.5rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; } .hero-subtitle { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.9; line-height: 1.8; } .hero-buttons { display: flex; gap: 1rem; margin-bottom: 3rem; } .btn { padding: 12px 30px; border: none; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-block; } .btn-primary { background-color: var(--primary-color); color: white; } .btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); } .btn-secondary { background-color: transparent; color: white; border: 2px solid white; } .btn-secondary:hover { background-color: white; color: var(--primary-color); } .btn-large { padding: 16px 40px; font-size: 1.125rem; } .hero-stats { display: flex; gap: 3rem; } .stat-item { display: flex; flex-direction: column; } .stat-number { font-size: 2rem; font-weight: 700; margin-bottom: 0.25rem; } .stat-label { font-size: 0.875rem; opacity: 0.8; } .hero-image { display: flex; justify-content: center; align-items: center; } .shoe-animation { position: relative; width: 300px; height: 300px; } .shoe-icon { font-size: 120px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: float 3s ease-in-out infinite; } .token-ring { position: absolute; width: 100%; height: 100%; border: 3px solid rgba(255, 255, 255, 0.3); border-radius: 50%; animation: rotate 10s linear infinite; } .token-ring::before { content: ''; position: absolute; width: 20px; height: 20px; background: white; border-radius: 50%; top: -10px; left: 50%; transform: translateX(-50%); box-shadow: 0 0 20px rgba(255, 255, 255, 0.8); } @keyframes float { 0%, 100% { transform: translate(-50%, -50%) translateY(0); } 50% { transform: translate(-50%, -50%) translateY(-20px); } } @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } /* Features Section */ .features { padding: 80px 0; background-color: var(--bg-light); } .section-title { text-align: center; font-size: 2.5rem; font-weight: 700; margin-bottom: 3rem; color: var(--text-dark); } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; } .feature-card { background: white; padding: 2rem; border-radius: 12px; box-shadow: var(--shadow-md); transition: transform 0.3s ease, box-shadow 0.3s ease; } .feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); } .feature-icon { font-size: 3rem; margin-bottom: 1rem; } .feature-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-dark); } .feature-card p { color: var(--text-light); line-height: 1.8; } /* How It Works Section */ .how-it-works { padding: 80px 0; } .steps-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; } .step { text-align: center; position: relative; } .step-number { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0 auto 1.5rem; } .step-content h3 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--text-dark); } .step-content p { color: var(--text-light); line-height: 1.8; } /* Testimonials Section */ .testimonials { padding: 80px 0; background-color: var(--bg-light); } .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin-top: 3rem; } .testimonial-card { background: white; padding: 2rem; border-radius: 12px; box-shadow: var(--shadow-md); } .testimonial-content { margin-bottom: 1.5rem; } .testimonial-content p { font-style: italic; color: var(--text-dark); line-height: 1.8; } .testimonial-author { display: flex; align-items: center; gap: 1rem; } .author-avatar { width: 50px; height: 50px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; } .author-info h4 { color: var(--text-dark); margin-bottom: 0.25rem; } .author-info p { color: var(--text-light); font-size: 0.875rem; } /* FAQ Section */ .faq { padding: 80px 0; } .faq-container { max-width: 800px; margin: 0 auto; } .faq-item { margin-bottom: 1rem; border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; } .faq-question { width: 100%; padding: 1.5rem; background: white; border: none; text-align: left; font-size: 1.125rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background-color 0.3s ease; } .faq-question:hover { background-color: var(--bg-light); } .faq-icon { font-size: 1.5rem; transition: transform 0.3s ease; } .faq-item.active .faq-icon { transform: rotate(45deg); } .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; } .faq-item.active .faq-answer { max-height: 200px; } .faq-answer p { padding: 0 1.5rem 1.5rem; color: var(--text-light); line-height: 1.8; } /* CTA Section */ .cta { padding: 80px 0; background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: white; text-align: center; } .cta-content h2 { font-size: 2.5rem; margin-bottom: 1rem; } .cta-content p { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.9; } /* Footer */ .footer { background-color: var(--text-dark); color: white; padding: 60px 0 20px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; } .footer-section h3, .footer-section h4 { margin-bottom: 1.5rem; } .footer-section p { opacity: 0.8; line-height: 1.8; margin-bottom: 1rem; } .footer-section ul { list-style: none; } .footer-section ul li { margin-bottom: 0.75rem; } .footer-section ul li a { color: white; text-decoration: none; opacity: 0.8; transition: opacity 0.3s ease; } .footer-section ul li a:hover { opacity: 1; } .footer-credit { margin-top: 1rem; font-size: 0.875rem; } .footer-credit a { color: var(--secondary-color); text-decoration: none; } .footer-credit a:hover { text-decoration: underline; } .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 2rem; text-align: center; opacity: 0.8; } /* Responsive Design */ @media (max-width: 768px) { .hamburger { display: flex; } .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background-color: white; width: 100%; text-align: center; transition: 0.3s; box-shadow: var(--shadow-lg); padding: 2rem 0; } .nav-menu.active { left: 0; } .hero-container { grid-template-columns: 1fr; text-align: center; } .hero-title { font-size: 2.5rem; } .hero-stats { justify-content: center; } .features-grid, .testimonials-grid { grid-template-columns: 1fr; } .steps-container { grid-template-columns: 1fr; } .hero-buttons { flex-direction: column; align-items: center; } .btn { width: 200px; } } @media (max-width: 480px) { .hero-title { font-size: 2rem; } .section-title { font-size: 2rem; } .cta-content h2 { font-size: 2rem; } .footer-content { grid-template-columns: 1fr; text-align: center; } } /* Smooth scrolling */ html { scroll-behavior: smooth; } /* Loading animation */ .fade-in { opacity: 0; transform: translateY(20px); animation: fadeIn 0.6s ease forwards; } @keyframes fadeIn { to { opacity: 1; transform: translateY(0); } } /* Custom scrollbar */ ::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background: var(--bg-light); } ::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 5px; } ::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }