.accordion {
/*margin: 3em auto;*/

display:block;
max-width: 184px;
display:block;
margin: 0 auto;
}


.toggle {
display: none;
}


.option {
position: relative;
margin-bottom: 1em;
}


.title,
.content {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0);
transition: all 0.3s;
}


.titleNo {
border-bottom: solid 1px #ccc;
border-width: 80%;
padding: 1.4em 1em;
display: block;
color: #333;
font-weight: normal;
}


.title {
border-bottom: solid 1px #ccc;
border-width: 80%;
padding: 1.4em 1em;
display: block;
color: #333;
font-weight: normal;
}


.title::after,
.title::before {
content: "";
position: absolute;
right: 1.75em;
top: 1.75em;
width: 2px;
height: 0.75em;
background-color: #CC0000;
transition: all 0.3s;
}


.title::after {
transform: rotate(90deg);
}


.content {
max-height: 0;
overflow: hidden;
}


.content p {
margin: 0;
padding: 0.5em 1em 1em;
font-size: 0.9em;
line-height: 1.5;
}


.toggle:checked + .title + .content {
max-height: 500px;
transition: all 1.5s;
}


.toggle:checked + .title::before {
transform: rotate(90deg) !important;
}
