/* --- 価格表本体 --- */
.price-table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto; /* 中央寄せ */
    background-color: #ffffcc;
    border-collapse: collapse;
    font-family: sans-serif;
    font-size: 14px;
    color: #000;
  }
  
  .price-table th,
  .price-table td {
    border: 1px solid #aaa;
    padding: 6px 8px;
    text-align: center;
  }
  
  .price-table th {
    background-color: #ffff99;
    color: #000;
  }
  
/* 補足ボックス全体 */
.notes-box {
    max-width: 600px;
    margin: 16px auto 0 auto;
    background-color: #006600;
    color: #ffffff;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    border-radius: 4px;
    display: flex;              /* 横並びに変更 */
    align-items: center;        /* 垂直中央揃え */
    gap: 12px;                  /* テキストと画像の間隔 */
  }
  
  /* テキスト部分（通常表示） */
  .notes-text {
    flex: 1;                    /* 横幅いっぱいに広がる */
  }
  
  /* FAX画像（右寄せで高さ自動） */
  .fax-image-inline {
    max-width: 80px;
    height: auto;
  }
    