/* readmore.css
   折りたたみテキスト用
*/

.hideContent {
    display: none;
    margin-top: 1rem;
  }
  
  .more {
    display: inline-block;
    cursor: pointer;
    background-color: #4caf50;
    color: #000;
    font-weight: 700;
    border-radius: 4px;
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    line-height: 1.2;
    text-decoration: none;
  }
  
  .more.close {
    background-color: #333;
    color: #fff;
  }
  