.bg_wh {
    background: url(/* 画像URL */);
    background-size: cover;
    position: relative;
    height: 100%;
}
.bg_wh::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255,255,255,0.50);
	z-index: 20;
}
.zin50{
	z-index: 50;
}
.award__end {
  border-radius: 1em 1em 1em 1em;
  background: #72C6EF;
  position: relative;
  display: flex;
  padding: 0.5em 0.5em 0.75em;
  justify-content: center;
  box-shadow: 0 0 8px gray;
 margin-top: 200px;
}

    /* スマホ用のスタイル */
    @media (max-width: 640px) {
     .award__end  {
  border-radius: 1em 1em 1em 1em;
  background: #72C6EF;
  position: relative;
  display: flex;
  padding: 0.5em 0.5em 0.75em;
  justify-content: center;
  box-shadow: 0 0 8px gray;
 margin-top: 100px;
      }
		
    }.sp_br {
  display: none; //768px/* 以上では改行タグを無効に。 */
}
@media screen and (max-width: 768px) {
  .sp_br {
    display: block; //768px/* 未満で改行タグを有効に。 */
  }
}
