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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #faf6f0 0%, #f5f1ea 100%);
    background-attachment: fixed;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(220, 20, 60, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #DC143C;
    margin: 0;
}

.brand-tagline {
    font-size: 0.85rem;
    color: #4169E1;
    margin: 0;
    font-weight: 300;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.08) 0%, rgba(65, 105, 225, 0.08) 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.calendar-item img,
.product-image img,
.guide-image img,
.trends-chart img,
.partner-item img,
.product-image svg {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-image img,
.product-image svg {
    height: 180px;
}

.guide-image img {
    height: 300px;
}

.trends-chart img {
    height: 300px;
}

.partner-item img {
    height: 120px;
    border-radius: 8px;
}

/* Section Content Centering */
.section-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #DC143C;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-button {
    background: linear-gradient(135deg, #DC143C 0%, #B91C3C 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    font-family: 'Noto Sans JP', sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #DC143C;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #DC143C 0%, #9ACD32 100%);
    border-radius: 2px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.03) 0%, rgba(154, 205, 50, 0.03) 100%);
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4169E1;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Regional Calendar */
.regional-calendar {
    padding: 80px 0;
}

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

.calendar-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.1);
    text-align: center;
}

.calendar-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4169E1;
    margin-bottom: 15px;
}

.calendar-item img {
    margin-bottom: 15px;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-item {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.02) 0%, rgba(154, 205, 50, 0.02) 100%);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(220, 20, 60, 0.1);
    text-align: center;
}

.product-image {
    margin-bottom: 15px;
}

.product-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4169E1;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #DC143C;
    margin-bottom: 10px;
}

.product-item p:last-of-type {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-button {
    background: linear-gradient(135deg, #4169E1 0%, #1E40AF 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    box-shadow: 0 3px 10px rgba(65, 105, 225, 0.3);
}

.product-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.4);
}

/* Guide Services */
.guide-services {
    padding: 80px 0;
}

.guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.guide-text {
    text-align: center;
}

.guide-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4169E1;
    margin-bottom: 20px;
}

.guide-text p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.guide-text ul {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.guide-text li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.guide-text li::before {
    content: '🎌';
    position: absolute;
    left: 0;
}

/* Membership */
.membership {
    padding: 80px 0;
    background: white;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.membership-plan {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.02) 0%, rgba(154, 205, 50, 0.02) 100%);
    border: 1px solid rgba(220, 20, 60, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.membership-plan.featured {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05) 0%, rgba(65, 105, 225, 0.05) 100%);
    border: 2px solid #DC143C;
    transform: scale(1.05);
}

.membership-plan h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4169E1;
    margin-bottom: 15px;
}

.membership-plan .price {
    font-size: 2rem;
    font-weight: 600;
    color: #DC143C;
    margin-bottom: 25px;
}

.membership-plan ul {
    list-style: none;
    text-align: left;
}

.membership-plan li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.membership-plan li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9ACD32;
    font-weight: bold;
}

/* Crowd Trends */
.crowd-trends {
    padding: 80px 0;
}

.trends-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.trends-text {
    text-align: center;
}

.trends-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4169E1;
    margin-bottom: 20px;
}

.trends-text p {
    color: #666;
    line-height: 1.7;
}

/* Partners */
.partners {
    padding: 80px 0;
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

/* Contact */
.contact {
    padding: 80px 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-item {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4169E1;
    margin-bottom: 15px;
}

.contact-item p {
    color: #666;
    margin-bottom: 5px;
}

.contact-time {
    font-size: 0.9rem;
    color: #999;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section:first-child {
    grid-column: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo .logo {
    width: 30px;
    height: 30px;
}

.footer-brand {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #9ACD32;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
}

.footer-section a:hover {
    color: #9ACD32;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #DC143C;
}

.modal-content h2 {
    color: #DC143C;
    margin-bottom: 25px;
    font-family: 'Noto Serif JP', serif;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4169E1;
    box-shadow: 0 0 0 2px rgba(65, 105, 225, 0.1);
}

.form-submit {
    background: linear-gradient(135deg, #DC143C 0%, #B91C3C 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
}

.form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .guide-content,
    .trends-content {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .guide-text,
    .trends-text {
        text-align: center;
    }
    
    .guide-text ul {
        text-align: center;
    }
    
    .membership-plan.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
    }
    
    .hero-image img {
        height: 200px;
    }
}