.elementor-5281 .elementor-element.elementor-element-541d9ae{--display:flex;}/* Start custom CSS *//* ==============================
   単品購入ページ
============================== */

.single-payment-page {
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-payment-card {
  width: 100%;
  max-width: 500px;

  padding: 40px 30px;

  background:
    rgba(15,15,20,0.85);

  border:
    1px solid rgba(212,175,55,0.4);

  backdrop-filter:
    blur(8px);

  text-align: center;

  position: relative;
}

/* 上下ライン */

.single-payment-card::before,
.single-payment-card::after {
  content: "";

  position: absolute;

  left: 30px;
  right: 30px;

  height: 1px;

  background:
    linear-gradient(
      to right,
      transparent,
      rgba(212,175,55,0.8),
      transparent
    );
}

.single-payment-card::before {
  top: 18px;
}

.single-payment-card::after {
  bottom: 18px;
}

/* ラベル */

.single-payment-label {
  color: #d4af37;

  font-size: 12px;

  letter-spacing: 3px;

  text-transform: uppercase;

  margin-bottom: 20px;
}

/* タイトル */

.single-payment-title {
  margin: 0;

  color: #fff;

  font-size: 32px;

  font-weight: 600;

  line-height: 1.4;
}

/* 説明 */

.single-payment-lead {
  margin-top: 20px;

  color: rgba(255,255,255,0.75);

  line-height: 2;

  font-size: 14px;
}

/* 金額 */

.single-payment-price {
  margin-top: 30px;

  color: #d4af37;

  font-size: 42px;

  font-weight: 700;
}

/* ボタン */

.single-payment-btn {
  width: 100%;

  margin-top: 30px;

  padding: 16px;

  border: none;

  border-radius: 0;

  background:
    linear-gradient(
      180deg,
      #e8c766,
      #c99a19
    );

  color: #111;

  font-size: 16px;

  font-weight: 700;

  cursor: pointer;

  transition:
    transform .2s,
    opacity .2s;
}

.single-payment-btn:hover {
  transform: translateY(-2px);
  opacity: .95;
}

.single-payment-btn:active {
  transform: translateY(0);
}

/* 注意書き */

.single-payment-note {
  margin-top: 18px;

  font-size: 12px;

  color:
    rgba(255,255,255,0.5);

  line-height: 1.8;
}

/* スマホ */

@media (max-width: 768px) {

  .single-payment-card {
    padding: 30px 20px;
  }

  .single-payment-title {
    font-size: 26px;
  }

  .single-payment-price {
    font-size: 34px;
  }

}/* End custom CSS */