/* CSS Document */



/***** ‰pŒê *****/

.readmore {
  position: relative;
  margin: -7px 0px 8px 0px;
  padding: 0px 0px 11px 0px;
}

.readmore label {
  position: absolute;
  display: table;
  left: 50%;
  bottom: 0;
  margin: 0 auto; 
  width: 100px;
  padding: 4px 0 6px 0;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  background-color: #999999;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
}

.readmore label::before{
  content: 'More';
}

.readmore input[type="checkbox"]:checked ~ label::before {
  content: 'Less';
}

.readmore input[type="checkbox"]{
  display: none;
}

.readmore-content {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.readmore input[type="checkbox"]:checked ~ .readmore-content {
  height: auto;
}

.readmore-content::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, #fff 100%);
}

.readmore input[type="checkbox"]:checked ~ .readmore-content::before {
  display: none;
}




/***** “ú–{Œê *****/

.readmore2 {
  position: relative;
  margin: -7px 0px 8px 0px;
  padding: 0px 0px 11px 0px;
}


.readmore2 label {
  position: absolute;
  display: table;
  left: 50%;
  bottom: 0;
  margin: 0 auto;
  width: 100px;
  padding: 4px 0 6px 0;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  background-color: #999999;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
}

.readmore2 label::before{
  content: 'More';
}

.readmore2 input[type="checkbox"]:checked ~ label::before {
  content: 'Less';
}

.readmore2 input[type="checkbox"]{
  display: none;
}

.readmore-content2 {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.readmore2 input[type="checkbox"]:checked ~ .readmore-content2 {
  height: auto;
}

.readmore-content2::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, #fff 100%);
}

.readmore2 input[type="checkbox"]:checked ~ .readmore-content2::before {
  display: none;
}









