.loader-wrap {	position: fixed;	display: flex;    align-items: center;    justify-content: center;    width: 100%;    height: 100%;    background: #fff;/*★背景カラー*/	z-index: 10000;	/*background-image: url(../img/back_img01.jpg);	background-size: cover;*/}/*ローディングイメージを変える場合、以下を変える*/.loader {  width: 12px;  height: 12px;  border-radius: 50%;  display: block;  margin:15px auto;  position: relative;  color: #000;  box-sizing: border-box;  animation: animloader 1s linear infinite alternate;}@keyframes animloader {  0% {    box-shadow: -38px -6px, -14px 6px,  14px -6px;  }  33% {    box-shadow: -38px 6px, -14px -6px,  14px 6px;  }  66% {    box-shadow: -38px -6px, -14px 6px, 14px -6px;  }  100% {    box-shadow: -38px 6px, -14px -6px, 14px 6px;  }}