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

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #1F2937;
    background-color: #FEFEFE;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

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

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

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

.logo {
    flex-shrink: 0;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 28px;
    font-weight: 600;
    color: #1E3A8A;
    margin: 0;
}

.brand-japanese {
    font-size: 14px;
    color: #6B7280;
    margin-top: -4px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

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

.hero-title {
    font-size: 36px;
    color: #1E3A8A;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: #4B5563;
    margin-bottom: 0;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Section Styles */
.section-title {
    font-size: 28px;
    color: #1E3A8A;
    text-align: center;
    margin-bottom: 48px;
}

/* Categories */
.categories {
    padding: 80px 0;
    text-align: center;
}

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

.category-item {
    text-align: center;
    padding: 32px;
    background-color: #FEFEFE;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.category-icon {
    margin-bottom: 20px;
}

.category-item h3 {
    font-size: 20px;
    color: #1E3A8A;
    margin-bottom: 12px;
}

.category-item p {
    color: #6B7280;
}

/* Services */
.services {
    padding: 80px 0;
    background-color: #F9FAFB;
    text-align: center;
}

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

.service-item {
    background-color: #FEFEFE;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-icon {
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 20px;
    color: #1E3A8A;
    margin-bottom: 12px;
}

.service-item p {
    color: #6B7280;
}

/* Products */
.products {
    padding: 80px 0;
    text-align: center;
}

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

.product-item {
    background-color: #FEFEFE;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.product-image-placeholder {
    width: 100%;
    height: 200px;
    background-color: #F3F4F6;
    border-bottom: 2px dashed #D1D5DB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    font-size: 14px;
}

.product-item h3 {
    font-size: 18px;
    color: #1E3A8A;
    margin: 20px 20px 8px 20px;
}

.product-description {
    color: #6B7280;
    font-size: 14px;
    margin: 0 20px 12px 20px;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: #FF6B35;
    margin: 0 20px 16px 20px;
}

.product-button {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    padding: 12px 24px;
    background-color: #1E3A8A;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.product-button:hover {
    background-color: #1D4ED8;
}

/* Seasonal Sets */
.seasonal-sets {
    padding: 80px 0;
    background-color: #F9FAFB;
    text-align: center;
}

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

.seasonal-image {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.seasonal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.seasonal-text h3 {
    font-size: 24px;
    color: #1E3A8A;
    margin-bottom: 16px;
}

.seasonal-text p {
    color: #6B7280;
    margin-bottom: 24px;
}

.seasonal-button {
    padding: 14px 28px;
    background-color: #FF6B35;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.seasonal-button:hover {
    background-color: #EA580C;
}

/* Subscription */
.subscription {
    padding: 80px 0;
    text-align: center;
}

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

.subscription-text h3 {
    font-size: 24px;
    color: #1E3A8A;
    margin-bottom: 16px;
}

.subscription-text p {
    color: #6B7280;
    margin-bottom: 20px;
}

.subscription-price {
    font-size: 20px;
    font-weight: 600;
    color: #FF6B35;
    margin-bottom: 24px;
}

.subscription-button {
    padding: 14px 28px;
    background-color: #1E3A8A;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.subscription-button:hover {
    background-color: #1D4ED8;
}

.subscription-image {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.subscription-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background-color: #F9FAFB;
    text-align: center;
}

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

.content-item {
    background-color: #FEFEFE;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.content-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-item h3 {
    font-size: 18px;
    color: #1E3A8A;
    margin: 20px 20px 8px 20px;
}

.content-item p {
    color: #6B7280;
    font-size: 14px;
    margin: 0 20px 20px 20px;
}

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

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

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

.contact-icon {
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-item h3 {
    font-size: 18px;
    color: #1E3A8A;
    margin-bottom: 8px;
}

.contact-item p {
    color: #6B7280;
    margin-bottom: 4px;
}

.contact-item small {
    color: #9CA3AF;
    font-size: 12px;
}

/* Footer */
.footer {
    background-color: #1F2937;
    color: #D1D5DB;
    padding: 60px 0 20px 0;
}

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

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

.footer-brand-name {
    font-size: 20px;
    font-weight: 600;
    color: #FEFEFE;
}

.footer-brand-japanese {
    font-size: 12px;
    color: #9CA3AF;
}

.footer-section h4 {
    color: #FEFEFE;
    font-size: 16px;
    margin-bottom: 16px;
    border-bottom: 2px solid #FF6B35;
    padding-bottom: 8px;
    display: inline-block;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-section li {
    margin-bottom: 0;
}

.footer-section a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.2s;
    padding: 4px 0;
    display: inline-block;
}

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

.footer-section p {
    margin-bottom: 4px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 14px;
}

/* Modal Styles */
.modal {
    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: #FEFEFE;
    margin: 5% auto;
    padding: 32px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

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

.close:hover {
    color: #1F2937;
}

.modal-content h2 {
    color: #1E3A8A;
    margin-bottom: 24px;
    margin-right: 40px;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1E3A8A;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.submit-button {
    width: 100%;
    padding: 14px 24px;
    background-color: #1E3A8A;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #1D4ED8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        gap: 24px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .seasonal-content,
    .subscription-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-section h4 {
        text-align: center;
    }
    
    .footer-section ul {
        align-items: center;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 24px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 24px;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-image img {
        height: 200px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .categories-grid,
    .services-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}