/* products-category.css: このページ種専用の内容スタイル(共通部分は site.css) */
.cBox { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
.cBox h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background-color: #efefef;
    color: var(--text-color);
    padding: 10px 15px 10px 35px;
    margin: 40px 0 20px 0;
    border-radius: 4px;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}
.cBox h3::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 8px;
    bottom: 8px;
    width: 8px;
    background-color: var(--primary-color);
    border-radius: 3px;
}
.cBox h3:first-of-type { margin-top: 0; }
.product-category {
    margin-bottom: 30px;
    
    
}
.product-list-left,
.product-list-right {
    
    display: flex;
    flex-direction: column; 
    gap: 15px; 
}
.product-item {
    border: 1px solid var(--border-color); 
    border-radius: 4px;
    overflow: hidden;
    background-color: #fff;
    transition: background-color 0.3s ease;
}
.product-item a {
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    gap: 15px; 
    color: var(--text-color);
    text-decoration: none;
    padding: 15px 12px; 
    height: 100%; 
}
.product-item a:hover {
    background-color: #efefef;
    color: var(--primary-color);
}
.product-item .product-name {
    display: block;
    flex-grow: 1; 
    min-width: 0; 
    line-height: 1.4;
    font-weight: 700;
    text-align: left; 
}
.product-item .product-model {
    display: block;
    font-size: 0.9em;
    color: var(--text-secondary);
    flex-shrink: 0; 
    text-align: left; 
}
.product-item img {
    display: block;
    width: 60px; 
    height: 60px; 
    object-fit: contain; 
    flex-shrink: 0; 
    margin: 0; 
}
@media (min-width: 1024px) {
    .product-category {
        display: flex; 
        flex-direction: row; 
        gap: 20px; 
    }
    .product-list-left,
    .product-list-right {
        width: 50%; 
        gap: 15px; 
    }
    .product-item a {
        flex-direction: row; 
        align-items: center;
        gap: 15px; 
    }
    .product-item .product-name {
        text-align: left; 
     }
    .product-item .product-model {
        display: block; 
        text-align: left; 
      }
    .product-item img {
        width: 60px; 
        height: 60px; 
        margin: 0; 
     }
}
@media (max-width: 1023px) {
    .product-category {
        display: flex; 
        flex-direction: column; 
        gap: 15px; 
    }
    .product-list-left,
    .product-list-right {
        width: 100%; 
        gap: 15px; 
    }
    .product-item a {
        flex-direction: row; 
        align-items: center;
        gap: 15px; 
        padding: 15px 10px; 
    }
    .product-item .product-name {
        text-align: left; 
     }
    .product-item .product-model {
        display: block; 
        text-align: left; 
      }
    .product-item img {
        width: 50px; 
        height: 50px; 
        margin: 0; 
    }
}
@media (max-width: 767px) {
    .container, .header-container, .cBox, .footer-container { padding: 0 10px; }
    .cBox h3 { font-size: 1.3rem; padding: 8px 15px 8px 30px; margin: 25px 0 15px 0; }
    .cBox h3::before { width: 6px; left: 10px; top: 6px; bottom: 6px; }
    .product-category {
        display: flex; 
        flex-direction: column; 
        gap: 15px; 
    }
    .product-list-left,
    .product-list-right {
        width: 100%; 
        gap: 15px; 
    }
    .product-item a {
        flex-direction: row; 
        align-items: center;
        gap: 15px; 
        padding: 15px 10px; 
    }
    .product-item .product-name {
        text-align: left; 
     }
    .product-item .product-model {
        display: block; 
        text-align: left; 
      }
    .product-item img {
        width: 50px; 
        height: 50px; 
        margin: 0; 
    }
}
