@charset "utf-8";

/* ローディングのオーバーレイ */
.loading-overlay {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100vw;    
  height: 100vh;  
  background: rgba(255, 255, 255, 0.7);
  z-index: 9999;   
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ローディングアイコン */
.loading-icon {
  color: inherit;
  opacity:0.5;
}

/* 非表示にするためのクラス */
.d-none {
  display: none !important;
}
