@charset "utf-8";

/*--------------------------------------------------*
 *
 *  Accordion
 *
 *--------------------------------------------------*/

.rotate_status_open {
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.rotate_status_close {
	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

.rotate_open {
	-moz-animation: rotate_open 0.5s ease-in-out;
	-webkit-animation: rotate_open 0.5s ease-in-out;
	animation: rotate_open 0.5s ease-in-out;
}

.rotate_close {
	-moz-animation: rotate_close 0.5s ease-in-out;
	-webkit-animation: rotate_close 0.5s ease-in-out;
	animation: rotate_close 0.5s ease-in-out;
}

@-webkit-keyframes rotate_close {
	0% {
		-moz-transform: rotate(180deg);
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	100% {
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@-webkit-keyframes rotate_open {
	0% {
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(180deg);
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
}

.accordion {
	position:relative;
	margin:10px auto 0px;
}

.accordion .title {
	background:-moz-linear-gradient(top, #94CC00, #85B800 50%, #7EAE00 50%, #6F9900);
	background:-webkit-gradient(linear, center top, center bottom, from(#94CC00), color-stop(50%, #85B800), color-stop(50%, #7EAE00), to(#6F9900));
	background-color:#87B200;
	padding:6px 0px;
	font-size:16px;
	font-weight:bold;
	text-shadow:0px -1px 0px #6F9900;
	text-align:center;
	color:#FFF;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	-moz-box-shadow: 0px 1px 0px #FFF;
	-webkit-box-shadow: 0px 1px 0px #FFF;
	box-shadow: 0px 1px 0px #FFF;
}

.accordion .title .omission {
	width:86%;
	margin:1px 0px 1px 10px;
	font-size:12px;
	text-align:left;
	display:block;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}

.accordion .icon {
	position:absolute;
	top:12px;
	right:10px;
	line-height:0px;
}

.accordion_02,
.accordion_03,
.accordion_04
 {
	position:relative;
	margin:0px auto;
}

.accordion_02 .title {
	padding:10px;
	font-size:16px;
}

.accordion_03 .title {
	padding:8px 30px 8px 10px;
}

.accordion_02 .title,
.accordion_03 .title {
	background:-moz-linear-gradient(top, #94CC00, #85B800 50%, #7EAE00 50%, #6F9900);
	background:-webkit-gradient(linear, center top, center bottom, from(#94CC00), color-stop(50%, #85B800), color-stop(50%, #7EAE00), to(#6F9900));
	background-color:#87B200;
	font-weight:bold;
	color:#FFF;
}

.accordion_04 .title {
	padding:8px 30px 8px 10px;
	background:-moz-linear-gradient(top, #94CC00, #85B800 50%, #7EAE00 50%, #6F9900);
	background:-webkit-gradient(linear, center top, center bottom, from(#94CC00), color-stop(50%, #85B800), color-stop(50%, #7EAE00), to(#6F9900));
	background-color:#87B200;
	text-shadow: #849900;
	color:#FFF;
}

.accordion_02 .title figure {
	border:1px solid #6F9900;
	margin-right:10px;
	float:left;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	-moz-box-shadow: 0px 1px 0px #94CC00;
	-webkit-box-shadow: 0px 1px 0px #94CC00;
	box-shadow: 0px 1px 0px #94CC00;
}

.accordion_02 .title figure img {
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
}




.accordion_02 .title span {
	line-height:40px;
	text-shadow:0px -1px 0px #6F9900;
}

.accordion_03 .title span {
	line-height:18px;
	text-shadow:0px -1px 0px #6F9900;
	display:block;
}
.accordion_04 .title span {
	text-shadow:0px -1px 0px #999;
}
.accordion_02 .icon {
	top:24px;
}

.accordion_03 .icon {
	top:20px;
}

.accordion_04 .icon {
	top:5px;
}
.accordion_04 .icon,
.accordion_02 .icon,
.accordion_03 .icon {
	position:absolute;
	right:10px;
	line-height:0px;
}

.ad_open,
.ad_close {
	overflow:hidden;
}
