/* 製品ラインナップページ専用スタイル */

section {
    margin-bottom: 4rem;
}

/* 製品カードセクション */
.product-cards {
    background-color: #fff;
    border-left: 4px solid #f7921d;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem auto;
    box-sizing: border-box;
    width: 100%;
}

.product-cards h2{
    color: #2c3e50;
    border-bottom: 2px solid #086DE2;
    font-size: 32px;

}

/* グリッドレイアウト */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* カード個別 */
.product-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* カード内画像 */
.product-card img {
    width: 100%;
    max-height: 300px;       
    object-fit: contain;     
    margin-bottom: 1rem;     
    border-radius: 4px;
}

/* タイトル */
.product-card h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.25rem;
    margin-bottom: 0.75rem;
}

/* 説明文 */
.product-card p {
    font-size: 1rem;         
    line-height: 1.8;       
    color: #333;  
}

/* ボタン */
.card-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #f7921d;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.card-btn:hover {
    background-color: #086DE2;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
    .product-cards{
        display: flex;
        flex-direction: column;
        padding: 1rem;
        margin: 1rem auto;
    }

    .product-cards h2 {
        font-size: 24px;
    }

    .product-cards h3 {
        font-size: 20px;
    }

    .product-cards p {
        font-size: 16px;
    }

    .card-grid {
        grid-template-columns: 1fr; 
    }

}