@charset "utf-8";
/* CSS Document */


/*-------------------------------------
アコーディオン
---------------------------------------*/

input {
  display: none;
}
label {
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  background: #0bd;
  color: #FFF;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
label:hover {
  background: #0090aa;
}
.panel {
  -webkit-transition: .3s ease;
  transition: .3s ease;
  height: 0;
  overflow: hidden;
  background: #F5F0CF;
  margin-top: 10px;
  padding: 0;
  border-radius: 5px;
}
input:checked + .panel {
  height: auto;
  padding: 15px;
}

/*-------------------------------------
リストスタイル
--------------------------------------*/

.panel ol{
	list-style-type:none;
	}

/*-------------------------------------
cite,h3スタイル
--------------------------------------*/

cite {
	font-weight: bold;
}
h3.midasi03{
	border-bottom-style: none;
}

/*-------------------------------------
表：spectable
---------------------------------------*/
.spectable {
	font-size: 12px;
	width:90%;
	margin:0 auto;
	border: 1px #aaaaaa solid;
	border-collapse: collapse;
	/*margin-right: 20px;
	margin-left: 20px;*/
	clear: both;
}
.spectable td {
	vertical-align: top;
	border: 1px solid #aaaaaa;
	padding-top: 6px;
	padding-right: 10px;
	padding-bottom: 6px;
	padding-left: 10px;
}
.spectable th{
font-size: 13px;
padding:3px;
border: 1px solid #aaaaaa;
background-color:#dff2db;
}
