@charset "utf-8";
/* CSS Document */

.accordion { width:533px; float:none; margin:30px auto 0; display:inline-block;}
.accordion h2 { padding:15px 29px 15px; margin:0 0 10px; background-color:#000000; transition: all 0.25s ease-out 0s; position:relative; cursor:pointer; border-radius:30px;}
.accordion h2:after { content:""; width:25px; height:25px; position:absolute; top:50%; transform:translateY(-50%); right:26px; background:url(../images/right-black-arrow3.svg) no-repeat center / cover;}
.accordion h2.active:after { background:url(../images/down-arrow3.svg) no-repeat center / cover;}
.accordion .content { width:100%; float:left;}


/*Smartphone css*/
@media screen and (max-width: 480px) {
.accordion { width:100%;}
.accordion h2 { padding:15px 5% 15px;}

}

@media screen and (min-width:481px) and (max-width:600px) {
.accordion { width:100%;}
.accordion h2 { padding:15px 5% 15px;}
}

@media screen and (min-width:601px) and (max-width:767px) {
.accordion { width:100%;}
.accordion h2 { padding:15px 5% 15px;}
}

@media screen and (min-width:768px) and (max-width:900px) {
	
}

@media screen and (min-width:901px) and (max-width:1024px) {
}

@media screen and (min-width:1025px) and (max-width:1240px) {
}