@charset "utf-8";
/* CSS Document */
/* accordion.css */
#contents button {
    background: none;
    padding: 0.5em;
    width: 100%;
	border: 1px solid #9e9e9e;
}

#contents button .openclose {
    display: flex;
    align-items: center;
}

#contents button .openclose span.text {
    font-weight: bold;
    margin-bottom: 0;
	font-size: 1.25rem;
    width: 80%;
    text-align: left;
}

#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;
	background: #FFF;
}

#contents button .openclose::before {
    content: "+";
    font-size: 240%;
    color: #333;
    transition: all 0.5s;
    margin-right: 0.5em;
}

#contents button.active .openclose::before {
    transform: rotate( 45deg );
}


#contents button.active  {
    border-bottom: none;
}

#contents div.detailArea .detailinner {
    margin: 0 1em 1em;
    border-top: 1px solid #000;
    padding: 1em 0;
}

@media (min-width: 641px) {
	#contents button .openclose::before {
		/* margin-right: 0; */
	}
}