/* Flexible Slide-to-top Accordion Style*/
.st-accordion{
    width:100%;
    min-width:270px;
    margin: 0 auto;
}
.st-accordion > ul {
	padding:0;
	margin:0;
	list-style-type: none;
　list-style-image:none; /*list-style-type: none;が効かないとき*/}

.st-accordion > ul > li{
    height: 35px;
    border-bottom: 1px solid #932339;
    border-top:none;
    overflow: hidden;
	list-style-type: none;
　list-style-image:none; /*list-style-type: none;が効かないとき*/
	padding-left:0px;
	background:none;
}
.st-accordion > ul > li small {
	font-size:80%;
	color:#333}
 

.st-accordion > ul > li:first-child{border-top:none;
}
.st-accordion > ul > li > a{
    font-size: 15px;
    display: block;
	position: relative;
    line-height: 35px;
	outline:none;
    -webkit-transition:  color 0.2s ease-in-out;
	-moz-transition:  color 0.2s ease-in-out;
	-o-transition:  color 0.2s ease-in-out;
	-ms-transition:  color 0.2s ease-in-out;
	transition:  color 0.2s ease-in-out;
}


.st-accordion > ul > li > a span{background: transparent url(../images/down.png) no-repeat center center;
	text-indent:-9000px;
	width: 26px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: -26px;
	margin-top: -7px;
	opacity:0;
	-webkit-transition:  all 0.2s ease-in-out;
	-moz-transition:  all 0.2s ease-in-out;
	-o-transition:  all 0.2s ease-in-out;
	-ms-transition:  all 0.2s ease-in-out;
	transition:  all 0.2s ease-in-out;
}

.st-accordion > ul > li a span.s_txt{
	font-size:85%;
	color:#333;
	background:none;
	text-indent:0px;
	width: 26px;
	position: static;
	top: 0;
	right: 0;
	margin-top: 0;
	opacity:0;
	-webkit-transition:  all 0.2s ease-in-out;
	-moz-transition:  all 0.2s ease-in-out;
	-o-transition:  all 0.2s ease-in-out;
	-ms-transition:  all 0.2s ease-in-out;
	transition:  all 0.2s ease-in-out;
}


.st-accordion > ul > li > a:hover{
    color: #932339;}
.st-accordion > ul > li > a:hover span{
	opacity:1;
	right: 10px;

}
.st-accordion > ul > li.st-open > a{
    color: #932339;
}
.st-accordion > ul > li.st-open > a span{
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
    transform:rotate(180deg);
	right:10px;
	opacity:1;
}
.st-content{
    padding: 5px 0px 30px 0px;
}

.st-content img{
}
@media screen and (max-width: 320px){
	.st-accordion > ul > li > a{
	}
}