@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* ───────────────────────────────
   通知設定フォーム  (page‑id‑19) 専用スタイル
   ─────────────────────────────── */

/* 1) レイアウト ────────────────── */
.page-id-19 #primary,                /* メインカラムそのものを広げる */
.page-id-19 main {
  max-width: 900px;                  /* ←横幅をお好みで調整 */
  margin: 0 auto;                    /* 中央寄せ */
  padding: 0 2rem;                   /* サイド余白 */
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}

/* 2) ACF フォーム全体をグリッド化 ─── */
.page-id-19 .acf-form {
  display: grid;
  gap: 2rem;
}

/* 3) 各フィールドブロックを縦並びに統一 ─ */
.page-id-19 .acf-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* ラベル */
.page-id-19 .acf-field label {
  font-weight: 600;
  font-size: 1rem;
}

/* テキスト入力・テキストエリア */
.page-id-19 .acf-field input[type="text"],
.page-id-19 .acf-field textarea {
  width: 100%;
  max-width: 100%;
  padding: .7rem 1rem;
  border: 1px solid #ccc;
  border-radius: .4rem;
  font-size: 1rem;
}

.page-id-19 .acf-field textarea {
  min-height: 180px;
  resize: vertical;
}

/* チェックボックスリスト */
.page-id-19 .acf-field ul,
.page-id-19 .acf-field .acf-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

/* チェックボックス行 */
.page-id-19 .acf-field input[type="checkbox"] + label {
  margin-left: .3rem;
  font-weight: 400;
  font-size: .95rem;
}

/* 4) 真偽値 (トグル) をスイッチ風に ─ */
.page-id-19 .acf-switch {             /* ラベルに自動付与されるクラス */
  --sz: 22px;
  width: calc(var(--sz) * 2);
  height: var(--sz);
  background: #ccc;
  border-radius: var(--sz);
  position: relative;
  cursor: pointer;
  transition: .25s;
}
.page-id-19 .acf-switch:before {
  content: "";
  position: absolute;
  width: var(--sz);
  height: var(--sz);
  border-radius: 50%;
  background: #fff;
  top: 0;
  left: 0;
  transition: .25s;
}
.page-id-19 input:checked + .acf-switch {
  background: #008cff;
}
.page-id-19 input:checked + .acf-switch:before {
  transform: translateX(var(--sz));
}

/* 5) 送信ボタン */
.page-id-19 input[type="submit"] {
  padding: .9rem 2.2rem;
  font-size: 1rem;
  border: none;
  border-radius: .4rem;
  background: #008cff;
  color: #fff;
  cursor: pointer;
  transition: background .25s;
}
.page-id-19 input[type="submit"]:hover {
  background: #006ad8;
}

/* 6) フォームの区切り線 (オプション) */
.page-id-19 .acf-field:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 1.5rem;
}
/*────────────────────────────
  通知設定ページ (ID=19) を左寄せ & フル幅化
────────────────────────────*/

/* ① サイドバーごと非表示にする（右側の RecentPosts など）*/
.page-id-19 #secondary,
.page-id-19 .widget-area,
.page-id-19 aside {
  display: none !important;
}

/* ② メインカラムを 100% 幅に拡張し、中央寄せを解除 */
.page-id-19 #primary,
.page-id-19 main,
.page-id-19 #main_content,
.page-id-19 .l-mainContent__inner {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;          /* ←中央寄せ解除 */
  padding-left: 2rem;            /* ←左右余白はお好みで */
  padding-right: 2rem;
}

/* ③ 入力欄を親幅いっぱいに */
.page-id-19 .acf-field input[type="text"],
.page-id-19 .acf-field textarea {
  width: 100% !important;
  max-width: 100% !important;
}

/* ==========================================================================
   Simple Membership (SWPM) ログイン/登録画面 カスタムデザイン
   colle-navi.com 用
   
   設置場所: 外観 > カスタマイズ > 追加CSS に貼り付けてください
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   共通: ログインページ & 登録ページ のメインコンテンツエリア
   ========================================================================== */

/* ページタイトル（h1） */
.page-id-membership-login .post_title,
.page-id-membership-registration .post_title,
body[class*="membership-login"] .c-pageTitle .c-pageTitle__ttl,
body[class*="membership-registration"] .c-pageTitle .c-pageTitle__ttl,
body[class*="membership-login"] .entry-title,
body[class*="membership-registration"] .entry-title,
body[class*="membership-login"] h1.post_title,
body[class*="membership-registration"] h1.post_title {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.6rem !important;
    text-align: center !important;
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 8px !important;
}

/* ==========================================================================
   SWPM ログインフォーム
   ========================================================================== */

/* フォーム全体のラッパー */
.swpm-login-widget-form {
    max-width: 440px !important;
    margin: 32px auto !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)) !important;
    background-color: #1a1a2e !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 40px 36px 32px !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    font-family: 'Noto Sans JP', sans-serif !important;
}

/* ログインフォーム内のラベル */
.swpm-login-widget-form label,
.swpm-login-widget-form .swpm-username-label,
.swpm-login-widget-form .swpm-password-label {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    display: block !important;
    margin-bottom: 6px !important;
    letter-spacing: 0.03em;
}

/* ログインフォーム内の入力欄 */
.swpm-login-widget-form input[type="text"],
.swpm-login-widget-form input[type="password"],
.swpm-login-widget-form .swpm-username-field,
.swpm-login-widget-form .swpm-password-field {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    color: #fff !important;
    font-size: 1rem !important;
    font-family: inherit !important;
    padding: 13px 16px !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
    margin-bottom: 16px !important;
}

.swpm-login-widget-form input[type="text"]:focus,
.swpm-login-widget-form input[type="password"]:focus,
.swpm-login-widget-form .swpm-username-field:focus,
.swpm-login-widget-form .swpm-password-field:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(102, 126, 234, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15) !important;
    outline: none !important;
}

/* ログインボタン */
.swpm-login-widget-form input[type="submit"],
.swpm-login-widget-form .swpm-login-form-submit {
    width: 100% !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    color: #fff !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    font-family: 'Noto Sans JP', sans-serif !important;
    padding: 14px 24px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.35) !important;
    margin-top: 8px !important;
    text-align: center !important;
    letter-spacing: 0.05em;
}

.swpm-login-widget-form input[type="submit"]:hover,
.swpm-login-widget-form .swpm-login-form-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.5) !important;
}

.swpm-login-widget-form input[type="submit"]:active,
.swpm-login-widget-form .swpm-login-form-submit:active {
    transform: translateY(0) !important;
}

/* パスワードリセット・登録リンク */
.swpm-login-form-pw-reset-link a,
.swpm-login-form-register-link a,
.swpm-login-widget-form a {
    color: rgba(160, 176, 255, 0.8) !important;
    font-size: 0.88rem !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.swpm-login-form-pw-reset-link a:hover,
.swpm-login-form-register-link a:hover,
.swpm-login-widget-form a:hover {
    color: #a0b0ff !important;
    text-decoration: underline !important;
}

/* リンクの配置 */
.swpm-login-form-pw-reset-link,
.swpm-login-form-register-link {
    text-align: center !important;
    margin-top: 12px !important;
    display: block !important;
}

/* Remember meチェックボックス */
.swpm-login-widget-form input[type="checkbox"] {
    accent-color: #667eea !important;
}

/* ==========================================================================
   SWPM 登録フォーム
   ========================================================================== */

/* 登録フォーム全体 */
#swpm-registration-form,
.swpm-registration-widget-form {
    max-width: 620px !important;
    margin: 32px auto !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)) !important;
    background-color: #1a1a2e !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 40px 36px 32px !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    font-family: 'Noto Sans JP', sans-serif !important;
}

/* 姓名フィールドを非表示 */
.swpm-form-firstname-row,
.swpm-form-lastname-row,
#swpm-registration-form .swpm-form-row:has(#first_name),
#swpm-registration-form .swpm-form-row:has(#last_name) {
    display: none !important;
}

/* 登録フォーム内テキスト */
#swpm-registration-form p,
.swpm-registration-widget-form p,
#swpm-registration-form td,
.swpm-registration-widget-form td,
#swpm-registration-form span {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
}

/* 登録フォーム内のラベル */
#swpm-registration-form label,
.swpm-registration-widget-form label {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    display: block !important;
    margin-bottom: 6px !important;
    letter-spacing: 0.03em;
}

/* 登録フォーム内の入力欄 */
#swpm-registration-form input[type="text"],
#swpm-registration-form input[type="email"],
#swpm-registration-form input[type="password"],
.swpm-registration-widget-form input[type="text"],
.swpm-registration-widget-form input[type="email"],
.swpm-registration-widget-form input[type="password"],
.swpm-form-field {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    color: #fff !important;
    font-size: 1rem !important;
    font-family: inherit !important;
    padding: 13px 16px !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
    margin-bottom: 8px !important;
}

#swpm-registration-form input[type="text"]:focus,
#swpm-registration-form input[type="email"]:focus,
#swpm-registration-form input[type="password"]:focus,
.swpm-registration-widget-form input[type="text"]:focus,
.swpm-registration-widget-form input[type="email"]:focus,
.swpm-registration-widget-form input[type="password"]:focus,
.swpm-form-field:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(102, 126, 234, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15) !important;
    outline: none !important;
}

/* テーブル内のスタイル調整（SWPMはテーブルレイアウトを使う場合がある） */
#swpm-registration-form table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 8px !important;
}

#swpm-registration-form table td {
    padding: 4px 0 !important;
    border: none !important;
    background: transparent !important;
}

#swpm-registration-form table tr {
    background: transparent !important;
}

/* 登録ボタン */
.swpm-registration-submit-button,
#swpm-registration-form input[type="submit"],
#swpm-registration-form .button {
    width: 100% !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    color: #fff !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    font-family: 'Noto Sans JP', sans-serif !important;
    padding: 14px 24px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.35) !important;
    margin-top: 12px !important;
    text-align: center !important;
    letter-spacing: 0.05em;
}

.swpm-registration-submit-button:hover,
#swpm-registration-form input[type="submit"]:hover,
#swpm-registration-form .button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.5) !important;
}

.swpm-registration-submit-button:active,
#swpm-registration-form input[type="submit"]:active {
    transform: translateY(0) !important;
}

/* ==========================================================================
   共通: エラー・成功メッセージ
   ========================================================================== */

.swpm-login-widget-form .swpm-login-error,
.swpm-login-widget-form .swpm-error,
#swpm-registration-form .swpm-error {
    background: rgba(239, 83, 80, 0.12) !important;
    color: #ff8a80 !important;
    border: 1px solid rgba(239, 83, 80, 0.25) !important;
    border-left: 4px solid #ef5350 !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    margin: 12px 0 !important;
    font-size: 0.9rem !important;
}

.swpm-login-widget-form .swpm-success,
#swpm-registration-form .swpm-success {
    background: rgba(76, 175, 80, 0.12) !important;
    color: #a5d6a7 !important;
    border: 1px solid rgba(76, 175, 80, 0.25) !important;
    border-left: 4px solid #4caf50 !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    margin: 12px 0 !important;
    font-size: 0.9rem !important;
}

/* ==========================================================================
   ログイン後の表示（ログイン済みウィジェット）
   ========================================================================== */

.swpm-login-widget-logged {
    max-width: 500px !important;
    margin: 32px auto !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)) !important;
    background-color: #1a1a2e !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 40px 36px 32px !important;
    text-align: center !important;
    font-family: 'Noto Sans JP', sans-serif !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.swpm-login-widget-logged span,
.swpm-login-widget-logged div {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.92rem !important;
    line-height: 1.7 !important;
}

.swpm-login-widget-logged a {
    color: rgba(160, 176, 255, 0.9) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.swpm-login-widget-logged a:hover {
    color: #a0b0ff !important;
    text-decoration: underline !important;
}

/* ログアウトリンク */
.swpm-login-widget-logged .swpm-logout-link a,
.swpm-login-widget-logged a[href*="logout"],
.swpm-login-widget-logged a[href*="swpm-logout"] {
    display: inline-block !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 10px 28px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.88rem !important;
    margin-top: 8px !important;
    transition: all 0.3s ease !important;
}

.swpm-login-widget-logged .swpm-logout-link a:hover,
.swpm-login-widget-logged a[href*="logout"]:hover,
.swpm-login-widget-logged a[href*="swpm-logout"]:hover {
    background: rgba(239, 83, 80, 0.12) !important;
    border-color: rgba(239, 83, 80, 0.3) !important;
    color: #ff8a80 !important;
    text-decoration: none !important;
}

/* プロフィール編集リンクもボタン風に */
.swpm-login-widget-logged a[href*="profile"],
.swpm-login-widget-logged a[href*="edit"] {
    display: inline-block !important;
    background: rgba(255, 255, 255, 0.06) !important;
    padding: 10px 28px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-weight: 500 !important;
    font-size: 0.88rem !important;
    margin-top: 8px !important;
    transition: all 0.3s ease !important;
}

.swpm-login-widget-logged a[href*="profile"]:hover,
.swpm-login-widget-logged a[href*="edit"]:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(160, 176, 255, 0.3) !important;
    text-decoration: none !important;
}

/* ===== ログイン後ナビゲーションボタン（JS動的挿入） ===== */
.mns-logged-nav {
    margin-top: 24px !important;
    padding-top: 24px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.mns-logged-nav-title {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.4) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 4px !important;
}

.mns-logged-nav a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 14px 20px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
}

.mns-logged-nav a.mns-nav-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.35) !important;
}

.mns-logged-nav a.mns-nav-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.5) !important;
    text-decoration: none !important;
}

.mns-logged-nav a.mns-nav-secondary {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.75) !important;
}

.mns-logged-nav a.mns-nav-secondary:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(160, 176, 255, 0.3) !important;
    color: #a0b0ff !important;
    text-decoration: none !important;
}

.mns-logged-nav a .mns-nav-icon {
    font-size: 1.2rem !important;
    flex-shrink: 0 !important;
}

/* ==========================================================================
   ログインページ・登録ページの説明テキスト（記事本文内）
   ========================================================================== */

/* ログインページ・登録ページの本文テキストを白系に */
body[class*="membership-login"] .post_content,
body[class*="membership-login"] .entry-content,
body[class*="membership-login"] .l-postContent,
body[class*="membership-registration"] .post_content,
body[class*="membership-registration"] .entry-content,
body[class*="membership-registration"] .l-postContent {
    color: rgba(255, 255, 255, 0.8) !important;
}

body[class*="membership-login"] .post_content p,
body[class*="membership-login"] .entry-content p,
body[class*="membership-login"] .l-postContent p,
body[class*="membership-registration"] .post_content p,
body[class*="membership-registration"] .entry-content p,
body[class*="membership-registration"] .l-postContent p {
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.8 !important;
    margin-bottom: 1em !important;
}

/* SWPMのメッセージ（有効化通知・エラーなど） */
body[class*="membership-login"] .swpm-login-widget-form .swpm-login-form-msg,
body[class*="membership-login"] .swpm-login-widget-form p,
body[class*="membership-login"] .swpm-login-widget-form span,
body[class*="membership-login"] .swpm-login-widget-form div {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* SWPMがフォーム外に出力するメッセージ（有効化促しなど） */
body[class*="membership-login"] .swpm-activation-required,
body[class*="membership-login"] .swpm-login-status,
body[class*="membership-login"] .swpm-message,
body[class*="membership-login"] .swpm-account-activation-msg {
    color: #ffcc80 !important;
    background: rgba(255, 152, 0, 0.1) !important;
    border: 1px solid rgba(255, 152, 0, 0.25) !important;
    border-left: 4px solid #ff9800 !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    margin: 12px 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
}

/* ==========================================================================
   パスワードリセットページ
   ========================================================================== */

.swpm-reset-widget-form,
.swpm-pw-reset-form {
    max-width: 440px !important;
    margin: 32px auto !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)) !important;
    background-color: #1a1a2e !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 40px 36px 32px !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25) !important;
    font-family: 'Noto Sans JP', sans-serif !important;
}

.swpm-reset-widget-form label,
.swpm-pw-reset-form label {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500 !important;
}

.swpm-reset-widget-form input[type="text"],
.swpm-reset-widget-form input[type="email"],
.swpm-pw-reset-form input[type="text"],
.swpm-pw-reset-form input[type="email"] {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    color: #fff !important;
    font-size: 1rem !important;
    padding: 13px 16px !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}

.swpm-reset-widget-form input[type="submit"],
.swpm-pw-reset-form input[type="submit"] {
    width: 100% !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    color: #fff !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    padding: 14px 24px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.35) !important;
    margin-top: 8px !important;
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */

@media (max-width: 600px) {

    .swpm-login-widget-form,
    #swpm-registration-form,
    .swpm-registration-widget-form,
    .swpm-logged-state,
    .swpm-reset-widget-form,
    .swpm-pw-reset-form {
        margin: 20px 12px !important;
        padding: 28px 20px 24px !important;
        border-radius: 16px !important;
    }

    .mns-reg-success-card {
        padding: 28px 20px !important;
    }
}

/* ==========================================================================
   登録完了 成功カード（JS動的生成用）
   ========================================================================== */

.mns-reg-success-card {
    max-width: 520px !important;
    margin: 32px auto !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)) !important;
    background-color: #1a1a2e !important;
    border: 1px solid rgba(76, 175, 80, 0.2) !important;
    border-radius: 20px !important;
    padding: 48px 36px 40px !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25), 0 0 40px rgba(76, 175, 80, 0.06) !important;
    font-family: 'Noto Sans JP', sans-serif !important;
    text-align: center !important;
    animation: mnsSuccessFadeIn 0.6s ease-out !important;
}

@keyframes mnsSuccessFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mns-reg-success-icon {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.08)) !important;
    border: 2px solid rgba(76, 175, 80, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 24px !important;
    font-size: 2.2rem !important;
    animation: mnsSuccessBounce 0.6s ease-out 0.3s both !important;
}

@keyframes mnsSuccessBounce {
    0% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.mns-reg-success-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 0 12px !important;
}

.mns-reg-success-msg {
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.7 !important;
    margin: 0 0 28px !important;
}

.mns-reg-success-steps {
    text-align: left !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 14px !important;
    padding: 20px 24px !important;
    margin-bottom: 28px !important;
}

.mns-reg-success-steps h4 {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.5) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin: 0 0 12px !important;
}

.mns-reg-success-step {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 8px 0 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
}

.mns-reg-success-step-num {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: #fff !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

.mns-reg-success-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #fff !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    font-family: inherit !important;
    padding: 14px 36px !important;
    border-radius: 12px !important;
    border: none !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.35) !important;
}

.mns-reg-success-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.5) !important;
    color: #fff !important;
}

/* SWPM デフォルトの成功メッセージも目立たせる（フォールバック） */
.swpm-registration-widget-form:not(:has(.swpm-registration-form-inner)) {
    text-align: center !important;
    padding: 48px 36px !important;
}

.swpm-registration-widget-form:not(:has(.swpm-registration-form-inner)) * {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
}

/* ==========================================================================
   コレナビ！ LP トップページ CSS v2.0
   設置場所: 外観 > カスタマイズ > 追加CSS に貼り付け
   ※ 既存のSWPMログイン画面CSSの後に追加してください
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800&display=swap');
/* --- SWELL側のサイドバー・余白を無効化（LP用固定ページ） --- */
.page-template-default.page .l-content,
body.lp-top .l-content {
    max-width: 100% !important;
    padding: 0 !important;
}
body.lp-top .l-mainContent__inner,
body.lp-top .post_content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
body.lp-top #sidebar,
body.lp-top .l-sidebar {
    display: none !important;
}
/* ==========================================================================
   LP 共通
   ========================================================================== */
.cnv-lp {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #e0e0f0;
    line-height: 1.7;
    overflow-x: hidden;
}
.cnv-lp *,
.cnv-lp *::before,
.cnv-lp *::after {
    box-sizing: border-box;
}
.cnv-lp a {
    text-decoration: none;
    color: inherit;
}
.cnv-section {
    padding: 80px 24px;
    position: relative;
}
.cnv-container {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}
.cnv-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #9b8ec4;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-align: center;
}
.cnv-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.4;
    text-align: center;
}
/* --- SWELL の h2/h3 装飾を LP 内で無効化 --- */
.cnv-lp h1,
.cnv-lp h2,
.cnv-lp h3,
.cnv-lp h4 {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-left: none !important;
    border-bottom: none !important;
    padding: 0 !important;
    margin-top: 0 !important;
    position: relative;
}
.cnv-lp h1::before,
.cnv-lp h1::after,
.cnv-lp h2::before,
.cnv-lp h2::after,
.cnv-lp h3::before,
.cnv-lp h3::after {
    content: none !important;
    display: none !important;
}
.cnv-section-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
/* ==========================================================================
   HERO
   ========================================================================== */
.cnv-hero {
    background: linear-gradient(160deg, #14142b 0%, #1e1e3a 40%, #252547 70%, #1a1a35 100%);
    padding: 100px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 装飾用のグロウ */
.cnv-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.12) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
    animation: cnvFloat1 12s ease-in-out infinite;
}
.cnv-hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(155, 100, 220, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    animation: cnvFloat2 15s ease-in-out infinite;
}
@keyframes cnvFloat1 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-40px, 30px) scale(1.1);
    }
}
@keyframes cnvFloat2 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -40px) scale(1.05);
    }
}
.cnv-hero-inner {
    position: relative;
    z-index: 1;
    animation: cnvFadeUp 0.8s ease-out;
}
@keyframes cnvFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cnv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.25);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 0.85rem;
    color: #a0b4ff;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}
.cnv-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    animation: cnvPulse 2s ease-in-out infinite;
}
@keyframes cnvPulse {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(102, 126, 234, 0);
    }
}
.cnv-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 12px;
    color: #fff;
}
.cnv-hero-title-gradient {
    background: linear-gradient(135deg, #7c93f5 0%, #b388f5 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cnv-hero-catch {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 20px;
    line-height: 1.6;
}
.cnv-hero-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
/* ===== ヒーロー内 対応サイトチップ ===== */
.cnv-hero-sites {
    margin: 0 auto 40px;
    max-width: 720px;
}
.cnv-hero-sites-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 14px;
}
.cnv-hero-sites-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.cnv-hero-site-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid color-mix(in sRGB, var(--chip-color) 45%, transparent);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}
.cnv-hero-site-chip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, color-mix(in sRGB, var(--chip-color) 8%, transparent), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cnv-hero-site-chip:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: color-mix(in sRGB, var(--chip-color) 50%, transparent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px color-mix(in sRGB, var(--chip-color) 20%, transparent);
}
.cnv-hero-site-chip:hover::before {
    opacity: 1;
}
.cnv-hero-site-icon {
    font-size: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.cnv-hero-site-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}
/* CTA ボタン */
.cnv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    padding: 16px 40px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(102, 126, 234, 0.35);
    letter-spacing: 0.03em;
}
.cnv-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(102, 126, 234, 0.5);
}
.cnv-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    margin-left: 12px;
    background: transparent;
}
.cnv-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.04);
}
.cnv-hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
/* 数値ハイライト */
.cnv-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 56px;
    flex-wrap: wrap;
}
.cnv-hero-stat {
    text-align: center;
}
.cnv-hero-stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1.2;
}
.cnv-hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}
/* ==========================================================================
   PAIN (課題提起)
   ========================================================================== */
.cnv-pain {
    background: linear-gradient(180deg, #1a1a35 0%, #1e1535 50%, #1a1a35 100%);
    text-align: center;
}
.cnv-pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.cnv-pain-card {
    background: rgba(255, 80, 80, 0.04);
    border: 1px solid rgba(255, 100, 100, 0.1);
    border-radius: 18px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}
.cnv-pain-card:hover {
    background: rgba(255, 80, 80, 0.07);
    transform: translateY(-3px);
}
.cnv-pain-emoji {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}
.cnv-pain-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffb0b0;
    margin: 0 0 12px;
    line-height: 1.5;
}
.cnv-pain-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    line-height: 1.7;
}
/* ==========================================================================
   FEATURES
   ========================================================================== */
.cnv-features {
    background: linear-gradient(180deg, #1a1a35 0%, #16162e 100%);
    text-align: center;
}
.cnv-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.cnv-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.cnv-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cnv-feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.15);
    transform: translateY(-4px);
}
.cnv-feature-card:hover::before {
    opacity: 1;
}
/* ハイライトカード（ステルス通知 & 通知なしサイト対応） */
.cnv-feature-highlight {
    background: rgba(102, 126, 234, 0.06);
    border-color: rgba(102, 126, 234, 0.15);
    grid-column: span 1;
}
.cnv-feature-highlight::before {
    opacity: 0.5;
}
.cnv-feature-highlight::after {
    content: 'PICK UP';
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 3px 10px;
    border-radius: 8px;
}
.cnv-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}
.cnv-feature-icon.icon-stealth {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
}
.cnv-feature-icon.icon-nosignal {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.15), rgba(0, 242, 254, 0.15));
}
.cnv-feature-icon.icon-bell {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
}
.cnv-feature-icon.icon-custom {
    background: linear-gradient(135deg, rgba(250, 200, 80, 0.12), rgba(255, 154, 68, 0.12));
}
.cnv-feature-icon.icon-push {
    background: linear-gradient(135deg, rgba(255, 110, 127, 0.12), rgba(255, 173, 117, 0.12));
}
.cnv-feature-icon.icon-free {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.12), rgba(245, 87, 108, 0.12));
}
.cnv-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px;
}
.cnv-feature-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.65;
}
.cnv-feature-card p strong {
    color: rgba(255, 255, 255, 0.85);
}
/* ==========================================================================
   PRIVACY / STEALTH MODE
   ========================================================================== */
.cnv-privacy {
    background: linear-gradient(180deg, #16162e 0%, #141432 50%, #18183a 100%);
    text-align: center;
}
/* Before / After 比較 */
.cnv-privacy-comparison {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.cnv-privacy-card {
    flex: 1;
    min-width: 300px;
    max-width: 420px;
    border-radius: 18px;
    overflow: hidden;
    text-align: left;
}
.cnv-privacy-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
}
.cnv-before-header {
    background: rgba(255, 80, 80, 0.1);
    border-bottom: 1px solid rgba(255, 80, 80, 0.15);
}
.cnv-after-header {
    background: rgba(80, 220, 120, 0.1);
    border-bottom: 1px solid rgba(80, 220, 120, 0.15);
}
.cnv-privacy-label-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 6px;
}
.cnv-before-badge {
    background: rgba(255, 80, 80, 0.2);
    color: #ff8888;
}
.cnv-after-badge {
    background: rgba(80, 220, 120, 0.2);
    color: #80dc78;
}
.cnv-privacy-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}
.cnv-privacy-card-body {
    padding: 20px;
}
.cnv-privacy-before .cnv-privacy-card-body {
    background: rgba(255, 60, 60, 0.04);
    border: 1px solid rgba(255, 80, 80, 0.08);
    border-top: none;
    border-radius: 0 0 18px 18px;
}
.cnv-privacy-after .cnv-privacy-card-body {
    background: rgba(60, 220, 100, 0.04);
    border: 1px solid rgba(80, 220, 120, 0.08);
    border-top: none;
    border-radius: 0 0 18px 18px;
}
/* モック通知 */
.cnv-mock-notification {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}
.cnv-mock-subject {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
}
.cnv-mock-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}
.cnv-mock-body {
    padding: 14px 16px;
}
.cnv-mock-line {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 0;
}
.cnv-mock-label {
    color: rgba(255, 255, 255, 0.35);
    margin-right: 4px;
}
/* ステルスモード（ぼかし表示） */
.cnv-mock-stealth .cnv-mock-subject {
    color: rgba(255, 255, 255, 0.7);
}
.cnv-mock-hidden {
    opacity: 0.4;
}
.cnv-mock-blur {
    filter: blur(4px);
    user-select: none;
    color: rgba(255, 255, 255, 0.3);
}
.cnv-mock-link {
    font-size: 0.85rem;
    color: #7c93f5;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.cnv-privacy-caption {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 14px 0 0;
    text-align: center;
}
/* 矢印 */
.cnv-privacy-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(102, 126, 234, 0.5);
    min-width: 48px;
    flex-shrink: 0;
}
/* チェックリスト */
.cnv-privacy-checklist {
    margin-top: 56px;
    text-align: center;
}
.cnv-privacy-checklist h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 24px;
}
.cnv-checklist-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    max-width: 700px;
    margin: 0 auto;
}
.cnv-checklist-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.15);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}
.cnv-checklist-item:hover {
    background: rgba(102, 126, 234, 0.12);
    transform: translateY(-1px);
}
.cnv-check-icon {
    color: #7c93f5;
    font-weight: 700;
    font-size: 1rem;
}
/* ==========================================================================
   HOW IT WORKS (STEPS)
   ========================================================================== */
.cnv-steps {
    background: linear-gradient(180deg, #18183a 0%, #141428 50%, #18183a 100%);
    text-align: center;
}
.cnv-steps-flow {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.cnv-step-item {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    position: relative;
    padding: 0 8px;
}
.cnv-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 1;
}
.cnv-step-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
}
.cnv-step-item p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.65;
}
/* ステップ間の矢印 */
.cnv-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(102, 126, 234, 0.4);
    padding-top: 16px;
    min-width: 40px;
}
/* ==========================================================================
   MY COLLECTION
   ========================================================================== */
.cnv-collection {
    background: linear-gradient(180deg, #141428 0%, #1a1a3a 50%, #18183a 100%);
    text-align: center;
}
/* ダッシュボードモックアップ */
.cnv-dashboard-mock {
    max-width: 520px;
    margin: 48px auto 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 8px 40px rgba(102, 126, 234, 0.12), 0 0 0 1px rgba(102, 126, 234, 0.08);
}
.cnv-dash-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(30, 30, 60, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cnv-dash-dots {
    display: flex;
    gap: 6px;
}
.cnv-dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.cnv-dash-title {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}
.cnv-dash-body {
    padding: 14px;
    background: rgba(20, 20, 45, 0.9);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cnv-dash-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
}
.cnv-dash-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateX(4px);
}
.cnv-dash-card-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    padding: 3px 10px;
    border-radius: 6px;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}
.cnv-dash-card-info {
    flex: 1;
    text-align: left;
    min-width: 0;
}
.cnv-dash-card-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}
.cnv-dash-card-meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}
.cnv-dash-card-status {
    font-size: 1rem;
    flex-shrink: 0;
}
/* 特徴ポイントグリッド */
.cnv-collection-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.cnv-col-point {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    transition: all 0.3s ease;
}
.cnv-col-point:hover {
    background: rgba(102, 126, 234, 0.06);
    border-color: rgba(102, 126, 234, 0.15);
    transform: translateY(-3px);
}
.cnv-col-point-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.cnv-col-point h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
}
.cnv-col-point p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    line-height: 1.6;
}
/* ==========================================================================
   NEW FEATURES
   ========================================================================== */
.cnv-new-features {
    background: linear-gradient(180deg, #14142b 0%, #181840 50%, #14142b 100%);
    text-align: center;
}
.cnv-new-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.cnv-nf-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(102, 126, 234, 0.12);
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.cnv-nf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #f093fb, #43e97b);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cnv-nf-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(102, 126, 234, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.12);
}
.cnv-nf-card:hover::before {
    opacity: 1;
}
.cnv-nf-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: block;
}
.cnv-nf-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    padding: 3px 10px;
    border-radius: 8px;
    animation: cnvNewPulse 2s ease-in-out infinite;
}
@keyframes cnvNewPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(67, 233, 123, 0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(67, 233, 123, 0);
    }
}
.cnv-nf-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px;
}
.cnv-nf-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.7;
}
/* ==========================================================================
   SUPPORTED SITES
   ========================================================================== */
.cnv-sites {
    background: linear-gradient(180deg, #18183a 0%, #1a1a35 100%);
    text-align: center;
}
.cnv-sites-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.cnv-site-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}
.cnv-site-badge:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}
.cnv-site-badge-name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px;
}
.cnv-site-badge-domain {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}
.cnv-site-badge-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
    display: block;
}
/* Coming Soon バッジ */
.cnv-site-coming {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    opacity: 0.75;
}
.cnv-site-coming:hover {
    opacity: 1;
    background: rgba(102, 126, 234, 0.05);
    border-color: rgba(102, 126, 234, 0.2);
}
.cnv-site-coming .cnv-site-badge-icon {
    filter: grayscale(0.3);
}
.cnv-site-coming .cnv-site-badge-domain {
    color: rgba(124, 147, 245, 0.6);
    font-style: italic;
}
.cnv-coming-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #a0b4ff;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 2px 10px;
    border-radius: 8px;
    margin-top: 8px;
}
/* ==========================================================================
   CTA
   ========================================================================== */
.cnv-cta {
    background: linear-gradient(160deg, #1e1e40 0%, #252550 50%, #1e1e3a 100%);
    text-align: center;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}
.cnv-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}
.cnv-cta-inner {
    position: relative;
    z-index: 1;
}
.cnv-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}
.cnv-cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 32px;
    line-height: 1.7;
}
.cnv-cta-note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 16px;
}
/* ==========================================================================
   FOOTER
   ========================================================================== */
.cnv-lp-footer {
    background: #111125;
    text-align: center;
    padding: 32px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.cnv-lp-footer p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.82rem;
    margin: 0;
}
/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .cnv-hero {
        padding: 72px 20px 56px;
        min-height: auto;
    }
    .cnv-hero-title {
        font-size: 2rem;
    }
    .cnv-hero-catch {
        font-size: 1.05rem;
    }
    .cnv-hero-sites-grid {
        gap: 8px;
    }
    .cnv-hero-site-chip {
        padding: 7px 14px 7px 10px;
        gap: 5px;
    }
    .cnv-hero-site-name {
        font-size: 0.78rem;
    }
    .cnv-section {
        padding: 56px 20px;
    }
    .cnv-section-title {
        font-size: 1.6rem;
    }
    .cnv-pain-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .cnv-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .cnv-steps-flow {
        flex-direction: column;
        align-items: center;
    }
    .cnv-step-arrow {
        transform: rotate(90deg);
        padding: 0;
        min-width: auto;
    }
    .cnv-sites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cnv-hero-stats {
        gap: 24px;
    }
    .cnv-hero-buttons {
        flex-direction: column;
    }
    .cnv-btn-secondary {
        margin-left: 0;
    }
    .cnv-cta-title {
        font-size: 1.5rem;
    }
    /* Privacy セクション */
    .cnv-privacy-comparison {
        flex-direction: column;
        align-items: center;
    }
    .cnv-privacy-card {
        max-width: 100%;
        min-width: auto;
    }
    .cnv-privacy-arrow {
        transform: rotate(90deg);
        min-width: auto;
        padding: 8px 0;
    }
    .cnv-checklist-items {
        flex-direction: column;
        align-items: center;
    }
    .cnv-checklist-item {
        width: 100%;
        justify-content: center;
    }
    .cnv-collection-points {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .cnv-col-point {
        padding: 20px 12px;
    }
    .cnv-col-point h3 {
        font-size: 0.88rem;
    }
    .cnv-new-features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .cnv-nf-card {
        padding: 28px 20px;
    }
}
@media (max-width: 480px) {
    .cnv-hero-title {
        font-size: 1.65rem;
    }
    .cnv-sites-grid {
        grid-template-columns: 1fr;
    }
    .cnv-feature-card {
        padding: 28px 20px;
    }
    .cnv-pain-card {
        padding: 28px 20px;
    }
}

/* ==========================================================================
   コレナビ！ 使い方マニュアル CSS
   設置場所: 外観 > カスタマイズ > 追加CSS に貼り付け
   ※ LP用CSSの後に追加してください
   ========================================================================== */
/* ==========================================================================
   共通リセット
   ========================================================================== */
.cnv-manual {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2d3748;
    line-height: 1.8;
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    background: #fff;
}
.cnv-manual *,
.cnv-manual *::before,
.cnv-manual *::after {
    box-sizing: border-box;
}
/* --- SWELLテーマの見出しスタイルを完全リセット --- */
.cnv-manual h2,
.cnv-manual h3,
.cnv-manual h4 {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    border-left: none !important;
    border-bottom: none !important;
    border-top: none !important;
    border-right: none !important;
    padding: 0 !important;
    padding-left: 0 !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    position: relative !important;
    color: #1a202c !important;
    font-family: inherit !important;
    letter-spacing: normal !important;
    text-align: left !important;
    line-height: 1.4 !important;
    box-shadow: none !important;
}
/* クラスなしの h4 にもデフォルトの下余白 */
.cnv-manual .cnv-m-card h4 {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    margin-bottom: 14px !important;
}
.cnv-manual h2::before,
.cnv-manual h2::after,
.cnv-manual h3::before,
.cnv-manual h3::after,
.cnv-manual h4::before,
.cnv-manual h4::after {
    content: none !important;
    display: none !important;
}
.cnv-manual a {
    color: #5b6abf;
    text-decoration: none;
    border-bottom: 1px solid rgba(91, 106, 191, 0.3);
    transition: all 0.2s ease;
}
.cnv-manual a:hover {
    color: #4a58a0;
    border-bottom-color: #4a58a0;
}
/* ==========================================================================
   目次 (TOC)
   ========================================================================== */
.cnv-m-toc {
    background: #f8f9fc;
    border: 1px solid #e2e6f0;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 48px;
}
.cnv-m-toc-title {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #2d3748 !important;
    margin: 0 0 16px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}
.cnv-m-toc-list {
    margin: 0;
    padding-left: 20px;
    list-style: none;
    counter-reset: toc;
}
.cnv-m-toc-list>li {
    counter-increment: toc;
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.cnv-m-toc-list>li::before {
    content: counter(toc) ".";
    font-weight: 600;
    color: #5b6abf;
    margin-right: 6px;
}
.cnv-m-toc-list>li>ol {
    margin: 6px 0 0 20px;
    padding: 0;
    list-style: none;
    counter-reset: subtoc;
}
.cnv-m-toc-list>li>ol>li {
    counter-increment: subtoc;
    margin-bottom: 4px;
    font-size: 0.88rem;
    color: #636b83;
}
.cnv-m-toc-list>li>ol>li::before {
    content: counter(toc) "-" counter(subtoc) ".";
    font-weight: 500;
    color: #8b93af;
    margin-right: 4px;
}
.cnv-m-toc a {
    border-bottom: none;
}
.cnv-m-toc a:hover {
    color: #4a58a0;
    border-bottom: 1px solid #4a58a0;
}
/* ==========================================================================
   セクション
   ========================================================================== */
.cnv-m-section {
    margin-bottom: 56px;
    scroll-margin-top: 80px;
}
.cnv-m-section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5b6abf, #7b68c9);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(91, 106, 191, 0.25);
}
.cnv-m-section-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    margin: 0 0 20px !important;
    padding: 0 0 12px 0 !important;
    border: none !important;
    border-bottom: 3px solid #5b6abf !important;
    line-height: 1.4 !important;
    background: none !important;
}
/* ==========================================================================
   カード
   ========================================================================== */
.cnv-m-card {
    background: #fff;
    border: 1px solid #e8ecf4;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.cnv-m-card p {
    margin: 0 0 14px;
    font-size: 0.95rem;
}
.cnv-m-card p:last-child {
    margin-bottom: 0;
}
.cnv-m-subtitle {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #2d3748 !important;
    margin: 0 0 16px !important;
    padding: 0 0 8px 0 !important;
    border: none !important;
    border-bottom: 2px solid #e8ecf4 !important;
    background: none !important;
}
/* ==========================================================================
   ステップ表示
   ========================================================================== */
.cnv-m-step {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px 14px;
    margin-bottom: 16px;
}
.cnv-m-step-badge {
    flex-shrink: 0;
    background: linear-gradient(135deg, #5b6abf, #7b68c9);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 8px;
    margin-top: 2px;
}
.cnv-m-step p {
    flex: 1 1 calc(100% - 100px);
    min-width: 200px;
    margin: 0;
}
.cnv-m-step .cnv-m-table {
    flex-basis: 100%;
    margin-top: 4px;
}
/* ==========================================================================
   テーブル
   ========================================================================== */
.cnv-m-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.9rem;
}
.cnv-m-table th,
.cnv-m-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e8ecf4;
}
.cnv-m-table th {
    background: #f5f7fb;
    font-weight: 600;
    color: #4a5568;
    font-size: 0.85rem;
}
.cnv-m-table td {
    color: #2d3748;
}
.cnv-m-table tr:last-child td {
    border-bottom: none;
}
/* ==========================================================================
   アラートボックス
   ========================================================================== */
.cnv-m-alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin: 16px 0;
    font-size: 0.9rem;
    line-height: 1.7;
}
.cnv-m-alert-info {
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    color: #3730a3;
}
.cnv-m-alert-warn {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}
.cnv-m-alert-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}
/* ==========================================================================
   画像プレースホルダー
   ========================================================================== */
.cnv-m-image-placeholder {
    margin: 20px 0;
    text-align: center;
}
.cnv-m-image-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #5b6abf;
    margin-bottom: 10px;
}
.cnv-m-screenshot {
    max-width: 100%;
    height: auto;
    border: 1px solid #e2e6f0;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: block;
    margin: 0 auto;
}
.cnv-m-image-caption {
    font-size: 0.82rem;
    color: #8b93af;
    margin-top: 10px;
}
/* ==========================================================================
   ポイントボックス
   ========================================================================== */
.cnv-m-point-box {
    background: #f8f9fc;
    border: 1px solid #e2e6f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}
.cnv-m-point-box h3 {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #2d3748 !important;
    margin: 0 0 14px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}
.cnv-m-point-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.cnv-m-point-box li {
    padding: 6px 0;
    font-size: 0.93rem;
    line-height: 1.7;
}
/* ==========================================================================
   注意書き
   ========================================================================== */
.cnv-m-note {
    font-size: 0.88rem;
    color: #6b7280;
    background: #f9fafb;
    border-left: 3px solid #5b6abf;
    padding: 10px 16px;
    border-radius: 0 8px 8px 0;
    margin: 14px 0;
}
/* ==========================================================================
   トグル例示
   ========================================================================== */
.cnv-m-toggle-example {
    background: #f8f9fc;
    border: 1px solid #e2e6f0;
    border-radius: 10px;
    padding: 14px 20px;
    margin: 12px 0;
}
.cnv-m-toggle-off-ex {
    background: #fafafa;
    border-color: #e5e5e5;
}
.cnv-m-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.93rem;
    font-weight: 500;
}
.cnv-m-toggle-on {
    color: #059669;
    font-weight: 600;
}
.cnv-m-toggle-off {
    color: #9ca3af;
    font-weight: 600;
}
.cnv-m-toggle-desc {
    font-size: 0.82rem;
    color: #8b93af;
    margin: 6px 0 0;
}
/* ==========================================================================
   ステルスモード解説
   ========================================================================== */
.cnv-m-stealth-guide {
    margin: 20px 0;
}
.cnv-m-stealth-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    border-radius: 12px;
    padding: 18px 20px;
}
.cnv-m-stealth-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #5b6abf;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cnv-m-stealth-step div:last-child {
    font-size: 0.93rem;
}
.cnv-m-check-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}
.cnv-m-check-list li {
    padding: 4px 0;
    font-size: 0.9rem;
}
.cnv-m-uncheck {
    color: #d1d5db;
    margin-right: 6px;
}
.cnv-m-code-inline {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 2px 8px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    color: #4a5568;
}
/* ==========================================================================
   結果ボックス
   ========================================================================== */
.cnv-m-result-box {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 14px;
    padding: 24px;
    margin: 20px 0;
}
.cnv-m-result-header {
    font-size: 1rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 12px;
}
.cnv-m-result-box p {
    font-size: 0.93rem;
    color: #064e3b;
}
.cnv-m-result-note {
    font-size: 0.88rem;
    color: #047857;
    font-weight: 600;
    margin-top: 10px;
}
/* ==========================================================================
   コードブロック（URLサンプル等）
   ========================================================================== */
.cnv-m-code-block {
    background: #1e293b;
    border-radius: 10px;
    padding: 18px 20px;
    margin: 14px 0;
    overflow-x: auto;
}
.cnv-m-code-block code {
    font-family: 'Courier New', monospace;
    font-size: 0.83rem;
    color: #a5f3fc;
    line-height: 2;
    word-break: break-all;
    user-select: none;
    pointer-events: none;
}
/* ==========================================================================
   URL解説カード
   ========================================================================== */
.cnv-m-url-card {
    border-left: 4px solid #5b6abf;
}
.cnv-m-url-card-warn {
    border-left-color: #f59e0b;
}
.cnv-m-site-name {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    margin: 0 0 16px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}
.cnv-m-url-example {
    background: #f8f9fc;
    border: 1px solid #e2e6f0;
    border-radius: 10px;
    padding: 12px 16px;
    margin: 14px 0;
    font-size: 0.88rem;
}
.cnv-m-url-label {
    font-weight: 600;
    color: #5b6abf;
    margin-right: 8px;
}
.cnv-m-url-text {
    font-family: 'Courier New', monospace;
    color: #4a5568;
    word-break: break-all;
    user-select: none;
}
/* ==========================================================================
   番号付きリスト
   ========================================================================== */
.cnv-m-numbered-list {
    padding-left: 24px;
    margin: 14px 0;
}
.cnv-m-numbered-list li {
    margin-bottom: 10px;
    font-size: 0.93rem;
    line-height: 1.7;
}
/* ==========================================================================
   FAQ
   ========================================================================== */
.cnv-m-faq-list {
    margin-top: 20px;
}
.cnv-m-faq-item {
    background: #fff;
    border: 1px solid #e8ecf4;
    border-radius: 14px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.cnv-m-faq-q {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    background: #f8f9fc;
    border-bottom: 1px solid #e8ecf4;
}
/* Q行のテキスト部分・A行のテキスト部分 — アイコンの横に収まるように */
.cnv-m-faq-text {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.cnv-m-faq-a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 24px;
    font-size: 0.93rem;
    color: #4a5568;
    line-height: 1.8;
}
.cnv-m-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    background: #5b6abf;
    color: #fff;
    margin-top: 2px;
}
.cnv-m-faq-a-icon {
    background: #059669;
}
.cnv-m-faq-a div {
    flex: 1;
    min-width: 0;
}
.cnv-m-faq-a ol {
    margin: 8px 0;
    padding-left: 20px;
}
.cnv-m-faq-a li {
    margin-bottom: 6px;
    line-height: 1.7;
}
/* ==========================================================================
   ページ下部CTA
   ========================================================================== */
.cnv-m-bottom-cta {
    text-align: center;
    padding: 40px 0;
    margin-top: 40px;
    border-top: 2px solid #e8ecf4;
}
.cnv-m-bottom-cta>p {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 20px;
}
.cnv-m-bottom-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.cnv-m-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #5b6abf, #7b68c9) !important;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    border: none !important;
    border-bottom: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(91, 106, 191, 0.3);
}
.cnv-m-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(91, 106, 191, 0.4);
    color: #fff !important;
    border-bottom: none !important;
}
.cnv-m-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #5b6abf;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1.5px solid #c7d2fe;
    background: transparent;
    transition: all 0.3s ease;
}
.cnv-m-btn-secondary:hover {
    background: #f5f3ff;
    border-color: #5b6abf;
}
/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 768px) {
    .cnv-manual {
        padding: 24px 16px 40px;
    }
    .cnv-m-toc {
        padding: 20px;
    }
    .cnv-m-card {
        padding: 20px;
    }
    .cnv-m-section-title {
        font-size: 1.3rem;
    }
    .cnv-m-step {
        flex-direction: column;
        gap: 8px;
    }
    .cnv-m-toggle-row {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }
    .cnv-m-stealth-step {
        flex-direction: column;
        gap: 10px;
    }
    .cnv-m-faq-q,
    .cnv-m-faq-a {
        padding: 14px 18px;
    }
    .cnv-m-table th,
    .cnv-m-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    .cnv-m-bottom-buttons {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 480px) {
    .cnv-m-section-title {
        font-size: 1.15rem;
    }
    .cnv-m-code-block code {
        font-size: 0.75rem;
    }
}
/* ==========================================================================
   ナビゲーションハブ（ページ間リンク）
   ========================================================================== */
.cnv-m-nav-hub {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 28px;
}
.cnv-m-nav-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: color-mix(in sRGB, var(--nav-color) 80%, #333) !important;
    background: color-mix(in sRGB, var(--nav-color) 8%, #fff);
    border: 1px solid color-mix(in sRGB, var(--nav-color) 18%, transparent) !important;
    border-bottom: 1px solid color-mix(in sRGB, var(--nav-color) 18%, transparent) !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
}
.cnv-m-nav-item:hover {
    background: color-mix(in sRGB, var(--nav-color) 14%, #fff);
    border-color: color-mix(in sRGB, var(--nav-color) 30%, transparent) !important;
    border-bottom-color: color-mix(in sRGB, var(--nav-color) 30%, transparent) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px color-mix(in sRGB, var(--nav-color) 18%, transparent);
}
@media (max-width: 480px) {
    .cnv-m-nav-hub {
        gap: 6px;
    }
    .cnv-m-nav-item {
        padding: 8px 12px;
        font-size: 0.78rem;
    }
}

/* =============================================================
   コレナビ！ 販売者ランキングページ CSS
   WordPress追加CSSに貼り付け
   ============================================================= */
.mns-ranking-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans', sans-serif;
}
/* --- ヘッダー --- */
.mns-rk-header {
    text-align: center;
    margin-bottom: 24px;
    padding: 40px 20px 32px;
    background: linear-gradient(135deg, #667eea22, #764ba222);
    border-radius: 20px;
}
.mns-rk-title {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #1a1a2e !important;
    margin: 0 0 8px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}
.mns-rk-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}
/* --- メインタブ（ランキング種別） --- */
.mns-rk-main-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    padding: 4px;
    background: #f3f4f6;
    border-radius: 14px;
}
.mns-rk-main-tab {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.mns-rk-main-tab:hover {
    color: #374151;
    background: #fff8;
}
.mns-rk-main-tab.active {
    background: #fff;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
/* --- サイトフィルター --- */
.mns-rk-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.mns-rk-site-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.mns-rk-tab {
    padding: 8px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    background: #fff;
    color: #374151;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.mns-rk-tab:hover {
    border-color: #667eea;
    color: #667eea;
    background: #667eea0a;
}
.mns-rk-tab.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.35);
}
/* --- グラフエリア --- */
.mns-rk-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
    align-items: start;
}
.mns-rk-chart-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.mns-rk-chart-card h3 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #374151 !important;
    margin: 0 0 16px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}
/* チャートキャンバスラッパー */
.mns-rk-chart-canvas-wrap {
    position: relative;
    width: 100%;
    min-height: 300px;
}
/* ドーナツ: 真円にするため中央配置 */
.mns-rk-doughnut-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mns-rk-doughnut-wrap canvas {
    max-width: 280px !important;
    max-height: 280px !important;
}
/* --- ランキングリスト --- */
.mns-rk-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mns-rk-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    transition: all 0.2s ease;
}
.mns-rk-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}
.mns-rk-item.mns-rk-top3 {
    border-color: transparent;
    background: linear-gradient(135deg, #fefce822, #fef08a11);
    box-shadow: 0 2px 12px rgba(234, 179, 8, 0.1);
}
.mns-rk-item-rank {
    min-width: 36px;
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #9ca3af;
}
.mns-rk-medal {
    font-size: 1.5rem;
}
.mns-rk-item-info {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    flex-shrink: 0;
}
.mns-rk-seller-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1f2937 !important;
    text-decoration: none !important;
    border-bottom: none !important;
    transition: color 0.2s;
}
.mns-rk-seller-name:hover {
    color: #667eea !important;
    border-bottom: none !important;
}
.mns-rk-site-badge {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.mns-rk-item-bar-wrap {
    flex: 1;
    height: 10px;
    background: #f3f4f6;
    border-radius: 10px;
    overflow: hidden;
    min-width: 80px;
}
.mns-rk-item-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.mns-rk-item-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    min-width: 80px;
}
.mns-rk-item-count {
    font-weight: 800;
    font-size: 1rem;
    color: #374151;
    white-space: nowrap;
}
.mns-rk-item-count small {
    font-weight: 500;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-left: 2px;
}
.mns-rk-item-sub {
    font-size: 0.78rem;
    color: #9ca3af;
    white-space: nowrap;
}
.mns-rk-item-sub small {
    font-size: 0.7rem;
    margin-left: 1px;
}
/* --- 空状態 --- */
.mns-rk-empty {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
    font-size: 1rem;
}
/* --- フッター注記 --- */
.mns-rk-footer-note {
    text-align: center;
    margin-top: 24px;
    color: #9ca3af;
    font-size: 0.82rem;
}
/* --- レスポンシブ --- */
@media (max-width: 768px) {
    .mns-rk-charts {
        grid-template-columns: 1fr;
    }
    .mns-rk-chart-canvas-wrap {
        min-height: 250px;
    }
    .mns-rk-main-tabs {
        flex-direction: column;
        gap: 4px;
    }
    .mns-rk-header {
        padding: 28px 16px 24px;
    }
    .mns-rk-title {
        font-size: 1.4rem !important;
    }
    .mns-rk-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    .mns-rk-item {
        flex-wrap: wrap;
        gap: 8px;
        padding: 14px 16px;
    }
    .mns-rk-item-info {
        min-width: 0;
        flex-wrap: wrap;
    }
    .mns-rk-item-bar-wrap {
        width: 100%;
        order: 10;
    }
    .mns-rk-tab {
        padding: 6px 10px;
        font-size: 0.78rem;
    }
}
@media (max-width: 480px) {
    .mns-ranking-page {
        padding: 10px;
    }
    .mns-rk-title {
        font-size: 1.2rem !important;
    }
    .mns-rk-item-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}