@charset "UTF-8";


/*ボックス全体*/
.accbox1 {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    text-align: center;
}


/*ラベル*/
.accbox1 label {
    display: block;
    margin: auto;
    margin-bottom: 10px;
    padding: 10px 12px;
    color: #ffffff;
    font-weight: bold;
    background: #2196F3;
    cursor: pointer;
    transition: all 0.5s;
}

/*ラベルホバー時*/
.accbox1 label:hover {
    background: #1976D2;
}

/*チェックは隠す*/
.accbox1 input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox1 .accshow1 {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc1:checked + .accshow1 {
    height: auto;
    padding: 5px;
    background: 000;
    opacity: 1;
}

.accshow1 li {
    font-size: 14px;
    text-align: left;
}


/*ボックス2全体*/
.accbox2 {
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 20px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 30%;
    color:#1976D2
}

