@charset "UTF-8";

/*************************************************
	readmore
**************************************************/
.QA_production {
	max-width: 393px;
	margin:0 10px 5px 0;
	padding:5px 10px;
	float:left;
	border:1px solid #2eb4b4;

	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.QA_production a{color:#2eb4b4;text-decoration:none;}
.QA_production a:hover{color:#2eb4b4;text-decoration:underline;}
.QA_production a:active, a:focus {outline: 0;}

.QA_time {
	width:218px;
	margin:6px 0;
	color:#969696;
	text-align:right;
	float:right;
}




.grad-wrap {
  position: relative;
  clear: left;
}
.grad-wrap + .grad-wrap {
  margin-top: 40px;
}
.grad-trigger {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding:5px;
  border-radius: 3px;
  background: #f02c8a;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: .2s ease;
  box-shadow: 0 0 3px rgba(0,0,0,.3);
}
.grad-trigger::after {
  content: "この回答の続きを見る"
}
.grad-trigger:hover {
  background: #fff;
  color: #f02c8a;
}
.grad-trigger .fa {
  margin-right: .5em;
}
.grad-item {
  position: relative;
  overflow: hidden;
}
.grad-item.is-hide {
  height: 74px;
}
.grad-item p + p {
  margin-top: 1em;
}
.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 40px; /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
}
.grad-trigger.is-show {
  bottom:0;
}
.grad-trigger.is-show::after {
  content: "閉じる"
}
.grad-trigger.is-show .fa {
  transform: rotate(180deg);
}
.grad-trigger.is-show + .grad-item::before {
  display: none;
}
