﻿
/* コンテナ */
        .product-container {
            width: 100%;
            margin: 0 auto 2em;
            display: flex;
            /*justify-content: space-between;*/
            gap: 20px;
        }

        /* 各商品カード */
        .product-card {
			width: 248px;
            flex: 1;
            display: flex;
            flex-direction: column;
            background: #fff;
        }

        /* 画像エリア */
        .product-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            background-color: #f5f5f5;
            border: 1px solid #eee;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 商品名 */
        .product-name {
            font-size: 160%;
            font-weight: bold;
            margin-bottom: 15px;
            color: #000;
            letter-spacing: 0.05em;
        }

        /* 商品説明 */
        .product-description {
            font-size: 13px;
            color: #333;
            margin-bottom: 25px;
            line-height: 1.6;
			flex-grow: 1; /* コンテンツ量に応じて伸び、カード内で高さを揃える */
        }

        /* 価格セクション */
        .price-section {
            border-top: 1px solid #ddd;
            padding-top: 15px;
            margin-bottom: 20px;
        }

        .price-row {
            margin-bottom: 12px;
        }
        .price-row.divider {
            border-bottom: 1px dashed #ccc;
            padding-bottom: 12px;
        }

        .price-label {
            font-size: 12px;
            color: #888;
            margin-bottom: 4px;
        }

        .price-main {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .price-value {
            font-size: 20px;
            font-weight: bold;
        }
        .price-value span {
            font-size: 13px;
            font-weight: normal;
            margin-left: 4px;
        }

        /* 送料ラベル */
        .shipping-badge {
            font-size: 11px;
            padding: 2px 8px;
            border: 1px solid #999;
            color: #666;
            background: #fdfdfd;
        }

        /* ボタン */
        .btn {
            display: block;
            width: 100%;
            text-align: center;
            text-decoration: none;
            padding: 12px 0;
            font-size: 14px;
            transition: opacity 0.2s;
            box-sizing: border-box;
            cursor: pointer;
        }
        .btn:hover {
            opacity: 0.8;
        }

        .btn-detail {
            background-color: #cce0ff;
            color: #333;
            border: 1px solid #ccc;
            margin-bottom: 10px;
        }

        .btn-buy {
            background-color: #1a1e2c; /* 濃紺 */
            color: #fff;
            border: none;
            font-weight: bold;
        }

        /* プレースホルダー画像用のスタイル */
        .img-placeholder {
            background: #eee;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #aaa;
        }


	.product_btn01 a{
		color: #333333;
		text-decoration:none;
	}
	.product_btn02 a{
		color: #ffffff;
		background: #009933;
		text-decoration:none;
	}
	dae7ff

	.font-serif-jp {
      font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'Noto Serif JP', serif;
    }
	

* =========================================================
   【本番追加用】モバイル対応CSS
   ※本番環境では、既存のCSSの最後に以下のコードを追記してください。
========================================================= */
@media screen and (max-width: 768px) {
    /* PCの横並びを縦並びに変更 */
    .product-container {
        flex-direction: column !important;
        gap: 40px !important;
    }
    /* カードの幅を画面いっぱいに */
    .product-card {
        width: 100% !important;
    }
    /* インラインスタイルを上書きして見出しをスマホサイズに */
    #mainContent_top_1100 .header-bar {
        font-size: 22px !important;
        padding: 12px 10px !important;
        text-align: center;
    }
    /* 画像が画面幅をはみ出さないように調整 */
    #mainContent_top_1100 h2 img {
        max-width: 100% !important;
        height: auto !important;
    }
    /* 商品名を中央揃えにし、少し見やすく */
    .product-name {
        text-align: center !important;
        font-size: 140% !important;
    }
    /* 価格を少し強調 */
    .price-value {
        font-size: 24px !important;
    }
    /* ボタンの間に余白を作り、タップしやすいサイズに拡大 */
    .product_btn01 {
        margin-bottom: 12px !important;
    }
    .btn {
        padding: 16px 0 !important;
        font-size: 16px !important;
        font-weight: bold !important;
        border-radius: 4px !important;
    }
    /* 購入ボタンに立体感を追加（任意） */
    .product_btn02 a {
        box-shadow: 0 4px 0 #007722 !important;
    }
    .product_btn02 a:active {
        transform: translateY(4px);
        box-shadow: none !important;
    }
}
