/* 製品詳細ページ用の追加スタイル */
.product-detail-section {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}

.product-detail-img {
    max-width: 100%;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.spec-table th, .spec-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.spec-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.spec-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.partner-info {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 2rem;
}

.product-image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
} 