/* /Components/Account/Pages/Login.razor.rz.scp.css */
/* ==========================================================================
   Login.razor.css — ログイン画面（スコープドCSS）

   設計方針:
     - Tailwind は Account 配下をスキャン対象外（tailwind.css の @source not）
       にしているため、本画面のスタイルはこのファイルで完結させる。
     - Bootstrap / app.css も LoginLayout では読み込まないため、
       フォーム要素のスタイルもここで定義する。
     - Blazorの子コンポーネント（EditForm / InputText / InputCheckbox /
       ValidationMessage / StatusMessage / PasskeySubmit）が生成する要素には
       スコープ属性が付かないため ::deep を使用する。
     - @keyframes はスコープドCSSでもグローバルなため login- プレフィックスを付与。
   ========================================================================== */

/* --------------------------------------------------------------------------
   デザイントークン
   -------------------------------------------------------------------------- */
.login-shell[b-nvyz01lm8u] {
    /* サーフェス */
    --lg-bg: #eef2f7;
    --lg-surface: #ffffff;
    --lg-surface-soft: #f8fafc;
    --lg-border: #e2e8f0;
    --lg-border-strong: #cbd5e1;
    /* テキスト */
    --lg-text: #0f172a;
    --lg-text-soft: #475569;
    --lg-text-muted: #64748b;
    /* ブランド */
    --lg-primary: #0369a1;
    --lg-primary-deep: #0c4a6e;
    --lg-ring: rgba(14, 165, 233, 0.28);
    /* ステータス */
    --lg-danger: #b91c1c;
    --lg-danger-bg: #fef2f2;
    --lg-danger-border: #fecaca;
    --lg-success: #15803d;
    --lg-success-bg: #f0fdf4;
    --lg-success-border: #bbf7d0;
    --lg-warn: #b45309;
    /* エフェクト */
    --lg-radius: 14px;
    --lg-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 18px 46px -18px rgba(15, 23, 42, 0.28);
    --lg-ease: cubic-bezier(0.16, 1, 0.3, 1);

    color-scheme: light;
    position: relative;
    z-index: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 100dvh;
    background: var(--lg-bg);
    color: var(--lg-text);
    font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-feature-settings: "palt" 1;
    -webkit-font-smoothing: antialiased;
}

@media (prefers-color-scheme: dark) {
    .login-shell[b-nvyz01lm8u] {
        --lg-bg: #060b14;
        --lg-surface: #0e1729;
        --lg-surface-soft: #131f36;
        --lg-border: rgba(148, 163, 184, 0.18);
        --lg-border-strong: rgba(148, 163, 184, 0.32);
        --lg-text: #e8eef7;
        --lg-text-soft: #bcc9da;
        --lg-text-muted: #94a3b8;
        --lg-primary: #7dd3fc;
        --lg-primary-deep: #38bdf8;
        --lg-ring: rgba(56, 189, 248, 0.34);
        --lg-danger: #fca5a5;
        --lg-danger-bg: rgba(153, 27, 27, 0.22);
        --lg-danger-border: rgba(248, 113, 113, 0.38);
        --lg-success: #86efac;
        --lg-success-bg: rgba(22, 101, 52, 0.22);
        --lg-success-border: rgba(74, 222, 128, 0.38);
        --lg-warn: #fbbf24;
        --lg-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 22px 56px -20px rgba(0, 0, 0, 0.85);

        color-scheme: dark;
    }
}

@media (min-width: 1024px) {
    .login-shell[b-nvyz01lm8u] {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        grid-template-rows: 1fr;
    }
}

/* ==========================================================================
   ブランドパネル（Aurora）
   ========================================================================== */
.login-brand[b-nvyz01lm8u] {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.25rem 1.5rem 3.25rem;
    background: radial-gradient(120% 100% at 15% 0%, #123a5e 0%, #0b1c31 45%, #060d18 100%);
    color: #e8f2fb;
}

@media (min-width: 1024px) {
    .login-brand[b-nvyz01lm8u] {
        padding: 3.5rem 3.25rem;
    }
}

@media (min-width: 1440px) {
    .login-brand[b-nvyz01lm8u] {
        padding: 4rem 5rem;
    }
}

/* --- Auroraブロブ（低速フロー） --- */
.login-aurora[b-nvyz01lm8u] {
    position: absolute;
    inset: -20%;
    z-index: -2;
    filter: blur(72px);
    opacity: 0.85;
}

.login-aurora-blob[b-nvyz01lm8u] {
    position: absolute;
    display: block;
    border-radius: 50%;
    mix-blend-mode: screen;
    will-change: transform;
}

.login-aurora-blob--sky[b-nvyz01lm8u] {
    top: 4%;
    left: -6%;
    width: 52%;
    padding-bottom: 52%;
    background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.85), rgba(14, 165, 233, 0) 68%);
    animation: login-drift-a-b-nvyz01lm8u 22s var(--lg-ease) infinite alternate;
}

.login-aurora-blob--indigo[b-nvyz01lm8u] {
    top: 26%;
    right: -12%;
    width: 58%;
    padding-bottom: 58%;
    background: radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.72), rgba(79, 70, 229, 0) 68%);
    animation: login-drift-b-b-nvyz01lm8u 26s var(--lg-ease) infinite alternate;
}

.login-aurora-blob--teal[b-nvyz01lm8u] {
    bottom: -14%;
    left: 18%;
    width: 46%;
    padding-bottom: 46%;
    background: radial-gradient(circle at 50% 50%, rgba(13, 148, 136, 0.6), rgba(13, 148, 136, 0) 68%);
    animation: login-drift-c-b-nvyz01lm8u 30s var(--lg-ease) infinite alternate;
}

@keyframes login-drift-a-b-nvyz01lm8u {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(12%, 10%, 0) scale(1.14); }
}

@keyframes login-drift-b-b-nvyz01lm8u {
    from { transform: translate3d(0, 0, 0) scale(1.06); }
    to   { transform: translate3d(-14%, -8%, 0) scale(0.94); }
}

@keyframes login-drift-c-b-nvyz01lm8u {
    from { transform: translate3d(0, 0, 0) scale(0.96); }
    to   { transform: translate3d(10%, -12%, 0) scale(1.12); }
}

/* --- グレイン（バンディング防止・質感付与） --- */
.login-grain[b-nvyz01lm8u] {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- ブランドパネル本文 --- */
/* ロゴ（上）／メッセージ（中央）／著作権表示（下）の3段構成 */
.login-brand-body[b-nvyz01lm8u] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.login-brand-head[b-nvyz01lm8u] {
    display: flex;
    align-items: center;
}

.login-brand-names[b-nvyz01lm8u] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.login-brand-name[b-nvyz01lm8u] {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.login-brand-eyebrow[b-nvyz01lm8u] {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(186, 230, 253, 0.82);
}

.login-brand-lead[b-nvyz01lm8u] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.01em;
    /* 日本語を文節単位で折り返す（未対応ブラウザでは既定の折り返しにフォールバック） */
    word-break: auto-phrase;
}

.login-brand-note[b-nvyz01lm8u] {
    margin: 0;
    max-width: 38ch;
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(219, 234, 254, 0.78);
    word-break: auto-phrase;
}

.login-brand-list[b-nvyz01lm8u] {
    display: none;
    margin: 0.75rem 0 0;
    padding: 0;
    list-style: none;
    flex-direction: column;
    gap: 0.875rem;
}

.login-brand-list li[b-nvyz01lm8u] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(226, 240, 254, 0.9);
}

.login-brand-list svg[b-nvyz01lm8u] {
    flex: none;
    width: 1.375rem;
    height: 1.375rem;
    padding: 0.3125rem;
    box-sizing: content-box;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #bae6fd;
}

.login-brand-foot[b-nvyz01lm8u] {
    display: none;
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: rgba(203, 224, 245, 0.55);
}

@media (min-width: 1024px) {
    .login-brand-lead[b-nvyz01lm8u] {
        font-size: 2rem;
        line-height: 1.45;
    }

    .login-brand-list[b-nvyz01lm8u],
    .login-brand-foot[b-nvyz01lm8u] {
        display: flex;
    }
}

/* ==========================================================================
   フォームパネル
   ========================================================================== */
.login-panel[b-nvyz01lm8u] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1.25rem 3rem;
    margin-top: -1.5rem;
    border-radius: 24px 24px 0 0;
    background: var(--lg-surface);
    box-shadow: 0 -18px 40px -24px rgba(2, 8, 23, 0.55);
}

@media (min-width: 1024px) {
    .login-panel[b-nvyz01lm8u] {
        align-items: center;
        margin-top: 0;
        padding: 3rem 2.5rem;
        border-radius: 0;
        box-shadow: none;
    }
}

.login-card[b-nvyz01lm8u] {
    width: 100%;
    max-width: 25.5rem;
}

/* --- ヘッダー --- */
.login-head[b-nvyz01lm8u] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.login-head-icon[b-nvyz01lm8u] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 0.375rem;
    border-radius: 14px;
    border: 1px solid var(--lg-border);
    background: linear-gradient(160deg, var(--lg-surface-soft), var(--lg-surface));
    color: var(--lg-primary);
    box-shadow: 0 10px 24px -16px rgba(3, 105, 161, 0.9);
}

.login-head-icon svg[b-nvyz01lm8u] {
    width: 1.375rem;
    height: 1.375rem;
}

.login-title[b-nvyz01lm8u] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--lg-text);
}

.login-subtitle[b-nvyz01lm8u] {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--lg-text-muted);
}

/* --- ステータス（StatusMessage） --- */
.login-status:empty[b-nvyz01lm8u] {
    display: none;
}

.login-status[b-nvyz01lm8u]  .alert {
    display: flex;
    gap: 0.625rem;
    margin: 0 0 1.25rem;
    padding: 0.8125rem 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 0.875rem;
    line-height: 1.7;
    animation: login-pop-b-nvyz01lm8u 260ms var(--lg-ease) both;
}

.login-status[b-nvyz01lm8u]  .alert::before {
    flex: none;
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.15rem;
    content: "";
    background-color: currentColor;
    -webkit-mask: var(--lg-alert-icon) center / contain no-repeat;
    mask: var(--lg-alert-icon) center / contain no-repeat;
}

.login-status[b-nvyz01lm8u]  .alert-danger {
    --lg-alert-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 8v5M12 16h.01'/%3E%3C/svg%3E");
    color: var(--lg-danger);
    background: var(--lg-danger-bg);
    border-color: var(--lg-danger-border);
}

.login-status[b-nvyz01lm8u]  .alert-success {
    --lg-alert-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='m8.5 12.5 2.5 2.5 4.5-5'/%3E%3C/svg%3E");
    color: var(--lg-success);
    background: var(--lg-success-bg);
    border-color: var(--lg-success-border);
}

@keyframes login-pop-b-nvyz01lm8u {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- フォーム --- */
.login-card[b-nvyz01lm8u]  .login-form {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.login-field[b-nvyz01lm8u] {
    display: flex;
    flex-direction: column;
    gap: 0.4375rem;
}

.login-label-row[b-nvyz01lm8u] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 1.25rem;
}

.login-label[b-nvyz01lm8u] {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--lg-text-soft);
}

/* Caps Lock 警告 */
.login-capslock[b-nvyz01lm8u] {
    display: inline-flex;
    align-items: center;
    gap: 0.3125rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lg-warn);
    animation: login-pop-b-nvyz01lm8u 200ms var(--lg-ease) both;
}

.login-capslock[hidden][b-nvyz01lm8u] {
    display: none;
}

.login-capslock svg[b-nvyz01lm8u] {
    width: 0.875rem;
    height: 0.875rem;
}

/* --- 入力コントロール --- */
.login-control[b-nvyz01lm8u] {
    position: relative;
    display: flex;
    align-items: center;
}

.login-control-icon[b-nvyz01lm8u] {
    position: absolute;
    left: 0.875rem;
    width: 1.125rem;
    height: 1.125rem;
    color: var(--lg-text-muted);
    pointer-events: none;
    transition: color 180ms var(--lg-ease);
}

.login-control[b-nvyz01lm8u]  .login-input {
    width: 100%;
    min-height: 3rem;
    padding: 0.75rem 0.875rem 0.75rem 2.75rem;
    border: 1px solid var(--lg-border-strong);
    border-radius: var(--lg-radius);
    background: var(--lg-surface);
    color: var(--lg-text);
    font: inherit;
    font-size: 1rem;
    line-height: 1.5;
    outline: none;
    transition: border-color 180ms var(--lg-ease), box-shadow 180ms var(--lg-ease), background-color 180ms var(--lg-ease);
    appearance: none;
}

.login-control[b-nvyz01lm8u]  .login-input--password {
    padding-right: 3rem;
}

.login-control[b-nvyz01lm8u]  .login-input::placeholder {
    color: var(--lg-text-muted);
    opacity: 0.75;
}

.login-control[b-nvyz01lm8u]  .login-input:hover {
    border-color: var(--lg-text-muted);
}

.login-control[b-nvyz01lm8u]  .login-input:focus {
    border-color: var(--lg-primary);
    box-shadow: 0 0 0 4px var(--lg-ring);
}

.login-control:focus-within .login-control-icon[b-nvyz01lm8u] {
    color: var(--lg-primary);
}

/* 検証エラー（Blazorが invalid クラスを付与） */
.login-control[b-nvyz01lm8u]  .login-input.invalid {
    border-color: var(--lg-danger);
}

.login-control[b-nvyz01lm8u]  .login-input.invalid:focus {
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.22);
}

/* オートフィル時に背景が黄色くならないようにする */
.login-control[b-nvyz01lm8u]  .login-input:-webkit-autofill,
.login-control[b-nvyz01lm8u]  .login-input:-webkit-autofill:hover,
.login-control[b-nvyz01lm8u]  .login-input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--lg-text);
    -webkit-box-shadow: 0 0 0 1000px var(--lg-surface-soft) inset;
    caret-color: var(--lg-text);
}

/* --- パスワード表示切替 --- */
.login-reveal[b-nvyz01lm8u] {
    position: absolute;
    right: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--lg-text-muted);
    cursor: pointer;
    transition: color 180ms var(--lg-ease), background-color 180ms var(--lg-ease);
}

.login-reveal:hover[b-nvyz01lm8u] {
    color: var(--lg-text);
    background: var(--lg-surface-soft);
}

.login-reveal:focus-visible[b-nvyz01lm8u] {
    outline: 2px solid var(--lg-primary);
    outline-offset: 2px;
}

.login-reveal svg[b-nvyz01lm8u] {
    width: 1.125rem;
    height: 1.125rem;
}

.login-reveal svg[hidden][b-nvyz01lm8u] {
    display: none;
}

/* --- 検証メッセージ --- */
.login-field[b-nvyz01lm8u]  .validation-message,
.login-field[b-nvyz01lm8u]  .login-error {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--lg-danger);
    animation: login-pop-b-nvyz01lm8u 200ms var(--lg-ease) both;
}

/* --- ログイン状態の保持（チェックボックス） --- */
.login-check[b-nvyz01lm8u] {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    min-height: 2.75rem;
    margin: -0.375rem 0;
    cursor: pointer;
    user-select: none;
}

.login-check[b-nvyz01lm8u]  .login-check-input {
    flex: none;
    width: 1.25rem;
    height: 1.25rem;
    margin: 0;
    border: 1px solid var(--lg-border-strong);
    border-radius: 6px;
    background: var(--lg-surface);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background-color 160ms var(--lg-ease), border-color 160ms var(--lg-ease), box-shadow 160ms var(--lg-ease);
}

.login-check[b-nvyz01lm8u]  .login-check-input:checked {
    border-color: var(--lg-primary-deep);
    background-color: var(--lg-primary-deep);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 10.5l3.5 3.5 7.5-7.5'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

.login-check[b-nvyz01lm8u]  .login-check-input:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--lg-ring);
}

.login-check-text[b-nvyz01lm8u] {
    font-size: 0.875rem;
    color: var(--lg-text-soft);
}

/* --- Turnstile --- */
.login-turnstile[b-nvyz01lm8u] {
    display: flex;
    justify-content: center;
    min-height: 65px;
}

.login-turnstile-container[b-nvyz01lm8u]  iframe {
    border-radius: 10px;
}

/* --- 送信ボタン --- */
.login-submit[b-nvyz01lm8u] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 3rem;
    padding: 0.75rem 1.25rem;
    border: 0;
    border-radius: var(--lg-radius);
    background: linear-gradient(135deg, var(--lg-primary-deep) 0%, #0369a1 100%);
    color: #ffffff;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 12px 28px -14px rgba(3, 105, 161, 0.95);
    transition: filter 180ms var(--lg-ease), box-shadow 180ms var(--lg-ease), transform 180ms var(--lg-ease);
}

.login-submit:hover:not(:disabled)[b-nvyz01lm8u] {
    filter: brightness(1.1);
    box-shadow: 0 16px 34px -14px rgba(3, 105, 161, 1);
}

.login-submit:active:not(:disabled)[b-nvyz01lm8u] {
    transform: translateY(1px);
    filter: brightness(0.98);
}

.login-submit:focus-visible[b-nvyz01lm8u] {
    outline: 2px solid var(--lg-primary);
    outline-offset: 3px;
}

.login-submit:disabled[b-nvyz01lm8u] {
    cursor: not-allowed;
    opacity: 0.65;
    box-shadow: none;
}

.login-submit-spinner[b-nvyz01lm8u] {
    display: none;
    width: 1.125rem;
    height: 1.125rem;
    stroke-dasharray: 44;
    stroke-dashoffset: 32;
    animation: login-spin-b-nvyz01lm8u 800ms linear infinite;
}

.login-submit.is-loading .login-submit-spinner[b-nvyz01lm8u] {
    display: block;
}

@keyframes login-spin-b-nvyz01lm8u {
    to { transform: rotate(360deg); }
}

@media (prefers-color-scheme: dark) {
    .login-submit[b-nvyz01lm8u] {
        background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
        box-shadow: 0 12px 30px -14px rgba(2, 132, 199, 0.9), 0 0 0 1px rgba(125, 211, 252, 0.18) inset;
    }
}

/* --- 区切り --- */
.login-divider[b-nvyz01lm8u] {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin: 0.125rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--lg-text-muted);
}

.login-divider[b-nvyz01lm8u]::before,
.login-divider[b-nvyz01lm8u]::after {
    flex: 1;
    height: 1px;
    content: "";
    background: var(--lg-border);
}

/* --- パスキー --- */
.login-alt[b-nvyz01lm8u] {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.login-alt[b-nvyz01lm8u]  passkey-submit {
    display: none;
}

.login-alt[b-nvyz01lm8u]  .login-passkey {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 3rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--lg-border-strong);
    border-radius: var(--lg-radius);
    background: var(--lg-surface);
    color: var(--lg-text);
    font: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 180ms var(--lg-ease), background-color 180ms var(--lg-ease), box-shadow 180ms var(--lg-ease), transform 180ms var(--lg-ease);
}

.login-alt[b-nvyz01lm8u]  .login-passkey:hover {
    border-color: var(--lg-primary);
    background: var(--lg-surface-soft);
    box-shadow: 0 10px 24px -18px rgba(15, 23, 42, 0.8);
}

.login-alt[b-nvyz01lm8u]  .login-passkey:active {
    transform: translateY(1px);
}

.login-alt[b-nvyz01lm8u]  .login-passkey:focus-visible {
    outline: 2px solid var(--lg-primary);
    outline-offset: 3px;
}

.login-alt[b-nvyz01lm8u]  .login-passkey svg {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--lg-primary);
}

.login-alt-note[b-nvyz01lm8u] {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.7;
    text-align: center;
    color: var(--lg-text-muted);
    word-break: auto-phrase;
}

/* --- フッター --- */
.login-foot[b-nvyz01lm8u] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--lg-border);
    font-size: 0.75rem;
    color: var(--lg-text-muted);
}

.login-foot-link[b-nvyz01lm8u] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    /* タップ領域を44px確保（WCAG / Apple HIG） */
    min-height: 2.75rem;
    color: var(--lg-text-soft);
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: color 180ms var(--lg-ease);
}

.login-foot-link:hover[b-nvyz01lm8u] {
    color: var(--lg-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.login-foot-link:focus-visible[b-nvyz01lm8u] {
    outline: 2px solid var(--lg-primary);
    outline-offset: 3px;
}

.login-foot-link svg[b-nvyz01lm8u] {
    width: 0.875rem;
    height: 0.875rem;
}

.login-foot-secure[b-nvyz01lm8u] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.login-foot-secure svg[b-nvyz01lm8u] {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--lg-success);
}

/* ==========================================================================
   モーション低減設定への対応
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .login-shell[b-nvyz01lm8u]  * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .login-aurora-blob[b-nvyz01lm8u] {
        animation: none !important;
    }
}
/* /Components/Layout/IdentityLayout.razor.rz.scp.css */
/* ========== 追加: Blazorエラーバナー（#blazor-error-ui）の既定非表示 ========== */
/*
    Blazorテンプレートでは #blazor-error-ui { display: none; } により
    エラーバナーは通常時非表示だが、本プロジェクトでは該当ルールが
    読み込まれるCSSのどこにも存在せず（MainLayout_razor.css は未参照）、
    /Account 系ページでバナーが常時表示される既存バグがあった。
    IdentityLayout のスコープドCSSとして復元する。

    ========== 追加: リンク色のフォールバック ==========
    本レイアウトは app.css / bootstrap を読み込まなくなったため、
    バナー内リンクの色もここで定義する（LoginLayout.razor.css と同等）。

    実エラー発生時は blazor.web.js がインラインスタイルで display を
    上書きしてバナーを表示するため、エラー通知機能は維持される。
*/
#blazor-error-ui[b-3fp7ru06ar] {
    color-scheme: light only;
    background: lightyellow;
    color: #1f2937;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .reload[b-3fp7ru06ar] {
    color: #0369a1;
}

#blazor-error-ui .dismiss[b-3fp7ru06ar] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/LoginLayout.razor.rz.scp.css */
/* ========== 追加: ログイン専用レイアウトのスコープドCSS ========== */

/*
    Blazorエラーバナー（#blazor-error-ui）の既定非表示。

    本レイアウトは app.css / bootstrap を読み込まないため、
    IdentityLayout.razor.css と同等のルールをここで定義する。
    実エラー発生時は blazor.web.js がインラインスタイルで display を
    上書きしてバナーを表示するため、エラー通知機能は維持される。
*/
#blazor-error-ui[b-1ft6qeistk] {
    color-scheme: light only;
    background: lightyellow;
    color: #1f2937;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .reload[b-1ft6qeistk] {
    color: #0369a1;
}

#blazor-error-ui .dismiss[b-1ft6qeistk] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/PageTransitionLoader.razor.rz.scp.css */
/* ============================================================================
   PageTransitionLoader.razor.css
   Enhanced Navigation用ローディングUIのスタイル
   
   デザインコンセプト:
   - 沖縄・那覇の温かみと高い技術力への信頼感を両立
   - モダンで洗練されたミニマルデザイン
   - ブランドカラー（#1c2a52）を活用
============================================================================ */

/* === ベースコンテナ === */
.page-transition-loader[b-gzpqzzfvyx] {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.page-transition-loader.active[b-gzpqzzfvyx] {
    opacity: 1;
    visibility: visible;
}

/* === プログレスバー（上部） === */
.progress-bar[b-gzpqzzfvyx] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    z-index: 10000;
    overflow: hidden;
}

.progress-bar-inner[b-gzpqzzfvyx] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(
        90deg,
        #1c2a52 0%,
        #3b5998 50%,
        #1c2a52 100%
    );
    background-size: 200% 100%;
    border-radius: 0 2px 2px 0;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* プログレスアニメーション */
.page-transition-loader.active .progress-bar-inner[b-gzpqzzfvyx] {
    animation: progress-animation-b-gzpqzzfvyx 2s ease-in-out infinite,
               shimmer-b-gzpqzzfvyx 1.5s ease-in-out infinite;
}

@keyframes progress-animation-b-gzpqzzfvyx {
    0% {
        width: 0%;
    }
    20% {
        width: 30%;
    }
    50% {
        width: 60%;
    }
    80% {
        width: 85%;
    }
    100% {
        width: 90%;
    }
}

@keyframes shimmer-b-gzpqzzfvyx {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* プログレスバーのグロー効果 */
.progress-bar-glow[b-gzpqzzfvyx] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(59, 89, 152, 0.4) 50%,
        transparent 100%
    );
    animation: glow-animation-b-gzpqzzfvyx 1.5s ease-in-out infinite;
    opacity: 0;
}

.page-transition-loader.active .progress-bar-glow[b-gzpqzzfvyx] {
    opacity: 1;
}

@keyframes glow-animation-b-gzpqzzfvyx {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* === コンテンツオーバーレイ === */
.content-overlay[b-gzpqzzfvyx] {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-transition-loader.active .content-overlay[b-gzpqzzfvyx] {
    opacity: 1;
    transition-delay: 0.15s; /* 少し遅れて表示 */
}

/* === ローディングインジケーター（中央） === */
.loading-indicator[b-gzpqzzfvyx] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* 0.5秒遅延後に表示（短い遷移では表示しない） */
.page-transition-loader.show-indicator .loading-indicator[b-gzpqzzfvyx] {
    opacity: 1;
}

.loading-spinner[b-gzpqzzfvyx] {
    width: 32px;
    height: 32px;
    color: #1c2a52;
}

.loading-spinner svg[b-gzpqzzfvyx] {
    width: 100%;
    height: 100%;
    animation: spin-b-gzpqzzfvyx 1s linear infinite;
}

@keyframes spin-b-gzpqzzfvyx {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loading-text[b-gzpqzzfvyx] {
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    letter-spacing: 0.025em;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* === 完了時のアニメーション === */
.page-transition-loader.completing .progress-bar-inner[b-gzpqzzfvyx] {
    width: 100% !important;
    transition: width 0.2s ease-out;
}

.page-transition-loader.completing[b-gzpqzzfvyx] {
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

/* === レスポンシブ対応 === */
@media (max-width: 640px) {
    .loading-indicator[b-gzpqzzfvyx] {
        gap: 10px;
    }
    
    .loading-spinner[b-gzpqzzfvyx] {
        width: 28px;
        height: 28px;
    }
    
    .loading-text[b-gzpqzzfvyx] {
        font-size: 12px;
        padding: 5px 12px;
    }
}

/* === アクセシビリティ: モーション軽減 === */
@media (prefers-reduced-motion: reduce) {
    .progress-bar-inner[b-gzpqzzfvyx],
    .progress-bar-glow[b-gzpqzzfvyx],
    .loading-spinner svg[b-gzpqzzfvyx] {
        animation: none;
    }
    
    .page-transition-loader.active .progress-bar-inner[b-gzpqzzfvyx] {
        width: 50%;
    }
    
    .content-overlay[b-gzpqzzfvyx],
    .loading-indicator[b-gzpqzzfvyx] {
        transition: none;
    }
}

/* === ダークモード対応（将来用） === */
@media (prefers-color-scheme: dark) {
    .content-overlay[b-gzpqzzfvyx] {
        background: rgba(15, 23, 42, 0.5);
    }
    
    .loading-text[b-gzpqzzfvyx] {
        background: rgba(30, 41, 59, 0.95);
        color: #e2e8f0;
    }
    
    .loading-spinner[b-gzpqzzfvyx] {
        color: #60a5fa;
    }
}
/* /Components/Pages/Admin/Announcements/Index.razor.rz.scp.css */
/* ========== モバイル: テーブルコンテナ非表示（ページネーションは維持） ========== */
@media (max-width: 959.98px) {
    .table-wrapper[b-fgrajmvywd]  .mud-table-container {
        display: none;
    }
}

/* ========== モバイルカードスタイル ========== */

.mobile-card-item[b-fgrajmvywd] {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    transition: background-color 0.15s ease;
}

.mobile-card-item:hover[b-fgrajmvywd] {
    background-color: var(--mud-palette-table-hover);
}

.mobile-card-item:last-child[b-fgrajmvywd] {
    border-bottom: none;
}

/* ヘッダー: チェックボックス + 注目アイコン + ステータスチップ */
.mobile-card-header[b-fgrajmvywd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.mobile-card-chips[b-fgrajmvywd] {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
}

/* ボディ: タイトル + 公開期間 */
.mobile-card-body[b-fgrajmvywd] {
    margin-bottom: 8px;
}

.mobile-card-info-title[b-fgrajmvywd] {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.mobile-card-info-date[b-fgrajmvywd] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
}

/* フッター: リダイレクト情報 + 操作ボタン */
.mobile-card-footer[b-fgrajmvywd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.mobile-card-redirect[b-fgrajmvywd] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
}

.mobile-card-actions[b-fgrajmvywd] {
    display: flex;
    flex-shrink: 0;
}
/* /Components/Pages/Admin/Campaigns/Index.razor.rz.scp.css */
/* ========== モバイル: テーブルコンテナ非表示（ページネーションは維持） ========== */
@media (max-width: 959.98px) {
    .table-wrapper[b-5hlskzzpsj]  .mud-table-container {
        display: none;
    }
}

/* ========== モバイルカードスタイル ========== */

.mobile-card[b-5hlskzzpsj] {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    transition: background-color 0.15s ease;
}

.mobile-card:hover[b-5hlskzzpsj] {
    background-color: var(--mud-palette-table-hover);
}

.mobile-card:last-child[b-5hlskzzpsj] {
    border-bottom: none;
}

/* ヘッダー: チェックボックス + ステータスチップ */
.mobile-card-header[b-5hlskzzpsj] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.mobile-card-chips[b-5hlskzzpsj] {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

/* ボディ: サムネイル + キャンペーン情報 */
.mobile-card-body[b-5hlskzzpsj] {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.mobile-card-image[b-5hlskzzpsj] {
    flex-shrink: 0;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-card-info[b-5hlskzzpsj] {
    flex: 1;
    min-width: 0;
}

.mobile-card-info-title[b-5hlskzzpsj] {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.mobile-card-info-sub[b-5hlskzzpsj] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
    margin-bottom: 2px;
}

.mobile-card-info-date[b-5hlskzzpsj] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
}

.mobile-card-info-slug[b-5hlskzzpsj] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-disabled);
}

.mobile-card-info-sort[b-5hlskzzpsj] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
}

/* フッター: 順序表示 + 操作ボタン */
.mobile-card-footer[b-5hlskzzpsj] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.mobile-card-actions[b-5hlskzzpsj] {
    display: flex;
    flex-shrink: 0;
}
/* /Components/Pages/Admin/ContactLensCategories/Index.razor.rz.scp.css */
/* ========== モバイル: テーブル非表示 ========== */
@media (max-width: 959.98px) {
    .table-wrapper[b-wuvt9fv496]  .mud-table {
        display: none;
    }
}

/* ========== モバイルカードスタイル ========== */
.mobile-card[b-wuvt9fv496] { padding: 12px 16px; border-bottom: 1px solid var(--mud-palette-lines-default); }
.mobile-card:last-child[b-wuvt9fv496] { border-bottom: none; }
.mobile-card-row[b-wuvt9fv496] { display: flex; align-items: center; gap: 8px; }
.mobile-card-row + .mobile-card-row[b-wuvt9fv496] { margin-top: 4px; }
.mobile-card-sort[b-wuvt9fv496] { display: flex; flex-shrink: 0; }
.mobile-card-name[b-wuvt9fv496] { flex: 1; min-width: 0; font-size: 0.875rem; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mobile-card-kana[b-wuvt9fv496] { flex: 1; min-width: 0; font-size: 0.75rem; color: var(--mud-palette-text-secondary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mobile-card-count[b-wuvt9fv496] { font-size: 0.75rem; color: var(--mud-palette-text-secondary); white-space: nowrap; }
.mobile-card-actions[b-wuvt9fv496] { display: flex; flex-shrink: 0; }
/* /Components/Pages/Admin/ContactLenses/Index.razor.rz.scp.css */
/* ========== モバイル: テーブルコンテナ非表示（ページネーションは維持） ========== */
@media (max-width: 959.98px) {
    .table-wrapper[b-f647ub5h3c]  .mud-table-container {
        display: none;
    }
}

/* ========== モバイルカードスタイル ========== */

.mobile-card-item[b-f647ub5h3c] {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    transition: background-color 0.15s ease;
}

.mobile-card-item:hover[b-f647ub5h3c] {
    background-color: var(--mud-palette-table-hover);
}

.mobile-card-item:last-child[b-f647ub5h3c] {
    border-bottom: none;
}

/* ヘッダー: チェックボックス + ステータスチップ */
.mobile-card-header[b-f647ub5h3c] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.mobile-card-chips[b-f647ub5h3c] {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

/* ボディ: サムネイル + 商品情報 */
.mobile-card-body[b-f647ub5h3c] {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.mobile-card-image[b-f647ub5h3c] {
    flex-shrink: 0;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-card-info[b-f647ub5h3c] {
    flex: 1;
    min-width: 0;
}

.mobile-card-manufacturer[b-f647ub5h3c] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
    margin-bottom: 2px;
}

.mobile-card-modelcode[b-f647ub5h3c] {
    font-size: 0.875rem;
    font-weight: 600;
}

.mobile-card-detail-row[b-f647ub5h3c] {
    display: flex;
    gap: 12px;
    align-items: baseline;
}

.mobile-card-piecesbox[b-f647ub5h3c] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
}

.mobile-card-price[b-f647ub5h3c] {
    font-size: 0.875rem;
}

/* フッター: 商品名 + 操作ボタン */
.mobile-card-footer[b-f647ub5h3c] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.mobile-card-title[b-f647ub5h3c] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
}

.mobile-card-actions[b-f647ub5h3c] {
    display: flex;
    flex-shrink: 0;
}
/* /Components/Pages/Admin/ContactLensManufacturers/Index.razor.rz.scp.css */
/* ========== モバイル: テーブル非表示 ========== */
@media (max-width: 959.98px) {
    .table-wrapper[b-oc1p13bsne]  .mud-table {
        display: none;
    }
}

/* ========== モバイルカードスタイル ========== */
.mobile-card[b-oc1p13bsne] { padding: 12px 16px; border-bottom: 1px solid var(--mud-palette-lines-default); }
.mobile-card:last-child[b-oc1p13bsne] { border-bottom: none; }
.mobile-card-row[b-oc1p13bsne] { display: flex; align-items: center; gap: 8px; }
.mobile-card-row + .mobile-card-row[b-oc1p13bsne] { margin-top: 4px; }
.mobile-card-sort[b-oc1p13bsne] { display: flex; flex-shrink: 0; }
.mobile-card-name[b-oc1p13bsne] { flex: 1; min-width: 0; font-size: 0.875rem; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mobile-card-kana[b-oc1p13bsne] { flex: 1; min-width: 0; font-size: 0.75rem; color: var(--mud-palette-text-secondary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mobile-card-count[b-oc1p13bsne] { font-size: 0.75rem; color: var(--mud-palette-text-secondary); white-space: nowrap; }
.mobile-card-actions[b-oc1p13bsne] { display: flex; flex-shrink: 0; }
/* /Components/Pages/Admin/FrameCategories/Index.razor.rz.scp.css */
/* ========== モバイル: テーブル非表示 ========== */
@media (max-width: 959.98px) {
    .table-wrapper[b-4ourbswfzl]  .mud-table {
        display: none;
    }
}

/* ========== モバイルカードスタイル ========== */
.mobile-card[b-4ourbswfzl] { padding: 12px 16px; border-bottom: 1px solid var(--mud-palette-lines-default); }
.mobile-card:last-child[b-4ourbswfzl] { border-bottom: none; }
.mobile-card-row[b-4ourbswfzl] { display: flex; align-items: center; gap: 8px; }
.mobile-card-row + .mobile-card-row[b-4ourbswfzl] { margin-top: 4px; }
.mobile-card-sort[b-4ourbswfzl] { display: flex; flex-shrink: 0; }
.mobile-card-name[b-4ourbswfzl] { flex: 1; min-width: 0; font-size: 0.875rem; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mobile-card-kana[b-4ourbswfzl] { flex: 1; min-width: 0; font-size: 0.75rem; color: var(--mud-palette-text-secondary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mobile-card-count[b-4ourbswfzl] { font-size: 0.75rem; color: var(--mud-palette-text-secondary); white-space: nowrap; }
.mobile-card-actions[b-4ourbswfzl] { display: flex; flex-shrink: 0; }
/* /Components/Pages/Admin/FrameManufacturers/Index.razor.rz.scp.css */
/* ========== モバイル: テーブル非表示 ========== */
@media (max-width: 959.98px) {
    .table-wrapper[b-afaqozg48w]  .mud-table {
        display: none;
    }
}

/* ========== モバイルカードスタイル ========== */
.mobile-card[b-afaqozg48w] { padding: 12px 16px; border-bottom: 1px solid var(--mud-palette-lines-default); }
.mobile-card:last-child[b-afaqozg48w] { border-bottom: none; }
.mobile-card-row[b-afaqozg48w] { display: flex; align-items: center; gap: 8px; }
.mobile-card-row + .mobile-card-row[b-afaqozg48w] { margin-top: 4px; }
.mobile-card-sort[b-afaqozg48w] { display: flex; flex-shrink: 0; }
.mobile-card-name[b-afaqozg48w] { flex: 1; min-width: 0; font-size: 0.875rem; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mobile-card-kana[b-afaqozg48w] { flex: 1; min-width: 0; font-size: 0.75rem; color: var(--mud-palette-text-secondary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mobile-card-count[b-afaqozg48w] { font-size: 0.75rem; color: var(--mud-palette-text-secondary); white-space: nowrap; }
.mobile-card-actions[b-afaqozg48w] { display: flex; flex-shrink: 0; }
/* /Components/Pages/Admin/FrameShapes/Index.razor.rz.scp.css */
/* ========== モバイル: テーブル非表示 ========== */
@media (max-width: 959.98px) {
    .table-wrapper[b-ohjdbv13yp]  .mud-table {
        display: none;
    }
}

/* ========== モバイルカードスタイル ========== */
.mobile-card[b-ohjdbv13yp] { padding: 12px 16px; border-bottom: 1px solid var(--mud-palette-lines-default); }
.mobile-card:last-child[b-ohjdbv13yp] { border-bottom: none; }
.mobile-card-row[b-ohjdbv13yp] { display: flex; align-items: center; gap: 8px; }
.mobile-card-row + .mobile-card-row[b-ohjdbv13yp] { margin-top: 4px; }
.mobile-card-sort[b-ohjdbv13yp] { display: flex; flex-shrink: 0; }
.mobile-card-name[b-ohjdbv13yp] { flex: 1; min-width: 0; font-size: 0.875rem; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mobile-card-kana[b-ohjdbv13yp] { flex: 1; min-width: 0; font-size: 0.75rem; color: var(--mud-palette-text-secondary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mobile-card-count[b-ohjdbv13yp] { font-size: 0.75rem; color: var(--mud-palette-text-secondary); white-space: nowrap; }
.mobile-card-actions[b-ohjdbv13yp] { display: flex; flex-shrink: 0; }
/* /Components/Pages/Admin/Frames/Index.razor.rz.scp.css */
/* ========== モバイル: テーブルコンテナ非表示（ページネーションは維持） ========== */
@media (max-width: 959.98px) {
    .table-wrapper[b-dhwag5z8yp]  .mud-table-container {
        display: none;
    }
}

/* ========== モバイルカードスタイル ========== */

.mobile-frame-card[b-dhwag5z8yp] {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    transition: background-color 0.15s ease;
}

.mobile-frame-card:hover[b-dhwag5z8yp] {
    background-color: var(--mud-palette-table-hover);
}

.mobile-frame-card:last-child[b-dhwag5z8yp] {
    border-bottom: none;
}

/* ヘッダー: チェックボックス + ステータスチップ */
.mobile-frame-card-header[b-dhwag5z8yp] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.mobile-frame-card-chips[b-dhwag5z8yp] {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

/* ボディ: サムネイル + 商品情報 */
.mobile-frame-card-body[b-dhwag5z8yp] {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.mobile-frame-card-image[b-dhwag5z8yp] {
    flex-shrink: 0;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-frame-card-info[b-dhwag5z8yp] {
    flex: 1;
    min-width: 0;
}

.mobile-frame-card-manufacturer[b-dhwag5z8yp] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
    margin-bottom: 2px;
}

.mobile-frame-card-model[b-dhwag5z8yp] {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2px;
}

.mobile-frame-card-modelcode[b-dhwag5z8yp] {
    font-size: 0.875rem;
    font-weight: 600;
}

.mobile-frame-card-color[b-dhwag5z8yp] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
}

.mobile-frame-card-price[b-dhwag5z8yp] {
    font-size: 0.875rem;
}

/* フッター: タイトル + 操作ボタン */
.mobile-frame-card-footer[b-dhwag5z8yp] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.mobile-frame-card-title[b-dhwag5z8yp] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
}

.mobile-frame-card-actions[b-dhwag5z8yp] {
    display: flex;
    flex-shrink: 0;
}
/* /Components/Pages/Admin/HeroSlides/Index.razor.rz.scp.css */
/* ========== モバイル: テーブル非表示（PagerContentなしのため .mud-table 全体） ========== */
@media (max-width: 959.98px) {
    .table-wrapper[b-6ccnrqj5vk]  .mud-table {
        display: none;
    }
}

/* ========== モバイルカードスタイル ========== */

.mobile-card[b-6ccnrqj5vk] {
    padding: 12px 16px;
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.mobile-card:last-child[b-6ccnrqj5vk] {
    border-bottom: none;
}

/* ヘッダー: チェックボックス + ソートボタン（左） + ステータスチップ（右） */
.mobile-card-header[b-6ccnrqj5vk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.mobile-card-chips[b-6ccnrqj5vk] {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.mobile-card-sort[b-6ccnrqj5vk] {
    display: flex;
    flex-shrink: 0;
}

/* ボディ: サムネイル + 情報 */
.mobile-card-body[b-6ccnrqj5vk] {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.mobile-card-image[b-6ccnrqj5vk] {
    flex-shrink: 0;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-card-info[b-6ccnrqj5vk] {
    flex: 1;
    min-width: 0;
}

.mobile-card-info-title[b-6ccnrqj5vk] {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.mobile-card-info-period[b-6ccnrqj5vk] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
}

.mobile-card-info-duration[b-6ccnrqj5vk] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
}

.mobile-card-video-badge[b-6ccnrqj5vk] {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: white;
    border-radius: 50%;
}

/* フッター: 操作ボタン */
.mobile-card-footer[b-6ccnrqj5vk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.mobile-card-actions[b-6ccnrqj5vk] {
    display: flex;
    flex-shrink: 0;
}
/* /Components/Pages/Admin/Maintenance/MissingImages.razor.rz.scp.css */
/* ========== 変更: メディア同期ページ用スコープドCSS ========== */

/* ダウンロード状態に応じたテーブル行の色分けは
   MudBlazor の Color プロパティで制御するため、
   追加のカスタムCSSは最小限に抑える */
/* /Components/Pages/Admin/Maintenance/UnusedFiles.razor.rz.scp.css */
.unused-file-card[b-9m479trt4v] {
    transition: all 0.15s ease;
    overflow: hidden;
    border: 2px solid transparent;
}

.unused-file-card:hover[b-9m479trt4v] {
    border-color: var(--mud-palette-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.unused-file-card.selected[b-9m479trt4v] {
    border-color: var(--mud-palette-primary);
    background-color: var(--mud-palette-primary-lighten);
}
/* /Components/Pages/Admin/News/Index.razor.rz.scp.css */
/* ========== モバイル: テーブルコンテナ非表示（ページネーションは維持） ========== */
@media (max-width: 959.98px) {
    .table-wrapper[b-51cs156zp9]  .mud-table-container {
        display: none;
    }
}

/* ========== モバイルカードスタイル ========== */

.mobile-card-item[b-51cs156zp9] {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    transition: background-color 0.15s ease;
}

.mobile-card-item:hover[b-51cs156zp9] {
    background-color: var(--mud-palette-table-hover);
}

.mobile-card-item:last-child[b-51cs156zp9] {
    border-bottom: none;
}

/* ヘッダー: チェックボックス + ステータスチップ群 */
.mobile-card-header[b-51cs156zp9] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.mobile-card-chips[b-51cs156zp9] {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

/* ボディ: サムネイル + 情報 */
.mobile-card-body[b-51cs156zp9] {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.mobile-card-image[b-51cs156zp9] {
    flex-shrink: 0;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-card-info[b-51cs156zp9] {
    flex: 1;
    min-width: 0;
}

.mobile-card-info-title[b-51cs156zp9] {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.mobile-card-info-date[b-51cs156zp9] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
    margin-bottom: 2px;
}

.mobile-card-info-period[b-51cs156zp9] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
}

/* フッター: 空（左） + 操作ボタン（右） */
.mobile-card-footer[b-51cs156zp9] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.mobile-card-actions[b-51cs156zp9] {
    display: flex;
    flex-shrink: 0;
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ========== アコーディオン: もっと見る/閉じる ========== */

/*
 * grid-template-rows: 0fr → 1fr トランジションで
 * スムーズな展開/折りたたみアニメーションを実現。
 * SEO対応: overflow: hidden で視覚的に隠すのみ、DOMには常に存在。
 */

.home-accordion-wrapper[b-aam4jltq5f] {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease-out;
}

.home-accordion-wrapper.expanded[b-aam4jltq5f] {
    grid-template-rows: 1fr;
}

.home-accordion-content[b-aam4jltq5f] {
    overflow: hidden;
}

/* ========== トグルボタン ========== */

.home-accordion-toggle-btn[b-aam4jltq5f] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155; /* slate-700 */
    background-color: #ffffff;
    border: 1px solid #e2e8f0; /* slate-200 */
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.025em;
}

.home-accordion-toggle-btn:hover[b-aam4jltq5f] {
    color: #1e293b; /* slate-800 */
    background-color: #f8fafc; /* slate-50 */
    border-color: #cbd5e1; /* slate-300 */
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.home-accordion-toggle-btn:focus-visible[b-aam4jltq5f] {
    outline: 2px solid #3b82f6; /* blue-500 */
    outline-offset: 2px;
}

/* アイコン回転アニメーション */
.home-accordion-toggle-btn .toggle-icon[b-aam4jltq5f] {
    transition: transform 0.3s ease;
}

.home-accordion-toggle-btn.expanded .toggle-icon[b-aam4jltq5f] {
    transform: rotate(180deg);
}

/* ========== すべて見るリンク ========== */

.home-view-all-link[b-aam4jltq5f] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155; /* slate-700 */
    background-color: #ffffff;
    border: 1px solid #e2e8f0; /* slate-200 */
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.025em;
}

.home-view-all-link:hover[b-aam4jltq5f] {
    color: #1e293b; /* slate-800 */
    background-color: #f8fafc; /* slate-50 */
    border-color: #cbd5e1; /* slate-300 */
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.home-view-all-link:focus-visible[b-aam4jltq5f] {
    outline: 2px solid #3b82f6; /* blue-500 */
    outline-offset: 2px;
}

/* ========== Selected Brands マーキーアニメーション ========== */

@keyframes home-scroll-b-aam4jltq5f {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll[b-aam4jltq5f] {
    animation: home-scroll-b-aam4jltq5f 40s linear infinite;
}

.animate-scroll:hover[b-aam4jltq5f] {
    animation-play-state: paused;
}

/* マスクグラデーション(左右フェード効果) - Selected Brands用 */
.mask-gradient[b-aam4jltq5f] {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* スムーズなホバーズームエフェクト用 */
img.will-change-transform[b-aam4jltq5f] {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
}
/* /Components/Pages/Public/Contact.razor.rz.scp.css */
/**
 * お問い合わせページ専用スタイル
 * Contact.razor.css（スコープドCSS）
 *
 * 元ファイル: wwwroot/css/contact.css
 * Phase 3: HeadContent読み込み → スコープドCSSに変換
 * Enhanced Navigation対応のため、ビルド時バンドルに含まれるスコープドCSSを使用
 *
 * ::deep について:
 * - Blazor CSS isolation はスコープ属性を最後の要素セレクタに付与する
 * - razorテンプレートが直接レンダリングする要素はすべてスコープ属性を持つ
 * - JSが動的に生成する要素（Turnstile iframe等）にはスコープ属性がないため ::deep が必要
 *
 * @keyframes について:
 * - @keyframes名はスコープドCSSでもグローバルスコープとなる
 * - 他コンポーネントとの名前衝突を防ぐためプレフィックス付きで命名
 */

/* ========================================
   フォーム入力フィールド
   ======================================== */

/* 入力フィールドの基本スタイル */
.contact-input[b-2xwuzg11re] {
    font-size: 16px; /* iOSでのズーム防止 */
    line-height: 1.5;
}

/* フォーカス時のスタイル */
.contact-input:focus[b-2xwuzg11re] {
    border-color: #64748b;
    box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.15);
}

/* エラー時のスタイル */
.contact-input.error[b-2xwuzg11re] {
    border-color: #ef4444 !important;
    background-color: #fef2f2;
}

.contact-input.error:focus[b-2xwuzg11re] {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* プレースホルダーのスタイル */
.contact-input[b-2xwuzg11re]::placeholder {
    color: #94a3b8;
}

/* ========================================
   エラーメッセージ
   ======================================== */

.error-message[b-2xwuzg11re] {
    font-size: 0.875rem;
    line-height: 1.4;
}

/* ========================================
   送信ボタン
   ======================================== */

#submit-button[b-2xwuzg11re] {
    position: relative;
    overflow: hidden;
}

#submit-button:not(:disabled):hover[b-2xwuzg11re] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

#submit-button:not(:disabled):active[b-2xwuzg11re] {
    transform: translateY(0);
}

/* ローディングアニメーション */
.submit-loading svg[b-2xwuzg11re] {
    margin-right: 0.5rem;
}

/* ========================================
   Cloudflare Turnstile
   ※ Phase 2で class="cf-turnstile" → class="turnstile-container" に変更済み
   ======================================== */

.turnstile-container[b-2xwuzg11re] {
    min-height: 65px;
}

/* iframe は Turnstile JS が動的に注入するため ::deep が必要
   ::deep により、スコープ属性は .turnstile-container に付与され、
   iframe にはスコープ属性なしでマッチする */
.turnstile-container[b-2xwuzg11re]  iframe {
    border-radius: 0.5rem;
}

/* ========================================
   成功メッセージ
   ======================================== */

#contact-success[b-2xwuzg11re] {
    animation: contact-fadeIn-b-2xwuzg11re 0.3s ease-out;
}

@keyframes contact-fadeIn-b-2xwuzg11re {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 成功アイコンのアニメーション */
#contact-success .bg-green-100 svg[b-2xwuzg11re] {
    animation: contact-checkmark-b-2xwuzg11re 0.5s ease-out 0.2s both;
}

@keyframes contact-checkmark-b-2xwuzg11re {
    0% {
        stroke-dasharray: 100;
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* ========================================
   エラーメッセージコンテナ
   ======================================== */

#contact-error[b-2xwuzg11re] {
    animation: contact-shake-b-2xwuzg11re 0.4s ease-out;
}

@keyframes contact-shake-b-2xwuzg11re {
    0%, 100% {
        transform: translateX(0);
    }
    20%, 60% {
        transform: translateX(-5px);
    }
    40%, 80% {
        transform: translateX(5px);
    }
}

/* ========================================
   店舗情報カード
   ======================================== */

/* ホバー効果 */
.lg\:col-span-1 > div[b-2xwuzg11re] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lg\:col-span-1 > div:hover[b-2xwuzg11re] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* ========================================
   レスポンシブ対応
   ======================================== */

/* モバイル */
@media (max-width: 640px) {
    /* フォームコンテナのパディング調整 */
    #contact-form-container[b-2xwuzg11re] {
        padding: 1.25rem;
    }

    /* 送信ボタンを全幅に */
    #submit-button[b-2xwuzg11re] {
        width: 100%;
    }

    /* Turnstileウィジェットの中央揃え */
    .turnstile-container[b-2xwuzg11re] {
        display: flex;
        justify-content: center;
    }
}

/* タブレット */
@media (min-width: 641px) and (max-width: 1023px) {
    /* フォームと店舗情報を縦並びに */
    .lg\:col-span-2[b-2xwuzg11re] {
        margin-bottom: 2rem;
    }
}

/* ========================================
   アクセシビリティ
   ======================================== */

/* フォーカス可視性の向上 */
.contact-input:focus-visible[b-2xwuzg11re],
#submit-button:focus-visible[b-2xwuzg11re],
a:focus-visible[b-2xwuzg11re],
button:focus-visible[b-2xwuzg11re] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
    .contact-input[b-2xwuzg11re] {
        border-width: 2px;
    }

    .contact-input.error[b-2xwuzg11re] {
        border-width: 3px;
    }
}

/* モーション軽減設定対応 */
@media (prefers-reduced-motion: reduce) {
    #contact-success[b-2xwuzg11re],
    #contact-error[b-2xwuzg11re],
    #contact-success .bg-green-100 svg[b-2xwuzg11re],
    .lg\:col-span-1 > div[b-2xwuzg11re] {
        animation: none;
        transition: none;
    }
}

/* ========================================
   印刷時のスタイル
   ======================================== */

@media print {
    /* フォームを非表示 */
    #contact-form-container[b-2xwuzg11re],
    .turnstile-container[b-2xwuzg11re] {
        display: none;
    }

    /* 店舗情報のみ表示 */
    .lg\:col-span-1[b-2xwuzg11re] {
        width: 100%;
    }

    .lg\:col-span-1 > div[b-2xwuzg11re] {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
/* /Components/Pages/Public/ContactLenses/Details.razor.rz.scp.css */
/* ========================================
 * Details.razor.css
 * コンタクトレンズ商品詳細ページ 問い合わせフォーム用スコープドCSS
 * ======================================== */

/* ========================================
 * アコーディオン
 * ======================================== */
.cli-accordion-body[b-mssj06tlvx] {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.4s ease, opacity 0.3s ease;
    overflow: hidden;
}

.cli-accordion-body > *[b-mssj06tlvx] {
    overflow: hidden;
}

.cli-accordion-body.open[b-mssj06tlvx] {
    grid-template-rows: 1fr;
    opacity: 1;
}

.cli-toggle-form-button[aria-expanded="true"] .cli-chevron-icon[b-mssj06tlvx] {
    transform: rotate(180deg);
}

/* ========== フォーム展開時のトグルボタン強調表示 ========== */
.cli-toggle-form-button[aria-expanded="true"][b-mssj06tlvx] {
    background-color: #334155; /* slate-700 */
    border-color: #475569; /* slate-600 */
    box-shadow: 0 0 0 2px rgba(241, 245, 249, 0.9), 0 0 0 4px #334155, 0 4px 12px rgba(15, 23, 42, 0.2);
}

/* ========== 電話ボタン ==========
 * Tailwind出力CSSのbg-slate-900/border-slate-200が!important付きのため、
 * スコープドCSSで背景色・ボーダー色を一元管理する */
.cli-phone-button[b-mssj06tlvx] {
    background-color: #0f172a; /* slate-900 */
    border-color: #e2e8f0; /* slate-200 */
}

.cli-phone-button:hover[b-mssj06tlvx] {
    background-color: #334155; /* slate-700 */
    border-color: #cbd5e1; /* slate-300 */
}

.cli-phone-button.cli-phone-dimmed[b-mssj06tlvx],
.cli-phone-button.cli-phone-dimmed:hover[b-mssj06tlvx] {
    background-color: rgba(30, 41, 59, 0.5); /* slate-800/50 */
    border-color: transparent;
}

/* ========================================
 * 問い合わせ種別チップ
 * ======================================== */
.inquiry-type-chip[b-mssj06tlvx] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0; /* slate-200 */
    border-radius: 9999px;
    background-color: white;
    color: #64748b; /* slate-500 */
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.inquiry-type-chip:hover[b-mssj06tlvx] {
    border-color: #94a3b8; /* slate-400 */
    color: #334155; /* slate-700 */
    background-color: #f8fafc; /* slate-50 */
}

.inquiry-type-chip:active[b-mssj06tlvx] {
    transform: scale(0.97);
}

.inquiry-type-chip.active[b-mssj06tlvx] {
    border-color: #1e293b; /* slate-800 */
    background-color: #1e293b; /* slate-800 */
    color: white;
}

.inquiry-type-chip.active:hover[b-mssj06tlvx] {
    background-color: #334155; /* slate-700 */
    border-color: #334155;
}

.inquiry-type-chip svg[b-mssj06tlvx] {
    flex-shrink: 0;
}

/* ========================================
 * フォーム入力フィールド
 * ======================================== */
.cli-input[b-mssj06tlvx] {
    font-size: 16px; /* iOS zoom防止 */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cli-input:focus[b-mssj06tlvx] {
    border-color: #94a3b8; /* slate-400 */
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.15);
}

.cli-input.error[b-mssj06tlvx] {
    border-color: #ef4444 !important; /* red-500 */
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.cli-input.error:focus[b-mssj06tlvx] {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* ========================================
 * Turnstileコンテナ
 * Turnstileが動的に注入するiframe用に ::deep が必要
 * ======================================== */
.cli-turnstile-container[b-mssj06tlvx]  iframe {
    border-radius: 0.5rem;
}

/* ========================================
 * 送信ボタン
 * ======================================== */
.cli-submit-button[b-mssj06tlvx] {
    transition: all 0.3s ease;
}

.cli-submit-button:not(:disabled):hover[b-mssj06tlvx] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.25);
}

.cli-submit-button:not(:disabled):active[b-mssj06tlvx] {
    transform: translateY(0);
}

/* ========================================
 * 成功表示
 * ======================================== */
.cli-success[b-mssj06tlvx] {
    animation: cl-inquiry-fadeIn-b-mssj06tlvx 0.5s ease forwards;
}

.cli-success-checkmark[b-mssj06tlvx] {
    animation: cl-inquiry-checkmark-b-mssj06tlvx 0.6s ease forwards;
}

/* ========================================
 * エラーshakeアニメーション
 * ======================================== */
.cli-shake[b-mssj06tlvx] {
    animation: cl-inquiry-shake-b-mssj06tlvx 0.4s ease-in-out;
}

/* ========================================
 * キーフレーム定義
 * コンポーネント名プレフィックス付き（グローバルスコープ衝突防止）
 * ======================================== */
@keyframes cl-inquiry-fadeIn-b-mssj06tlvx {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cl-inquiry-checkmark-b-mssj06tlvx {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes cl-inquiry-shake-b-mssj06tlvx {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-4px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(4px);
    }
}


/* ========================================
 * アクセシビリティ
 * ======================================== */
.cli-input:focus-visible[b-mssj06tlvx] {
    outline: none;
}

.inquiry-type-chip:focus-visible[b-mssj06tlvx] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.cli-submit-button:focus-visible[b-mssj06tlvx] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.cli-toggle-form-button:focus-visible[b-mssj06tlvx] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* ========================================
 * モーション軽減設定
 * ======================================== */
@media (prefers-reduced-motion: reduce) {
    .cli-success[b-mssj06tlvx],
    .cli-success-checkmark[b-mssj06tlvx],
    .cli-shake[b-mssj06tlvx] {
        animation: none;
    }

    .cli-success[b-mssj06tlvx] {
        opacity: 1;
    }

    .cli-success-checkmark[b-mssj06tlvx] {
        opacity: 1;
        transform: scale(1);
    }

    .inquiry-type-chip[b-mssj06tlvx],
    .cli-input[b-mssj06tlvx],
    .cli-submit-button[b-mssj06tlvx] {
        transition: none;
    }

    .cli-accordion-body[b-mssj06tlvx] {
        transition: none;
    }

    .cli-chevron-icon[b-mssj06tlvx] {
        transition: none;
    }
}

/* ========================================
 * 印刷対応
 * ======================================== */
@media print {
    .inquiry-form-section[b-mssj06tlvx] {
        display: none;
    }
}
/* /Components/Pages/Public/Faq/Index.razor.rz.scp.css */
/**
 * FAQ Page Styles
 * Index.razor.css（スコープドCSS）
 * 眼鏡工房レイ - よくあるご質問ページ専用スタイル
 *
 * 元ファイル: wwwroot/css/faq.css
 * Phase 3: HeadContent読み込み → スコープドCSSに変換
 * Enhanced Navigation対応のため、ビルド時バンドルに含まれるスコープドCSSを使用
 */

/* ========== スクロールバー非表示（カテゴリナビ用） ========== */
.hide-scrollbar[b-btcx6c4l4u] {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar[b-btcx6c4l4u]::-webkit-scrollbar {
    display: none;
}

/* ========== カテゴリナビ: スクロール矢印インジケーター ========== */
.faq-nav-container[b-btcx6c4l4u] {
    position: relative;
}

.faq-nav-arrow[b-btcx6c4l4u] {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2.5rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #334155;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.faq-nav-arrow.is-visible[b-btcx6c4l4u] {
    opacity: 1;
    pointer-events: auto;
}

.faq-nav-arrow-left[b-btcx6c4l4u] {
    left: 0;
    background: linear-gradient(to right, rgb(255 255 255 / 0.97) 40%, transparent);
    padding-right: 0.5rem;
}

.faq-nav-arrow-right[b-btcx6c4l4u] {
    right: 0;
    background: linear-gradient(to left, rgb(255 255 255 / 0.97) 40%, transparent);
    padding-left: 0.5rem;
}

.faq-nav-arrow:hover[b-btcx6c4l4u] {
    color: #0f172a;
}

.faq-nav-arrow:focus-visible[b-btcx6c4l4u] {
    outline: 2px solid #0f172a;
    outline-offset: -2px;
}

/* ========== FAQ検索ボックス ========== */
#faq-search:focus[b-btcx6c4l4u] {
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

/* ========== FAQアイテム ========== */
.faq-item[b-btcx6c4l4u] {
    transition: all 0.2s ease;
}

.faq-item:has(details[open])[b-btcx6c4l4u] {
    border-color: #cbd5e1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* ========== details/summary スタイル ========== */
.faq-item details summary[b-btcx6c4l4u] {
    list-style: none;
}

.faq-item details summary[b-btcx6c4l4u]::-webkit-details-marker {
    display: none;
}

.faq-item details summary[b-btcx6c4l4u]::marker {
    display: none;
}

/* フォーカス表示 */
.faq-item details summary:focus[b-btcx6c4l4u] {
    outline: none;
}

.faq-item details summary:focus-visible[b-btcx6c4l4u] {
    outline: 2px solid #0f172a;
    outline-offset: 2px;
    border-radius: 0.75rem;
}

/* ========== FAQ回答アニメーション ========== */
.faq-answer[b-btcx6c4l4u] {
    animation: faq-slide-down-b-btcx6c4l4u 0.3s ease-out;
}

@keyframes faq-slide-down-b-btcx6c4l4u {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== ナビゲーションリンク ========== */
.faq-nav-link[b-btcx6c4l4u] {
    transition: all 0.2s ease;
}

.faq-nav-link:focus[b-btcx6c4l4u] {
    outline: none;
}

.faq-nav-link:focus-visible[b-btcx6c4l4u] {
    outline: 2px solid #0f172a;
    outline-offset: 2px;
}

/* ========== カテゴリカウント ========== */
.faq-category-count[b-btcx6c4l4u] {
    font-variant-numeric: tabular-nums;
    transition: all 0.2s ease;
}

/* ========== 検索ハイライト ========== */
.faq-item.search-match[b-btcx6c4l4u] {
    border-color: #0f172a;
    background-color: #f8fafc;
}

.faq-item.search-hidden[b-btcx6c4l4u] {
    display: none;
}

/* ========== カテゴリセクション（スクロールマージン: ロゴ突出高+ナビ高を考慮） ========== */
/* モバイル: ロゴ75px + ナビ約52px = 127px → 余裕を持って 8.5rem(136px) */
.faq-category-section[b-btcx6c4l4u] {
    scroll-margin-top: 8.5rem;
}

/* デスクトップ: ロゴ130px + ナビ約52px = 182px → 余裕を持って 12rem(192px) */
@media (min-width: 640px) {
    .faq-category-section[b-btcx6c4l4u] {
        scroll-margin-top: 12rem;
    }
}

/* ========== レスポンシブ調整 ========== */
@media (max-width: 640px) {
    .faq-nav-link[b-btcx6c4l4u] {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
}

/* ========== FAQ回答Markdownコンテンツスタイル ========== */
.faq-answer-content p[b-btcx6c4l4u] {
    margin-bottom: 0.75rem;
}

.faq-answer-content p:last-child[b-btcx6c4l4u] {
    margin-bottom: 0;
}

.faq-answer-content a[b-btcx6c4l4u] {
    color: #0f172a;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.faq-answer-content a:hover[b-btcx6c4l4u] {
    color: #334155;
}

.faq-answer-content ul[b-btcx6c4l4u],
.faq-answer-content ol[b-btcx6c4l4u] {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.faq-answer-content li[b-btcx6c4l4u] {
    margin-bottom: 0.25rem;
}

.faq-answer-content strong[b-btcx6c4l4u] {
    font-weight: 600;
    color: #334155;
}

/* ========== 印刷用スタイル ========== */
@media print {
    .faq-item details[b-btcx6c4l4u] {
        display: block !important;
    }

    .faq-item details[open] summary ~ *[b-btcx6c4l4u] {
        display: block !important;
    }

    .faq-item .faq-answer[b-btcx6c4l4u] {
        display: block !important;
    }

    /* 検索ボックス・ナビを非表示 */
    #faq-search[b-btcx6c4l4u],
    #faq-category-nav[b-btcx6c4l4u],
    .hide-scrollbar[b-btcx6c4l4u] {
        display: none !important;
    }

    /* 全てのdetailsを開いた状態で印刷 */
    .faq-item details[b-btcx6c4l4u] {
        open: true;
    }
}
/* /Components/Pages/Public/Favorites/Index.razor.rz.scp.css */
/* ========================================
   Favorites/Index.razor.css
   お気に入り一覧ページのスコープドCSS
   ======================================== */

/* カード削除アニメーション */
[b-y9my9qou1s] .favorites-card-removing {
    animation: favorites-card-fadeout-b-y9my9qou1s 0.3s ease forwards;
}

@keyframes favorites-card-fadeout-b-y9my9qou1s {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.95);
    }
}

/* ========================================
 * 追加: チェックボックス
 * ======================================== */
[b-y9my9qou1s] .fav-checkbox-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.5rem;
    border: 2px solid #cbd5e1; /* slate-300 */
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    transition: all 0.2s ease;
    cursor: pointer;
}

    [b-y9my9qou1s] .fav-checkbox-visual:hover {
        border-color: #94a3b8; /* slate-400 */
        background-color: rgba(255, 255, 255, 0.95);
    }

[b-y9my9qou1s] .fav-checkbox-input:checked + .fav-checkbox-visual {
    background-color: #1e293b; /* slate-800 */
    border-color: #1e293b;
}

[b-y9my9qou1s] .fav-checkbox-visual .fav-check-icon {
    display: none;
}

[b-y9my9qou1s] .fav-checkbox-input:checked + .fav-checkbox-visual .fav-check-icon {
    display: block;
}

/* ========================================
 * 追加: コンタクトレンズセクション フルワイド背景
 * max-w-7xlコンテナを突き抜けてブラウザ幅一杯に背景色を表示
 * ======================================== */
[b-y9my9qou1s] .favorites-section-fullwidth-bg {
    position: relative;
    isolation: isolate;
}

    [b-y9my9qou1s] .favorites-section-fullwidth-bg::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: calc(-50vw + 50%);
        width: 100vw;
        background-color: #f1f5f9;
        opacity: 0.7;
        z-index: -1;
    }

/* ========================================
 * 追加: カードチェック状態のボーダー表示
 * ======================================== */
[b-y9my9qou1s] .fav-card-checked article {
    border-top: 5px solid #1e293b !important; /* slate-800 */
}

/* ========================================
 * 追加: アコーディオン
 * ======================================== */
.fav-accordion-body[b-y9my9qou1s] {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.4s ease, opacity 0.3s ease;
    overflow: hidden;
}

    .fav-accordion-body > *[b-y9my9qou1s] {
        overflow: hidden;
    }

    .fav-accordion-body.open[b-y9my9qou1s] {
        grid-template-rows: 1fr;
        opacity: 1;
    }

.fav-toggle-form-button[aria-expanded="true"] .fav-chevron-icon[b-y9my9qou1s] {
    transform: rotate(180deg);
}

.fav-toggle-form-button[aria-expanded="true"][b-y9my9qou1s] {
    background-color: #334155; /* slate-700 */
    border-color: #475569; /* slate-600 */
    box-shadow: 0 0 0 2px rgba(241, 245, 249, 0.9), 0 0 0 4px #334155, 0 4px 12px rgba(15, 23, 42, 0.2);
}

/* ========================================
 * 追加: 電話ボタン
 * ======================================== */
.fav-phone-button[b-y9my9qou1s] {
    background-color: #0f172a; /* slate-900 */
    border-color: #e2e8f0; /* slate-200 */
}

    .fav-phone-button:hover[b-y9my9qou1s] {
        background-color: #334155; /* slate-700 */
        border-color: #cbd5e1; /* slate-300 */
    }

    .fav-phone-button.fav-phone-dimmed[b-y9my9qou1s],
    .fav-phone-button.fav-phone-dimmed:hover[b-y9my9qou1s] {
        background-color: rgba(30, 41, 59, 0.5); /* slate-800/50 */
        border-color: transparent;
    }

/* ========================================
 * 追加: 問い合わせ種別チップ
 * ======================================== */
.fav-inquiry-chip[b-y9my9qou1s] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0; /* slate-200 */
    border-radius: 9999px;
    background-color: white;
    color: #64748b; /* slate-500 */
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

    .fav-inquiry-chip:hover[b-y9my9qou1s] {
        border-color: #94a3b8; /* slate-400 */
        color: #334155; /* slate-700 */
        background-color: #f8fafc; /* slate-50 */
    }

    .fav-inquiry-chip:active[b-y9my9qou1s] {
        transform: scale(0.97);
    }

    .fav-inquiry-chip.active[b-y9my9qou1s] {
        border-color: #1e293b; /* slate-800 */
        background-color: #1e293b; /* slate-800 */
        color: white;
    }

        .fav-inquiry-chip.active:hover[b-y9my9qou1s] {
            background-color: #334155; /* slate-700 */
            border-color: #334155;
        }

    .fav-inquiry-chip svg[b-y9my9qou1s] {
        flex-shrink: 0;
    }

/* ========================================
 * 追加: フォーム入力フィールド
 * ======================================== */
.fav-input[b-y9my9qou1s] {
    font-size: 16px; /* iOS zoom防止 */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .fav-input:focus[b-y9my9qou1s] {
        border-color: #94a3b8; /* slate-400 */
        box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.15);
    }

    .fav-input.error[b-y9my9qou1s] {
        border-color: #ef4444 !important; /* red-500 */
        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    }

        .fav-input.error:focus[b-y9my9qou1s] {
            border-color: #ef4444 !important;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
        }

/* ========================================
 * 追加: Turnstileコンテナ
 * Turnstileが動的に注入するiframe用に ::deep が必要
 * ======================================== */
.fav-turnstile-container[b-y9my9qou1s]  iframe {
    border-radius: 0.5rem;
}

/* ========================================
 * 追加: 送信ボタン
 * ======================================== */
.fav-submit-button[b-y9my9qou1s] {
    transition: all 0.3s ease;
}

    .fav-submit-button:not(:disabled):hover[b-y9my9qou1s] {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.25);
    }

    .fav-submit-button:not(:disabled):active[b-y9my9qou1s] {
        transform: translateY(0);
    }

/* ========================================
 * 追加: 成功表示
 * ======================================== */
.fav-success[b-y9my9qou1s] {
    animation: favorites-inquiry-fadeIn-b-y9my9qou1s 0.5s ease forwards;
}

.fav-success-checkmark[b-y9my9qou1s] {
    animation: favorites-inquiry-checkmark-b-y9my9qou1s 0.6s ease forwards;
}

/* ========================================
 * 追加: エラーshakeアニメーション
 * ======================================== */
.fav-shake[b-y9my9qou1s] {
    animation: favorites-inquiry-shake-b-y9my9qou1s 0.4s ease-in-out;
}

/* ========================================
 * 追加: 選択商品ミニカード
 * ======================================== */
[b-y9my9qou1s] .fav-selected-item-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0; /* slate-200 */
    background-color: white;
    transition: background-color 0.15s ease;
}

    [b-y9my9qou1s] .fav-selected-item-card:hover {
        background-color: #f8fafc; /* slate-50 */
    }

[b-y9my9qou1s] .fav-selected-item-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    color: #94a3b8; /* slate-400 */
    cursor: pointer;
    transition: all 0.15s ease;
    flex-shrink: 0;
}

    [b-y9my9qou1s] .fav-selected-item-remove:hover {
        background-color: #fee2e2; /* red-100 */
        color: #ef4444; /* red-500 */
    }

/* ========================================
 * 追加: キーフレーム定義
 * コンポーネント名プレフィックス付き（グローバルスコープ衝突防止）
 * ======================================== */
@keyframes favorites-inquiry-fadeIn-b-y9my9qou1s {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes favorites-inquiry-checkmark-b-y9my9qou1s {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes favorites-inquiry-shake-b-y9my9qou1s {
    0%, 100% {
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-4px);
    }

    20%, 40%, 60%, 80% {
        transform: translateX(4px);
    }
}

/* ========================================
 * 追加: 固定ボトムバー
 * ======================================== */
#fav-inquiry-bottom-bar[b-y9my9qou1s]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 60%, rgba(255, 255, 255, 0));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    pointer-events: none;
}

#fav-inquiry-bottom-bar > *[b-y9my9qou1s] {
    position: relative;
}

#fav-inquiry-bottom-bar.visible[b-y9my9qou1s] {
    transform: translateY(0);
}

.fav-bottom-bar-button[b-y9my9qou1s] {
    display: inline-flex;
}

.fav-scroll-icon[b-y9my9qou1s] {
    animation: favorites-scroll-bounce-b-y9my9qou1s 2s ease-in-out infinite;
}

@keyframes favorites-scroll-bounce-b-y9my9qou1s {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}

/* ========================================
 * 追加: お気に入り解除確認ダイアログ
 * ======================================== */
#fav-remove-confirm-dialog.visible[b-y9my9qou1s] {
    display: flex;
}

    #fav-remove-confirm-dialog.visible .fav-confirm-backdrop[b-y9my9qou1s] {
        animation: favorites-confirm-overlay-in-b-y9my9qou1s 0.2s ease forwards;
    }

    #fav-remove-confirm-dialog.visible .fav-confirm-card[b-y9my9qou1s] {
        animation: favorites-confirm-card-in-b-y9my9qou1s 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

#fav-remove-confirm-dialog.closing .fav-confirm-backdrop[b-y9my9qou1s] {
    animation: favorites-confirm-overlay-out-b-y9my9qou1s 0.15s ease forwards;
}

#fav-remove-confirm-dialog.closing .fav-confirm-card[b-y9my9qou1s] {
    animation: favorites-confirm-card-out-b-y9my9qou1s 0.15s ease forwards;
}

@keyframes favorites-confirm-overlay-in-b-y9my9qou1s {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes favorites-confirm-overlay-out-b-y9my9qou1s {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes favorites-confirm-card-in-b-y9my9qou1s {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes favorites-confirm-card-out-b-y9my9qou1s {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    to {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
}

/* ========================================
 * 追加: 全お気に入り解除確認ダイアログ
 * ======================================== */
#fav-remove-all-confirm-dialog.visible[b-y9my9qou1s] {
    display: flex;
}

    #fav-remove-all-confirm-dialog.visible .fav-confirm-backdrop[b-y9my9qou1s] {
        animation: favorites-confirm-overlay-in-b-y9my9qou1s 0.2s ease forwards;
    }

    #fav-remove-all-confirm-dialog.visible .fav-confirm-card[b-y9my9qou1s] {
        animation: favorites-confirm-card-in-b-y9my9qou1s 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

#fav-remove-all-confirm-dialog.closing .fav-confirm-backdrop[b-y9my9qou1s] {
    animation: favorites-confirm-overlay-out-b-y9my9qou1s 0.15s ease forwards;
}

#fav-remove-all-confirm-dialog.closing .fav-confirm-card[b-y9my9qou1s] {
    animation: favorites-confirm-card-out-b-y9my9qou1s 0.15s ease forwards;
}

/* ========================================
 * 追加: アクセシビリティ
 * ======================================== */
.fav-input:focus-visible[b-y9my9qou1s] {
    outline: none;
}

.fav-inquiry-chip:focus-visible[b-y9my9qou1s] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.fav-submit-button:focus-visible[b-y9my9qou1s] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.fav-toggle-form-button:focus-visible[b-y9my9qou1s] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

[b-y9my9qou1s] .fav-select-all-btn:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

[b-y9my9qou1s] .fav-remove-all-btn:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* ========================================
 * 追加: モーション軽減設定
 * ======================================== */
@media (prefers-reduced-motion: reduce) {
    .fav-success[b-y9my9qou1s],
    .fav-success-checkmark[b-y9my9qou1s],
    .fav-shake[b-y9my9qou1s] {
        animation: none;
    }

    .fav-success[b-y9my9qou1s] {
        opacity: 1;
    }

    .fav-success-checkmark[b-y9my9qou1s] {
        opacity: 1;
        transform: scale(1);
    }

    .fav-inquiry-chip[b-y9my9qou1s],
    .fav-input[b-y9my9qou1s],
    .fav-submit-button[b-y9my9qou1s] {
        transition: none;
    }

    .fav-accordion-body[b-y9my9qou1s] {
        transition: none;
    }

    .fav-chevron-icon[b-y9my9qou1s] {
        transition: none;
    }

    [b-y9my9qou1s] .fav-checkbox-visual {
        transition: none;
    }

    [b-y9my9qou1s] .fav-select-all-btn {
        transition: none;
    }

    [b-y9my9qou1s] .fav-remove-all-btn {
        transition: none;
    }

    #fav-inquiry-bottom-bar[b-y9my9qou1s] {
        transition: none;
    }

    .fav-scroll-icon[b-y9my9qou1s] {
        animation: none;
    }

    .fav-explore-card[b-y9my9qou1s],
    .fav-explore-card:hover[b-y9my9qou1s] {
        transform: none;
        transition: none;
    }

    #fav-remove-confirm-dialog .fav-confirm-backdrop[b-y9my9qou1s],
    #fav-remove-confirm-dialog .fav-confirm-card[b-y9my9qou1s] {
        animation: none;
    }

    #fav-remove-confirm-dialog.visible .fav-confirm-backdrop[b-y9my9qou1s] {
        opacity: 1;
    }

    #fav-remove-confirm-dialog.visible .fav-confirm-card[b-y9my9qou1s] {
        opacity: 1;
        transform: none;
    }

    #fav-remove-all-confirm-dialog .fav-confirm-backdrop[b-y9my9qou1s],
    #fav-remove-all-confirm-dialog .fav-confirm-card[b-y9my9qou1s] {
        animation: none;
    }

    #fav-remove-all-confirm-dialog.visible .fav-confirm-backdrop[b-y9my9qou1s] {
        opacity: 1;
    }

    #fav-remove-all-confirm-dialog.visible .fav-confirm-card[b-y9my9qou1s] {
        opacity: 1;
        transform: none;
    }
}

/* ========================================
 * 追加: 商品一覧ナビゲーションカード
 * ======================================== */
.fav-explore-card[b-y9my9qou1s] {
    text-decoration: none;
}

    .fav-explore-card:hover[b-y9my9qou1s] {
        transform: translateY(-2px);
    }

    .fav-explore-card:active[b-y9my9qou1s] {
        transform: translateY(0);
    }

/* ========================================
 * 追加: 印刷対応
 * ======================================== */
@media print {
    #fav-inquiry-forms-source[b-y9my9qou1s],
    #fav-inquiry-bottom-bar[b-y9my9qou1s],
    #fav-remove-all-confirm-dialog[b-y9my9qou1s],
    [data-inquiry-type][b-y9my9qou1s] {
        display: none;
    }
}
/* /Components/Pages/Public/Frames/Details.razor.rz.scp.css */
/* ========================================
 * Details.razor.css
 * フレーム商品詳細ページ 問い合わせフォーム用スコープドCSS
 * ======================================== */

/* ========================================
 * アコーディオン
 * ======================================== */
.fi-accordion-body[b-vtll7pjov3] {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.4s ease, opacity 0.3s ease;
    overflow: hidden;
}

.fi-accordion-body > *[b-vtll7pjov3] {
    overflow: hidden;
}

.fi-accordion-body.open[b-vtll7pjov3] {
    grid-template-rows: 1fr;
    opacity: 1;
}

.fi-toggle-form-button[aria-expanded="true"] .fi-chevron-icon[b-vtll7pjov3] {
    transform: rotate(180deg);
}

/* ========== 追加: フォーム展開時のトグルボタン強調表示 ========== */
.fi-toggle-form-button[aria-expanded="true"][b-vtll7pjov3] {
    background-color: #334155; /* slate-700 */
    border-color: #475569; /* slate-600 */
    box-shadow: 0 0 0 2px rgba(241, 245, 249, 0.9), 0 0 0 4px #334155, 0 4px 12px rgba(15, 23, 42, 0.2);
}

/* ========== 電話ボタン ==========
 * Tailwind出力CSSのbg-slate-900/border-slate-200が!important付きのため、
 * スコープドCSSで背景色・ボーダー色を一元管理する */
.fi-phone-button[b-vtll7pjov3] {
    background-color: #0f172a; /* slate-900 */
    border-color: #e2e8f0; /* slate-200 */
}

.fi-phone-button:hover[b-vtll7pjov3] {
    background-color: #334155; /* slate-700 */
    border-color: #cbd5e1; /* slate-300 */
}

.fi-phone-button.fi-phone-dimmed[b-vtll7pjov3],
.fi-phone-button.fi-phone-dimmed:hover[b-vtll7pjov3] {
    background-color: rgba(30, 41, 59, 0.5); /* slate-800/50 */
    border-color: transparent;
}

/* ========================================
 * 問い合わせ種別チップ
 * ======================================== */
.inquiry-type-chip[b-vtll7pjov3] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0; /* slate-200 */
    border-radius: 9999px;
    background-color: white;
    color: #64748b; /* slate-500 */
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.inquiry-type-chip:hover[b-vtll7pjov3] {
    border-color: #94a3b8; /* slate-400 */
    color: #334155; /* slate-700 */
    background-color: #f8fafc; /* slate-50 */
}

.inquiry-type-chip:active[b-vtll7pjov3] {
    transform: scale(0.97);
}

.inquiry-type-chip.active[b-vtll7pjov3] {
    border-color: #1e293b; /* slate-800 */
    background-color: #1e293b; /* slate-800 */
    color: white;
}

.inquiry-type-chip.active:hover[b-vtll7pjov3] {
    background-color: #334155; /* slate-700 */
    border-color: #334155;
}

.inquiry-type-chip svg[b-vtll7pjov3] {
    flex-shrink: 0;
}

/* ========================================
 * フォーム入力フィールド
 * ======================================== */
.fi-input[b-vtll7pjov3] {
    font-size: 16px; /* iOS zoom防止 */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fi-input:focus[b-vtll7pjov3] {
    border-color: #94a3b8; /* slate-400 */
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.15);
}

.fi-input.error[b-vtll7pjov3] {
    border-color: #ef4444 !important; /* red-500 */
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.fi-input.error:focus[b-vtll7pjov3] {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* ========================================
 * Turnstileコンテナ
 * Turnstileが動的に注入するiframe用に ::deep が必要
 * ======================================== */
.fi-turnstile-container[b-vtll7pjov3]  iframe {
    border-radius: 0.5rem;
}

/* ========================================
 * 送信ボタン
 * ======================================== */
.fi-submit-button[b-vtll7pjov3] {
    transition: all 0.3s ease;
}

.fi-submit-button:not(:disabled):hover[b-vtll7pjov3] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.25);
}

.fi-submit-button:not(:disabled):active[b-vtll7pjov3] {
    transform: translateY(0);
}

/* ========================================
 * 成功表示
 * ======================================== */
.fi-success[b-vtll7pjov3] {
    animation: frame-inquiry-fadeIn-b-vtll7pjov3 0.5s ease forwards;
}

.fi-success-checkmark[b-vtll7pjov3] {
    animation: frame-inquiry-checkmark-b-vtll7pjov3 0.6s ease forwards;
}

/* ========================================
 * エラーshakeアニメーション
 * ======================================== */
.fi-shake[b-vtll7pjov3] {
    animation: frame-inquiry-shake-b-vtll7pjov3 0.4s ease-in-out;
}

/* ========================================
 * キーフレーム定義
 * コンポーネント名プレフィックス付き（グローバルスコープ衝突防止）
 * ======================================== */
@keyframes frame-inquiry-fadeIn-b-vtll7pjov3 {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes frame-inquiry-checkmark-b-vtll7pjov3 {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes frame-inquiry-shake-b-vtll7pjov3 {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-4px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(4px);
    }
}


/* ========================================
 * アクセシビリティ
 * ======================================== */
/* ========== 変更: 入力欄のfocus-visibleはoutline無し（fi-input:focusのスタイルで代替） ========== */
.fi-input:focus-visible[b-vtll7pjov3] {
    outline: none;
}

.inquiry-type-chip:focus-visible[b-vtll7pjov3] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.fi-submit-button:focus-visible[b-vtll7pjov3] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.fi-toggle-form-button:focus-visible[b-vtll7pjov3] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* ========================================
 * モーション軽減設定
 * ======================================== */
@media (prefers-reduced-motion: reduce) {
    .fi-success[b-vtll7pjov3],
    .fi-success-checkmark[b-vtll7pjov3],
    .fi-shake[b-vtll7pjov3] {
        animation: none;
    }

    .fi-success[b-vtll7pjov3] {
        opacity: 1;
    }

    .fi-success-checkmark[b-vtll7pjov3] {
        opacity: 1;
        transform: scale(1);
    }

    .inquiry-type-chip[b-vtll7pjov3],
    .fi-input[b-vtll7pjov3],
    .fi-submit-button[b-vtll7pjov3] {
        transition: none;
    }

    .fi-accordion-body[b-vtll7pjov3] {
        transition: none;
    }

    .fi-chevron-icon[b-vtll7pjov3] {
        transition: none;
    }
}

/* ========================================
 * 印刷対応
 * ======================================== */
@media print {
    .inquiry-form-section[b-vtll7pjov3] {
        display: none;
    }
}
/* /Components/Pages/Public/Products/Lenses/BlueLightCut.razor.rz.scp.css */
/**
 * ブルーライトカットページ用CSS
 * BlueLightCut.razor.css（スコープドCSS）
 *
 * Enhanced Navigation対応のため、ビルド時バンドルに含まれるスコープドCSSを使用
 * @keyframes名は他コンポーネントとの衝突防止のため blc- プレフィックス付き
 */

/* ========================================
   セクション表示アニメーション（フェードイン）
   ======================================== */

.blc-animate-section[b-fo3c364ikl] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.blc-animate-section.is-visible[b-fo3c364ikl] {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   光スペクトルアニメーション（Section 2）
   ======================================== */

.blc-spectrum-highlight[b-fo3c364ikl] {
    transition: opacity 0.5s ease-out;
}

.is-visible .blc-spectrum-highlight[b-fo3c364ikl] {
    opacity: 1;
    animation: blc-spectrum-pulse-b-fo3c364ikl 2s ease-in-out infinite;
}

@keyframes blc-spectrum-pulse-b-fo3c364ikl {
    0%, 100% {
        opacity: 0.6;
        stroke-width: 2.5;
    }
    50% {
        opacity: 1;
        stroke-width: 3.5;
    }
}

/* ========================================
   レンズフィルターアニメーション（Section 4）
   ======================================== */

.blc-filter-ray[b-fo3c364ikl] {
    transition: opacity 0.5s ease-out;
}

.is-visible .blc-filter-ray[b-fo3c364ikl] {
    opacity: 1;
}

/* 入射光線のディレイ */
.is-visible .blc-filter-ray-violet[b-fo3c364ikl] { transition-delay: 0.2s; }
.is-visible .blc-filter-ray-blue[b-fo3c364ikl] { transition-delay: 0.35s; }
.is-visible .blc-filter-ray-cyan[b-fo3c364ikl] { transition-delay: 0.5s; }
.is-visible .blc-filter-ray-green[b-fo3c364ikl] { transition-delay: 0.65s; }
.is-visible .blc-filter-ray-yellow[b-fo3c364ikl] { transition-delay: 0.8s; }
.is-visible .blc-filter-ray-red[b-fo3c364ikl] { transition-delay: 0.95s; }

/* 通過光線のディレイ */
.is-visible .blc-filter-pass-cyan[b-fo3c364ikl] { transition-delay: 1.2s; }
.is-visible .blc-filter-pass-green[b-fo3c364ikl] { transition-delay: 1.35s; }
.is-visible .blc-filter-pass-yellow[b-fo3c364ikl] { transition-delay: 1.5s; }
.is-visible .blc-filter-pass-red[b-fo3c364ikl] { transition-delay: 1.65s; }

/* ブロック表示 */
.blc-filter-block[b-fo3c364ikl] {
    transition: opacity 0.3s ease-out;
}

.is-visible .blc-filter-block[b-fo3c364ikl] {
    opacity: 1;
    transition-delay: 1.1s;
    animation: blc-filter-block-flash-b-fo3c364ikl 0.6s ease-out 1.1s;
}

@keyframes blc-filter-block-flash-b-fo3c364ikl {
    0% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.3); }
    100% { opacity: 1; transform: scale(1); }
}

/* ========================================
   デバイス波動アニメーション（Section 5）
   ======================================== */

.blc-emit-wave[b-fo3c364ikl] {
    transition: opacity 0.3s ease-out;
    transform-box: fill-box;
    transform-origin: center;
}

.is-visible .blc-emit-wave[b-fo3c364ikl] {
    opacity: 0.6;
}

.is-visible .blc-emit-wave-1[b-fo3c364ikl] {
    animation: blc-emit-wave-b-fo3c364ikl 2.5s ease-out infinite;
    animation-delay: 0.3s;
}

.is-visible .blc-emit-wave-2[b-fo3c364ikl] {
    animation: blc-emit-wave-b-fo3c364ikl 2.5s ease-out infinite;
    animation-delay: 0.8s;
}

.is-visible .blc-emit-wave-3[b-fo3c364ikl] {
    animation: blc-emit-wave-b-fo3c364ikl 2.5s ease-out infinite;
    animation-delay: 1.3s;
}

@keyframes blc-emit-wave-b-fo3c364ikl {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}

/* ========================================
   メリットカード
   ======================================== */

.blc-benefit-card[b-fo3c364ikl] {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blc-benefit-card:hover[b-fo3c364ikl] {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

/* アイコンのホバー効果 */
.blc-benefit-card:hover > div:first-child[b-fo3c364ikl] {
    transform: scale(1.08);
}

.blc-benefit-card > div:first-child[b-fo3c364ikl] {
    transition: transform 0.2s ease;
}

/* ========================================
   眼鏡工房レイの強み（Section 7）
   ======================================== */

.blc-strength-item[b-fo3c364ikl] {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.blc-strength-item:hover[b-fo3c364ikl] {
    transform: translateX(4px);
}

/* ========================================
   FAQ アコーディオン
   ======================================== */

.blc-faq-item[b-fo3c364ikl] {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blc-faq-item:hover[b-fo3c364ikl] {
    border-color: #cbd5e1;
}

.blc-faq-item[open][b-fo3c364ikl] {
    border-color: #94a3b8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* サマリーのフォーカススタイル */
.blc-faq-item summary:focus[b-fo3c364ikl] {
    outline: none;
}

.blc-faq-item summary:focus-visible[b-fo3c364ikl] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 0.75rem;
}

/* FAQ展開アニメーション */
.blc-faq-item > div[b-fo3c364ikl] {
    animation: blc-slide-down-b-fo3c364ikl 0.2s ease-out;
}

@keyframes blc-slide-down-b-fo3c364ikl {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   CTAセクション
   ======================================== */

section:last-of-type a[b-fo3c364ikl] {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

section:last-of-type a:hover[b-fo3c364ikl] {
    transform: translateY(-2px);
}

/* ========================================
   アクセシビリティ
   ======================================== */

/* リンクのフォーカス表示 */
a:focus-visible[b-fo3c364ikl] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 0.5rem;
}

/* ボタンのフォーカス表示 */
button:focus-visible[b-fo3c364ikl] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
    .blc-benefit-card[b-fo3c364ikl],
    .blc-faq-item[b-fo3c364ikl] {
        border-width: 2px;
    }

    .blc-spectrum-highlight[b-fo3c364ikl] {
        stroke-width: 4;
    }
}

/* モーション軽減設定対応 */
@media (prefers-reduced-motion: reduce) {
    .blc-animate-section[b-fo3c364ikl] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .blc-filter-ray[b-fo3c364ikl],
    .blc-filter-block[b-fo3c364ikl],
    .blc-emit-wave[b-fo3c364ikl],
    .blc-spectrum-highlight[b-fo3c364ikl] {
        opacity: 1 !important;
        animation: none !important;
        transition: none !important;
    }

    .blc-benefit-card[b-fo3c364ikl],
    .blc-faq-item[b-fo3c364ikl],
    .blc-strength-item[b-fo3c364ikl] {
        animation: none;
        transition: none;
    }
}

/* ========================================
   プリントスタイル
   ======================================== */

@media print {
    .blc-animate-section[b-fo3c364ikl] {
        opacity: 1;
        transform: none;
    }

    .blc-benefit-card[b-fo3c364ikl],
    .blc-faq-item[b-fo3c364ikl] {
        box-shadow: none;
        border: 1px solid #000;
    }

    /* CTAセクションは印刷時非表示 */
    section:last-of-type[b-fo3c364ikl] {
        display: none;
    }

    /* SVGアニメーション要素を静的表示 */
    .blc-filter-ray[b-fo3c364ikl],
    .blc-filter-block[b-fo3c364ikl],
    .blc-emit-wave[b-fo3c364ikl],
    .blc-spectrum-highlight[b-fo3c364ikl] {
        opacity: 1 !important;
        animation: none !important;
    }
}
/* /Components/Pages/Public/Products/Lenses/Photochromic.razor.rz.scp.css */
/**
 * 調光レンズページ用CSS
 * Photochromic.razor.css（スコープドCSS）
 *
 * Enhanced Navigation対応のため、ビルド時バンドルに含まれるスコープドCSSを使用
 * @keyframes名は他コンポーネントとの衝突防止のため pcl- プレフィックス付き
 */

/* ========================================
   セクション表示アニメーション（フェードイン）
   ======================================== */

.pcl-animate-section[b-ypp58u29kj] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.pcl-animate-section.is-visible[b-ypp58u29kj] {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   レンズ変色サイクルアニメーション（Section 2）
   ======================================== */

.pcl-lens-color-cycle[b-ypp58u29kj] {
    animation: pcl-lens-color-cycle-b-ypp58u29kj 6s ease-in-out infinite;
}

@keyframes pcl-lens-color-cycle-b-ypp58u29kj {
    0%, 10% {
        fill: rgba(255, 255, 255, 0.15);
        stroke: rgba(148, 163, 184, 0.4);
    }
    35%, 65% {
        fill: rgba(120, 53, 15, 0.35);
        stroke: rgba(180, 83, 9, 0.6);
    }
    90%, 100% {
        fill: rgba(255, 255, 255, 0.15);
        stroke: rgba(148, 163, 184, 0.4);
    }
}

.pcl-uv-ray-pulse[b-ypp58u29kj] {
    transition: opacity 0.5s ease-out;
}

.is-visible .pcl-uv-ray-pulse[b-ypp58u29kj] {
    opacity: 1;
    animation: pcl-uv-ray-pulse-b-ypp58u29kj 3s ease-in-out infinite;
}

@keyframes pcl-uv-ray-pulse-b-ypp58u29kj {
    0%, 100% {
        opacity: 0.3;
        stroke-dashoffset: 0;
    }
    50% {
        opacity: 1;
        stroke-dashoffset: -20;
    }
}

/* ========================================
   調光レンズの仕組みアニメーション（Section 4）
   ======================================== */

/* レンズ着色アニメーション（Step 2の変色表現） */
.pcl-filter-darken[b-ypp58u29kj] {
    transition: opacity 0.8s ease-out;
}

.is-visible .pcl-filter-darken[b-ypp58u29kj] {
    opacity: 1;
    transition-delay: 0.6s;
    animation: pcl-filter-darken-b-ypp58u29kj 4s ease-in-out infinite 1.5s;
}

@keyframes pcl-filter-darken-b-ypp58u29kj {
    0%, 100% {
        fill: rgba(120, 53, 15, 0.1);
    }
    50% {
        fill: rgba(120, 53, 15, 0.4);
    }
}

/* ========================================
   活用シーン波動アニメーション（Section 5）
   ======================================== */

.pcl-emit-wave[b-ypp58u29kj] {
    transition: opacity 0.3s ease-out;
}

.is-visible .pcl-emit-wave[b-ypp58u29kj] {
    opacity: 0.6;
}

.is-visible .pcl-emit-wave-1[b-ypp58u29kj] {
    animation: pcl-emit-wave-b-ypp58u29kj 2.5s ease-out infinite;
    animation-delay: 0.3s;
}

.is-visible .pcl-emit-wave-2[b-ypp58u29kj] {
    animation: pcl-emit-wave-b-ypp58u29kj 2.5s ease-out infinite;
    animation-delay: 0.8s;
}

.is-visible .pcl-emit-wave-3[b-ypp58u29kj] {
    animation: pcl-emit-wave-b-ypp58u29kj 2.5s ease-out infinite;
    animation-delay: 1.3s;
}

@keyframes pcl-emit-wave-b-ypp58u29kj {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}

/* ========================================
   メリットカード
   ======================================== */

.pcl-benefit-card[b-ypp58u29kj] {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pcl-benefit-card:hover[b-ypp58u29kj] {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

/* アイコンのホバー効果 */
.pcl-benefit-card:hover > div:first-child[b-ypp58u29kj] {
    transform: scale(1.08);
}

.pcl-benefit-card > div:first-child[b-ypp58u29kj] {
    transition: transform 0.2s ease;
}

/* ========================================
   当店のご提案（Section 7）
   ======================================== */

.pcl-strength-item[b-ypp58u29kj] {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pcl-strength-item:hover[b-ypp58u29kj] {
    transform: translateX(4px);
}

/* ========================================
   FAQ アコーディオン
   ======================================== */

.pcl-faq-item[b-ypp58u29kj] {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pcl-faq-item:hover[b-ypp58u29kj] {
    border-color: #cbd5e1;
}

.pcl-faq-item[open][b-ypp58u29kj] {
    border-color: #94a3b8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* サマリーのフォーカススタイル */
.pcl-faq-item summary:focus[b-ypp58u29kj] {
    outline: none;
}

.pcl-faq-item summary:focus-visible[b-ypp58u29kj] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 0.75rem;
}

/* FAQ展開アニメーション */
.pcl-faq-item > div[b-ypp58u29kj] {
    animation: pcl-slide-down-b-ypp58u29kj 0.2s ease-out;
}

@keyframes pcl-slide-down-b-ypp58u29kj {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   CTAセクション
   ======================================== */

section:last-of-type a[b-ypp58u29kj] {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

section:last-of-type a:hover[b-ypp58u29kj] {
    transform: translateY(-2px);
}

/* ========================================
   アクセシビリティ
   ======================================== */

/* リンクのフォーカス表示 */
a:focus-visible[b-ypp58u29kj] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 0.5rem;
}

/* ボタンのフォーカス表示 */
button:focus-visible[b-ypp58u29kj] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
    .pcl-benefit-card[b-ypp58u29kj],
    .pcl-faq-item[b-ypp58u29kj] {
        border-width: 2px;
    }

    .pcl-uv-ray-pulse[b-ypp58u29kj] {
        stroke-width: 4;
    }
}

/* モーション軽減設定対応 */
@media (prefers-reduced-motion: reduce) {
    .pcl-animate-section[b-ypp58u29kj] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .pcl-filter-darken[b-ypp58u29kj],
    .pcl-emit-wave[b-ypp58u29kj],
    .pcl-uv-ray-pulse[b-ypp58u29kj],
    .pcl-lens-color-cycle[b-ypp58u29kj] {
        opacity: 1 !important;
        animation: none !important;
        transition: none !important;
    }

    /* ========== 追加: SVG animate による太陽光放射をモーション軽減時に非表示 ========== */
    .pcl-sunlight-wave[b-ypp58u29kj] {
        display: none;
    }

    .pcl-benefit-card[b-ypp58u29kj],
    .pcl-faq-item[b-ypp58u29kj],
    .pcl-strength-item[b-ypp58u29kj] {
        animation: none;
        transition: none;
    }
}

/* ========================================
   プリントスタイル
   ======================================== */

@media print {
    .pcl-animate-section[b-ypp58u29kj] {
        opacity: 1;
        transform: none;
    }

    .pcl-benefit-card[b-ypp58u29kj],
    .pcl-faq-item[b-ypp58u29kj] {
        box-shadow: none;
        border: 1px solid #000;
    }

    /* CTAセクションは印刷時非表示 */
    section:last-of-type[b-ypp58u29kj] {
        display: none;
    }

    /* SVGアニメーション要素を静的表示 */
    .pcl-filter-darken[b-ypp58u29kj],
    .pcl-emit-wave[b-ypp58u29kj],
    .pcl-uv-ray-pulse[b-ypp58u29kj],
    .pcl-lens-color-cycle[b-ypp58u29kj] {
        opacity: 1 !important;
        animation: none !important;
    }

    /* ========== 追加: 太陽光放射は印刷時非表示 ========== */
    .pcl-sunlight-wave[b-ypp58u29kj] {
        display: none;
    }
}
/* /Components/Pages/Public/Products/Lenses/ShadeGlasses.razor.rz.scp.css */
/**
 * 遮光レンズページ用CSS
 * ShadeGlasses.razor.css（スコープドCSS）
 *
 * Enhanced Navigation対応のため、ビルド時バンドルに含まれるスコープドCSSを使用
 * @keyframes名は他コンポーネントとの衝突防止のため sg- プレフィックス付き
 */

/* ========================================
   セクション表示アニメーション（フェードイン）
   ======================================== */

.sg-animate-section[b-byjijddclx] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.sg-animate-section.is-visible[b-byjijddclx] {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   光スペクトルアニメーション（Section 2）
   ======================================== */

.sg-spectrum-highlight[b-byjijddclx] {
    transition: opacity 0.5s ease-out;
}

.is-visible .sg-spectrum-highlight[b-byjijddclx] {
    opacity: 1;
    animation: sg-spectrum-pulse-b-byjijddclx 2s ease-in-out infinite;
}

@keyframes sg-spectrum-pulse-b-byjijddclx {
    0%, 100% {
        opacity: 0.6;
        stroke-width: 2.5;
    }
    50% {
        opacity: 1;
        stroke-width: 3.5;
    }
}

/* ========================================
   レンズフィルターアニメーション（Section 4）
   ======================================== */

.sg-filter-ray[b-byjijddclx] {
    transition: opacity 0.5s ease-out;
}

.is-visible .sg-filter-ray[b-byjijddclx] {
    opacity: 1;
}

/* 入射光線のディレイ */
.is-visible .sg-filter-ray-violet[b-byjijddclx] { transition-delay: 0.2s; }
.is-visible .sg-filter-ray-blue[b-byjijddclx] { transition-delay: 0.35s; }
.is-visible .sg-filter-ray-cyan[b-byjijddclx] { transition-delay: 0.5s; }
.is-visible .sg-filter-ray-green[b-byjijddclx] { transition-delay: 0.65s; }
.is-visible .sg-filter-ray-yellow[b-byjijddclx] { transition-delay: 0.8s; }
.is-visible .sg-filter-ray-red[b-byjijddclx] { transition-delay: 0.95s; }

/* 通過光線のディレイ */
.is-visible .sg-filter-pass-green[b-byjijddclx] { transition-delay: 1.2s; }
.is-visible .sg-filter-pass-yellow[b-byjijddclx] { transition-delay: 1.35s; }
.is-visible .sg-filter-pass-red[b-byjijddclx] { transition-delay: 1.5s; }

/* ブロック表示 */
.sg-filter-block[b-byjijddclx] {
    transition: opacity 0.3s ease-out;
}

.is-visible .sg-filter-block[b-byjijddclx] {
    opacity: 1;
    transition-delay: 1.1s;
    animation: sg-filter-block-flash-b-byjijddclx 0.6s ease-out 1.1s;
}

@keyframes sg-filter-block-flash-b-byjijddclx {
    0% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.3); }
    100% { opacity: 1; transform: scale(1); }
}

/* ========================================
   利用シーン波動アニメーション（Section 5）
   ======================================== */

.sg-emit-wave[b-byjijddclx] {
    transition: opacity 0.3s ease-out;
    transform-box: fill-box;
    transform-origin: center;
}

.is-visible .sg-emit-wave[b-byjijddclx] {
    opacity: 0.6;
}

.is-visible .sg-emit-wave-1[b-byjijddclx] {
    animation: sg-emit-wave-b-byjijddclx 2.5s ease-out infinite;
    animation-delay: 0.3s;
}

.is-visible .sg-emit-wave-2[b-byjijddclx] {
    animation: sg-emit-wave-b-byjijddclx 2.5s ease-out infinite;
    animation-delay: 0.8s;
}

.is-visible .sg-emit-wave-3[b-byjijddclx] {
    animation: sg-emit-wave-b-byjijddclx 2.5s ease-out infinite;
    animation-delay: 1.3s;
}

@keyframes sg-emit-wave-b-byjijddclx {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}

/* ========================================
   メリットカード
   ======================================== */

.sg-benefit-card[b-byjijddclx] {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sg-benefit-card:hover[b-byjijddclx] {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

/* アイコンのホバー効果 */
.sg-benefit-card:hover > div:first-child[b-byjijddclx] {
    transform: scale(1.08);
}

.sg-benefit-card > div:first-child[b-byjijddclx] {
    transition: transform 0.2s ease;
}

/* ========================================
   当店のご提案（Section 7）
   ======================================== */

.sg-strength-item[b-byjijddclx] {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sg-strength-item:hover[b-byjijddclx] {
    transform: translateX(4px);
}

/* ========================================
   FAQ アコーディオン
   ======================================== */

.sg-faq-item[b-byjijddclx] {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sg-faq-item:hover[b-byjijddclx] {
    border-color: #cbd5e1;
}

.sg-faq-item[open][b-byjijddclx] {
    border-color: #94a3b8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* サマリーのフォーカススタイル */
.sg-faq-item summary:focus[b-byjijddclx] {
    outline: none;
}

.sg-faq-item summary:focus-visible[b-byjijddclx] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 0.75rem;
}

/* FAQ展開アニメーション */
.sg-faq-item > div[b-byjijddclx] {
    animation: sg-slide-down-b-byjijddclx 0.2s ease-out;
}

@keyframes sg-slide-down-b-byjijddclx {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   CTAセクション
   ======================================== */

section:last-of-type a[b-byjijddclx] {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

section:last-of-type a:hover[b-byjijddclx] {
    transform: translateY(-2px);
}

/* ========================================
   アクセシビリティ
   ======================================== */

/* リンクのフォーカス表示 */
a:focus-visible[b-byjijddclx] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 0.5rem;
}

/* ボタンのフォーカス表示 */
button:focus-visible[b-byjijddclx] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
    .sg-benefit-card[b-byjijddclx],
    .sg-faq-item[b-byjijddclx] {
        border-width: 2px;
    }

    .sg-spectrum-highlight[b-byjijddclx] {
        stroke-width: 4;
    }
}

/* モーション軽減設定対応 */
@media (prefers-reduced-motion: reduce) {
    .sg-animate-section[b-byjijddclx] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .sg-filter-ray[b-byjijddclx],
    .sg-filter-block[b-byjijddclx],
    .sg-emit-wave[b-byjijddclx],
    .sg-spectrum-highlight[b-byjijddclx] {
        opacity: 1 !important;
        animation: none !important;
        transition: none !important;
    }

    .sg-benefit-card[b-byjijddclx],
    .sg-faq-item[b-byjijddclx],
    .sg-strength-item[b-byjijddclx] {
        animation: none;
        transition: none;
    }
}

/* ========================================
   プリントスタイル
   ======================================== */

@media print {
    .sg-animate-section[b-byjijddclx] {
        opacity: 1;
        transform: none;
    }

    .sg-benefit-card[b-byjijddclx],
    .sg-faq-item[b-byjijddclx] {
        box-shadow: none;
        border: 1px solid #000;
    }

    /* CTAセクションは印刷時非表示 */
    section:last-of-type[b-byjijddclx] {
        display: none;
    }

    /* SVGアニメーション要素を静的表示 */
    .sg-filter-ray[b-byjijddclx],
    .sg-filter-block[b-byjijddclx],
    .sg-emit-wave[b-byjijddclx],
    .sg-spectrum-highlight[b-byjijddclx] {
        opacity: 1 !important;
        animation: none !important;
    }
}
/* /Components/Pages/Public/Reservation/Form.razor.rz.scp.css */
/**
 * 予約フォーム専用CSS
 * Form.razor.css（スコープドCSS）
 *
 * 元ファイル: wwwroot/css/reservation-form.css
 * Phase 3: HeadContent読み込み → スコープドCSSに変換
 * Enhanced Navigation対応のため、ビルド時バンドルに含まれるスコープドCSSを使用
 */

/* 入力フィールドのエラースタイル */
.reservation-input.border-red-500[b-ym8iqa0sl4] {
    border-color: #ef4444 !important;
}

/* 目的選択のチェック状態 */
.purpose-option:has(input:checked)[b-ym8iqa0sl4] {
    border-color: #0ea5e9;
    background-color: #f0f9ff;
}

/* 送信ボタンのスタイル上書き（MudBlazor対策） */
#submit-button[b-ym8iqa0sl4] {
    background-color: #cbd5e1;
    color: #64748b;
}

#submit-button:not(:disabled).bg-sky-600[b-ym8iqa0sl4] {
    background-color: #0284c7 !important;
    color: white !important;
}

#submit-button:not(:disabled).bg-sky-600:hover[b-ym8iqa0sl4] {
    background-color: #0369a1 !important;
}

/* ダミーデータボタン（MudBlazor対策） */
#fill-dummy-data[b-ym8iqa0sl4] {
    background-color: #475569 !important;
    color: white !important;
}

#fill-dummy-data:hover[b-ym8iqa0sl4] {
    background-color: #334155 !important;
}
/* /Components/Pages/Public/Services/Index.razor.rz.scp.css */
/**
 * サービスページ用CSS
 * Index.razor.css（スコープドCSS）
 *
 * 元ファイル: wwwroot/css/services.css
 * Phase 3: HeadContent読み込み → スコープドCSSに変換
 * Enhanced Navigation対応のため、ビルド時バンドルに含まれるスコープドCSSを使用
 *
 * @keyframes名は他コンポーネントとの衝突防止のためプレフィックス付き
 */

/* ========================================
   サービスカード（フィーチャー）
   ======================================== */

.service-card-featured[b-tv842ljcof] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-featured:hover[b-tv842ljcof] {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

/* ========================================
   サービスフローカード
   ======================================== */

.service-flow-card[b-tv842ljcof] {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-flow-card:hover[b-tv842ljcof] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

/* ========================================
   無料サービスカード
   ======================================== */

.free-service-card[b-tv842ljcof] {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.free-service-card:hover[b-tv842ljcof] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

/* アイコンのホバー効果 */
.free-service-card:hover > div:first-child[b-tv842ljcof] {
    transform: scale(1.05);
}

.free-service-card > div:first-child[b-tv842ljcof] {
    transition: transform 0.2s ease;
}

/* ========================================
   FAQ アコーディオン
   ======================================== */

.faq-item[b-tv842ljcof] {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover[b-tv842ljcof] {
    border-color: #cbd5e1;
}

.faq-item[open][b-tv842ljcof] {
    border-color: #94a3b8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* サマリーのフォーカススタイル */
.faq-item summary:focus[b-tv842ljcof] {
    outline: none;
}

.faq-item summary:focus-visible[b-tv842ljcof] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 0.75rem;
}

/* アニメーション */
.faq-item details > div[b-tv842ljcof] {
    animation: services-slideDown-b-tv842ljcof 0.2s ease-out;
}

@keyframes services-slideDown-b-tv842ljcof {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   関連ページナビゲーション
   ======================================== */

.group:hover .group-hover\:translate-x-1[b-tv842ljcof] {
    transform: translateX(0.25rem);
}

/* ========================================
   CTAセクション
   ======================================== */

/* ボタンのホバー効果強化 */
section:last-of-type a[b-tv842ljcof] {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

section:last-of-type a:hover[b-tv842ljcof] {
    transform: translateY(-2px);
}

/* ========================================
   画像ホバー効果
   ======================================== */

.service-card-featured img[b-tv842ljcof] {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   レスポンシブ調整
   ======================================== */

@media (max-width: 640px) {
    /* モバイルでのカード調整 */
    .service-card-featured[b-tv842ljcof] {
        margin-left: -1rem;
        margin-right: -1rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    /* 測定項目グリッドの調整 */
    .grid.gap-3.sm\:grid-cols-2[b-tv842ljcof] {
        gap: 0.5rem;
    }

    .grid.gap-3.sm\:grid-cols-2 > div[b-tv842ljcof] {
        padding: 0.75rem;
    }

    /* サービスフローカードの調整 */
    .service-flow-card[b-tv842ljcof] {
        padding: 1rem;
    }
}

/* ========================================
   アクセシビリティ
   ======================================== */

/* リンクのフォーカス表示 */
a:focus-visible[b-tv842ljcof] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 0.5rem;
}

/* ボタンのフォーカス表示 */
button:focus-visible[b-tv842ljcof] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
    .service-card-featured[b-tv842ljcof],
    .free-service-card[b-tv842ljcof],
    .faq-item[b-tv842ljcof] {
        border-width: 2px;
    }
}

/* モーション軽減設定対応 */
@media (prefers-reduced-motion: reduce) {
    .service-card-featured[b-tv842ljcof],
    .service-flow-card[b-tv842ljcof],
    .free-service-card[b-tv842ljcof],
    .faq-item[b-tv842ljcof],
    img[b-tv842ljcof] {
        animation: none;
        transition: none;
    }
}

/* ========================================
   プリントスタイル
   ======================================== */

@media print {
    .service-card-featured[b-tv842ljcof],
    .service-flow-card[b-tv842ljcof],
    .free-service-card[b-tv842ljcof] {
        box-shadow: none;
        border: 1px solid #000;
    }

    section:last-of-type[b-tv842ljcof] {
        display: none;
    }
}
/* /Components/Shared/Admin/ImageLightboxDialog.razor.rz.scp.css */
/*
    画像Lightboxダイアログ
    ・is-fit    : ダイアログ内に収める（既定。従来の見た目を維持する）
    ・is-actual : 等倍（原寸）表示。はみ出す分はビューポート内でスクロールする
    MudImage が描画する <img> は子コンポーネントの要素のため ::deep で指定する
*/

.ilb-viewport[b-ot5qwlb2gs] {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.ilb-viewport.is-fit[b-ot5qwlb2gs]  img {
    max-width: 100%;
    max-height: 75vh;
    height: auto;
    object-fit: contain;
}

.ilb-viewport.is-actual[b-ot5qwlb2gs] {
    max-height: 76vh;
    overflow: auto;
    background-color: var(--mud-palette-background-gray);
    border-radius: 4px;
}

.ilb-viewport.is-actual[b-ot5qwlb2gs]  img {
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
}

/* 画像そのものを切り替えボタンにする（枠線・背景は持たせない） */
.ilb-image-button[b-ot5qwlb2gs] {
    display: block;
    padding: 0;
    border: 0;
    background: none;
    cursor: zoom-in;
}

.ilb-viewport.is-actual .ilb-image-button[b-ot5qwlb2gs] {
    cursor: zoom-out;
}

.ilb-image-button:focus-visible[b-ot5qwlb2gs] {
    outline: 2px solid var(--mud-palette-primary);
    outline-offset: 2px;
}
/* /Components/Shared/Admin/WearingAttributeChipGroup.razor.rz.scp.css */
/*
    属性選択チップグループのスタイル
    配色は MudBlazor のパレット変数を参照し、ライト／ダークの両テーマへ自動追従させる
    （AdminLayout の PaletteLight / PaletteDark がこれらの変数を切り替える）
*/

.wac-group[b-nw6cvkkqow] {
    padding: 0.625rem 0;
}

.wac-group + .wac-group[b-nw6cvkkqow] {
    border-top: 1px solid var(--mud-palette-lines-default);
}

/* ========== ヘッダー ========== */

.wac-group-header[b-nw6cvkkqow] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.375rem;
}

.wac-group-label[b-nw6cvkkqow] {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--mud-palette-text-primary);
}

.wac-group-mode[b-nw6cvkkqow] {
    padding: 0.0625rem 0.375rem;
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.01em;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 4px;
    color: var(--mud-palette-text-secondary);
    white-space: nowrap;
}

/* 単一／複数の別を、チップ形状だけでなくバッジの形でも示す（色だけに頼らない） */
.wac-group-mode.is-single[b-nw6cvkkqow] {
    border-radius: 999px;
}

.wac-group-count[b-nw6cvkkqow] {
    margin-left: auto;
    font-size: 0.6875rem;
    font-variant-numeric: tabular-nums;
    color: var(--mud-palette-text-secondary);
}

.wac-group-hint[b-nw6cvkkqow] {
    margin: 0 0 0.375rem;
    font-size: 0.6875rem;
    line-height: 1.6;
    color: var(--mud-palette-text-secondary);
}

.wac-group-disabled-reason[b-nw6cvkkqow] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin: 0 0 0.375rem;
    font-size: 0.6875rem;
    line-height: 1.6;
    color: var(--mud-palette-warning);
}

.wac-dot[b-nw6cvkkqow] {
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--mud-palette-warning);
}

/* ========== チップ ========== */

.wac-chips[b-nw6cvkkqow] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.375rem;
}

.wac-chips.is-disabled[b-nw6cvkkqow] {
    opacity: 0.45;
}

.wac-chip-group-label[b-nw6cvkkqow] {
    flex: 0 0 100%;
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--mud-palette-text-secondary);
}

.wac-chip-group-label:first-child[b-nw6cvkkqow] {
    margin-top: 0;
}

/* ========== 追加: AI提案キーワード ========== */

.wac-chip-group-label-ai[b-nw6cvkkqow] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--mud-palette-primary);
}

.wac-chip-group-label-ai[b-nw6cvkkqow]  .mud-icon-root {
    font-size: 0.875rem;
}

/*
   カタログの選択肢と区別できるよう、破線の縁取りで「後から追加された候補」であることを示す。
   選択時は通常チップと同じ表現（primary の縁取り＋淡いティント）へ寄せ、選択状態の読み取りを揃える
*/
.wac-chip-ai[b-nw6cvkkqow] {
    border-style: dashed;
    border-color: rgba(var(--mud-palette-primary-rgb), 0.55);
}

.wac-chip-ai.is-selected[b-nw6cvkkqow] {
    border-style: solid;
}

.wac-chip[b-nw6cvkkqow] {
    display: inline-flex;
    align-items: center;
    gap: 0.3125rem;
    min-height: 32px;
    padding: 0.25rem 0.6875rem;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--mud-palette-text-primary);
    background-color: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-lines-default);
    cursor: pointer;
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

/* 単一選択 = ピル型 */
.wac-chip-single[b-nw6cvkkqow],
.wac-chip-unspecified[b-nw6cvkkqow] {
    border-radius: 999px;
}

/* 複数選択 = 角丸（チェックボックス付き） */
.wac-chip-multi[b-nw6cvkkqow] {
    border-radius: 6px;
    padding-left: 0.4375rem;
}

.wac-chip:hover:not(:disabled)[b-nw6cvkkqow] {
    border-color: var(--mud-palette-primary);
    background-color: var(--mud-palette-action-default-hover);
}

.wac-chip:focus-visible[b-nw6cvkkqow] {
    outline: 2px solid var(--mud-palette-primary);
    outline-offset: 2px;
}

/*
    選択状態は「primary 色の縁取り＋淡いティント＋太字」で表現する。
    primary をベタ塗りにすると、ダークテーマの Primary（#90CAF9）上でコントラスト比が
    確保できないため。この表現は既存の画像選択タイル（.wearing-dialog-image-item.selected）とも揃う
*/
.wac-chip.is-selected[b-nw6cvkkqow] {
    font-weight: 600;
    color: var(--mud-palette-primary);
    background-color: rgba(var(--mud-palette-primary-rgb), 0.14);
    border-color: var(--mud-palette-primary);
    box-shadow: inset 0 0 0 1px var(--mud-palette-primary);
}

.wac-chip.is-selected:hover:not(:disabled)[b-nw6cvkkqow] {
    background-color: rgba(var(--mud-palette-primary-rgb), 0.22);
}

/* 「指定なし」は既定状態であることが分かるよう、選択時も控えめな見た目にする */
.wac-chip-unspecified[b-nw6cvkkqow] {
    color: var(--mud-palette-text-secondary);
    border-style: dashed;
}

.wac-chip-unspecified.is-selected[b-nw6cvkkqow] {
    font-weight: 500;
    color: var(--mud-palette-text-primary);
    background-color: var(--mud-palette-action-default-hover);
    border-color: var(--mud-palette-lines-default);
    border-style: solid;
}

.wac-chip:disabled[b-nw6cvkkqow] {
    opacity: 0.38;
    cursor: not-allowed;
}

/* ========== 複数選択チップのチェックボックス ========== */

.wac-chip-box[b-nw6cvkkqow] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--mud-palette-text-secondary);
    border-radius: 3px;
    transition: border-color 150ms ease, background-color 150ms ease;
}

.wac-chip-box svg[b-nw6cvkkqow] {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: transparent;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 150ms ease;
}

.wac-chip-multi.is-selected .wac-chip-box[b-nw6cvkkqow] {
    border-color: var(--mud-palette-primary);
    background-color: rgba(var(--mud-palette-primary-rgb), 0.2);
}

.wac-chip-multi.is-selected .wac-chip-box svg[b-nw6cvkkqow] {
    stroke: var(--mud-palette-primary);
}

/* ========== レスポンシブ・アクセシビリティ ========== */

/* タッチ操作時はタップ領域を広げる */
@media (pointer: coarse) {
    .wac-chip[b-nw6cvkkqow] {
        min-height: 40px;
        padding: 0.375rem 0.875rem;
        font-size: 0.8125rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wac-chip[b-nw6cvkkqow],
    .wac-chip-box[b-nw6cvkkqow],
    .wac-chip-box svg[b-nw6cvkkqow] {
        transition: none;
    }
}
/* /Components/Shared/Admin/WearingAttributeSelector.razor.rz.scp.css */
/*
    「自分で属性を指定」モードの属性選択パネル
    情報密度の高い管理画面向けに、余白は 4px グリッドで詰め気味に取る
*/

.was-root[b-k2k6cme0m1] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ========== セクション見出し ========== */

.was-section-head[b-k2k6cme0m1] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 0.5rem;
    color: var(--mud-palette-text-primary);
}

.was-section-title[b-k2k6cme0m1] {
    font-size: 0.8125rem;
    font-weight: 600;
}

.was-section-note[b-k2k6cme0m1] {
    font-size: 0.6875rem;
    color: var(--mud-palette-text-secondary);
}

/* ========== プリセット ========== */

.was-presets[b-k2k6cme0m1] {
    padding: 0.75rem;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 8px;
    background-color: var(--mud-palette-background-gray);
}

.was-preset-list[b-k2k6cme0m1] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.was-preset[b-k2k6cme0m1] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    min-height: 34px;
    padding: 0.25rem 0.75rem 0.25rem 0.5rem;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--mud-palette-text-primary);
    background-color: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.was-preset:hover[b-k2k6cme0m1] {
    border-color: var(--mud-palette-primary);
    background-color: var(--mud-palette-action-default-hover);
}

.was-preset:focus-visible[b-k2k6cme0m1] {
    outline: 2px solid var(--mud-palette-primary);
    outline-offset: 2px;
}

.was-preset.is-selected[b-k2k6cme0m1] {
    color: var(--mud-palette-primary);
    background-color: rgba(var(--mud-palette-primary-rgb), 0.14);
    border-color: var(--mud-palette-primary);
    box-shadow: inset 0 0 0 1px var(--mud-palette-primary);
}

/* ========== ツールバー ========== */

.was-toolbar[b-k2k6cme0m1] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.was-selected-count[b-k2k6cme0m1] {
    font-size: 0.75rem;
    font-variant-numeric: tabular-nums;
    color: var(--mud-palette-text-secondary);
}

.was-selected-count strong[b-k2k6cme0m1] {
    font-size: 0.875rem;
    color: var(--mud-palette-primary);
}

/* ========== 変更: カテゴリの折りたたみ（自前アコーディオン） ==========

   ねらい
   1. 「開閉できる」ことを見出し左のシェブロンで明示する（回転で開閉状態も示す）
   2. 群ごとにアクセント色を変え、どの領域を見ているかを一目で判別できるようにする
   3. 展開領域の背景色を見出し・ダイアログ本体と変え、範囲を視認できるようにする

   アクセント色は固定色相を text-primary と color-mix して求める。
   ライトテーマでは暗く、ダークテーマでは明るく寄るため、テーマ切替に自動追従する
   （MudBlazor のパレット変数にはテーマ間で色相が変わるもの（Secondary）があるため使用しない）
*/

.was-groups[b-k2k6cme0m1] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.was-group[b-k2k6cme0m1] {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 10px;
    background-color: var(--mud-palette-surface);
    transition: border-color 150ms ease, box-shadow 150ms ease;

    --was-hue: #3b82f6;
    --was-accent: color-mix(in srgb, var(--was-hue) 74%, var(--mud-palette-text-primary));
    --was-tint-weak: color-mix(in srgb, var(--was-hue) 7%, transparent);
    --was-tint: color-mix(in srgb, var(--was-hue) 15%, transparent);
    --was-body: color-mix(in srgb, var(--was-hue) 5%, var(--mud-palette-background-gray));
}

/* 群ごとのアクセント色相 */
.was-group-subject[b-k2k6cme0m1] {
    --was-hue: #3b82f6;
}

/* ティールは明度が高く、ライトテーマでコントラストが落ちるため濃いめの色相を使う */
.was-group-scene[b-k2k6cme0m1] {
    --was-hue: #0d9488;
}

.was-group-photo[b-k2k6cme0m1] {
    --was-hue: #a855f7;
}

/* 左端のアクセントバー（折りたたみ中は控えめ、展開中は明確に） */
.was-group[b-k2k6cme0m1]::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background-color: var(--was-accent);
    opacity: 0.4;
    transition: opacity 150ms ease;
}

.was-group.is-open[b-k2k6cme0m1] {
    border-color: color-mix(in srgb, var(--was-accent) 40%, var(--mud-palette-lines-default));
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.was-group.is-open[b-k2k6cme0m1]::before {
    opacity: 1;
}

/* ========== 見出し（開閉ボタン） ========== */

.was-group-head[b-k2k6cme0m1] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 42px;
    padding: 0.4375rem 0.75rem 0.4375rem 0.9375rem;
    font-family: inherit;
    text-align: left;
    color: var(--mud-palette-text-primary);
    background-color: var(--was-tint-weak);
    border: 0;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    transition: background-color 150ms ease;
}

.was-group-head:hover[b-k2k6cme0m1] {
    background-color: var(--was-tint);
}

.was-group-head:focus-visible[b-k2k6cme0m1] {
    outline: 2px solid var(--mud-palette-primary);
    outline-offset: -2px;
}

.was-group.is-open .was-group-head[b-k2k6cme0m1] {
    background-color: var(--was-tint);
    border-bottom-color: color-mix(in srgb, var(--was-accent) 28%, transparent);
}

.was-group-chevron[b-k2k6cme0m1] {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--was-accent);
    transition: transform 180ms ease;
}

.was-group.is-open .was-group-chevron[b-k2k6cme0m1] {
    transform: rotate(90deg);
}

.was-group-chevron svg[b-k2k6cme0m1] {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.was-group-icon[b-k2k6cme0m1] {
    display: inline-flex;
    flex: 0 0 auto;
    color: var(--was-accent);
}

.was-group-title[b-k2k6cme0m1] {
    flex: 0 0 auto;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.4;
}

.was-group-badge[b-k2k6cme0m1] {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    /* バッジは小さな文字のため、アクセント色を本文色寄りに寄せて 4.5:1 以上を確保する */
    color: color-mix(in srgb, var(--was-accent) 55%, var(--mud-palette-text-primary));
    background-color: var(--was-tint);
    border: 1px solid color-mix(in srgb, var(--was-accent) 35%, transparent);
    border-radius: 999px;
}

/* 折りたたみ中は選択内容の要約を見出しに出す（開かずに中身を把握できるようにする） */
.was-group-summary[b-k2k6cme0m1] {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    font-size: 0.6875rem;
    line-height: 1.5;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--mud-palette-text-secondary);
}

.was-group-state[b-k2k6cme0m1] {
    flex: 0 0 auto;
    margin-left: auto;
    padding-left: 0.5rem;
    font-size: 0.6875rem;
    color: var(--mud-palette-text-secondary);
}

/* ========== 展開領域 ========== */

.was-group-body[b-k2k6cme0m1] {
    padding: 0.125rem 0.9375rem 0.625rem;
    background-color: var(--was-body);
    animation: was-group-expand-b-k2k6cme0m1 160ms ease;
}

.was-group-body[hidden][b-k2k6cme0m1] {
    display: none;
}

@keyframes was-group-expand-b-k2k6cme0m1 {
    from {
        opacity: 0;
        transform: translateY(-2px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.was-categories[b-k2k6cme0m1] {
    display: flex;
    flex-direction: column;
}

@media (prefers-reduced-motion: reduce) {
    .was-preset[b-k2k6cme0m1],
    .was-group[b-k2k6cme0m1],
    .was-group[b-k2k6cme0m1]::before,
    .was-group-head[b-k2k6cme0m1],
    .was-group-chevron[b-k2k6cme0m1] {
        transition: none;
    }

    .was-group-body[b-k2k6cme0m1] {
        animation: none;
    }
}
/* /Components/Shared/Admin/WearingPromptPreview.razor.rz.scp.css */
/*
    生成プロンプトのプレビュー
*/

.wpp-root[b-qnda9l2tga] {
    border-radius: 8px;
}

.wpp-title[b-qnda9l2tga] {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

.wpp-note[b-qnda9l2tga] {
    font-size: 0.6875rem;
    font-weight: 400;
    color: var(--mud-palette-text-secondary);
}

.wpp-prompt[b-qnda9l2tga] {
    max-height: 320px;
    margin: 0;
    padding: 0.75rem;
    overflow: auto;
    font-family: "Consolas", "Menlo", "Noto Sans JP", monospace;
    font-size: 0.75rem;
    line-height: 1.7;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    color: var(--mud-palette-text-primary);
    background-color: var(--mud-palette-background-gray);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 6px;
}

.wpp-length[b-qnda9l2tga] {
    margin: 0.375rem 0 0;
    font-size: 0.6875rem;
    font-variant-numeric: tabular-nums;
    text-align: right;
    color: var(--mud-palette-text-secondary);
}
/* /Components/UI/Admin/VideoConverter.razor.rz.scp.css */
/* ========== VideoConverter スコープドCSS ========== */

/* ========== ファイル選択ドロップゾーン ========== */

.vc-drop-zone[b-ga1l56uzu4] {
    position: relative;
    border: 2px dashed var(--mud-palette-lines-default);
    border-radius: 12px;
    padding: 48px 24px;
    text-align: center;
    transition: all 0.2s ease;
    background-color: var(--mud-palette-background-gray);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.vc-drop-zone:hover[b-ga1l56uzu4],
.vc-drop-zone.vc-drag-over[b-ga1l56uzu4] {
    border-color: var(--mud-palette-primary);
    background-color: var(--mud-palette-primary-hover);
}

.vc-drop-zone.vc-drag-over[b-ga1l56uzu4] {
    border-style: solid;
    transform: scale(1.01);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--mud-palette-primary) 25%, transparent);
}

.vc-file-input[b-ga1l56uzu4] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.vc-drop-content[b-ga1l56uzu4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

/* ========== ローディング ========== */

.vc-loading[b-ga1l56uzu4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}

/* ========== 動画プレビュー ========== */

.vc-video-preview-container[b-ga1l56uzu4] {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
}

.vc-video-preview[b-ga1l56uzu4] {
    width: 100%;
    max-height: 300px;
    display: block;
    object-fit: contain;
}

/* ========== サムネイルストリップ ========== */

.vc-thumbnail-strip[b-ga1l56uzu4] {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    border-radius: 4px;
    background-color: var(--mud-palette-background-gray);
    padding: 4px;
    scrollbar-width: thin;
}

/* JSが動的に注入するサムネイルキャンバス要素 → ::deep が必要 */
.vc-thumbnail-strip[b-ga1l56uzu4]  .video-converter-thumbnail {
    flex-shrink: 0;
    border-radius: 2px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.vc-thumbnail-strip[b-ga1l56uzu4]  .video-converter-thumbnail:hover {
    opacity: 0.7;
}

/* ========== ポスター画像プレビュー ========== */

.vc-poster-preview-area[b-ga1l56uzu4] {
    text-align: center;
}

.vc-poster-live-preview[b-ga1l56uzu4] {
    max-height: 180px;
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid var(--mud-palette-lines-default);
    object-fit: contain;
}

/* ========== プレビュー時刻表示 ========== */

.vc-time-display[b-ga1l56uzu4] {
    font-size: 0.75rem;
    font-family: 'Consolas', 'Monaco', monospace;
    color: var(--mud-palette-text-secondary);
    background-color: var(--mud-palette-background-gray);
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

/* ========== 変換中 ========== */

.vc-converting[b-ga1l56uzu4] {
    padding: 24px 0;
}

/* ========== 変換完了 ========== */

.vc-complete[b-ga1l56uzu4] {
    padding: 8px 0;
}
