@charset "UTF-8";
#contents {
}	
#page {
	background: linear-gradient(#00000038, #0093e770, #34488161, black), url(../images/shared/bg_page.jpg);
}
/* ------ 泡（大きいマル）のスタイル ------ */
.bubble{ 
  position:absolute;
  background:rgba(255,255,255,0.1);/*泡の色・濃さ*/
  border:thin solid rgb(2 46 78 / 30%);/*線の色・濃さ*/
  border-radius:8px;/*丸み*/
  box-shadow: 0 0 1px 1px rgb(28 32 129 / 10%);/*泡の光彩（外側）*/
}
 
/* ------ 光（小さいマル）のスタイル ------ */
.bubble:after{ 
  content:"";
  display:block;
  height:3px;/*光の高さ*/
  width:3px;/*光の幅*/
  border-radius:2px;/*丸み*/
  background:rgb(255 255 255 / 30%); /*光の濃さ*/
}