
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0D4F3C 0%, #1B5E20 50%, #2E7D32 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0D4F3C 0%, #1B5E20 50%, #2E7D32 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::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"><defs><pattern id="stock-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,215,0,0.2)"/><path d="M5,15 L10,10 L15,12 L20,8" stroke="rgba(255,215,0,0.3)" stroke-width="0.5" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23stock-pattern)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-text .subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #FFD700;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-text .description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-photo {
    position: relative;
    animation: slideInRight 1s ease-out 0.6s both;
    margin: 0 auto;
}

.photo-frame {
    width: 280px;
    height: 350px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: rotate(-5deg);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.photo-frame:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.4);
}

.photo-inner {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #666;
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #D32F2F, #F44336, #FF5722);
    color: white;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.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(-5px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.4);
    animation: pulse 1s infinite;
}

/* New Content Sections */
.content-section {
    padding: 80px 0;
    position: relative;
}

.content-section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.content-section:nth-child(odd) {
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #2E7D32, #388E3C, #4CAF50);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.image-placeholder::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"><defs><pattern id="chart-pattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M2,8 L5,4 L8,6 L10,2" stroke="rgba(255,255,255,0.3)" stroke-width="0.5" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23chart-pattern)"/></svg>');
    opacity: 0.5;
}

.image-placeholder:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(46, 125, 50, 0.4);
}

.content-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #2E7D32, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.highlight-box {
    background: linear-gradient(135deg, #E8F5E8, #C8E6C9);
    border-left: 5px solid #4CAF50;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
}

.highlight-box h4 {
    color: #2E7D32;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Profile Section */
.profile {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #2E7D32, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #2E7D32, #FF6B35);
    border-radius: 2px;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.profile-image {
    position: relative;
}

.profile-card {
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.3);
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-10px);
}

.profile-details h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #333;
}

.profile-item {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    transition: transform 0.2s ease;
}

.profile-item:hover {
    transform: translateX(10px);
}

.profile-label {
    background: linear-gradient(45deg, #2E7D32, #4CAF50);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 700;
    min-width: 120px;
    text-align: center;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.profile-value {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Event Details Section */
.event-details {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #388E3C 100%);
    color: white;
    padding: 80px 0;
    position: relative;
}

.event-details::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"><defs><pattern id="event-pattern" x="0" y="0" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="1" fill="rgba(255,215,0,0.2)"/><rect x="5" y="5" width="5" height="5" fill="none" stroke="rgba(255,215,0,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23event-pattern)"/></svg>');
    opacity: 0.3;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.detail-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,215,0,0.1), transparent);
    transform: rotate(-45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.detail-card:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(50%, 50%);
}

.detail-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.detail-card:hover .detail-icon {
    transform: scale(1.2) rotate(10deg);
}

.detail-card h4 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

/* Benefits Section */
.benefits {
    background: white;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::after {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(46, 125, 50, 0.3);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px rgba(255,215,0,0.5));
}

.benefit-card h4 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
}

/* Risk Disclaimer */
.risk-disclaimer {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    border: 2px solid #FF9800;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    position: relative;
}

.risk-disclaimer::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 30px;
    background: #FF9800;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.2rem;
}

.risk-disclaimer h4 {
    color: #E65100;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 10px;
}

.risk-disclaimer p {
    color: #BF360C;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #E8F5E8 0%, #C8E6C9 100%);
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(46, 125, 50, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.gallery-item:hover::before {
    transform: translateX(100%);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(46, 125, 50, 0.2);
}

.gallery-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #2E7D32, #4CAF50);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

/* CTA Section */
.final-cta {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.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"><defs><pattern id="cta-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="2" fill="rgba(255,215,0,0.1)"/><path d="M5,20 L12.5,10 L20,15 L25,5" stroke="rgba(255,215,0,0.2)" stroke-width="1" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.4;
}

.urgency-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.big-cta {
    font-size: 1.5rem;
    padding: 25px 50px;
    background: linear-gradient(45deg, #D32F2F, #F44336);
    margin: 20px;
    position: relative;
    z-index: 2;
}

/* Stock Animation */
.stock-ticker {
    background: linear-gradient(90deg, #000 0%, #1a1a1a 50%, #000 100%);
    color: #00FF41;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 2px solid #00FF41;
    border-bottom: 2px solid #00FF41;
    position: relative;
}

.stock-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0,255,65,0.1) 50%, transparent 100%);
    animation: tickerGlow 3s ease-in-out infinite;
}

@keyframes tickerGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 15s linear infinite;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px #00FF41;
}

@keyframes scroll-left {
    0% { transform: translate3d(100%, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* New sections styles */
.investment-strategy {
    background: white;
    padding: 80px 0;
}

.market-analysis {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.success-stories {
    background: white;
    padding: 80px 0;
}

/* Statistics counters */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #E8F5E8, #C8E6C9);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #2E7D32;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .profile-grid, .content-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .content-grid.reverse {
        direction: ltr;
    }
}

/* Intersection Observer Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.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;
    }
    .navbar{
        display: none;
    }
    
    .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;
    }
    }