.image-switch {
    position: relative;
    display: inline-block;
}

/* クリック後の画像を最初は非表示 */
.image-switch .clicked {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.0s ease-in-out;
}

/* クリック中のみimage2.jpegを表示 */
.image-switch:active .clicked {
    opacity: 1;
}

/* クリック中は通常の画像を非表示 */
.image-switch:active .normal {
    opacity: 0;
}
