* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 25%, #667eea 50%, #764ba2 75%, #f093fb 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255,255,255,0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.1"/><circle cx="20" cy="20" r="0.3" fill="white" opacity="0.05"/><circle cx="80" cy="30" r="0.4" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.5px);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
.floating-element:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 20;
    position: relative;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 30%, #FF6B6B 60%, #FF1493 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate, textSlide 0.8s ease-out;
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    letter-spacing: -1px;
}

@keyframes glow {
    from { filter: brightness(1) drop-shadow(0 0 20px rgba(255, 215, 0, 0.3)); }
    to { filter: brightness(1.2) drop-shadow(0 0 40px rgba(255, 215, 0, 0.6)); }
}

@keyframes textSlide {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    margin-bottom: 35px;
    font-weight: 600;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.5s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    margin-bottom: 50px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 1s both;
    line-height: 1.8;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: pulse 2s infinite, fadeInUp 1s ease-out 1.5s both;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

@keyframes pulse {
    0% { box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 0 0 0 rgba(255, 107, 107, 0.7); }
    70% { box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 0 0 10px rgba(255, 107, 107, 0); }
    100% { box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 0 0 0 rgba(255, 107, 107, 0); }
}

/* Profile Section */
.profile-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.profile-image {
    position: relative;
    animation: fadeInLeft 1s ease-out;
}

.profile-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.profile-img::before {
    content: '伊木浩史';
    font-size: 2rem;
    font-weight: 900;
    color: white;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.profile-info {
    animation: fadeInRight 1s ease-out;
}

.profile-title {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-details {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 30px;
}

.profile-highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.profile-highlight p {
    margin-bottom: 5px;
    font-weight: 600;
}

.profile-motto {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
    border-left: 4px solid #667eea;
}

.profile-motto p {
    font-size: 1.2rem;
    color: #667eea;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.achievement-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.achievement-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.achievement-number {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.achievement-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 5px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.section-title.dark {
    color: #2c3e50;
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-card.main-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.philosophy-card.main-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.philosophy-card.main-card p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.philosophy-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.philosophy-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.philosophy-card h4 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.philosophy-card p {
    color: #555;
    line-height: 1.6;
}

/* Success Stories Section */
.success-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.quote-icon {
    font-size: 4rem;
    color: #FFD700;
    font-family: serif;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #FFD700;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Community Section */
.community-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.05"/><circle cx="80" cy="60" r="3" fill="white" opacity="0.03"/><circle cx="40" cy="80" r="1.5" fill="white" opacity="0.04"/></svg>');
    animation: float 15s ease-in-out infinite reverse;
}

.section-title {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-card.premium {
    position: relative;
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.premium-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: premium-glow 2s ease-in-out infinite alternate;
}

@keyframes premium-glow {
    from { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
    to { box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6); }
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 25px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    font-size: 1.1rem;
    cursor: pointer;
}

.faq-answer {
    padding: 25px;
    color: #2c3e50;
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
}

/* CTA Section */
.final-cta {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #667eea 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="30" r="1" fill="white" opacity="0.1"/><circle cx="70" cy="70" r="1.5" fill="white" opacity="0.08"/></svg>');
    animation: float 25s ease-in-out infinite;
}

.cta-title {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FFD700, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 30px 0 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.cta-countdown {
    margin: 25px 0;
    padding: 15px 25px;
    background: rgba(255, 107, 107, 0.2);
    border: 2px solid #FF6B6B;
    border-radius: 50px;
    display: inline-block;
    animation: urgency-pulse 2s infinite alternate;
}

@keyframes urgency-pulse {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.cta-note {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
    position: relative;
    z-index: 10;
}

.highlight {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Animations */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .profile-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .profile-img {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

    .achievement-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-benefits {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-subtitle {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .hero-description {
        font-size: clamp(1rem, 3vw, 1.3rem);
    }
}

@media (max-width: 480px) {
    .achievement-cards {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .philosophy-section,
    .success-section,
    .faq-section {
        padding: 60px 20px;
    }

    .testimonial-card {
        padding: 25px;
    }
}
.floating-button-container {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
    }
    @keyframes bounce {
    0%, 100% {
    transform: translateY(0);
    }
    50% {
    transform: translateY(-10px);
    }
    }
    .floating-button {
    position: relative;
    background: #05C705;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: auto;
    }
    
    .floating-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    .floating-button .icon {
    font-size: 24px;
    }
    
    @media (max-width: 768px) {
    .floating-button-container {
    bottom: 20px;
    }
    
    .floating-button {
    font-size: 16px;
    padding: 12px 24px;
    }
    }
    
    @media (max-width: 480px) {
    .floating-button {
    font-size: 14px;
    padding: 10px 20px;
    }
    
    .floating-button .icon {
    font-size: 18px;
    }
    }

/* Disclaimer Section */
.disclaimer-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
}

.disclaimer-title {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #FFD700;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.disclaimer-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.disclaimer-item h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #FFD700;
}

.disclaimer-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.disclaimer-footer {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.disclaimer-footer p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive for Disclaimer */
@media (max-width: 768px) {
    .disclaimer-section {
        padding: 60px 20px;
    }
    
    .disclaimer-grid {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .disclaimer-footer {
        padding: 20px;
    }
    
    .disclaimer-footer p {
        font-size: 0.85rem;
    }
}