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

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23f0f0f0"><polygon points="0,0 1000,100 1000,0"/></svg>');
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
}

.problem-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.problem-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.problem-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.hero-message {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2980b9;
    margin-bottom: 50px;
}

.cta-primary {
    margin-top: 50px;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.btn-secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #ddd;
}

.btn-secondary:hover {
    background: #e9ecef;
    border-color: #aaa;
}

.btn-large {
    padding: 25px 60px;
    font-size: 1.3rem;
}

.note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: white;
}

.problem-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.problem-section .intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #555;
}

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

.problem-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.problem-item h3 {
    color: #e74c3c;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.problem-item p {
    color: #666;
    line-height: 1.5;
}

.reassurance {
    text-align: center;
    background: #f0f8ff;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.reassurance p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.highlight {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2980b9;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.approach-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    line-height: 1.3;
}

.metaphor {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.metaphor p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.our-approach {
    background: #e8f5e8;
    padding: 40px;
    border-radius: 15px;
}

.our-approach h3 {
    font-size: 1.5rem;
    color: #27ae60;
    margin-bottom: 25px;
    text-align: center;
}

.our-approach p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* Method Section */
.method-section {
    padding: 80px 0;
    background: white;
}

.method-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.method-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #555;
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.step {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    border-top: 4px solid #3498db;
}

.step-number {
    background: #3498db;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step h4 {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 20px;
    font-weight: 500;
}

.step p {
    line-height: 1.6;
    color: #555;
}

.method-conclusion {
    font-size: 1.3rem;
    text-align: center;
    font-weight: 600;
    color: #2980b9;
    background: #f0f8ff;
    padding: 30px;
    border-radius: 15px;
}

/* Alternative Section */
.alternative-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.alternative-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.alternative-section > .container > p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 20px;
    color: #555;
}

.alternative-option {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.alternative-option h3 {
    color: #e67e22;
    margin-bottom: 20px;
}

.alternative-option p {
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: white;
}

.testimonial-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonial {
    background: #f0f8ff;
    padding: 50px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial h3 {
    font-size: 1.5rem;
    color: #2980b9;
    margin-bottom: 15px;
    text-align: center;
}

.customer-info {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* Profile Section */
.profile-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.profile-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.profile-content {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.profile-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.final-message {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2980b9;
    text-align: center;
    background: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.qualifications {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.qualifications h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.qualifications ul {
    list-style: none;
    max-width: 400px;
    margin: 0 auto;
}

.qualifications li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.qualifications li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #3498db;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.flow-section h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.flow-section > p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.flow-step {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border-top: 4px solid #3498db;
}

.flow-number {
    background: #3498db;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.flow-step p {
    line-height: 1.6;
    color: #555;
}

.pricing h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.pricing > p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.price-card {
    background: #f0f8ff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.price-card h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.price-description {
    color: #666;
    margin-bottom: 25px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 20px;
}

.tax {
    font-size: 1rem;
    font-weight: 400;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-message {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 50px;
}

.cta-button {
    margin-top: 40px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.faq-item p {
    line-height: 1.6;
    color: #555;
}

/* Access Section */
.access-section {
    padding: 80px 0;
    background: white;
}

.access-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.access-info {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.access-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.access-details p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .problem-list {
        text-align: center;
    }
    
    .method-steps {
        grid-template-columns: 1fr;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-steps {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .profile-content,
    .testimonial {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .method-steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        padding: 25px;
    }
    
    .profile-content,
    .testimonial {
        padding: 20px;
    }
}