 #popup {
    display: none; /* 初期状態では非表示 */
    position: fixed; /* 画面に固定 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 中央に配置 */
    background-color: rgba(0, 0, 0, 0.5); /* 半透明の背景 */
    border: 1px solid black;
    padding: 20px;
    z-index: 1000; /* 他の要素より前面に表示 */
    width: 100%;
  }
  @media screen and (min-width: 768px) {
    #popup {
        width: 50%;
    }
  }

  #overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明の背景 */
    z-index: 999;
  } 

  #popvideo {
    width: 100%;
  }
  
  #divLR{
     display: flex;
  }

  #divleft{
    width:50%;
  }
  
  #divright{
    width:50%;
    text-align: right;
  }
  @media screen and (min-width: 768px) {
    #logoimg{
        width: 50%;
    }
  }