/* ===== STEP3 フレーム選択用CSS ===== */

/* 情報モーダル（閉じるボタンのみ）では使用ボタンを非表示 */
.frameinfo.info-open .modal__content .btn.mat a.use {
    display: none;
}

/* ===== フレーム一覧のインアクティブ状態 ===== */

/* インアクティブなフレーム（外寸制限を超えるor見え幅未登録） */
.frame_choice .thum_wrap.nonactive {
    opacity: 0.4;
    pointer-events: none;
    position: relative;
}

.frame_choice .thum_wrap.nonactive::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(200, 200, 200, 0.3);
    z-index: 1;
}

.frame_choice .thum_wrap.nonactive a {
    cursor: not-allowed;
    pointer-events: none;
}

/* 選択不可のフレームはホバー効果を無効化 */
.frame_choice .thum_wrap.nonactive:hover {
    transform: none;
    box-shadow: none;
}
