@charset "utf-8";
/*ボックス全体*/
.switchbox {
    margin: 10px 0;
    padding: 0;
}
/*ラベル*/
.switchbox label {
    cursor :pointer;
}

/*中身を非表示にしておく*/
.switchbox div {
    height: 0;
    overflow-y: hidden;
    opacity: 0;
}
/*クリックで中身を表示*/
.switchbox input:checked + label + div {
    height: auto;
    opacity: 1;
}
