/* 全体レイアウト */
.main-content-grid {
    display: flex;
    justify-content: center;
    padding: 20px;
}
.main-content-left {
    width: 100%;
    max-width: 960px; /* 必要に応じて調整 */
}

/* タイトルとセクション */
.h_two {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}
.products-section {
    margin-top: 40px;
}
.products-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

/* 商品カードのデザイン */
.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.product-card {
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 200px; /* カードの幅を調整 */
    text-align: center;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}
.product-card:hover {
    transform: translateY(-5px);
}
.card-header h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}
.card-price {
    font-size: 18px;
    color: #e54c33;
    font-weight: bold;
}

/* 購入フォームとボタン */
.product-order {
    text-align: center;
    margin-top: 40px;
}
.btn-addcart {
    background-color: #e54c33;
    color: white;
    padding: 15px 30px;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.naire input[type="text"] {
    width: 60%;
    max-width: 600px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* その他スタイル */
.cell_2 label{
  display:inline !important;
  padding:1em 0em 1em 0em;
  font-size:12px;
}