/* 見出し */
.page-header h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #004aad;
}

/* セクションタイトル */
.section h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    padding-left: 10px;
    border-left: 6px solid #004aad;
}

/* 商品カードグリッド */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

/* 商品カード */
.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.2s;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* 商品画像 */
.product-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* 商品名 */
.product-card p {
    font-size: 1rem;
    font-weight: 600;
}
