/*----- ナビゲーション -----*/

#g-nav{
    position:fixed;
    z-index: 999;
	top:0;
    right: -120%;
	width: 40%;
    height: 100vh;
	background:#eee;
	transition: all 0.6s;
}

#g-nav *{
    box-sizing: border-box;
}

#g-nav.panel-active{
    right: 0;
}

#g-nav.panel-active #g-nav-list{
    position: fixed;
    z-index: 1000; 
    width: 40%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}


/*----- ボタンCSS -----*/
.chat-button {
    appearance: none;
    border: 0;
    border-radius: 5px;
    background: #60ACEC;
    color: #fff;
    padding: 4px 28px;
    font-size: 0.8em;
    width: 100%;
  }

.entry-delete-btn{
    appearance: none;
    border: 0;
    border-radius: 5px;
    background: #F46063;
    color: #fff;
    padding: 4px 28px;
    font-size: 0.8em;
    width: 100%;
}


/*----- チャット文章部分 -----*/
#contents{
    white-space: pre-line;
}


/*----- ダイアログ -----*/
#edit-dialog{
    width: 600px;
    border: none;
    border-radius: 5px;
}
#delete-dialog{
    width: 400px;
    border: none;
    border-radius: 5px;
}
#cancel-dialog{
    width: 400px;
    border: none;
    border-radius: 5px;
}

/*----- tab -----*/
.tab{
	display: flex;
	flex-wrap: wrap;
    padding-top: 5px;
    position: relative;
}
/*.tab .menu-tab{
    
}*/
.tab .action-tab{
    right: 25px;
    position: absolute;
}

/*--- menu-tab ---*/
.tab .menu-tab li{
    display: inline-block;
}
.tab .menu-tab li a{
    outline: none;
    border-radius: 10px 10px 0px 0px;
    width: 455px;/*タブ2個用*/
	color: #333;
	text-decoration: none;
	display: block;
	background:#ddd;
	padding:10px 20px;
}
.tab .menu-tab li.tab_active a{
	background:#fff;
}

/*--- action-tab ---*/
.tab .action-tab button{
    width: 41px;
    padding: 0%;
    border: none;
    border-radius : 100%;
}
.tab .action-tab button i{
    font-size: 25px;
}
.tab .action-tab button:hover{
    background: #fff;
}

/*--- area設定 ---*/
.area {
	display: none;/*はじめは非表示*/
	background: #fff;
	padding:10px 0px;
}
.area.is-tab_active {
    display: block;/*表示*/
}

.student-data {
    width: 100%;
    margin-top: 20px;
}
.student-data th,
.student-data td{

    white-space : nowrap;
	border: solid 1px;
	padding: 10px;
	border-color: #C7C7C7;

    font-family: -apple-system, BlinkMacSystemFont, Roboto, Segoe UI, Helvetica Neue, HelveticaNeue, YuGothic, Yu Gothic Medium, Yu Gothic, Verdana, Meiryo, sans-serif;
}
.student-data th{
    width: 25%;
    text-align: left;
}
.student-data td{
    width: 75%;
}

.scout-data {
    width: 100%;
    margin-top: 20px;
    border: solid 1px;
    border-color: #C7C7C7;
}
.scout-data th,
.scout-data td{

    white-space : nowrap;
	padding: 10px;

    font-family: -apple-system, BlinkMacSystemFont, Roboto, Segoe UI, Helvetica Neue, HelveticaNeue, YuGothic, Yu Gothic Medium, Yu Gothic, Verdana, Meiryo, sans-serif;
}
.scout-data th{
    width: 40%;
    text-align: center;
}
.scout-data td{
    width: 60%;
}

.scout-data span{
    margin-top: 20px;
}

.chat-dialog *{
    box-sizing: border-box;
}