/* プロジェクトカード共通スタイル */
.project-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    padding: 2rem;
    transition: transform 0.3s ease;
}


.project-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.project-content img {
    width: 300px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.project-content h4 {
    width: 100%;
    color: #4c7437;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #97bc62;
}

.project-content p {
    flex: 1;
    min-width: 300px;
    margin-bottom: 1rem;
}

/* セクションスタイル */
.current-projects,
.past-projects {
    margin: 3rem 0;
}

/* ナビゲーションリンク */
.links ul {
    list-style: none;
    padding: 0;
    margin: 1.5em 0;
}

.links li {
    margin-bottom: 1em;
}

.nav-button {
    display: inline-block;
    padding: 0.8em 1.5em;
    background-color: #f5f5f5;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    max-width: 400px;
}

.nav-button:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-button i {
    margin-right: 0.5em;
    color: #666;
}


/* お問い合わせセクション */
.inquiry {
    background: #f5f9ee;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.inquiry-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}


/* レスポンシブデザイン */
@media screen and (max-width: 768px) {
    .project-content {
        flex-direction: column;
    }
    
    .project-content img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .project-card {
        padding: 1rem;
    }
    
    .inquiry,
    .inquiry-content
    {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    
    .project-content h4 {
        font-size: 1rem;
    }
    
    .nav-button {
        width: 100%;
        text-align: center;
    }
}