.radiobutton {
  display: none;
}
.radioLabel {
  background-color: gray;
  padding: 10px 10px;
  border-radius:45px;
  text-align: center;
  width:40px;
  height:40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color:white;
}
.radiobutton:checked + label {
  background-color: blue;
  color:white;
}

.announceAnswer{
	background-color: #e0ffff;
}

.surveyAnsTable{
	overflow: auto;
	width: 100%;
	height: 400px;
    margin-bottom:5px;
}

.surveyAnsTable table{
	margin: 0;
    border-spacing: 0;
}

.surveyAnsTable td{
	border-right: 1px solid #999;
    /*border-bottom: 1px solid #999;*/
    border-bottom: none;
    background: #FFF;
    padding: 5px;
}

.surveyAnsTable th{
	border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    background: #f2f2f2;
   /* position: sticky;
    top: 0;
    left: 0;*/
}

.surveyAnsTable tr:first-child th{
    border-top: 1px solid #999;
     border-bottom: none;
    position: sticky;
    top: 0;
}
.surveyAnsTable th:first-child{
   /* border-left: 1px solid #999;*/
    /*position: sticky;
    top: 0;
    left: 0;*/
}

.surveyAnsTable tr:nth-child(2) th{
    border-top: 1px solid #999;
     border-bottom: none;
    position: sticky;
    top: 26px;
}

.surveyAnsTable tr:nth-child(3) th{
    border-top: 1px solid #999;
     border-bottom: none;
    position: sticky;
    top: 52px;
}

.surveyAnsTable tr:nth-child(4) th{
    border-top: 1px solid #999;
    position: sticky;
    top: 78px;
}

.surveyAnsTable tr:first-child tr:nth-child(2) tr:nth-child(3){
    z-index: 1;
}

.surveyAnsTable th:nth-child(2n) {
   /* 表の偶数行のみを対象に装飾するCSS */
}
.surveyAnsTable th:nth-child(2n+1) {
   /* 表の奇数行のみを対象に装飾するCSS */
   border-left: none;
   border-right: none;
}

.example{
    overflow: auto;
    width: 100%;
    height: 200px;
}
.example table{
    margin: 0;
    border-spacing: 0;

}
.example td{
    white-space: nowrap;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    background: #FFF;
    padding: 5px;
}
.example th{
    white-space: nowrap;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    background: #f2f2f2;
    position: sticky;
    top: 0;
    left: 0;
}
.example tr:first-child th{
    border-top: 1px solid #999;
}
.example th:first-child{
    border-left: 1px solid #999;
}
.example tr:first-child th:first-child{
    z-index: 1;
}

.borderlessTable{
	border:0;
}

.table-fixed .fixed-cell{
	position: sticky;
    left: 0;
    min-width: 60px;
    width: 60px;
}

.border-next {
  margin-top: -1px;
  margin-left: -1px;
  width: calc(25% + 1px);
}
 
 .highlight{
	/*background-color: Blue;*/
	padding:0px 0px;
}
