body {
  font-family: Meiryo, 'メイリオ', 'Lucida Grande', Verdana, 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'ＭＳ Ｐゴシック', sans-serif;
  background-color: #1c1c1d;
  color:#ffffff;
  font-size: 90%;
}
/*---------------------------------------------------------------------------------*/
/* ログイン画面で使用するクラス */
  /* ログイン画面タイトル */
  .initial-title {
    position: relative;
    margin: 20px auto;
    width: 500px;
    padding: 12px 6px 12px;
    /*background:  rgb(36, 59, 78);*/
    color:white;
    border-radius: 5px;
  }
  /* ログイン画面ヘルプ欄 */
  .initial-help {
    position: relative;
    margin: 20px auto;
    width: 800px;
    font-size: 90%;
    padding: 12px 6px 12px;
    color:white;
    border-radius: 5px;
  }
  .inputBox {
    margin: 20px 0 20px 0;
  }
/*---------------------------------------------------------------------------------*/
/* フッターグローバルメニューコンテナ */
footer{
  z-index: 999;
  width: 100%;
  text-align: center;
  padding: 30px 0;
  position: absolute;/*←絶対位置*/
  bottom: 0; /*下に固定*/
  display: block;
  margin-left: auto;
  margin-right: auto;
}  
/*---------------------------------------------------------------------------------*/
/* 共通クラス */
  /* ポイント（指マーク） */
  .point {
    cursor: pointer; 
  }
/*---------------------------------------------------------------------------------*/
/* JWCコンテナ */  
#main_gridcontainer{
  display:grid;
  grid-template-rows: 1fr;
  grid-template-columns: 154px 1fr 260px;
  grid-auto-flow: column dense;
  grid-template-areas: 
    'Item2 Item3 Item5';
}
#main-containar-button{
  grid-area: Item1;
}
#main-memberinfo{
  grid-area: Item2;
  color:#ffffff;
  font-size: 80%;
  /*background-color:rgb(91, 92, 97,0.7);*/
  margin: 2px 0 0 0;
  padding: 0 2px 0 2px;
}
#main-roominfo{
  grid-area: Item3;
}
/* チャットメッセージコンテナ */
#main-message{
  grid-area: Item5;
  z-index: 998;
  width: 100%;
  margin: 0 0 0 0;
}

/* 会議参加者一覧コンテナで使用するクラス */
  /* 参加者親要素div */
  .member-div {
    position: relative;
    margin: 4px 2px 4px 2px;
  }
  /* 参加者子要素　ニックネーム(自分） */
  .my-name {
    color: #ffffff;
    font-size: 80%;
  }
  /* 参加者子要素　ニックネーム(相手） */
  .member-name {
    color: #ccffff;
    font-size: 80%;
  }
  /* 参加者子要素　マイク状態 */
  .member-speaker {
    position: absolute;
    top: 0px;
    left: 84px;
  }
  /* 参加者子要素　ビデオ状態 */
  .member-video {
    position: absolute;
    top: 0px;
    left: 102px;
  }
  /* 参加者子要素　在席状態 */
  .member-attend {
    position: absolute;
    top: 0px;
    left: 120px;
  }
  /* 参加者子要素　個別ボイスチャット状態 */
  .member-voice {
    position: absolute;
    top: 0px;
    left: 138px;
  }
  /*---------------------------------------------------------------------------------*/
  /* リーモート映像コンテナで使用するクラス */
  .my-div {
    position: relative;
    display: inline-block;
    margin: 2px 0 2px 0;
  }
  /* リモートビデオ親要素div */
  .remote {
    position: relative;
    display: inline-block;
    margin: 2px 2px 2px 2px;
  }
  /* リモートビデオ子要素　映像 */
  .remote-video {
    position: relative;
  }
  /* リモートビデオ子要素　ニックネーム */
  .member-userName {
    position: absolute;
    top: 2px;
    left: 0px;
    font-size: 80%;
    color: rgb(255, 255, 255);
    background: rgba(0,0,0,.5);
  }
  /* リモートビデオ子要素　マイク状態 */
  .member-mute {
    position: absolute;
    top: 20px;
    left: 0px;
    font-size: 80%;
    color:rgb(255, 255, 255);
    background: rgba(0,0,0,.5);
  }
  /* 画面共有ビデオ幅 */
  .screenshare-video {
    width: 100%;
  }
/*---------------------------------------------------------------------------------*/
/* チャットメッセージコンテナで使用するクラス */
  /* チャットメッセージ　送信先 */
  .message_dest{
    width:260px;
    font-family: Meiryo;
  }
  /* チャットメッセージ　メッセージ入力欄 */
  .message-input {
    width:255px;
    height: calc( 1.2em * 2 );
    line-height: 1.2;
    font-family: Meiryo;
    font-size: 14px;
    margin: 0 0 0 0;
    background: white;
    /*border: 1px solid #ebebeb;
    border-radius: 4px;*/
    -webkit-box-shadow: inset 0 -1px #ebebeb;
    box-shadow: inset 0 -1px #ebebeb;
  }
  .message-input:focus {
    border-color: #a2a4a5;
    outline: none;
    -webkit-box-shadow: inset 0 -2px #a2a4a5;
    box-shadow: inset 0 -2px #a2a4a5;
  }
  /* チャットメッセージ表示コンテナ */
  .chat_sys_msg {
    position: relative;
    width: 100%;
    overflow: auto;
    height: 85vh;
    margin: -2px 0 0 0;
    background-color:rgb(91, 92, 97);
  }
  /* チャットメッセージ表示コンテナ 
  * チャットメッセージ領域の枠を点線にするクラス
  * 領域に入った際に、このクラスを追加
  * 領域から離れたとき、このクラスを削除
  */
  .chat_box {
    position: relative;
    background-color:#dddada;
  }
  .chat_box::before {
    content: "ここにファイルをドロップ";
    color:rgb(161, 158, 158);
    font-size: 2.0em;
    display: block;
    background-image: linear-gradient(to right, rgb(136, 133, 133), rgb(136, 133, 133) 10px, transparent 10px, transparent 10px),
    linear-gradient(to right, rgb(136, 133, 133), rgb(136, 133, 133) 10px, transparent 10px, transparent 10px),
    linear-gradient(to bottom, rgb(136, 133, 133), rgb(136, 133, 133) 10px, transparent 10px, transparent 10px),
    linear-gradient(to bottom, rgb(136, 133, 133), rgb(136, 133, 133) 10px, transparent 10px, transparent 10px);
    background-size: 14px 4px, 14px 4px, 4px 14px, 4px 14px;
    background-position: left top, left bottom, left top, right top;
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
  }
  /* チャットメッセージ（自分）本文 */
  .msgviewdata0 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    margin: 0 0 0 0;
    color: #ffffff;
    font-size: 80%;
    font-weight: bold;
  }
  /* チャットメッセージ（相手）本文 */    
  .msgviewdata1 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    margin: 0 0 0 0;
    color:#ccffff;
    font-size: 80%;
    font-weight: bold;
  }
  /* チャットメッセージ（自分）タイトル */
  .msgviewtitle { 
    width: 100%;
    margin: 0 0 0 0;
    color: #ffffff;
    font-size: 80%;
    font-weight: bold;
  }
  /* チャットメッセージ（相手）タイトル */
  .msgviewtitle_member { 
    width: 100%;
    margin: 0 0 0 0;
    color: #ccffff;
    font-size: 80%;
    font-weight: bold;
  }
  /* チャットメッセージ　時刻 */
  .msgviewtime {
    width: 100%;
    margin: 0 0 0 0;
    color: #d9d9da;
    font-size: 40%;
    font-weight: bold;
  }
  /* チャットメッセージ ダウンロードこちら */    
  .msgviewclick {
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    margin: 0 0 0 0;
    color:#ccffff;
    font-size: 80%;
    font-weight: bold;
    text-decoration: underline solid white;
  }
/* フッターメニューコンテナ内で使用するクラス */
  /* フッターグローバルメニューボタン親要素 */
  .global-menu {
    display: inline-block;
    vertical-align: top;
    font-size: 75%;
    text-align: center;
    width: 50px;
    height: 50px;
    margin: 0 0 0 2px;
  }
  /* フッターグローバルメニューボタン子要素　リモートコンテナ表示 */
  .circle_webiner_icon {
    position		: relative;
	/* 子要素（縦軸：中央揃い、横軸：左寄せ */
    display			: flex;
    align-items		: center;
    justify-content	: flex-start;
  }
  .circle_webiner{
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(67, 67, 70);
    background-image: url("../webiner_member.png");
    background-position:center center;
    background-size: auto;
    background-repeat: no-repeat; 
    position		: relative;
  }
  .circle_webiner:hover {
    background-color: rgb(169, 169, 169,0.7);
  }
  .circle_webiner_newBadge{
    display			: block;
    width			: 15px;
    height			: 15px;
    margin			: 0 15px 25px 0;
    border-radius	: 50%;
    background		: red;
    z-index			: 10;
    /* バッチ内テキスト */
    font-size		: 10Px;
    text-align		: center;
    position		: absolute;
  }
  /* フッターグローバルメニューボタン子要素　リモートコンテナ非表示 */
  .circle_webiner_end{
    display: inline-block;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255,0.9);
    background-image: url("../webiner_member_black.png");
    background-position:center center;
    background-size: auto;
    background-repeat: no-repeat;   
  }
  .circle_webiner_end:hover {
    background-color: rgb(169, 169, 169,0.7);
  }
  /* フッターグローバルメニューボタン子要素　自分のマイクオン */ 
  .circle_mic_start{
    display: inline-block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgb(243, 67, 126);
    background-image: url("../webiner_mute.png");
    background-position:center center;
    background-size: auto;
    background-repeat: no-repeat;   
  }
  .circle_mic_start:hover {
    background-color: rgb(243, 67, 126,0.7);
  }
  /* フッターグローバルメニューボタン子要素　自分のマイクオフ */
  .circle_mic_end{
    display: inline-block;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background: rgb(255, 255, 255,0.9);
    background-image: url("../webiner_unmute_black.png");
    background-position:center center;
    background-size: auto;
    background-repeat: no-repeat;   
  }
  .circle_mic_end:hover {
    background-color: rgb(169, 169, 169,0.7);
  }
  /* フッターグローバルメニューボタン子要素　自分の映像オン */
  .circle_video{
    display: inline-block;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background: rgb(255, 255, 255,0.9);
    background-image: url("../webiner_video_black.png");
    background-position:center center;
    background-size: auto;
    background-repeat: no-repeat;   
  }
  .circle_video:hover {
    background-color: rgb(169, 169, 169,0.7);
  }
  /* フッターグローバルメニューボタン子要素　自分の映像オフ */
  .circle_video_end{
    display: inline-block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgb(67, 67, 70);
    background-image: url("../webiner_video.png");
    background-position:center center;
    background-size: auto;
    background-repeat: no-repeat;   
  }
  .circle_video_end:hover {
    background-color: rgb(169, 169, 169,0.7);
  }
  /* フッターグローバルメニューボタン子要素　画面共有開始 */
  .circle_screenshare{
    display: inline-block;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background: rgb(255, 255, 255,0.9);
    background-image: url("../webiner_upload_black.png");
    background-position:center center;
    background-size: auto;
    background-repeat: no-repeat;   
  }
  .circle_screenshare:hover {
    background-color: rgb(169, 169, 169,0.7);
  }
  /* フッターグローバルメニューボタン子要素　画面共有終了 */
  .circle_screenshare_end{
    display: inline-block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgb(67, 67, 70);
    background-image: url("../webiner_upload.png");
    background-position:center center;
    background-size: auto;
    background-repeat: no-repeat;   
  }
  .circle_screenshare_end:hover {
    background-color: rgb(169, 169, 169,0.7);
  }
  /* フッターグローバルメニューボタン子要素　会議から退出 */  
  .circle_desconnect{
    display: inline-block;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    background-image: url("../webiner_exit_black.png");
    background-position:center center;
    background-size: auto;
    background-repeat: no-repeat;  
  }
  .circle_desconnect:hover {
    background-color: rgb(169, 169, 169,0.7);
  }