@media screen and (max-width:767px) {
ul.moreMenu > li {
    float: left;
    width: 50%;
    border: none;
}
}

@media screen and (min-width:768px) {
ul.moreMenu > li {
    float: left;
    width: 25%;
    border: none;
}
}
div.collection-description {
    padding: 0;
}
div.categoryContainer label.acd-label {
    font-size: 14px;
    font-weight: normal;
    text-align: center;
}
/* 下矢印 */
.acd-label:after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 0 5px 15px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.acd-check {
    display: none;
}
.acd-label {
    display: block;
    margin-bottom: 1px;
    padding: 10px;
}
.acd-label:after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 0 5px 15px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
ul.moreMenu {
    margin-left: 0;
    list-style: none;
    line-height: 3;
    overflow: hidden;
}
ul.moreMenu > li > a {
    text-decoration: none;
    color: #000;
    padding-left: 20px;
    display: block;
}
ul.moreMenu > li > a:hover {
    background-color: #f2f2f2;
    color: rgba(0,0,0,.34);
}
.acd-content {
    border: 1px solid #333;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
}
.acd-check:checked + .acd-label + .acd-content {
    height: auto;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}
