/* bluetooth-module.html専用のスタイル */
.product-section {
  line-height: 1.8;
}

.product-section .marker_yellow {
  background: linear-gradient(transparent 60%, #fffd8b 60%);
}
.product-section .info-box {
  background-color: #f4f8fb;
  border: 1px solid #ddeaf6;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}
.product-section .info-box-orange {
  background-color: #fffaf0;
  border: 1px solid #ffe5c4;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}
.product-section .info-box-orange h4 {
    border-left: none;
    padding-left: 0;
    margin-top: 0;
}

/* テーブルスタイルはcommon.cssの.styled-tableに依存するため、ここからは削除 */

.product-section a {
  color: #0077cc;
}
.product-section .red {
  color: #cf2e2e;
  font-weight: bold;
}

/* ▼▼▼ 販促ボタンのスタイル（レイアウトに影響しない安全なコード）▼▼▼ */
.promo-link-button {
    display: block;
    background-color: #0A1E3E; /* ダークブルー */
    color: #FFFFFF !important; /* 白文字 */
    padding: 15px 30px;
    margin-top: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: left;
    border: 2px solid #72AEE6; /* 明るい青のボーダー */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* 控えめな影 */
    transition: all 0.2s ease-in-out; /* スムーズな変化 */
}

.promo-link-button:hover {
    background-color: #72AEE6; /* ホバー時に明るい青に変更 */
    color: #0A1E3E !important; /* ホバー時の文字色をダークブルーに */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3); /* ホバー時の影を少し強く */
    transform: translateY(-2px); /* 少しだけ浮かせる効果 */
    border-color: #0A1E3E;
}

.promo-link-button i {
    margin-right: 10px; /* アイコンと文字の間隔 */
}