@charset "utf-8";
/* CSS Document */



/*__________________________________ accordionmenu*/
/*ボックス全体*/
.accbox {
    margin: 2em 0;
    padding: 0;
    max-width: 100%;/*最大幅*/
}

/*ラベル*/
.accbox label {
    display: block;
    margin: 1.5px 0;
    padding : 13px 12px;
    color: #fff;
    font-weight: bold;
    background: #288ad6;
    cursor :pointer;
    transition: all 0.5s;
}

/*アイコンを表示*/
.accbox label:before {
    content: '\f054';
    font-family: 'FontAwesome';
    padding-right: 8px;
}

/*ラベルホバー時*/
.accbox label:hover {
    background :#80c0f2;
}

/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 5px;
    background: #fff5eb;
    opacity: 1;
		}

.accbox .accshow p {margin:0;}

/*アイコンを入れ替える*/
.cssacc:checked + label:before {
    content: '\f078';
}

/*@media screen and (max-width: 700px) {
  .tbl-res {
    width: 80%;
  }
  .tbl-res .thead {
    display: none;
  }
  .tbl-res tr {
    width: 97%;
  }
  .tbl-res td {
    display: block;
    text-align: left;
    width: 97%;
		font-size: 0.8em;
  }
  .tbl-res td:first-child {
    background: #288AD6;
    color: #fff;
    font-weight: bold;
    text-align: center;
		
  }
  .tbl-res td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    margin-right: 10px;
  }
}*/
.tbl-res .hdtd {
  width:16%;
	white-space: nowrap;
	}
@media screen and (max-width: 640px) {
  .tbl-res {
    width: 80%;
  }
  .tbl-res th, td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
}