.a_img_member_rainbow_0 {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  border: none;
    &::before  {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: #ffffff00;
      transform: rotate(150deg);
    }
    &::after  {
      content: '';
      position: absolute;
      left: 5px;
      top: 5px;
      width: calc(100% - 10px);
      height: calc(100% - 10px);
      border-radius: 50%;
      background: #ffffff00;
    }
}
.a_img_member_rainbow {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  border: none;
    &::before  {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: conic-gradient( rgb(255, 71, 71) 0%, 
                                  rgb(255, 0, 0) 34%, 
                                  rgb(255, 223, 55) 67%, 
                                  rgb(255, 71, 71) 100% );
      transform: rotate(150deg);
    }
    &::after  {
      content: '';
      position: absolute;
      left: 5px;
      top: 5px;
      width: calc(100% - 10px);
      height: calc(100% - 10px);
      border-radius: 50%;
      background: #ffffff;
    }
}
.a_img_member_rainbow_bw {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  border: none;
    &::before  {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: conic-gradient( rgb(177, 177, 177) 0%, 
                                  rgb(108, 108, 108) 34%, 
                                  rgb(225, 225, 225) 67%, 
                                  rgb(177, 177, 177) 100% );
      transform: rotate(150deg);
    }
    &::after  {
      content: '';
      position: absolute;
      left: 5px;
      top: 5px;
      width: calc(100% - 10px);
      height: calc(100% - 10px);
      border-radius: 50%;
      background: #ffffff;
    }
}
.img_member_rainbow {
  position: absolute;
  border-radius: 50%;
  left: 8px;
  top: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  z-index: 1;
}


