/* 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: #2D3748;
    background-color: #FFFFFF;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif JP', serif;
    line-height: 1.3;
    color: #2D3748;
}

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

/* Header */
.header {
    background-color: #FBF6F0;
    padding: 20px 0;
    border-bottom: 2px solid #E2E8F0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    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: 24px;
    font-weight: 700;
    color: #4338CA;
    margin: 0;
}

.brand-tagline {
    font-size: 14px;
    color: #6B7C32;
    margin: 0;
}

.header-contact {
    text-align: right;
}

.contact-label {
    display: block;
    font-size: 14px;
    color: #718096;
    margin-bottom: 4px;
}

.contact-link {
    font-size: 18px;
    font-weight: 600;
    color: #4338CA;
    text-decoration: none;
}

.contact-link:hover {
    color: #6B7C32;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FBF6F0 0%, #F7FAFC 100%);
    padding: 80px 0;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.hero-main-image {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.hero-features {
    display: flex;
    gap: 24px;
    margin: 16px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4A5568;
    font-weight: 500;
}

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

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

.hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2D3748;
}

.hero-description {
    font-size: 18px;
    color: #4A5568;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-image-placeholder {
    width: 100%;
    height: 300px;
    background-color: #E2E8F0;
    border: 2px dashed #CBD5E0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    border-radius: 8px;
}

.placeholder-text {
    color: #718096;
    font-size: 16px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #4338CA;
    color: white;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #6B7C32;
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 20px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.centered-section {
    text-align: center;
}

.centered-section .section-content {
    text-align: left;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #2D3748;
}

/* Services Overview */
.services-overview {
    background-color: #F7FAFC;
}

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

.service-card {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #4338CA;
}

.service-card p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.6;
}

/* Section Content Layout */
.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text {
    padding: 20px 0;
}

.content-image {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-description {
    font-size: 16px;
    color: #4A5568;
    margin-bottom: 24px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #4A5568;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6B7C32;
    font-weight: bold;
}

/* Barrier-free Section */
.barrier-free {
    background-color: #FBF6F0;
}

/* Senior Furniture Section */
.senior-furniture {
    background-color: white;
}

/* Home Garden Section */
.home-garden {
    background-color: #F7FAFC;
}

/* Assessment Section */
.assessment {
    background-color: white;
}

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

.assessment-card {
    background-color: #FBF6F0;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #6B7C32;
}

.assessment-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #4338CA;
}

.assessment-card p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.6;
}

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

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

.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 24px;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2D3748;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #6B7C32;
    margin-bottom: 8px;
}

.product-description {
    font-size: 14px;
    color: #4A5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-button {
    display: inline-block;
    background-color: #6B7C32;
    color: white;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.product-button:hover {
    background-color: #4338CA;
}

/* Why Choose Section */
.why-choose {
    background-color: white;
}

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

.reason-card {
    padding: 32px;
    text-align: center;
}

.reason-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #4338CA;
    color: white;
    font-size: 24px;
    font-weight: 700;
    line-height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.reason-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2D3748;
}

.reason-card p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.6;
}

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #4338CA;
}

.contact-detail {
    font-size: 18px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 14px;
    color: #718096;
}

.contact-form-link {
    text-align: center;
    padding: 40px 32px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form-link p {
    margin-top: 16px;
    color: #4A5568;
}

/* Order Form Section */
.order-form {
    background-color: #F7FAFC;
}

.order-form-content {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2D3748;
}

.required {
    color: #E53E3E;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #E2E8F0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4338CA;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    background-color: #4338CA;
    color: white;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #6B7C32;
}

/* Footer */
.footer {
    background-color: #2D3748;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #6B7C32;
}

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

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

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

.footer-section a:hover {
    color: white;
}

.footer-description {
    font-size: 14px;
    color: #CBD5E0;
    margin-top: 16px;
    line-height: 1.6;
}

.footer .logo-section {
    margin-bottom: 16px;
}

.footer .brand-name {
    color: white;
    font-size: 18px;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-main-image {
        height: 250px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .services-grid,
    .products-grid,
    .assessment-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    section {
        padding: 60px 0;
    }
}