

/************https://web.skipjack.tokyo/html/html_accordion/**********************************************************/
/**************************************メニューバー全体の装飾 ********************************/


/********                             ********/
.accordion {
    padding: 1rem;
}

.accordion-item {
    margin-bottom: 0.5rem;
}

.accordion-check {
    display: none;
}

.accordion-label {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    background-color: #ffffff;
    color: #000;/***文字色***/
    font-size: 1rem;
    line-height: 1.5;
}

.accordion-label::before {
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    left: 5px;
    height: 30px;
    width: 20px;
    border-radius: 50%;
    background-color: #efefef;
    color: #333;
    text-align: center;
    line-height: 20px;
    content: '+';

  content: url(./sime1.png);/**   content: url(./open.png); **/
  vertical-align: middle;
  padding-right: 1px;


    
}

/*****<div class="icon"></div>******/





.accordion-box {

    height: 0;
    overflow: hidden;
    opacity: 0;
    background-color: #ffffff;
    transition: all .5s;

}

.accordion-check:checked~.accordion-box {
    height: auto;
    opacity: 1;
    padding: 1rem;
margin-top: 0;

}

.accordion-check:checked+.accordion-label:before {
    content: '-';

  content: url(./sime2.png);/**   content: url(./close.png); **/
  vertical-align: middle;
  padding-right: 5px;


    
}


.accordion-box p {

   display:none;    
  /*  line-height: 0;     ＊改行しない*/
}

/********                             ********/









/*# sourceMappingURL=style.css.map */

/*#      ...               */


.textbox {
  position: relative;
  height: 200px;
  overflow: hidden;
  line-height: 20px;
}

.textbox:before, .textbox:after {
  position: absolute;
  background: #fff;
}

.textbox:before {
  content: "･･･";
  bottom: 0;
  right: 0;
}

.textbox:after {
  content: "";
  width: 100%;
  height: 100%;
}

.font20 {
  line-height:28px;
  font-size:16px;
}

.text2 {
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 10; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
}
.text3 {
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 2; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
}


