.subscription-fixed-button {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 300px;
  z-index: 99;

  @media screen and (max-width: 768px) {
    right: 50%;
    transform: translateX(50%) scale(0.75);
  }

  .subscription-fixed-button__upper {
    margin-bottom: 16px;

    .subscription-fixed-button__upper--image {
      width: 100%;
      height: auto;
    }

    .subscription-fixed-button__badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      color: #FA6000;
      font-family: Noto Sans JP, sans-serif;
      font-weight: bold;
      font-size: 15px;
      text-align: center;
      white-space: nowrap;

      .subscription-fixed-button__badge-slash {
        font-weight: 300;
      }

      .subscription-fixed-button__badge-amount {
        font-size: 22px;
        font-weight: 900;
      }
    }
  }

  .subscription-fixed-button__button-wrapper {
    .subscription-fixed-button__button {
      width: 100%;
      height: 64px;
      background: #FA6000;
      border: 3px solid #FFFFFF;
      box-shadow: 0 3px 3px rgba(0, 0, 0, 0.160784);
      border-radius: 9999px;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 16px;
      font-family: Noto Noto sans JP, sans-serif;
      font-weight: bold;
    }
  }
}