@charset "UTF-8"; /*SP用*/


#menu_container{
   width:100%;max-width:800px;height:auto;box-sizing: border-box;
}

/*ボックス全体*/
.accbox {
    margin: 1em 0;
    padding: 0;margin-bottom:20px;
}
/*ラベル*/
.accbox label {
    display: block;
    margin: 2px 0;
    padding : 9px 10px;
    color :#000;
    font-weight:600;
    background: #f5f5f5; 
    cursor :pointer;
    transition: all 0.5s;
}
/*アイコンを表示*/
.accbox label:before {
    content: '\f054';
    font-family: 'FontAwesome';color:#888;
    padding-right: 12px;
    font-weight: 400;
}
/*ラベルホバー時*/
.accbox label:hover {
    background :#b2d1b2;/*薄緑*/
}
.accbox .redlabel:hover {
    background :#f5878a;/*薄赤*/
}


/*チェックは隠す*/
.accbox input {
    display: none;
}
/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}
/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 5px;
    margin-bottom:0em;
    background: #fff;
    opacity: 1;
}
.cssacc {
 margin-left:0; 
}
/*アイコンを入れ替える*/
.cssacc:checked + label:before {
    content: '\f078';color:#888;
}
.accshow {
 display:flex;flex-wrap:wrap;
}
.accshow p{
   width:30em;
   padding:0.1em;
   margin-left:15px;
}
.link-color a{
 text-decoration:none;font-weight:normal;font-size:0.9em;
}
.link-color a:hover { 
  color: #ff0000; font-weight:normal;
}
.link-color img{
 width:60px;margin-right:5px;
}




