        [v-cloak] {
            display: none;
        }

        /* モーダル共通スタイル */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }

        .modal-content {
            background: #fff;
            border-radius: 12px;
            max-width: 600px;
            width: 90%;
            max-height: 85vh;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .modal-header {
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 {
            margin: 0;
            font-size: 1.2rem;
            color: #333;
        }

        .modal-header .close-btn {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #999;
            cursor: pointer;
        }

        .modal-body {
            padding: 20px;
            overflow-y: auto;
            flex-grow: 1;
        }

        .modal-footer {
            padding: 15px 20px;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        /* 声優モーダル用調整（白テーマ） */
        .voice-modal-content {
            max-width: 800px;
        }

        .voice-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px 20px;
        }

        @media (max-width: 600px) {
            .voice-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .voice-item {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }

        .voice-item:hover {
            background: #f5f5f5;
        }

        .voice-item.is-active {
            background: #f0f7ff;
        }

        .voice-check-icon {
            width: 22px;
            height: 22px;
            margin-right: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .voice-uncheck-circle {
            width: 18px;
            height: 18px;
            border: 2px solid #ddd;
            border-radius: 4px;
            /* チェックボックス風 */
        }

        .voice-checked-filled {
            width: 20px;
            height: 20px;
            background: #007bff;
            color: #fff;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .voice-name {
            font-size: 14px;
            color: #333;
            flex-grow: 1;
        }

        .voice-count {
            font-size: 12px;
            color: #999;
            margin-left: 5px;
        }

        /* チップ・ラベル等 */
        .selected-tag-chip {
            display: inline-flex;
            align-items: center;
            background: #f0f0f0;
            color: #333;
            padding: 4px 10px;
            border-radius: 20px;
            margin: 2px;
            font-size: 0.8rem;
        }

        .tag-select-trigger {
            padding: 8px 16px;
            background: #eee;
            border: 1px solid #ccc;
            cursor: pointer;
            margin-top: 10px;
        }