﻿/* 縦３５０ｐｘ*/
.accordion_toggle {
			/* 必須 */
			float: left;	/* This make sure it stays horizontal */
			/* 必須 */
			display: block;
			height: 250px;
			width: 30px;
/*			background-color:#ddddee;*/
			color: #404040;
			text-decoration: none;
			background-image:url("../pic/accordiontag25.gif");
			outline: none;
			border-left: 0px;
			border-right: 0px solid #000000;
			cursor: pointer;
			margin: 0 0 0 0;
			font-family:ＭＳ 明朝, 細明朝体;
			font-size:12pt;
			
}

.accordion_toggle_active {
			background-image:url("../pic/accordiontaghigh25.gif");
	border-right: 0px solid #000000;
}

.accordion_content {
			/* 必須 */
			height: 250px;	/* We need to define a height for the accordion as it stretches the width */
			float: left;	/* This make sure it stays horizontal */
			/* 必須 */
			width:200px;
			min-height:250px;
			max-height:250px;
			overflow: hidden;
			color: #ffffff;
			border: 1px solid #909090;
}
img.content
{
			width:200px;
			max-height:246px;
			height:246px;
			padding:0px;
			margin:0px;
			outline:0px;
			
}
   
