@charset "utf-8";

  .price-notes {
  margin: 24px 0;
  padding: 16px 20px;
  list-style: none;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #111827;
}

.price-notes li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 8px;
}

.price-notes li:last-child {
  margin-bottom: 0;
}

/* チェックマーク風の装飾 */
.price-notes li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: bold;
}

/* 強調したい行（価格注意） */
.price-notes li:nth-child(3) {
  font-weight: 700;
  color: #b91c1c;
}

/* スマホ微調整 */
/* @media (max-width: 600px) {
  .price-notes {
    font-size: 13px;
    padding: 14px 16px;
  }
} */