@charset "UTF-8";

/*************************************************
	readmore
**************************************************/
.QA_shop {
	max-width: 260px;
	margin:0 10px 5px 0;
	padding:5px 10px;
	float:left;
	border:1px solid #38b6ff;

	font-size: 14px;

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

/*画面幅が768pxまでの時（スマホ）*/
@media screen and (max-width:768px){
	.QA_shop {
		max-width: unset;
		margin:0 0 5px 0;
		padding: 5px;
		float: unset;

		font-size: 12px;
	}
}

.QA_shop a { margin-right:3px; font-weight:bold; color:#38b6ff; text-decoration:none; }
.QA_shop a:hover { color:#38b6ff; text-decoration:underline; }
.QA_shop a:active, a:focus { outline:0; }

.QA_time {
	width:213px;
	margin:6px 0;
	font-size: 14px;
	color:#969696;
	text-align:right;
	float:right;
}

/*画面幅が768pxまでの時（スマホ）*/
@media screen and (max-width:768px){
	.QA_time {
		width: unset;
		margin: 5px 0 0 0;
		font-size: 11px;
		text-align: left;
		float: unset;
	}
}



.grad-wrap {
  position: relative;
  clear: left;
}
.grad-wrap + .grad-wrap {
  margin-top: 40px;
}
.grad-wrap p {
  margin-top: 5px;
}
.grad-trigger {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding: 10px;
  border-radius: 4px;
  background: #ff66c4;
	font-size: 14px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: .2s ease;
  box-shadow: 0 0 3px rgba(0,0,0,.3);
}

/*画面幅が768pxまでの時（スマホ）*/
@media screen and (max-width:768px){
	.grad-trigger {
		line-height: 17px;
		padding: 8px 4px;
		font-size: 12px;
	}
}

.grad-trigger::after {
  content: "この回答の続きを見る"
}
.grad-trigger:hover {
  background: #fff;
  color: #ff66c4;
}
.grad-trigger .fa {
  margin-right: .5em;
}
.grad-item {
  position: relative;
  overflow: hidden;
}
.grad-item.is-hide {
  height: 100px;
}
.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;
}
