/* /Components/Layout/IdentityLayout.razor.rz.scp.css */
/* ========== 追加: Blazorエラーバナー（#blazor-error-ui）の既定非表示 ========== */
/*
    Blazorテンプレートでは #blazor-error-ui { display: none; } により
    エラーバナーは通常時非表示だが、本プロジェクトでは該当ルールが
    読み込まれるCSSのどこにも存在せず（MainLayout_razor.css は未参照）、
    /Account 系ページでバナーが常時表示される既存バグがあった。
    IdentityLayout のスコープドCSSとして復元する。
    実エラー発生時は blazor.web.js がインラインスタイルで display を
    上書きしてバナーを表示するため、エラー通知機能は維持される。
*/
#blazor-error-ui[b-3fp7ru06ar] {
    color-scheme: light only;
    background: lightyellow;
    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 .dismiss[b-3fp7ru06ar] {
    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/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;
}
