/*ボックス全体*/
.accbox {
    margin: 5% auto 5%;
    padding: 0;
    max-width: 98%;
}

/*ラベル*/
.accbox label {
    display: block;
    margin: 1.5px 0;
    padding:1px 12px 10px;
    font-size: 1.5em;
    color: #15becd;
    letter-spacing: 2px;
    font-weight: bold;
	background: url(../img/sp/tab_open.png);
	background-size: contain;
	background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.8s;
}

/*ラベルホバー時*/
/*.accbox label:hover {
    background :#85baef;
}*/

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

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

/*クリックで中身表示*/
.cssacc:checked + .accshow {
    height: auto;
   padding: 0 0 10% 0;
    background: #fff;
    opacity: 1;
	transition: 0.8s;
}


.cssacc:checked + label:before {
	    display: block;
    margin: 1.5px 0;
    padding:1px 12px 10px;
    font-size: 1.5em;
    color: #15becd;
    letter-spacing: 2px;
    font-weight: bold;
	background: url(../img/sp/tab_close.png);
	background-size: contain;
	background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.8s;
}


.accbox .zairai-btn{
	margin: 0 auto 5%;
}
