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

body {
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro', '游ゴシック', sans-serif;
    line-height: 1.6;
    color: #2F2F2F;
    background-color: #FAFAF8;
    margin: 0;
    padding: 0;
}

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

/* Header */
.header {
    background-color: #FAFAF8;
    padding: 20px 0;
    border-bottom: 1px solid #DDE3EA;
}

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

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

.logo {
    display: block;
}

.brand-name {
    font-size: 28px;
    font-weight: 500;
    color: #2F2F2F;
    margin: 0;
}

/* Hero Section */
.hero {
    padding: 80px 0;
}

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

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #2F2F2F;
}

.hero-description {
    font-size: 18px;
    color: #2F2F2F;
    margin: 0 0 48px;
    opacity: 0.8;
}

.hero-image {
    width: 100%;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(47, 47, 47, 0.1);
}

/* Section Styles */
section {
    padding: 80px 0;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    font-weight: 500;
    color: #2F2F2F;
    margin: 0 0 16px;
}

.section-description {
    font-size: 16px;
    color: #2F2F2F;
    opacity: 0.8;
    margin: 0;
}

/* About Section */
.about {
    background-color: #FAFAF8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 48px;
    text-align: center;
}

.about-item {
    text-align: center;
    padding: 32px 24px;
}

.about-icon {
    margin-bottom: 24px;
}

.about-item h4 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 16px;
    color: #2F2F2F;
}

.about-item p {
    color: #2F2F2F;
    opacity: 0.8;
    margin: 0;
}

/* Content Categories */
.content-categories {
    background-color: #FAFAF8;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    text-align: center;
}

.category-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(47, 47, 47, 0.1);
}

.category-image {
    width: 100%;
    height: 200px;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.category-card h4 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 8px;
    padding: 0 20px;
    color: #2F2F2F;
}

.category-card p {
    font-size: 14px;
    color: #2F2F2F;
    opacity: 0.8;
    margin: 0 0 20px;
    padding: 0 20px;
}

/* Products Section */
.products {
    background-color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    text-align: center;
}

.product-card {
    background: #FAFAF8;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    border: 1px solid #DDE3EA;
}

.product-image {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.product-card h4 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 12px;
    color: #2F2F2F;
}

.product-card p {
    font-size: 14px;
    color: #2F2F2F;
    opacity: 0.8;
    margin: 0 0 20px;
}

.product-price {
    font-size: 20px;
    font-weight: 500;
    color: #9CCB8D;
    margin: 0 0 16px;
}

.product-btn {
    background-color: #9CCB8D;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-btn:hover {
    background-color: #89b87a;
}

.product-btn.download {
    background-color: #2F2F2F;
}

.product-btn.download:hover {
    background-color: #1a1a1a;
}

.product-btn.guide {
    background-color: #DDE3EA;
    color: #2F2F2F;
}

/* Workshops Section */
.workshops {
    background-color: #FAFAF8;
}

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

.workshop-info h4 {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 24px;
    color: #2F2F2F;
}

.workshop-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.workshop-info li {
    padding: 12px 0;
    border-bottom: 1px solid #DDE3EA;
    color: #2F2F2F;
}

.workshop-btn {
    background-color: #2F2F2F;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.workshop-btn:hover {
    background-color: #1a1a1a;
}

.workshop-image {
    width: 100%;
    height: 300px;
}

.workshop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(47, 47, 47, 0.1);
}

/* Community Section */
.community {
    background-color: white;
    text-align: center;
}

.community-content {
    max-width: 600px;
    margin: 0 auto;
}

.community-content h3 {
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 16px;
    color: #2F2F2F;
}

.community-content > p {
    font-size: 16px;
    color: #2F2F2F;
    opacity: 0.8;
    margin: 0 0 40px;
}

.community-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    font-size: 24px;
}

.feature span:last-child {
    font-size: 14px;
    color: #2F2F2F;
}

.community-btn {
    background-color: #9CCB8D;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.community-btn:hover {
    background-color: #89b87a;
}

/* Blog Section */
.blog {
    background-color: #FAFAF8;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    text-align: center;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(47, 47, 47, 0.1);
}

.blog-image {
    width: 100%;
    height: 200px;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.blog-content {
    padding: 24px;
}

.blog-content h4 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 12px;
    color: #2F2F2F;
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    color: #2F2F2F;
    opacity: 0.8;
    margin: 0 0 16px;
}

.blog-content time {
    font-size: 12px;
    color: #9CCB8D;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter {
    background-color: #9CCB8D;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter .section-title {
    color: white;
}

.newsletter p {
    color: white;
    opacity: 0.9;
    font-size: 16px;
    margin: 0 0 32px;
}

.newsletter-btn {
    background-color: white;
    color: #9CCB8D;
    border: none;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #f5f5f5;
}

/* Contact Section */
.contact {
    background-color: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 8px;
    color: #2F2F2F;
}

.contact-item p {
    color: #2F2F2F;
    opacity: 0.8;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #2F2F2F;
    color: white;
    padding: 48px 0 24px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 48px;
}

.footer-brand-section {
    flex: 1;
    max-width: 400px;
}

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

.footer-brand {
    font-size: 20px;
    font-weight: 500;
}

.footer-description {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 16px;
    color: white;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    opacity: 0.6;
}

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

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 32px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #2F2F2F;
}

.close:hover {
    opacity: 0.7;
}

.modal-content h3 {
    margin: 0 0 24px;
    color: #2F2F2F;
    font-size: 24px;
    font-weight: 500;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2F2F2F;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9CCB8D;
}

.submit-btn {
    background-color: #9CCB8D;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #89b87a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .workshop-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .community-features {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-nav {
        gap: 8px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}