/* ローディング画面のオーバーレイ */
  
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff; /* 背景色は必要に応じて調整 */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../imgs/img-loading-section-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 999;
  }
  
  /* ローディングスピナーのスタイル（例: CSS アニメーションの円形スピナー） */
  #loading-spinner {
    z-index: 999;
  }
  .loading-section {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .loading-section-left {
    width: 12.152777777777777vw;
    font-size: 0.6944444444444444vw;
    margin-left: 2.7777777777777777vw;
  }
  .loading-section-center {
    width: 29.72222222222222vw;
  }
  .loading-section-right {
    width: 10.069444444444445vw;
    font-size: 0.6944444444444444vw;
    margin-right: 2.7777777777777777vw;
  }
  
  .loading-svg-wrapper {

  }
  @media screen and (max-width: 751px){
    #loading-overlay {
      width: 100svw;
      height: 100svh;
    }
    .loading-section-wrapper {
      font-size: 2.1333333333333333vw;
    }
    .loading-section {
      width: 100svw;
      height: 100svh;
      justify-content: center;
      align-items: center;
      display: flex;
      flex-direction: column;
    }
    .loading-section-center {
      width: 60.8vw;
      margin: 30vh 0;
    }
    .loading-section-left {
      width: unset;
      font-size: 2.1333333333333333vw;
      margin-left: unset;
    }
    .loading-section-right {
      width: unset;
      font-size: 2.1333333333333333vw;
      margin-right: unset;
    }
  }