@charset "utf-8";
/* CSS Document */

.acd-check{
    display: none;
}
.acd-label{
    background: #fff;
    color: #000;
    display: block;
    margin-bottom: -2px;
    padding: 15px;
    position: relative;
    border: 2px solid #121212;
}
.acd-label:after{
    //background: #fff;
    box-sizing: border-box;
font-family: 'Material Icons';
content: "expand_more";
    display: block;
    //height: 52px;
    //padding: 15px 20px 0 0;
    position: absolute;
    right: 3%;
    top: 32%;
    font-size: 25px;
}
.acd-label:before {
    content:"" ;
  display: inline-block;/*忘れずに！*/
  width: 26px;/*画像の幅*/
  height: 26px;/*画像の高さ*/
  background-image: url( "https://lecinc.itembox.cloud/item/html/cleanpa/img/q.png");
    background-repeat: no-repeat;
  //background-size: contain;
  vertical-align: middle;
    padding-left:12px;
    margin-left: 5px
}
.acd-content{
    border: 1px solid #333;
    display: block;
    height: 0;
    margin-bottom: 10px;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
    background-color: #DEF5FF;
    color: #00A0E9;
}
.acd-content p {
    text-indent: -36px;
    margin-left: auto;
    padding-left: 45px;
    padding-bottom: 15px;
    margin-right: 57px;
    line-height: 1.2em;
}
.acd-content p:before {
    content:"" ;
  display: inline-block;/*忘れずに！*/
  width: 23px;/*画像の幅*/
  height: 23px;/*画像の高さ*/
  background-image: url( "https://lecinc.itembox.cloud/item/html/cleanpa/img/a.png");
    background-repeat: no-repeat;
    vertical-align: middle;
    padding-left: 12px;
    margin-left: 0;
}
.acd-check:checked + .acd-label:after{
    content: 'remove';
}
.acd-check:checked + .acd-label + .acd-content{
    height: auto;
    opacity: 1;
    padding: 15px 15px 0 15px;
    visibility: visible;
}