/* デスクトップ向け */
.booking-package {
    padding: 0 300px;
}

/* スマホ向け（画面幅600px以下） */
@media (max-width: 600px) {
    .booking-package {
        padding: 0 10px;
    }
}

/* =================================================================== */
/* ★★★ 追加：Stripe Link決済ボタンを非表示にする ★★★ */
/* =================================================================== */

/* "OR" という区切り線を非表示 */
/* #paymentPanel .orLabel {
    display: none !important;
} */

/* "linkで支払う" ボタン (Payment Request Button) を非表示 */
/* #paymentPanel #payment-request-button {
    display: none !important;
} */

/* =================================================================== */
/* 「自動入力 link」ボタン非表示CSSは型崩れが発生するのでjsに委譲 */
/* =================================================================== */
/* Stripeカード入力欄のコンテナに position: relative を設定 */
/* #payment-form #card-element {
    position: relative !important;
}
#payment-form #card-element div[style*="position: absolute"][style*="right:"][style*="background: none"] {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}
#payment-form .OffsetContainer {
    display: none !important;
} */
