/* 商品タイプ説明のスタイル */
.product-type-descriptions {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.product-type-descriptions h3 {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.type-description {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.type-description:last-child {
    margin-bottom: 0;
}

.type-description h4 {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #2c3e50;
    font-weight: 600;
}

.type-description p {
    margin: 0 0 10px 0;
    color: #666;
    line-height: 1.6;
}

/* 詳細リンクのスタイル */
.type-detail-link {
    display: inline-block;
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.type-detail-link:hover {
    color: #005a87;
    text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .product-type-descriptions {
        padding: 15px;
    }
    
    .type-description {
        padding: 12px;
    }
    
    .product-type-descriptions h3 {
        font-size: 1.1em;
    }
    
    .type-description h4 {
        font-size: 1em;
    }
}