@charset "utf-8";
/* CSS Document */

/*-----------------------------------
readmore
-----------------------------------*/	



.readmore input[type="checkbox"]{
  display: none;
}
.readmore input[type="checkbox"]:checked ~ .readmore-content {
  height: auto;
}
.readmore input[type="checkbox"]:checked ~ .readmore-content::before {
	display: none;
}
.readmore {
  position: relative;
  margin: auto;
  padding: 0 0 75px;
	width: 100%;
}
.readmore label {
  position: absolute;
  display: table;
  left: 50%;
  bottom: 0;
  margin: 0 auto;
  width: 150px;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  font-size: 14px;
  background-color: #666;
  font-weight: 700;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
}

.readmore label::before{
  content: 'もっと見る +';
}

.readmore input[type="checkbox"]:checked ~ label::before {
  content: '閉じる -';
}

.readmore input[type="checkbox"]{
  display: none;
}

.readmore-content {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.readmore-content::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: linear-gradient( rgba(237,237,237,0) 0%, rgba(237,237,237,0.8) 50%, #ededed 100%);
}


@media screen and (max-width:736px){

/*-----------------------------------
readmore
-----------------------------------*/	

.readmore input[type="checkbox"]:checked ~ .readmore-content {
  height: auto;
}

.readmore input[type="checkbox"]:checked ~ .readmore-content::before {
  display: none;
}

	
	
}
