/*アコーディオンのようにクリックで開閉する帯ラベル*/
/*ボックス全体*/
.cate-acc {
    margin: 2em 0;
    padding: 0;
    max-width: 760px;/*最大幅*/
}

/*ラベル*/
.cate-acc label {
    display: block;
    margin: 1.5px 0;
    padding : 11px 12px;
    color :#ffffff;
    font-size:130%;
    font-weight: bold;
    background :#007bbb;
    cursor :pointer;
    transition: all 0.5s;
      -moz-border-radius: 100vh;
  -webkit-border-radius: 100vh;
  border-radius: 100vh;
}
/*ラベルホバー時*/
.cate-acc label:hover {
    background :#59b9c6;
}

/*チェックは隠す*/
.cate-acc input {
    display: none;
}

/*中身を非表示にしておく*/
.cate-acc .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + .accshow {
    height: auto;
    padding: 5px;
    background: #fffffc;
    opacity: 1;
}