/* --- 商品詳細コンテンツ専用スタイル --- */

/* H2: 背景グラデーション・中央揃え */
.products-single .post-content h2 {
    background: linear-gradient(90deg, #005582 0%, #021c35 100%); /* 右に行くほど濃い青 */
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    font-size: 22px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 25px;
    line-height: 1.4;
    border: none; /* 既存のボーダーがあれば打ち消し */
}

/* H3: 左ボーダーと下線（アンダーバー） */
.products-single .post-content h3 {
    border-left: 15px solid #005582; /* 左側の太い縦棒 */
    border-bottom: 1px solid #005582;; /* 下の細い横線 */
    padding: 10px 0 10px 15px;
    color: #333333;
    font-size: 20px;
    font-weight: bold;
    margin-top: 35px;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* スマホ対応の調整 */
@media screen and (max-width: 767.98px) {
    .products-single .post-content h2 {
        font-size: 18px;
        padding: 12px 15px;
    }
    .products-single .post-content h3 {
        font-size: 17px;
        padding: 8px 0 8px 12px;
    }
}