/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #6B5B4E;
    background-color: #F5F2ED;
    line-height: 1.7;
    padding-bottom: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    color: #6B5B4E;
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    background-color: #F5F2ED;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-image {
    width: 280px;
    height: 280px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(107, 91, 78, 0.15);
    border: 8px solid #fff;
}

.hero-text {
    width: 100%;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero-text .highlight {
    color: #D3C7B4;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #8B7B6E;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #D3C7B4;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #8B7B6E;
}

/* Section Title */
.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #6B5B4E;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background-color: #fff;
}

.features-image-center {
    max-width: 400px;
    margin: 0 auto 60px;
}

.features-image-center img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(107, 91, 78, 0.12);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #F5F2ED;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(107, 91, 78, 0.08);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 91, 78, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D3C7B4, #C4B8A5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #6B5B4E;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #8B7B6E;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background-color: #F5F2ED;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(107, 91, 78, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(107, 91, 78, 0.15);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #F5F2ED;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    width: 100%;
}

.stars {
    color: #D3C7B4;
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #6B5B4E;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #8B7B6E;
    font-weight: 500;
}

/* Message Section */
.message {
    padding: 80px 20px;
    background-color: #fff;
}

.message-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #F5F2ED 0%, #E8E3D8 100%);
    padding: 70px 50px;
    border-radius: 35px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(107, 91, 78, 0.15);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #D3C7B4;
    opacity: 0.3;
    margin-bottom: 20px;
}

.message-text {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 30px;
    font-weight: 500;
    color: #6B5B4E;
}

.message-author {
    font-size: 1.2rem;
    color: #8B7B6E;
    font-style: italic;
    margin-bottom: 8px;
}

.message-subtitle {
    font-size: 0.95rem;
    color: #8B7B6E;
}

/* Fixed Bottom Button */
.fixed-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.cta-button {
    background: linear-gradient(135deg, #D3C7B4, #C4B8A5);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 20px 60px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(211, 199, 180, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(211, 199, 180, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* How to Join Section */
.how-to-join {
    padding: 80px 20px;
    background-color: #F5F2ED;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    box-shadow: 0 8px 25px rgba(107, 91, 78, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(107, 91, 78, 0.15);
}

.step-number {
    display: inline-block;
    background: #D3C7B4;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #F5F2ED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 2rem;
    color: #D3C7B4;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #6B5B4E;
    font-weight: 600;
}

.step-card p {
    font-size: 0.95rem;
    color: #8B7B6E;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: #D3C7B4;
    flex-shrink: 0;
}

/* Footer */
footer {
    padding: 60px 20px 30px;
    background-color: #F5F2ED;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 280px;
}

.footer-brand h3 {
    font-size: 1.3rem;
    color: #6B5B4E;
    margin-bottom: 20px;
    font-weight: 600;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.company-info p {
    font-size: 0.9rem;
    color: #8B7B6E;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.company-info i {
    color: #D3C7B4;
    font-size: 0.95rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.company-name {
    font-weight: 600;
    color: #6B5B4E !important;
    font-size: 0.95rem !important;
}

.company-address,
.company-tel,
.company-hours {
    padding-left: 0;
}

.company-address {
    line-height: 1.6 !important;
}

.footer-links {
    display: flex;
    gap: 50px;
    flex: 2;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 180px;
}

.footer-column h4 {
    font-size: 1rem;
    color: #6B5B4E;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #8B7B6E;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #D3C7B4;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #D3C7B4, transparent);
    margin: 30px auto;
    max-width: 1200px;
}

.footer-bottom {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer {
    font-size: 0.85rem;
    color: #8B7B6E;
    margin-bottom: 10px;
}

.copyright {
    font-size: 0.85rem;
    color: #8B7B6E;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-image {
        width: 200px;
        height: 200px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .message-card {
        padding: 50px 30px;
    }

    .message-text {
        font-size: 1.3rem;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .cta-button {
        font-size: 1rem;
        padding: 16px 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        justify-content: flex-start;
        gap: 30px;
    }

    .footer-column {
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 15px;
    }

    .hero-image {
        width: 180px;
        height: 180px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 35px;
    }

    .features {
        padding: 50px 15px;
    }

    .features-image-center {
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 1.8rem;
    }

    .testimonials {
        padding: 50px 15px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .message {
        padding: 50px 15px;
    }

    .message-card {
        padding: 40px 25px;
        border-radius: 25px;
    }

    .quote-icon {
        font-size: 2.5rem;
    }

    .message-text {
        font-size: 1.2rem;
    }

    .message-author {
        font-size: 1rem;
    }

    .how-to-join {
        padding: 50px 15px;
    }

    .step-card {
        padding: 30px 20px;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 14px 30px;
    }

    .footer-content {
        text-align: center;
    }

    .footer-brand {
        min-width: 100%;
        text-align: center;
    }

    .company-info {
        align-items: center;
    }

    .company-info p {
        font-size: 0.85rem;
        justify-content: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }

    .footer-column {
        width: 100%;
        min-width: 100%;
    }
}

