.wh_fee p {
  color: #E6855E;
}
.wh_fee p span {
  font-size: 2.5rem;
  margin-left: 2rem;
  font-weight: 500;
}/*# sourceMappingURL=whitening.css.map */

.da_center-text {
  text-align: center; /* 子要素（この場合はpタグの中のテキスト）が中央寄せされる */
}

.da_banner-wrap {
  display: flex;              /* 横並びにする */
  gap: 10px;                  /* 各バナーの間隔 */
  justify-content: center;    /* 中央揃え */
  margin: 20px 0;
}

.da_banner {
  background-color: #d8b48a;   /* 背景色（画像の色に近いベージュ） */
  padding: 8px 16px;          /* 内側の余白 */
  border-radius: 3px;         /* 角丸（お好みで調整） */
  font-size: 14px;            /* 文字サイズ */
  font-weight: bold;          /* 太字 */
  color: #333;                /* 文字色 */
  text-align: center;
  white-space: nowrap;        /* 改行しない */
}