@charset "utf-8";
/* CSS Document */
/* accordion.css */
#contents button{
    border: none;
    background: none;
    padding: 0;
    width: 100%;
}

#contents button .openclose{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8em 1em;
}

#contents button .openclose span.text {
    font-weight: bold;
    margin-bottom: 0;
}

#contents button .openclose img.s5-iconInline {
    font-size: 100%;
    color: #333;
    transition: all 0.5s;
	margin-left: 0.5em;
}

#contents button.active .openclose img.s5-iconInline {
    transform: rotate( 180deg );
}

#contents button:hover{
    opacity: 0.7;
}

#contents div.detailArea {
	display: none;
    margin: 0;
    border-left: 1px solid #9e9e9e;
    border-right: 1px solid #9e9e9e;
    border-bottom: 1px solid #9e9e9e
}

#contents button .openclose::after {
    content: "+";
    font-size: 240%;
    color: #333;
    transition: all 0.5s;
    margin-right: 0.5em;
}

#contents button.active .openclose::after {
    transform: rotate( 45deg );
}


@media (min-width: 641px) {
	#contents button .openclose::after {
    margin-right: 0;
}
}