/* ローディング画面用のCSS */

/* ローディング画面の背景 */
#loading-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.667);
    z-index: 1200;
    display: none;
  }
  
  /* ローディングコンテンツを中央へ */
  .loading {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    color: #fefefe;
  }
  
  /* お待ち下さい文字列定義 */
  .please_wait{
    width: 260px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 22px;
    color: rgb(0, 0, 0);
  }
  
  /* ドットを回転させる領域定義 */
  .circle {
    position: relative;
    width: 100%;
    height: 160px;
  }
  
  /* ドット間の距離などを定義 */
  .loading_dot {
    position: absolute;
    display: inline-block;
    top: 0;
    left: calc(50% - 10px);
    width: 20px;  /* dot同士の距離を変更はここ */
    height: 50px; /* dot同士の距離は変更はここ */
    font-size: 16px;
    text-align: center;
    transform-origin: bottom center;
    border-radius: 50%;
  }
  
  /* ドットのサイズ定義 */
  .dot {
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
  }
  
  /* ドットの色を定義 */
  .loading_dot:nth-child(1) .dot { background-color: rgb(255, 0, 0); }
  .loading_dot:nth-child(2) .dot { background-color: rgb(255, 192, 0); }
  .loading_dot:nth-child(3) .dot { background-color: rgb(0, 112, 192); }
  .loading_dot:nth-child(4) .dot { background-color: rgb(146, 208, 80); }
  .loading_dot:nth-child(5) .dot { background-color: rgb(255, 18, 113); }
  .loading_dot:nth-child(6) .dot { background-color: rgb(0, 176, 240); }
  
  /* アニメーション呼び出し */
  .loading_dot:nth-child(1) { animation: letterRotate1 1.5s ease-in-out infinite; }
  .loading_dot:nth-child(2) { animation: letterRotate2 1.5s ease-in-out infinite; }
  .loading_dot:nth-child(3) { animation: letterRotate3 1.5s ease-in-out infinite; }
  .loading_dot:nth-child(4) { animation: letterRotate4 1.5s ease-in-out infinite; }
  .loading_dot:nth-child(5) { animation: letterRotate5 1.5s ease-in-out infinite; }
  .loading_dot:nth-child(6) { animation: letterRotate6 1.5s ease-in-out infinite; }
  
  /* 各ドットの回転位置指定 */
  @keyframes letterRotate1 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes letterRotate2 {
    0% { transform: rotate(60deg); }
    100% { transform: rotate(420deg); }
  }
  
  @keyframes letterRotate3 {
    0% { transform: rotate(120deg); }
    100% { transform: rotate(480deg); }
  }
  
  @keyframes letterRotate4 {
    0% { transform: rotate(180deg); }
    100% { transform: rotate(540deg); }
  }
  
  @keyframes letterRotate5 {
    0% { transform: rotate(240deg); }
    100% { transform: rotate(600deg); }
  }
  
  @keyframes letterRotate6 {
    0% { transform: rotate(300deg); }
    100% { transform: rotate(660deg); }
  }
  