.attendance-header{
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin-bottom:10px;
}

.meeting-status{
	display:inline-block;
	padding:4px 12px;
	border-radius:20px;
	font-size:13px;
	font-weight:bold;
	color:#fff;
}

.meeting-status.open{
	background:#28a745;
}

.meeting-status.before{
	background:#0d6efd;
}

.meeting-status.close{
	background:#6c757d;
}
.comment-center{
	text-align:center;
}





/**************
   出欠一覧
****************/
.attendance-table thead {
	background:#296292;
	color:#fff;
}
.attendance-table td {
	text-align:center;
}
.attendance-table th.name {
	width:25%;
	text-align:center;
}
.attendance-table td.name {
	text-align:left;
}
.attendance-table td.attendance-comment {
	text-align:left;
}
.attendance-table th.marubatu {
	width:10%;
	text-align:center;
}
.attendance-table th.bikou {
	white-space: normal;
	word-break:
	break-word;
	width:*;
}
.attendance-year-table thead {
	background:#296292;
	color:#fff;
}
@media screen and (max-width: 768px) {
	.attendance-table th.name {
		width:35%;
	}

}



/*** モーダル ***/
.modal {
	display:none;
	position:fixed;
	z-index:1000;
	left:0; top:0; 
	width:100%; 
	height:100%; 
	background:rgba(0,0,0,0.5);
}
.modal-content {
	background:#fff; 
	margin:20% auto; 
	padding:20px; 
	width:80%; 
	max-width:400px; 
	border-radius:6px;
}
.close {
	float:right; 
	font-size:24px; 
	cursor:pointer;
}
button.modal-btn {
	background:none; 
	border:none; 
	cursor:pointer; 
	font-size:16px;
}

table td, table th {
	padding: .5rem .1rem;
}

@media screen and (max-width: 768px) {
  table { min-width: 100%; }
	.attendance-table th,
	.attendance-table td {
		padding: 8px 4px;
	}
	.attendance-table th:nth-child(2),
	.attendance-table td:nth-child(2),
	.attendance-table th:nth-child(3),
	.attendance-table td:nth-child(3),
	.attendance-table th:nth-child(4),
	.attendance-table td:nth-child(4) {
		width: 42px;
		text-align: center;
	}
	.modal-btn {
	width: 40px;
	height: 40px;
	font-size: 30px !important;
	}
}