/**
 * 商品一覧ページ用のCSS
 * スライダー機能を含む
 */

/* カテゴリスライダー */
.category-slider {
    margin: 20px 0;
    position: relative;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease;
}

.thumbnail-slider {
    margin-top: 15px;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
}

.thumbnail-image {
    flex: 0 0 80px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0.7;
}

.thumbnail-image:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail-image.active {
    opacity: 1;
    border-color: #007cba;
    background: #e3f2fd;
    transform: scale(1.05);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .main-image-container {
        height: 300px;
    }
    
    .thumbnail-image {
        flex: 0 0 60px;
        height: 45px;
    }
}

/* カテゴリコンテンツ */
.category-content {
    margin: 30px 0;
}

.category-rich-content {
    line-height: 1.6;
}

.category-rich-content h2 {
    font-size: 1.5rem;
    margin: 20px 0 15px 0;
    color: #333;
}

.category-rich-content h3 {
    font-size: 1.2rem;
    margin: 15px 0 10px 0;
    color: #555;
}

.category-rich-content p {
    margin: 10px 0;
    color: #666;
}

.category-rich-content ul,
.category-rich-content ol {
    margin: 10px 0;
    padding-left: 20px;
}

.category-rich-content li {
    margin: 5px 0;
    color: #666;
}
