/** ランダム矩形 **/
.rect {
    position: absolute;
    cursor: pointer;
    width: 0;
    opacity: 0;
    transition: width 0.2s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%); /* 中心基準に補正 */
    z-index: 1;
}
