        /* =========================================
           SWPM フォーム - ZEN MOVE スタイル
           ========================================= */


        .swpm-form .swpm-form-row {
            margin-bottom: 2.5rem !important;
            display: block;
        }

        .swpm-form-label-wrap {
            display: block !important;
            width: 100% !important;
            margin-bottom: 1.0rem !important;
        }

        .swpm-form-label-wrap label {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
            letter-spacing: 0.05em;
            margin: 0;
        }

        .swpm-form-input-wrap {
            display: block !important;
            width: 100% !important;
        }

        /* --- 入力フィールド --- */
        .swpm-form-field {
            width: 100% !important;
            padding: 1.5rem 2.0rem !important;
            font-size: 1.6rem !important;
            border: 2px solid #ddd !important;
            border-radius: 0.5rem !important;
            transition: all 0.3s !important;
            font-family: inherit !important;
            background-color: #fff !important;
            color: #333 !important;
            box-sizing: border-box !important;
            appearance: none !important;
        }

        .swpm-form-field:focus {
            outline: none !important;
            border-color: #F7971E !important;
            box-shadow: 0 0 0 0.3rem rgba(247, 151, 30, 0.1) !important;
        }

        /* --- エラー状態 --- */
        .swpm-form .swpm-form-row.error .swpm-form-field {
            border-color: #cc0000 !important;
        }

        .swpm-form .swpm-form-row.error .swpm-form-desc {
            color: #cc0000 !important;
            font-size: 1.2rem !important;
            margin-top: 0.5rem !important;
        }

        .swpm-form .swpm-form-row.error .swpm-form-desc > ul {
            list-style: none !important;
            padding: 0 !important;
            margin: 0.4rem 0 0 !important;
        }

        /* --- 会員レベル行 --- */
        .swpm-membership-level-row {
            display: none !important;
        }

        /* =========================================
           プラン選択カード
           ========================================= */
        .swpm-before-registration-submit-section {
            margin-bottom: 0.5rem;
        }

        .swpm-custom-level-select {
            display: grid !important;
            grid-template-columns: 1fr 1fr !important;
            gap: 1.5rem !important;
            margin-bottom: 2.5rem !important;
            align-items: start !important;
        }

        .swpm-custom-level-select > label {
            grid-column: 1 / -1 !important;
            display: block !important;
            font-size: 1.5rem !important;
            font-weight: 700 !important;
            color: #333 !important;
            margin-bottom: 0.5rem !important;
            letter-spacing: 0.05em !important;
        }

        .swpm-custom-level-select > div {
            border: 2.5px solid #ddd !important;
            border-radius: 1.0rem !important;
            padding: 2.2rem 2.0rem 2.0rem !important;
            position: relative !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
            background: #fff !important;
            margin-bottom: 0 !important;
            overflow: hidden !important;
        }

        .swpm-custom-level-select > div input[type="radio"] {
            position: absolute !important;
            opacity: 0 !important;
            width: 0 !important;
            height: 0 !important;
        }

        /* チェックマークアイコン */
        .swpm-custom-level-select > div::after {
            z-index: 2 !important;
            content: '✓' !important;
            position: absolute !important;
            top: 1.2rem !important;
            right: 1.5rem !important;
            width: 2.4rem !important;
            height: 2.4rem !important;
            background: #ddd !important;
            color: #fff !important;
            border-radius: 50% !important;
            font-size: 1.3rem !important;
            font-weight: 700 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            line-height: 2.4rem !important;
            text-align: center !important;
            transition: all 0.3s ease !important;
            pointer-events: none !important;
        }

        /* カード内のラベル（プラン名） */
        .swpm-custom-level-select > div > label {
            display: block !important;
            position: absolute !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            z-index: 1 !important;
            padding: 4.2rem 2.0rem 1.2rem 2.0rem !important;
            font-size: 1.8rem !important;
            font-weight: 800 !important;
            color: #111 !important;
            cursor: pointer !important;
            margin: 0 !important;
            letter-spacing: 0.05em !important;
        }

        /* 月払いプラン：価格表示 */
        #level_monthly + label::before {
            content: '月払い' !important;
            display: block !important;
            font-size: 1.8rem !important;
            font-weight: 800 !important;
            color: #111 !important;
            margin-bottom: 1.2rem !important;
        }

        #level_monthly + label {
            font-size: 0 !important;
        }

        #level_monthly + label::after {
            content: '1,980円 / 月' !important;
            display: block !important;
            font-size: 3.2rem !important;
            font-weight: 900 !important;
            color: #111 !important;
            font-family: 'Montserrat', sans-serif !important;
            line-height: 1 !important;
            margin-bottom: 0.2rem !important;
        }

        /* 年払いプラン：価格表示 */
        #level_yearly + label::before {
            content: '年払い' !important;
            display: block !important;
            font-size: 1.8rem !important;
            font-weight: 800 !important;
            color: #111 !important;
            margin-bottom: 1.2rem !important;
        }

        #level_yearly + label {
            font-size: 0 !important;
        }

        #level_yearly + label::after {
            content: '21,780円 / 年' !important;
            display: block !important;
            font-size: 3.2rem !important;
            font-weight: 900 !important;
            color: #111 !important;
            font-family: 'Montserrat', sans-serif !important;
            line-height: 1 !important;
            margin-bottom: 0.2rem !important;
        }

        .swpm-custom-level-select > div:nth-child(2)::before {
            content: '' !important;
            display: block !important;
        }

        .swpm-custom-level-select > div:has(#level_monthly),
        .swpm-custom-level-select > div:has(#level_yearly) {
            padding-top: 4.2rem !important;
        }

        /* 年払い「おすすめ」バッジ */
        .swpm-custom-level-select > div:has(#level_yearly)::before {
            content: '🏆 おすすめ\A(1ヶ月分割引)' !important;
            white-space: pre-line !important;
            position: absolute !important;
            top: 1.2rem !important;
            left: 1.5rem !important;
            z-index: 2 !important;
            background: linear-gradient(135deg, #F7971E, #FFD200) !important;
            color: #fff !important;
            font-size: 1.1rem !important;
            font-weight: 700 !important;
            padding: 0.5rem 1.2rem !important;
            border-radius: 10rem !important;
            letter-spacing: 0.05em !important;
            line-height: 1.5 !important;
            box-shadow: 0 0.2rem 0.8rem rgba(247, 151, 30, 0.4) !important;
            pointer-events: none !important;
        }

        /* 選択中のカードスタイル */
        .swpm-custom-level-select > div:has(input:checked) {
            border-color: #F7971E !important;
            background: #fffbf5 !important;
            box-shadow: 0 0.5rem 2.0rem rgba(247, 151, 30, 0.2) !important;
        }

        .swpm-custom-level-select > div:has(input:checked)::after {
            background: #F7971E !important;
        }

        .swpm-custom-level-select > div:has(input:checked) label::after {
            color: #F7971E !important;
        }

        /* 年払い特典ボックス */
        .swpm-custom-level-select > div:has(#level_yearly) label {
            padding-bottom: 0 !important;
        }

        /* --- 送信ボタン --- */
        .swpm-registration-submit-section {
            text-align: center !important;
            margin-top: 1.0rem !important;
        }

        .swpm-submit {
            width: 100% !important;
            padding: 2.0rem !important;
            font-size: 1.8rem !important;
            font-weight: 700 !important;
            color: #fff !important;
            background: linear-gradient(135deg, #F7971E 0%, #FFD200 100%) !important;
            border: none !important;
            border-radius: 0.5rem !important;
            cursor: pointer !important;
            transition: all 0.3s !important;
            letter-spacing: 0.1em !important;
            font-family: inherit !important;
            display: block !important;
        }

        .swpm-submit:hover {
            transform: translateY(-0.3rem) !important;
            box-shadow: 0 1.0rem 2.0rem rgba(247, 151, 30, 0.3) !important;
        }

        /* --- レスポンシブ --- */
        @media (max-width: 767px) {
            .swpm-custom-level-select {
                grid-template-columns: 1fr !important;
            }

            .swpm-form-label-wrap label {
                font-size: 1.4rem;
            }

            .swpm-form-field {
                padding: 1.3rem 1.5rem !important;
                font-size: 1.5rem !important;
            }

            .swpm-submit {
                padding: 1.8rem !important;
                font-size: 1.6rem !important;
            }
        }





/* =========================================
   SWPM エラーメッセージ
   ========================================= */
#swpm_message.swpm_error {
    background-color: #fff5f5;
    border-left: 4px solid #e53e3e;
    border-radius: 0.5rem;
    padding: 1.8rem 2.0rem;
    margin-bottom: 2.5rem;
    font-size: 1.4rem;
    color: #c53030;
    font-weight: 600;
    line-height: 1.8;
}

#swpm_message.swpm_error ul {
    list-style: none;
    padding: 0;
    margin: 1.0rem 0 0 0;
}

#swpm_message.swpm_error ul li {
    padding: 0.4rem 0 0.4rem 2.0rem;
    position: relative;
    font-size: 1.4rem;
    color: #c53030;
    font-weight: 500;
    border-bottom: 1px dashed rgba(229, 62, 62, 0.2);
}

#swpm_message.swpm_error ul li:last-child {
    border-bottom: none;
}

#swpm_message.swpm_error ul li::before {
    content: '！';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #e53e3e;
}


/* ログインページ */
.swpm-login-widget-form {
    max-width: 480px;
    margin: 0 auto;
    padding: 4.0rem 3.5rem;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 0.8rem 3.0rem rgba(0, 0, 0, 0.08);
}

.swpm-login-form-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ラベル共通 */
.swpm-username-label .swpm-label,
.swpm-password-label .swpm-label {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.swpm-username-label,
.swpm-password-label {
    margin-top: 2.0rem;
}

.swpm-username-label:first-child,
.swpm-password-label:first-child {
    margin-top: 0;
}

/* 入力フィールド共通 */
.swpm-login-widget-form .swpm-text-field {
    width: 100% !important;
    padding: 1.4rem 1.8rem !important;
    font-size: 1.5rem !important;
    border: 2px solid #ddd !important;
    border-radius: 0.6rem !important;
    background-color: #fafafa !important;
    color: #333 !important;
    font-family: inherit !important;
    box-sizing: border-box !important;
    transition: border-color 0.25s, box-shadow 0.25s !important;
    appearance: none !important;
    outline: none !important;
    display: block !important;
}

.swpm-login-widget-form .swpm-text-field:focus {
    border-color: #F7971E !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 0.3rem rgba(247, 151, 30, 0.12) !important;
}

/* ログイン情報を保存（Remember me） */
.swpm-remember-me {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.swpm-remember-checkbox input[type="checkbox"] {
    width: 1.8rem;
    height: 1.8rem;
    accent-color: #F7971E;
    cursor: pointer;
    flex-shrink: 0;
}

.swpm-rememberme-label {
    font-size: 1.3rem;
    color: #555;
    cursor: pointer;
    user-select: none;
}

.swpm-rember-label {
    font-size: 1.3rem;
}

/* 送信ボタン */
.swpm-login-submit {
    margin-top: 2.4rem;
}

.swpm-login-form-submit {
    width: 100% !important;
    padding: 1.6rem !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #F7971E 0%, #FFD200 100%) !important;
    border: none !important;
    border-radius: 0.6rem !important;
    cursor: pointer !important;
    letter-spacing: 0.1em !important;
    font-family: inherit !important;
    transition: transform 0.25s, box-shadow 0.25s !important;
    display: block !important;
    box-sizing: border-box !important;
}

.swpm-login-form-submit:hover {
    transform: translateY(-0.2rem) !important;
    box-shadow: 0 0.8rem 2.0rem rgba(247, 151, 30, 0.35) !important;
}

/* パスワードを忘れた・会員登録リンク */
.swpm-forgot-pass-link,
.swpm-join-us-link {
    text-align: center;
    margin-top: 1.4rem;
}

.swpm-login-form-pw-reset-link,
.swpm-login-form-register-link {
    font-size: 1.3rem;
    color: #888;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.swpm-login-form-pw-reset-link:hover,
.swpm-login-form-register-link:hover {
    color: #F7971E;
    border-bottom-color: #F7971E;
}

.swpm-join-us-link {
    margin-top: 0.8rem;
}

/* アクションメッセージ */
.swpm-login-action-msg {
    margin-top: 1.6rem;
    text-align: center;
}

.swpm-login-widget-action-msg {
    font-size: 1.3rem;
    color: #e53e3e;
    font-weight: 600;
}

/* レスポンシブ */
@media (max-width: 600px) {
    .swpm-login-widget-form {
        padding: 3.0rem 2.0rem;
    }

    .swpm-login-widget-form .swpm-text-field {
        font-size: 1.4rem !important;
        padding: 1.2rem 1.4rem !important;
    }

    .swpm-login-form-submit {
        font-size: 1.5rem !important;
        padding: 1.4rem !important;
    }
}


/* パスワードリセットページ */
.swpm-pw-reset-widget-form {
    max-width: 480px;
    margin: 0 auto;
    padding: 4.0rem 3.5rem;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 0.8rem 3.0rem rgba(0, 0, 0, 0.08);
}

.swpm-pw-reset-widget-inside {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ラベル */
.swpm-pw-reset-email-label {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

/* マージンユーティリティ（プラグイン既定クラス） */
.swpm-pw-reset-widget-form .swpm-margin-top-10 {
    margin-top: 0 !important;
}

.swpm-pw-reset-email {
    margin-top: 0;
}

.swpm-pw-reset-email-input {
    margin-top: 0.6rem !important;
}

/* 入力フィールド */
.swpm-pw-reset-text {
    width: 100% !important;
    padding: 1.4rem 1.8rem !important;
    font-size: 1.5rem !important;
    border: 2px solid #ddd !important;
    border-radius: 0.6rem !important;
    background-color: #fafafa !important;
    color: #333 !important;
    font-family: inherit !important;
    box-sizing: border-box !important;
    transition: border-color 0.25s, box-shadow 0.25s !important;
    appearance: none !important;
    outline: none !important;
    display: block !important;
}

.swpm-pw-reset-text:focus {
    border-color: #F7971E !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 0.3rem rgba(247, 151, 30, 0.12) !important;
}

/* 送信ボタン */
.swpm-pw-reset-submit-button {
    margin-top: 2.4rem;
}

.swpm-pw-reset-submit {
    width: 100% !important;
    padding: 1.6rem !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #F7971E 0%, #FFD200 100%) !important;
    border: none !important;
    border-radius: 0.6rem !important;
    cursor: pointer !important;
    letter-spacing: 0.1em !important;
    font-family: inherit !important;
    transition: transform 0.25s, box-shadow 0.25s !important;
    display: block !important;
    box-sizing: border-box !important;
}

.swpm-pw-reset-submit:hover {
    transform: translateY(-0.2rem) !important;
    box-shadow: 0 0.8rem 2.0rem rgba(247, 151, 30, 0.35) !important;
}

/* レスポンシブ */
@media (max-width: 600px) {
    .swpm-pw-reset-widget-form {
        padding: 3.0rem 2.0rem;
    }

    .swpm-pw-reset-text {
        font-size: 1.4rem !important;
        padding: 1.2rem 1.4rem !important;
    }

    .swpm-pw-reset-submit {
        font-size: 1.5rem !important;
        padding: 1.4rem !important;
    }
}

#register{
    display:none;
}


/* ログイン済みウィジェット */
.swpm-login-widget-logged {
    max-width: 480px;
    margin: 0 auto;
    padding: 2.8rem 3.0rem;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 0.8rem 3.0rem rgba(0, 0, 0, 0.08);
    border-top: 4px solid #F7971E;
}

        .swpm-logged-username,
.swpm-logged-status,
.swpm-logged-membership,
.swpm-logged-expiry {
    display: flex;
    align-items: baseline;
    gap: 1.0rem;
    padding: 1.0rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.swpm-logged-expiry {
    border-bottom: none;
}

/* ラベル */
.swpm-logged-label {
    font-size: 1.2rem;
    color: #999;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 11rem;
}

/* 値 */
.swpm-logged-value {
    font-size: 1.4rem;
    color: #222;
    font-weight: 700;
    letter-spacing: 0.03em;
    word-break: break-all;
}

.swpm-logged-username .swpm-logged-value {
    font-size: 1.6rem;
    color: #F7971E;
}

.swpm-logged-status-value {
    display: inline-block;
    background: linear-gradient(135deg, #38a169, #48bb78);
    color: #fff !important;
    font-size: 1.2rem !important;
    padding: 0.2rem 1.0rem;
    border-radius: 10rem;
}

/* リンクエリア */
.swpm-edit-profile-link,
.swpm-logged-logout-link {
    margin-top: 0;
    text-align: center;
}

.swpm-edit-profile-link {
    margin-top: 2.0rem;
}

.swpm-edit-profile-link a,
.swpm-logged-logout-link a {
    display: block;
    width: 100%;
    padding: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    border-radius: 0.6rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    box-sizing: border-box;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

/* プロフィール編集：オレンジグラデーション */
.swpm-edit-profile-link a {
    color: #fff;
    background: linear-gradient(135deg, #F7971E 0%, #FFD200 100%);
}

.swpm-edit-profile-link a:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 0.8rem 2.0rem rgba(247, 151, 30, 0.35);
}

/* ログアウト：グレーのアウトラインボタン */
.swpm-logged-logout-link {
    margin-top: 1.0rem;
}

.swpm-logged-logout-link a {
    color: #999;
    background: transparent;
    border: 1.5px solid #ddd;
    font-weight: 600;
}

.swpm-logged-logout-link a:hover {
    color: #555;
    border-color: #aaa;
    background: #f9f9f9;
}

.swpm-login-widget-logged .swpm-margin-bottom-10 {
    display: none;
}

/* レスポンシブ */
@media (max-width: 600px) {
    .swpm-login-widget-logged {
        padding: 2.2rem 1.8rem;
    }

    .swpm-logged-label {
        min-width: 9rem;
        font-size: 1.1rem;
    }

    .swpm-logged-value {
        font-size: 1.3rem;
    }

    .swpm-logged-username .swpm-logged-value {
        font-size: 1.5rem;
    }
}

.swpm-edit-profile-link{
    display:none;
}