/* パンくずリスト*/
#topic_path {
  padding-left: 0;
  margin: 10px 0px 30px 0px;
  text-align: left;
}
#topic_path li {
  display: inline;
  font-size: 90%;
  padding: 0 5px;
  color: #000000/*#0033FF*/;
}
#topic_path li:after {
  padding: 0 5px;
  content: "\003E"; /* 大なり記号を挿入 */
}
#topic_path li:last-child:after { /* 最後のli要素の後ろ <IMG SRC="image/kobarintori170918c.gif" WIDTH="1120" HEIGHT="50" CLASS="photo" border="0">*/
  content: none;
}
footer{
	text-align: center;
	margin-top: 30px;
	margin-bottom: 10px;
}

 /* さらに表示プログラムはこれより下--------------------------------------------------------*/
.cp_box *, .cp_box *:before, .cp_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_box {
	width: auto;
	margin: 2em auto;
}
.cp_box label {
	font-weight: bold;
	position: relative;
	display: block;
	width: 80%;
	margin: auto;
	padding: 0.3em 1em;
	cursor: pointer;
	transition: all 0.3s;
	text-align: center;
	color: #0000FF;/*#da3c41;*/
	border: 2px solid #0000FF;/*#da3c41;*/
	border-radius: 3px;
}
.cp_box label:hover {
	transition: all 0.3s;
	color: #ffffff;
	background: #0000FF;/*#da3c41;*/
}
.cp_box label::after {
	font-family: 'FontAwesome';
	content: '\FF0B'; /*'\f067';文字化けを回避*/
	color: #0000FF;/*#da3c41;*/
}
.cp_box label:hover::after {
	color: #ffffff;
}
.cp_box input:checked ~ label::after {
	font-family: 'FontAwesome';
	content: '\30FC'; /*'\f068';文字化けを回避*/
	color: #0000FF;/*#da3c41;*/
}
.cp_box input:checked ~ label:hover::after {
	color: #ffffff;
}
.cp_box input {
	display: none;
}
.cp_box .cp_container {
	position: relative;
	z-index: 10;
	overflow: hidden;
	height: 0;
	margin-top: -1px;
	transition: height 0.3s ease-in-out,box-shadow 0.6s linear;
	background: rgba(255, 255, 255, 0.5);
}
.cp_box input:checked ~ div {
	transition: height 0.5s ease-in-out,box-shadow 0.1s linear;
}

/* 続きを読むを押すと表示されるテキストの高さ 年を更新するときはこの値を大きくする　およそ+7900〜8500*/
.cp_box input:checked ~ div.cp_container {
 	height: 126600px;
}
