.fanza-overview{ --fz:15px; --lh:1.9; --lines:6; }
.fanza-overview__body{
  font-size:var(--fz);
  line-height:var(--lh);
  display:-webkit-box;
  -webkit-line-clamp:var(--lines);
  -webkit-box-orient:vertical;
  overflow:hidden;
  max-height:calc(var(--lines) * 1em * var(--lh));
  margin:0;
}
.fanza-overview__chk{display:none}
.fanza-overview__chk:checked ~ .fanza-overview__body{
  display:block; -webkit-line-clamp:unset; max-height:none;
}
.fanza-overview__toggle{margin-top:8px; text-align:right}
.fanza-overview__toggle .btn{
  display:inline-block; padding:6px 10px; border-radius:10px;
  font-size:13px; text-decoration:none; border:1px solid rgba(0,0,0,.1);
  cursor:pointer;
}
.fanza-overview__toggle .less{display:none}
.fanza-overview__chk:checked ~ .fanza-overview__toggle .more{display:none}
.fanza-overview__chk:checked ~ .fanza-overview__toggle .less{display:inline}
.fanza-overview.no-toggle .fanza-overview__toggle{display:none}