/* === 会社名を2行にする === */
.company-name {
  color: transparent !important;   /* 元の文字を隠す */
  font-size: 0 !important;
  text-align: center !important;
}

/* 1行目 */
.company-name::before {
  content: "BRADBURY";
  display: block;
  color: #FFFFFF;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

/* 2行目 */
.company-name::after {
  content: "ENTERTAINMENT MASSAGE";
  display: block;
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

/* デポジット部分を完全に非表示 */
.service-deposit,
.service-deposit_price {
  display: none !important;
}


/* 小数 .00 を消したい場合（任意） */
.sb-price .sb-decimals,
.sb-amount .sb-decimals,
.sb-price .cents,
.sb-price sup {
  display: none !important;
}