/*商品詳細ページのスペック表*/
.productTable{
    border-spacing:30px 0 ;
}

.productTable th,.productTable td{
    border-bottom: 1px solid #f2f2f2;
}

/*CP+2025キャンペーンサイト用のcssになります*/

/* 大見出し */
.cp2025_heading {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: left;
    padding: 10px 15px;
    border-radius: 10px;
    background: linear-gradient(to right, #E0F7FA, #ECEFF1);
    color: #37474F;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    margin-top: 30px;
}

/* 説明文 */
.cp2025_description {
    text-align: center;
    font-size: 1.1rem;
    color: #455A64;
    margin: 10px 0 20px;
}

/* セクション全体 */
.cp2025_product-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
}

/* 商品コンテンツ（横並び） */
.cp2025_product-content {
    display: flex;
    flex-direction: column; /* 画像 → 価格の順 */
    align-items: center;
    gap: 20px;
}

/* 商品画像 */
.cp2025_product-image img {
    width: 400px;
    height: 400px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 30px; /* 商品画像と価格画像の間の余白 */
}

/* 価格画像 */
.cp2025_price-image img {
    width: 190px;
    height: 285px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
}


/* 購入ボタン */
.buy-button {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    padding: 10px 40px;
    margin: 20px 0;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(to right, #90CAF9, #64B5F6);
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    border: none;
}

/* ホバー時のアニメーション */
.buy-button:hover {
    background: linear-gradient(to right, #64B5F6, #42A5F5);
    box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

/* 中見出しの小見出し */
.cp2025_subheading {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 15px;
    padding: 6px 12px;
    background: linear-gradient(to right, #F0F4C3, #FFFDE7);
    border-radius: 8px;
    color: #5D4037;
    display: inline-block;
}

@media (max-width: 768px) {
    .cp2025_product-content {
        flex-direction: column;
        align-items: center;
    }

    .cp2025_product-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .cp2025_price-image img {
        width: 100%;
        max-width: 200px;
        height: auto;
    }

}

.product-link_cp2025 {
    display: flex;
    flex-direction: column;
    align-items: center; /* 中央配置 */
    text-decoration: none; /* 下線をなくす */
}

.product-name_cp2025 {
    margin-top: 5px; /* 画像とテキストの間の余白 */
    font-size: 1rem; /* 適度なサイズ */
    font-weight: bold; /* 太字 */
    color: #37474F; /* ダークグレー系の落ち着いた色 */
    text-align: center;
}

.cp2025_images {
    display: inline-flex;
    flex-direction: column;
}

/* 商品画像 */
.cp2025_product-image {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* 価格画像をまとめるコンテナ */
.cp2025_price-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    flex-wrap: wrap; /* 画面幅が狭い時は折り返す */
}

/*CP+2025キャンペーンサイト用のcssここまでになります*/