/* 画面前面の全体に表示 */
#big_img_box {
    width: 100%;
    height: 100%;
    background: #FFF;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
/* 画面の中心にローディング画像を表示する */
#big_img {
    top: 50%;
    left: 50%;
    width: auto;
}

.naire_img {
    cursor: pointer;
}